Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Montagne <montagne29@wanadoo.fr>2013-01-13 18:36:50 +0400
committerBastien Montagne <montagne29@wanadoo.fr>2013-01-13 18:36:50 +0400
commitcdb5e557b03cbe2e29a48fca3bb4bbd1faa66052 (patch)
tree9983b42bfe96661b811987a6d7f732f69c90d475 /release
parent587b91be4ad3234d540d363908c628e35355734a (diff)
Grumph, going quicker than the music! :P
Diffstat (limited to 'release')
-rw-r--r--release/scripts/modules/bl_i18n_utils/bl_process_msg.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/release/scripts/modules/bl_i18n_utils/bl_process_msg.py b/release/scripts/modules/bl_i18n_utils/bl_process_msg.py
index 531ad2faf50..5d2f90f0da7 100644
--- a/release/scripts/modules/bl_i18n_utils/bl_process_msg.py
+++ b/release/scripts/modules/bl_i18n_utils/bl_process_msg.py
@@ -397,8 +397,11 @@ def dump_py_messages_from_files(messages, check_ctxt, files):
eval_str = ast.literal_eval(node)
if eval_str:
# Parse optional context included in string!
- if bpy.app.i18n.context_sep in eval_str:
- key = eval_str.split(bpy.app.i18n.context_sep, 1)
+ # XXX Not yet!
+ #if bpy.app.i18n.context_sep in eval_str:
+ #key = eval_str.split(bpy.app.i18n.context_sep, 1)
+ if 0:
+ pass
else:
key = (CONTEXT_DEFAULT, eval_str)
msgsrc = "{}:{}".format(fp_rel, node.lineno)