summaryrefslogtreecommitdiff
path: root/scripts/update_translations.php
diff options
context:
space:
mode:
authorSiebrand Mazeland <s.mazeland@xs4all.nl>2009-11-21 18:40:34 +0100
committerSiebrand Mazeland <s.mazeland@xs4all.nl>2009-11-21 18:40:34 +0100
commit99604267d055045bf066ad0872d8ab270ad4dfdd (patch)
treea6ddeb02121ce7900853421ffeb10589e6bfadac /scripts/update_translations.php
parentbd063b8d5af3c0bdb07f8a47fc15ab52e215d0cf (diff)
Do not use fuzzy in the compiled messages files.
Diffstat (limited to 'scripts/update_translations.php')
-rwxr-xr-xscripts/update_translations.php2
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";
}