po plugin: do not allow msgmerge to create backup files

Signed-off-by: intrigeri <intrigeri@boum.org>
master
intrigeri 2008-10-18 19:18:22 +02:00
parent a021d97d30
commit a0deb3038c
2 changed files with 1 additions and 2 deletions

View File

@ -132,7 +132,7 @@ sub refreshpofiles ($@) { #{{{
foreach my $pofile (@pofiles) {
if (-e $pofile) {
my $cmd = "msgmerge -U $pofile $potfile";
my $cmd = "msgmerge -U --backup=none $pofile $potfile";
system ($cmd) == 0
or error("[po/refreshpofiles:$pofile] failed to update");
}

View File

@ -214,7 +214,6 @@ gettext/po4a rough corners
- fix the "duplicate message definition" error when updating a PO
file; do PO files need normalizing? (may be a side effect of
previous bug)
- should `*.po~` backup files really be saved?
Translation quality assurance
-----------------------------