[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [40230] branches/soc-2011-garlic: Fixing issues with i18n stuff:

Sergey Sharybin g.ulairi at gmail.com
Thu Sep 15 15:20:18 CEST 2011


Revision: 40230
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=40230
Author:   nazgul
Date:     2011-09-15 13:20:18 +0000 (Thu, 15 Sep 2011)
Log Message:
-----------
Fixing issues with i18n stuff:

- Make gettext stuff draw-time. so switching between languages
  can happens without restart now.
- Added option to translate visible interface (menus, buttons, labels)
  and tooltips. Now it's possible to have english UI and localized tooltips.
- Clean-up sources, do not use gettext stuff for things which can be
  collected with RNA.
- Fix issues with windows 64bit and ru_RU locale on my desktop
  (it was codepage issue).
- Added operator "Get Messages" which generates new text block with
  with all strings collected from RNA.
- Changed script for updating blender.pot so now it appends
  messages collected from rna to automatically gathered messages.
  To update .pot you have to re-generate messages.txt using "Get Messages"
  operator and then run update_pot script.
- Clean up old translation stuff which wasn't used and most probably
  wouldn't be used.
- Return back "International Fonts" option, so if it's disabled, no
  gettext lookups happens on draw.
- Merged read_homefile function back. No need in splitting it.

TODO:
- Custom fonts and font size.
  Current font isn't nice at least for russian locale, it's
  difficult to read it.
- Put references to messages.txt so gettext can merge translation when
  name/description of some property changes.

Modified Paths:
--------------
    branches/soc-2011-garlic/po/POTFILES.in
    branches/soc-2011-garlic/po/blender.pot
    branches/soc-2011-garlic/po/update_mo.py
    branches/soc-2011-garlic/po/update_po.py
    branches/soc-2011-garlic/po/update_pot.py
    branches/soc-2011-garlic/po/zh_TW.po
    branches/soc-2011-garlic/release/scripts/modules/rna_prop_ui.py
    branches/soc-2011-garlic/release/scripts/startup/bl_operators/animsys_update.py
    branches/soc-2011-garlic/release/scripts/startup/bl_operators/object.py
    branches/soc-2011-garlic/release/scripts/startup/bl_operators/object_align.py
    branches/soc-2011-garlic/release/scripts/startup/bl_operators/object_quick_effects.py
    branches/soc-2011-garlic/release/scripts/startup/bl_operators/object_randomize_transform.py
    branches/soc-2011-garlic/release/scripts/startup/bl_operators/presets.py
    branches/soc-2011-garlic/release/scripts/startup/bl_operators/screen_play_rendered_anim.py
    branches/soc-2011-garlic/release/scripts/startup/bl_operators/sequencer.py
    branches/soc-2011-garlic/release/scripts/startup/bl_operators/wm.py
    branches/soc-2011-garlic/release/scripts/startup/bl_ui/properties_animviz.py
    branches/soc-2011-garlic/release/scripts/startup/bl_ui/properties_data_armature.py
    branches/soc-2011-garlic/release/scripts/startup/bl_ui/properties_data_bone.py
    branches/soc-2011-garlic/release/scripts/startup/bl_ui/properties_data_camera.py
    branches/soc-2011-garlic/release/scripts/startup/bl_ui/properties_data_curve.py
    branches/soc-2011-garlic/release/scripts/startup/bl_ui/properties_data_empty.py
    branches/soc-2011-garlic/release/scripts/startup/bl_ui/properties_data_lamp.py
    branches/soc-2011-garlic/release/scripts/startup/bl_ui/properties_data_lattice.py
    branches/soc-2011-garlic/release/scripts/startup/bl_ui/properties_data_mesh.py
    branches/soc-2011-garlic/release/scripts/startup/bl_ui/properties_data_metaball.py
    branches/soc-2011-garlic/release/scripts/startup/bl_ui/properties_data_modifier.py
    branches/soc-2011-garlic/release/scripts/startup/bl_ui/properties_game.py
    branches/soc-2011-garlic/release/scripts/startup/bl_ui/properties_material.py
    branches/soc-2011-garlic/release/scripts/startup/bl_ui/properties_object.py
    branches/soc-2011-garlic/release/scripts/startup/bl_ui/properties_object_constraint.py
    branches/soc-2011-garlic/release/scripts/startup/bl_ui/properties_particle.py
    branches/soc-2011-garlic/release/scripts/startup/bl_ui/properties_physics_cloth.py
    branches/soc-2011-garlic/release/scripts/startup/bl_ui/properties_physics_field.py
    branches/soc-2011-garlic/release/scripts/startup/bl_ui/properties_physics_fluid.py
    branches/soc-2011-garlic/release/scripts/startup/bl_ui/properties_physics_smoke.py
    branches/soc-2011-garlic/release/scripts/startup/bl_ui/properties_physics_softbody.py
    branches/soc-2011-garlic/release/scripts/startup/bl_ui/properties_render.py
    branches/soc-2011-garlic/release/scripts/startup/bl_ui/properties_scene.py
    branches/soc-2011-garlic/release/scripts/startup/bl_ui/properties_texture.py
    branches/soc-2011-garlic/release/scripts/startup/bl_ui/properties_world.py
    branches/soc-2011-garlic/release/scripts/startup/bl_ui/space_console.py
    branches/soc-2011-garlic/release/scripts/startup/bl_ui/space_dopesheet.py
    branches/soc-2011-garlic/release/scripts/startup/bl_ui/space_graph.py
    branches/soc-2011-garlic/release/scripts/startup/bl_ui/space_image.py
    branches/soc-2011-garlic/release/scripts/startup/bl_ui/space_info.py
    branches/soc-2011-garlic/release/scripts/startup/bl_ui/space_logic.py
    branches/soc-2011-garlic/release/scripts/startup/bl_ui/space_nla.py
    branches/soc-2011-garlic/release/scripts/startup/bl_ui/space_node.py
    branches/soc-2011-garlic/release/scripts/startup/bl_ui/space_outliner.py
    branches/soc-2011-garlic/release/scripts/startup/bl_ui/space_sequencer.py
    branches/soc-2011-garlic/release/scripts/startup/bl_ui/space_text.py
    branches/soc-2011-garlic/release/scripts/startup/bl_ui/space_time.py
    branches/soc-2011-garlic/release/scripts/startup/bl_ui/space_userpref.py
    branches/soc-2011-garlic/release/scripts/startup/bl_ui/space_userpref_keymap.py
    branches/soc-2011-garlic/release/scripts/startup/bl_ui/space_view3d.py
    branches/soc-2011-garlic/release/scripts/startup/bl_ui/space_view3d_toolbar.py
    branches/soc-2011-garlic/source/blender/blenfont/intern/blf.c
    branches/soc-2011-garlic/source/blender/blenfont/intern/blf_lang.c
    branches/soc-2011-garlic/source/blender/blenkernel/intern/speaker.c
    branches/soc-2011-garlic/source/blender/editors/animation/CMakeLists.txt
    branches/soc-2011-garlic/source/blender/editors/animation/SConscript
    branches/soc-2011-garlic/source/blender/editors/animation/anim_channels_edit.c
    branches/soc-2011-garlic/source/blender/editors/animation/anim_markers.c
    branches/soc-2011-garlic/source/blender/editors/animation/anim_ops.c
    branches/soc-2011-garlic/source/blender/editors/animation/drivers.c
    branches/soc-2011-garlic/source/blender/editors/animation/keyframing.c
    branches/soc-2011-garlic/source/blender/editors/animation/keyingsets.c
    branches/soc-2011-garlic/source/blender/editors/armature/armature_ops.c
    branches/soc-2011-garlic/source/blender/editors/armature/editarmature.c
    branches/soc-2011-garlic/source/blender/editors/armature/editarmature_sketch.c
    branches/soc-2011-garlic/source/blender/editors/armature/poseSlide.c
    branches/soc-2011-garlic/source/blender/editors/armature/poselib.c
    branches/soc-2011-garlic/source/blender/editors/armature/poseobject.c
    branches/soc-2011-garlic/source/blender/editors/curve/CMakeLists.txt
    branches/soc-2011-garlic/source/blender/editors/curve/SConscript
    branches/soc-2011-garlic/source/blender/editors/curve/editcurve.c
    branches/soc-2011-garlic/source/blender/editors/curve/editfont.c
    branches/soc-2011-garlic/source/blender/editors/gpencil/gpencil_paint.c
    branches/soc-2011-garlic/source/blender/editors/interface/interface.c
    branches/soc-2011-garlic/source/blender/editors/interface/interface_intern.h
    branches/soc-2011-garlic/source/blender/editors/interface/interface_layout.c
    branches/soc-2011-garlic/source/blender/editors/interface/interface_ops.c
    branches/soc-2011-garlic/source/blender/editors/interface/interface_panel.c
    branches/soc-2011-garlic/source/blender/editors/interface/interface_regions.c
    branches/soc-2011-garlic/source/blender/editors/interface/interface_widgets.c
    branches/soc-2011-garlic/source/blender/editors/interface/view2d_ops.c
    branches/soc-2011-garlic/source/blender/editors/mesh/CMakeLists.txt
    branches/soc-2011-garlic/source/blender/editors/mesh/SConscript
    branches/soc-2011-garlic/source/blender/editors/mesh/editmesh.c
    branches/soc-2011-garlic/source/blender/editors/mesh/editmesh_add.c
    branches/soc-2011-garlic/source/blender/editors/mesh/editmesh_loop.c
    branches/soc-2011-garlic/source/blender/editors/mesh/editmesh_mods.c
    branches/soc-2011-garlic/source/blender/editors/mesh/editmesh_tools.c
    branches/soc-2011-garlic/source/blender/editors/mesh/loopcut.c
    branches/soc-2011-garlic/source/blender/editors/mesh/mesh_data.c
    branches/soc-2011-garlic/source/blender/editors/mesh/mesh_ops.c
    branches/soc-2011-garlic/source/blender/editors/metaball/CMakeLists.txt
    branches/soc-2011-garlic/source/blender/editors/metaball/SConscript
    branches/soc-2011-garlic/source/blender/editors/metaball/mball_edit.c
    branches/soc-2011-garlic/source/blender/editors/object/CMakeLists.txt
    branches/soc-2011-garlic/source/blender/editors/object/SConscript
    branches/soc-2011-garlic/source/blender/editors/object/object_add.c
    branches/soc-2011-garlic/source/blender/editors/object/object_constraint.c
    branches/soc-2011-garlic/source/blender/editors/object/object_edit.c
    branches/soc-2011-garlic/source/blender/editors/object/object_group.c
    branches/soc-2011-garlic/source/blender/editors/object/object_lattice.c
    branches/soc-2011-garlic/source/blender/editors/object/object_modifier.c
    branches/soc-2011-garlic/source/blender/editors/object/object_ops.c
    branches/soc-2011-garlic/source/blender/editors/object/object_relations.c
    branches/soc-2011-garlic/source/blender/editors/object/object_select.c
    branches/soc-2011-garlic/source/blender/editors/object/object_shapekey.c
    branches/soc-2011-garlic/source/blender/editors/object/object_transform.c
    branches/soc-2011-garlic/source/blender/editors/object/object_vgroup.c
    branches/soc-2011-garlic/source/blender/editors/physics/CMakeLists.txt
    branches/soc-2011-garlic/source/blender/editors/physics/SConscript
    branches/soc-2011-garlic/source/blender/editors/physics/particle_edit.c
    branches/soc-2011-garlic/source/blender/editors/physics/particle_object.c
    branches/soc-2011-garlic/source/blender/editors/physics/physics_pointcache.c
    branches/soc-2011-garlic/source/blender/editors/render/SConscript
    branches/soc-2011-garlic/source/blender/editors/render/render_internal.c
    branches/soc-2011-garlic/source/blender/editors/render/render_opengl.c
    branches/soc-2011-garlic/source/blender/editors/render/render_shading.c
    branches/soc-2011-garlic/source/blender/editors/render/render_view.c
    branches/soc-2011-garlic/source/blender/editors/screen/screen_ops.c
    branches/soc-2011-garlic/source/blender/editors/screen/screendump.c
    branches/soc-2011-garlic/source/blender/editors/sculpt_paint/CMakeLists.txt
    branches/soc-2011-garlic/source/blender/editors/sculpt_paint/SConscript
    branches/soc-2011-garlic/source/blender/editors/sculpt_paint/paint_image.c
    branches/soc-2011-garlic/source/blender/editors/sculpt_paint/paint_ops.c
    branches/soc-2011-garlic/source/blender/editors/sculpt_paint/paint_utils.c
    branches/soc-2011-garlic/source/blender/editors/sculpt_paint/paint_vertex.c
    branches/soc-2011-garlic/source/blender/editors/sculpt_paint/sculpt.c
    branches/soc-2011-garlic/source/blender/editors/sound/CMakeLists.txt
    branches/soc-2011-garlic/source/blender/editors/sound/SConscript
    branches/soc-2011-garlic/source/blender/editors/sound/sound_ops.c
    branches/soc-2011-garlic/source/blender/editors/space_action/CMakeLists.txt
    branches/soc-2011-garlic/source/blender/editors/space_action/SConscript
    branches/soc-2011-garlic/source/blender/editors/space_action/action_edit.c
    branches/soc-2011-garlic/source/blender/editors/space_action/action_ops.c
    branches/soc-2011-garlic/source/blender/editors/space_action/action_select.c
    branches/soc-2011-garlic/source/blender/editors/space_buttons/buttons_header.c
    branches/soc-2011-garlic/source/blender/editors/space_buttons/buttons_ops.c
    branches/soc-2011-garlic/source/blender/editors/space_console/console_ops.c
    branches/soc-2011-garlic/source/blender/editors/space_file/file_ops.c
    branches/soc-2011-garlic/source/blender/editors/space_file/file_panels.c
    branches/soc-2011-garlic/source/blender/editors/space_graph/graph_buttons.c
    branches/soc-2011-garlic/source/blender/editors/space_graph/graph_edit.c
    branches/soc-2011-garlic/source/blender/editors/space_graph/graph_ops.c
    branches/soc-2011-garlic/source/blender/editors/space_graph/graph_select.c
    branches/soc-2011-garlic/source/blender/editors/space_image/image_buttons.c
    branches/soc-2011-garlic/source/blender/editors/space_image/image_ops.c
    branches/soc-2011-garlic/source/blender/editors/space_info/info_ops.c
    branches/soc-2011-garlic/source/blender/editors/space_info/info_report.c
    branches/soc-2011-garlic/source/blender/editors/space_info/space_info.c
    branches/soc-2011-garlic/source/blender/editors/space_logic/logic_buttons.c
    branches/soc-2011-garlic/source/blender/editors/space_nla/nla_buttons.c
    branches/soc-2011-garlic/source/blender/editors/space_nla/nla_channels.c
    branches/soc-2011-garlic/source/blender/editors/space_nla/nla_edit.c
    branches/soc-2011-garlic/source/blender/editors/space_nla/nla_select.c
    branches/soc-2011-garlic/source/blender/editors/space_node/node_buttons.c
    branches/soc-2011-garlic/source/blender/editors/space_node/node_edit.c
    branches/soc-2011-garlic/source/blender/editors/space_node/node_header.c
    branches/soc-2011-garlic/source/blender/editors/space_node/node_ops.c
    branches/soc-2011-garlic/source/blender/editors/space_node/node_select.c
    branches/soc-2011-garlic/source/blender/editors/space_node/node_state.c
    branches/soc-2011-garlic/source/blender/editors/space_outliner/CMakeLists.txt
    branches/soc-2011-garlic/source/blender/editors/space_outliner/SConscript
    branches/soc-2011-garlic/source/blender/editors/space_script/CMakeLists.txt
    branches/soc-2011-garlic/source/blender/editors/space_script/SConscript
    branches/soc-2011-garlic/source/blender/editors/space_script/script_edit.c
    branches/soc-2011-garlic/source/blender/editors/space_sequencer/CMakeLists.txt
    branches/soc-2011-garlic/source/blender/editors/space_sequencer/SConscript
    branches/soc-2011-garlic/source/blender/editors/space_sequencer/sequencer_add.c
    branches/soc-2011-garlic/source/blender/editors/space_sequencer/sequencer_buttons.c
    branches/soc-2011-garlic/source/blender/editors/space_sequencer/sequencer_edit.c
    branches/soc-2011-garlic/source/blender/editors/space_sequencer/sequencer_select.c
    branches/soc-2011-garlic/source/blender/editors/space_text/text_header.c
    branches/soc-2011-garlic/source/blender/editors/space_text/text_ops.c
    branches/soc-2011-garlic/source/blender/editors/space_time/CMakeLists.txt
    branches/soc-2011-garlic/source/blender/editors/space_time/SConscript
    branches/soc-2011-garlic/source/blender/editors/space_time/time_ops.c
    branches/soc-2011-garlic/source/blender/editors/space_view3d/view3d_buttons.c
    branches/soc-2011-garlic/source/blender/editors/space_view3d/view3d_edit.c
    branches/soc-2011-garlic/source/blender/editors/space_view3d/view3d_fly.c
    branches/soc-2011-garlic/source/blender/editors/space_view3d/view3d_header.c
    branches/soc-2011-garlic/source/blender/editors/space_view3d/view3d_select.c
    branches/soc-2011-garlic/source/blender/editors/space_view3d/view3d_toolbar.c
    branches/soc-2011-garlic/source/blender/editors/space_view3d/view3d_view.c
    branches/soc-2011-garlic/source/blender/editors/transform/transform.c
    branches/soc-2011-garlic/source/blender/editors/transform/transform_ops.c
    branches/soc-2011-garlic/source/blender/editors/util/CMakeLists.txt
    branches/soc-2011-garlic/source/blender/editors/util/SConscript
    branches/soc-2011-garlic/source/blender/editors/util/undo.c
    branches/soc-2011-garlic/source/blender/editors/uvedit/CMakeLists.txt
    branches/soc-2011-garlic/source/blender/editors/uvedit/SConscript
    branches/soc-2011-garlic/source/blender/editors/uvedit/uvedit_ops.c
    branches/soc-2011-garlic/source/blender/editors/uvedit/uvedit_unwrap_ops.c
    branches/soc-2011-garlic/source/blender/imbuf/intern/IMB_indexer.h
    branches/soc-2011-garlic/source/blender/imbuf/intern/indexer.c
    branches/soc-2011-garlic/source/blender/imbuf/intern/indexer_dv.c
    branches/soc-2011-garlic/source/blender/makesdna/DNA_userdef_types.h
    branches/soc-2011-garlic/source/blender/makesrna/RNA_access.h
    branches/soc-2011-garlic/source/blender/makesrna/SConscript
    branches/soc-2011-garlic/source/blender/makesrna/intern/CMakeLists.txt
    branches/soc-2011-garlic/source/blender/makesrna/intern/SConscript
    branches/soc-2011-garlic/source/blender/makesrna/intern/rna_ID.c
    branches/soc-2011-garlic/source/blender/makesrna/intern/rna_access.c
    branches/soc-2011-garlic/source/blender/makesrna/intern/rna_action.c
    branches/soc-2011-garlic/source/blender/makesrna/intern/rna_color.c
    branches/soc-2011-garlic/source/blender/makesrna/intern/rna_constraint.c
    branches/soc-2011-garlic/source/blender/makesrna/intern/rna_curve.c
    branches/soc-2011-garlic/source/blender/makesrna/intern/rna_define.c
    branches/soc-2011-garlic/source/blender/makesrna/intern/rna_fcurve.c
    branches/soc-2011-garlic/source/blender/makesrna/intern/rna_material.c
    branches/soc-2011-garlic/source/blender/makesrna/intern/rna_mesh.c
    branches/soc-2011-garlic/source/blender/makesrna/intern/rna_modifier.c
    branches/soc-2011-garlic/source/blender/makesrna/intern/rna_object.c
    branches/soc-2011-garlic/source/blender/makesrna/intern/rna_object_force.c
    branches/soc-2011-garlic/source/blender/makesrna/intern/rna_particle.c
    branches/soc-2011-garlic/source/blender/makesrna/intern/rna_render.c
    branches/soc-2011-garlic/source/blender/makesrna/intern/rna_scene.c
    branches/soc-2011-garlic/source/blender/makesrna/intern/rna_space.c
    branches/soc-2011-garlic/source/blender/makesrna/intern/rna_speaker.c
    branches/soc-2011-garlic/source/blender/makesrna/intern/rna_texture.c
    branches/soc-2011-garlic/source/blender/makesrna/intern/rna_texture_api.c
    branches/soc-2011-garlic/source/blender/makesrna/intern/rna_userdef.c
    branches/soc-2011-garlic/source/blender/makesrna/intern/rna_wm.c
    branches/soc-2011-garlic/source/blender/makesrna/intern/rna_world.c
    branches/soc-2011-garlic/source/blender/python/SConscript
    branches/soc-2011-garlic/source/blender/python/generic/CMakeLists.txt
    branches/soc-2011-garlic/source/blender/python/generic/blf_py_api.c
    branches/soc-2011-garlic/source/blender/windowmanager/WM_api.h
    branches/soc-2011-garlic/source/blender/windowmanager/intern/wm_files.c
    branches/soc-2011-garlic/source/blender/windowmanager/intern/wm_init_exit.c
    branches/soc-2011-garlic/source/blender/windowmanager/intern/wm_operators.c
    branches/soc-2011-garlic/source/creator/CMakeLists.txt

Added Paths:
-----------
    branches/soc-2011-garlic/po/messages.txt

Property Changed:
----------------
    branches/soc-2011-garlic/po/POTFILES.in
    branches/soc-2011-garlic/po/blender.pot
    branches/soc-2011-garlic/po/zh_TW.po
    branches/soc-2011-garlic/source/blender/blenkernel/intern/speaker.c
    branches/soc-2011-garlic/source/blender/imbuf/intern/IMB_indexer.h
    branches/soc-2011-garlic/source/blender/imbuf/intern/indexer.c
    branches/soc-2011-garlic/source/blender/imbuf/intern/indexer_dv.c
    branches/soc-2011-garlic/source/blender/makesrna/intern/rna_speaker.c
    branches/soc-2011-garlic/source/blender/makesrna/intern/rna_texture_api.c


Property changes on: branches/soc-2011-garlic/po/POTFILES.in
___________________________________________________________________
Deleted: svn:executable
   - *


Property changes on: branches/soc-2011-garlic/po/blender.pot
___________________________________________________________________
Deleted: svn:executable
   - *

Added: branches/soc-2011-garlic/po/messages.txt
===================================================================
--- branches/soc-2011-garlic/po/messages.txt	                        (rev 0)
+++ branches/soc-2011-garlic/po/messages.txt	2011-09-15 13:20:18 UTC (rev 40230)
@@ -0,0 +1,5337 @@
+The edited object
+Texture datablocks.
+Bezier curve point with two handles defining a Keyframe on an F-Curve
+Media Stop
+System & OpenGL
+Strips Selected
+Active Keying Set
+Action Blending
+Bone is able to be selected
+Display files as short list
+Build 75% proxy resolution
+Right Mouse
+Restrict the number of animation updates to the animation FPS. This is better for performance, but can cause issues with smooth playback.
+Particle system can be edited in particle mode
+UV editor data for the image editor space
+Editing hair
+Zoom using opposite direction
+Graph Editor space data
+Tiles
+Align newly added objects to the world coordinates
+Index of custom color set
+Sample point for F-Curve
+AVI Raw
+Linear Drag
+Color to display the marker with
+Channels Region
+Lower bound of envelope at this control-point
+Fluid
+Regions this area is subdivided in
+Double Click
+Disable simulation of linear motion along the X axis
+Sequencer OpenGL
+Child particles generated by the particle system
+Point in a shape key for curves
+Lock to Bone
+Sun Size
+Set modifier expanded in the user interface
+Multiple Scattering
+ID Name
+Square (SV + H)
+Animation Visualisation
+Keyed States
+Fixed size vertex indices array
+Normal Size
+Track To
+Collection of keymaps
+Channel Group
+Number of vertical pixels in the screen
+Fluid Simulation
+Zooms in and out like scaling the view, mouse movements relative to center
+Lattice Edit
+Snap onto its self (editmode)
+Only render what's in front of the solid z values
+True when multiple enums 
+Backdrop Zoom
+Causes mesh data to be duplicated with the object
+Automatic
+Small Caps
+UV Project
+UV Sync Selection
+Cloth dynamics for hair
+Sensitivity
+Amount of rotation around side vector
+Specify how many frames the Map Old will last
+Start Still
+All Object Origins
+Unique datablock ID name
+Active pose marker for this Action
+Draw Channels
+Control how much mist density decreases with height
+Tool Settings
+Text Line
+Bone Constraints
+Toggle whether the material is linked to object data or the object block
+Falloff power for transmissivity filter effect (1.0 is linear)
+Only use case sensitive matches of search string
+Screw
+Region Text
+Representation of alpha information in the RGBA pixels
+Smoothens emitted smoke to avoid blockiness.
+Edges receive a drag force from surrounding media
+Sequence Transform
+Over Drop
+Domain Settings
+New F-Curve Colors - XYZ to RGB
+Space that owner is evaluated in
+Frame Step
+Enumeration
+Value of the item
+Parent of this pose bone
+B-Bone Z size
+Up Arrow
+For reactor systems, the object that has the target particle system (empty if same object)
+Shift key pressed
+Auto Refresh
+Bone Color Sets
+Positive values make strands rounder, negative makes strands spiky
+Collection of images
+Show actuators of active object
+interpolate a global timestamp using the record date and time written by recording device
+Main Lattices
+Variable from some source/target for driver relationship
+Z Location
+Auto-Clamped handle selected color
+Fixed Alternate
+Game engine sensor to detect events
+Include the frame number in image metadata
+Bone does not deform any geometry
+UV Textures
+Game
+Minimal Spring length * Ball Size
+16384
+Line in which the marker is located
+Edge Threshold
+-Z
+Set audio channels to mono
+Jump Speed
+HuffYUV
+Active Bone
+Sets the audio channel count
+Rotation Damping
+Max Air Acceleration
+Snap center onto target
+Spring Damping
+Compact with Milliseconds
+Maintain speed, flight level or wander
+Interpolation type
+Type Info
+SIMD QBVH
+active
+Armature
+Match case
+16 Bit
+XZY Rotation Order. Prone to Gimbal Lock
+Auto handle selected color
+Theme File Browser
+Bake the normals in object space
+Enable color range used for weight visualization in weight painting mode
+Vorticity
+Open window
+Shows sensors for this object in the user interface
+Radius of head of bone (for Envelope deform only)
+Plain diffuse energy (white.)
+Elasticity
+Cache Step
+View Sliders
+Hair
+Filter Movies
+Material datablock used by this material slot
+Smooth Emitter
+Catalan (Català)
+Proxy parameters for a sequence strip
+Home
+Action Mouse
+Show Debug Info
+Loads a saved environment map image from disk
+is_baking
+Falloff power (real gravitational falloff = 2)
+Wire
+Group
+On Land
+Maximum distance of reflected rays. Reflections further than this range fade to sky color or material color
+Group Objects
+Time Step
+Keep UI
+Bone inherits rotation or scale from parent bone
+Show Selected Object
+Time of key over the simulation
+Header Text
+Health
+Similar to SMPTE (Compact), except that instead of frames, milliseconds are shown instead
+Blender Original
+Deliver texture UV pass
+Index number of the vertex
+Stepped Interpolation
+Adds diagonal springs on 4-gons
+Shear
+Tent
+Strength of force field
+Space that target is evaluated in
+F11
+Star
+Line Input
+Lighten
+In Range
+Use Blender units for widths instead of pixels
+F17
+Node Socket
+Quad-Buffer
+Sets scaling for the texture's X, Y and Z sizes
+Motion Path settings for animation visualisation
+Make hairs longer
+Set audio sample format to 32 bit float
+Amount of anti-aliasing samples per pixel
+type
+Use optimized Bullet DBVT tree for view frustum and occlusion culling
+Make this surface a closed loop in the V direction
+Alpha Over
+Media player for video & png/jpeg/sgi image sequences
+Second input for the effect strip
+Space Logic Editor
+Snap during transform
+Edit Methods
+Left Handle
+B-Bone Ease Out
+Cyclic Offset
+Subtype
+Object Base
+Vertex Group Clump
+Letterbox
+Set audio channels to 7.1 surround sound
+V
+Quaternion (WXYZ)
+Image File
+Preset configs for external animation players
+Maximum Value
+Make this nurbs curve or surface act like a Bezier spline in the U direction (Order U must be 3 or 4, Cyclic U must be disabled)
+Factor Repulsion
+uk_UA
+3x3 bone matrix
+Vertex Weight
+Display Material
+Show UV editing related properties
+GLSL Shaders
+Text
+Deliver shadow pass
+From node
+Keyframes
+Main Brushes
+Deliver diffuse pass
+Header
+Level detector, trigger controllers of new states(only applicable upon logic state transition)
+Collision Compound
+Increment
+Trackball
+Active Strip
+Initial Rest Length
+User defined layer of string text values
+Edge Tag Mode
+Active camera used in this view (when unlocked from the scene's active camera)
+Deliver emission pass
+Face Selected
+Xor
+Voronoi Crackle
+Align the transformation axes to the window
+Line sample
+Default Goal (vertex target position) value, when no Vertex Group used
+Type of raytrace accelerator structure
+Area Spaces
+Project individual elements on the surface of other objects
+Use the angle between two bones
+Aero
+Zmask
+Set audio sample format to 32 bit signed integer
+Scene render size
+Multiplier to convert blender units to physical distance
+Free Image Textures
+High quality interpolation, but slower
+DPI
+Fill in Z values for solid faces in invisible layers, for masking
+Active Action for this datablock
+Use turntable style rotation in the viewport
+Format
+Use a Catmull-Rom filter for anti-aliasing
+Link material to object or the object's data
+Type of participation in the fluid simulation
+face normal
+Enable
+Final 4x4 matrix after constraints and drivers are applied (object space)
+Diameter of widget, in 10 pixel units
+ID Property
+Radius of tail of bone (for Envelope deform only)
+Custom Shape Transform
+Action FCurves
+Envelope Deform Weight
+A
+Renders star shaped lines over halo
+Fade-out Color
+Syntax Built-in
+Panel Style
+Material datablocks.
+Bounding Box Center
+Middle Mouse
+Framerate base
+Touch
+Vortex
+Manipulator Size
+F-Curve Colors - XYZ to RGB
+Invert Output
+Calculate heights against unsubdivided low resolution mesh
+Shrinkwrap
+Window Deactivate
+Y position of the sequence strip
+The frame on which this sketch appears
+Snap to increments of grid
+Rest Length
+All
+Serbian (Српском језику)
+Sample Method
+Text Anti-aliasing
+Luma Waveform
+Sequencer Preview Shading
+Lower field first
+File Name
+Show timing in seconds not frames
+Display the object as wire edges
+Billboard with Z-axis constraint
+Curves
+Displays clock frequency of fullscreen display
+X Rotation
+Sphere
+Select UVs that share mesh vertex, irrespective if they are in the same location
+8 bit RAW
+0.5 means no distance at all, 1.0 is maximum distance
+Sequencer
+Max Ghost Range
+An object instance in a scene
+User Interface
+Alt
+Vertex group name
+Number of cone samples averaged for blurry refractions
+Animated Selected
+Blue
+Damping of the spring force, when inside the physics distance area
+Plugin Strip
+Hide
+Pose Matrix
+Guide-free time from particle life's end
+Frame is being edited (painted on)
+Large Cursors
+Limit Rotation
+Draw only faces with the currently displayed image assigned
+Record Run
+Pixel width over which the reconstruction filter combines samples
+Global Scene
+Source List Text Highlight
+User-editable keyframes
+Scaling factor for action
+Inner
+Active Constraint
+Side-by-side
+Right Arrow
+Causes the 1 to 0 keys to act as the numpad (useful for laptops)
+A collection of pose channels, including settings for animating bones
+Lennard-Jones
+Use a maximum radial distance for the field to work
+Location of tail end of the bone relative to armature
+Edit All
+estimate matrix .. split to COM , ROT ,SCALE 
+Use Coordinates
+Theme User Preferences
+Show line numbers next to the text
+Minimum speed in air (relative to maximum speed)
+Display keymap datablocks
+,
+Display Summary
+Channel Driver (only set for Driver F-Curves)
+Item
+In/Out Node
+Frame that modifier's influence ends (if Restrict Frame Range is in use)
+Premultiplied
+Samples below this threshold will be considered fully shadowed/unshadowed and skipped (for Raytrace Adaptive QMC)
+Number of frames cached
+Description of the Struct's purpose
+Tilt in 3D View
+Show Debug
+Offsets image horizontally from the world origin
+region_data

@@ Diff output truncated at 10240 characters. @@



More information about the Bf-blender-cvs mailing list