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>2012-07-07 18:28:49 +0400
committerBastien Montagne <montagne29@wanadoo.fr>2012-07-07 18:28:49 +0400
commit3dacc164e4fe7d31a926112f2aa11852c20eadc6 (patch)
tree8d9597329b788373083d7fb006682f569b029f71 /release/scripts/modules/bl_i18n_utils/update_po.py
parent30037194cd2ff29f3594518ef2ee0a0809f7eba2 (diff)
Update/fixes (was escaping more chars than needed!)
Diffstat (limited to 'release/scripts/modules/bl_i18n_utils/update_po.py')
-rwxr-xr-xrelease/scripts/modules/bl_i18n_utils/update_po.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/release/scripts/modules/bl_i18n_utils/update_po.py b/release/scripts/modules/bl_i18n_utils/update_po.py
index 042b46c03f2..c4e980aad2a 100755
--- a/release/scripts/modules/bl_i18n_utils/update_po.py
+++ b/release/scripts/modules/bl_i18n_utils/update_po.py
@@ -71,6 +71,8 @@ def process_po(po, lang):
# update po file
cmd = (GETTEXT_MSGMERGE_EXECUTABLE,
"--update",
+ "-w", "1", # XXX Ugly hack to prevent msgmerge merging
+ # short source comments together!
"--no-wrap",
"--backup=none",
"--lang={}".format(lang),