From 0eda51f2eabe24016efdc8f07825f1ba667cac33 Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Thu, 15 Sep 2011 13:20:18 +0000 Subject: 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. --- .../scripts/startup/bl_ui/properties_physics_softbody.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'release/scripts/startup/bl_ui/properties_physics_softbody.py') diff --git a/release/scripts/startup/bl_ui/properties_physics_softbody.py b/release/scripts/startup/bl_ui/properties_physics_softbody.py index 44778ffee5f..5449e54c6e6 100644 --- a/release/scripts/startup/bl_ui/properties_physics_softbody.py +++ b/release/scripts/startup/bl_ui/properties_physics_softbody.py @@ -46,7 +46,7 @@ class PhysicButtonsPanel(): class PHYSICS_PT_softbody(PhysicButtonsPanel, Panel): - bl_label = _("Soft Body") + bl_label = "Soft Body" def draw(self, context): layout = self.layout @@ -73,7 +73,7 @@ class PHYSICS_PT_softbody(PhysicButtonsPanel, Panel): class PHYSICS_PT_softbody_cache(PhysicButtonsPanel, Panel): - bl_label = _("Soft Body Cache") + bl_label = "Soft Body Cache" bl_options = {'DEFAULT_CLOSED'} @classmethod @@ -86,7 +86,7 @@ class PHYSICS_PT_softbody_cache(PhysicButtonsPanel, Panel): class PHYSICS_PT_softbody_goal(PhysicButtonsPanel, Panel): - bl_label = _("Soft Body Goal") + bl_label = "Soft Body Goal" bl_options = {'DEFAULT_CLOSED'} @classmethod @@ -129,7 +129,7 @@ class PHYSICS_PT_softbody_goal(PhysicButtonsPanel, Panel): class PHYSICS_PT_softbody_edge(PhysicButtonsPanel, Panel): - bl_label = _("Soft Body Edges") + bl_label = "Soft Body Edges" bl_options = {'DEFAULT_CLOSED'} @classmethod @@ -182,7 +182,7 @@ class PHYSICS_PT_softbody_edge(PhysicButtonsPanel, Panel): class PHYSICS_PT_softbody_collision(PhysicButtonsPanel, Panel): - bl_label = _("Soft Body Self Collision") + bl_label = "Soft Body Self Collision" bl_options = {'DEFAULT_CLOSED'} @classmethod @@ -214,7 +214,7 @@ class PHYSICS_PT_softbody_collision(PhysicButtonsPanel, Panel): class PHYSICS_PT_softbody_solver(PhysicButtonsPanel, Panel): - bl_label = _("Soft Body Solver") + bl_label = "Soft Body Solver" bl_options = {'DEFAULT_CLOSED'} @classmethod @@ -250,7 +250,7 @@ class PHYSICS_PT_softbody_solver(PhysicButtonsPanel, Panel): class PHYSICS_PT_softbody_field_weights(PhysicButtonsPanel, Panel): - bl_label = _("Soft Body Field Weights") + bl_label = "Soft Body Field Weights" bl_options = {'DEFAULT_CLOSED'} @classmethod -- cgit v1.2.3