[ACCEPTED]-Is it possible to combine two .po translation files together?-msgfmt
Accepted answer
What you are looking for is the msgcat
util, it 3 concatenates and merges the specified PO 2 dictionaries.
This is part of gettext utils
, for more 1 information please consult gettext manual page on msgcat.
you can use poedit. To merge your current 2 po-file, you must to open it and click:
- Catalog > Update from POT-file.
- Set the filter to all files and select your second.po file
Poedit 1 will show you new & obsolete strings
I use msgmerge
:
msgmerge [old_file.po] [new_file.po] > output.po
It works for me, but be aware that 3 it does a silly merge, it is, it discards 2 the entries in the old_file (new file items 1 overwrites old one items).
Source:
stackoverflow.com
More Related questions
Cookie Warning
We use cookies to improve the performance of the site. By staying on our site, you agree to the terms of use of cookies.