From 207dca55f46e8c9e6948adf0d45f834dced9a274 Mon Sep 17 00:00:00 2001 From: Bastien Montagne Date: Fri, 15 Feb 2013 18:19:20 +0000 Subject: =?UTF-8?q?And=20more=20UI=20messages=20issues=20fixing...=20Thank?= =?UTF-8?q?s=20again=20to=20Gabriel=20Gazz=C3=A1n=20and=20Leon=20Cheung!?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- release/scripts/modules/bl_i18n_utils/settings.py | 5 ++++- release/scripts/modules/rna_prop_ui.py | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) (limited to 'release') diff --git a/release/scripts/modules/bl_i18n_utils/settings.py b/release/scripts/modules/bl_i18n_utils/settings.py index 432f25f234b..01bc925cedd 100644 --- a/release/scripts/modules/bl_i18n_utils/settings.py +++ b/release/scripts/modules/bl_i18n_utils/settings.py @@ -368,7 +368,10 @@ FILE_NAME_POT = os.path.join(TRUNK_PO_DIR, ".".join((DOMAIN, "pot"))) # Other py files that should be searched for ui strings, relative to SOURCE_DIR. # Needed for Cycles, currently... -CUSTOM_PY_UI_FILES = [os.path.join("intern", "cycles", "blender", "addon", "ui.py"),] +CUSTOM_PY_UI_FILES = [ + os.path.join("intern", "cycles", "blender", "addon", "ui.py"), + os.path.join("release", "scripts", "modules", "rna_prop_ui.py"), +] # A cache storing validated msgids, to avoid re-spellchecking them. diff --git a/release/scripts/modules/rna_prop_ui.py b/release/scripts/modules/rna_prop_ui.py index 5e8bccb815e..dd0cd632413 100644 --- a/release/scripts/modules/rna_prop_ui.py +++ b/release/scripts/modules/rna_prop_ui.py @@ -148,7 +148,7 @@ def draw(layout, context, context_member, property_type, use_edit=True): if use_edit: row = split.row(align=True) - props = row.operator("wm.properties_edit", text="edit") + props = row.operator("wm.properties_edit", text="Edit") assign_props(props, val_draw, key) props = row.operator("wm.properties_remove", text="", icon='ZOOMOUT') -- cgit v1.2.3