diff options
author | Zach Copley <zach@status.net> | 2009-11-24 18:47:56 +0000 |
---|---|---|
committer | Zach Copley <zach@status.net> | 2009-11-24 18:47:56 +0000 |
commit | 2eae258319d5621065f9491ba4d81814c0f2b1fd (patch) | |
tree | 71305b1bee0e9b557f078f0c11ecbad3b9ee2059 /scripts/update_translations.php | |
parent | 4bace8f1a5df797aead91ce802d4538e1dfed9ec (diff) | |
parent | 2da531d7d65044f3093eafd72b73a08e1cf67fd5 (diff) |
Merge branch '0.9.x' of git@gitorious.org:statusnet/mainline into 0.9.x
Diffstat (limited to 'scripts/update_translations.php')
-rwxr-xr-x | scripts/update_translations.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/update_translations.php b/scripts/update_translations.php index 580c472ee..73f2a3a7e 100755 --- a/scripts/update_translations.php +++ b/scripts/update_translations.php @@ -109,7 +109,7 @@ foreach ($languages as $language) { file_put_contents($pofile, $new_file); // --backup=off is workaround for Mac OS X fail system(sprintf('msgmerge -U --backup=off %s %s', $pofile, $statusnet_pot)); - system(sprintf('msgfmt -f -o %s %s', $mofile, $pofile)); + system(sprintf('msgfmt -o %s %s', $mofile, $pofile)); } else { echo "Unchanged - ".$code."\n"; } |