aboutsummaryrefslogtreecommitdiff
path: root/po/hi/minetest.po
Commit message (Collapse)AuthorAge
* Update translation filesupdatepo.sh2021-06-16
|
* Update translation filesupdatepo.sh2021-02-23
|
* Update translation filesupdatepo.sh2021-01-30
|
* Translated using Weblate (Hindi)Eyekay492021-01-30
| | | | Currently translated at 34.5% (467 of 1350 strings)
* Translated using Weblate (Hindi)Agastya2020-07-08
| | | | Currently translated at 33.1% (448 of 1350 strings)
* Update translation filesupdatepo.sh2020-06-13
|
* Translated using Weblate (Hindi)Eyekay492020-06-13
| | | | Currently translated at 6.5% (85 of 1288 strings)
* Added translation using Weblate (Hindi)sfan52020-06-13
are the only subdirs we expect to # find in po/ anyway. If you put anything else there, you need to suffer # the consequences of your actions, so we don't do sanity checks langs="" for lang in * ; do if test ! -d $lang; then continue fi langs="$langs $lang" done # go back cd .. # First thing first, update the .pot template. We place it in the po/ # directory at the top level. You a recent enough xgettext that supports # --package-name potfile=po/minetest.pot xgettext --package-name=minetest -kN_ -kwgettext -F -n -o $potfile src/*.cpp src/*.h # Now iterate on all languages and create the po file if missing, or update it # if it exists already for lang in $langs ; do # note the missing quotes around $langs pofile=po/$lang/minetest.po if test -e $pofile; then echo "[$lang]: updating strings" msgmerge -F -U $pofile $potfile else # This will ask for the translator identity echo "[$lang]: NEW strings" msginit -l $lang -o $pofile -i $potfile fi done