vexim / vexim2

Virtual Exim 2
Other
70 stars 47 forks source link

Updated translations and templates after #194 #195

Closed rimas-kudelis closed 8 years ago

rimas-kudelis commented 8 years ago

This updates translation templates and translations to contain strings added in #194.

rimas-kudelis commented 8 years ago

For the reference, here's how to generate these files:

.../vexim$ xgettext --from-code=utf-8 -o locale/template.pot --package-name='Virtual Exim' --package-version='2.3' -F `find . -name '*.php'`
.../vexim$ cd locale/
.../vexim/locale$ for i in `find . -name *.po`; do msgmerge -U $i template.pot; done
.../vexim/locale$ for i in */; do msgfmt $i/LC_MESSAGES/*.po -o $i/LC_MESSAGES/messages.mo; done
Udera commented 8 years ago

:+1: