Skip to content

Commit

Permalink
Do not create backup files(*.po~) of po files
Browse files Browse the repository at this point in the history
  • Loading branch information
pstorz committed Jun 10, 2016
1 parent 1e5b142 commit a4790e9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions module/Application/language/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -372,11 +372,11 @@ update-pot:

update-po: $(PO)
@(echo 'Updating $(PO) file ...';)
@(msgmerge -U $(PO) webui.pot);
@(msgmerge --backup=none -U $(PO) webui.pot);

update-all: webui.pot
@(echo 'Updating all *.po files ...';)
@(for i in de_DE en_EN fr_FR ru_RU; do msgmerge -U $$i.po $< && touch $$i.po; done;)
@(for i in de_DE en_EN fr_FR ru_RU; do msgmerge --backup=none -U $$i.po $< && touch $$i.po; done;)

msgfmt-all: webui.pot
@(echo 'Generating all *.mo files ...';)
Expand Down

0 comments on commit a4790e9

Please sign in to comment.