Translated using Weblate (Czech)
[phpmyadmin.git] / scripts / update-po
bloba5dcf6be2d11c68cf2041ec2533009eaf3cecb04
1 #!/bin/sh
2 # vim: expandtab sw=4 ts=4 sts=4:
3 export LC_ALL=C
5 # Do not run as CGI
6 if [ -n "$GATEWAY_INTERFACE" ] ; then
7 echo 'Can not invoke as CGI!'
8 exit 1
9 fi
11 # Exit on failure
12 set -e
14 # Generate Twig template cache in clean dir
15 rm -rf twig-templates/
16 php ./scripts/generate-twig-cache
18 # Update pot (template), ensure that advisor is at the end
19 LOCS=`ls po/*.po | sed 's@.*/\(.*\)\.po@\1@'`
21 find . -name '*.php' -not -path './test/*' -not -path './po/*' -not -path './tmp/*' -not -path './release/*' -not -path './node_modules/*' -not -path './vendor/*' > twig-templates/filesList
23 php ./scripts/match-twig-cache
24 cat ./twig-templates/filesList | sort --dictionary-order --ignore-case --output ./twig-templates/filesList
25 php ./scripts/match-twig-cache --reverse
27 xgettext \
28 -d phpmyadmin \
29 --msgid-bugs-address=translators@phpmyadmin.net \
30 -o po/phpmyadmin.pot \
31 --language=PHP \
32 --add-comments=l10n \
33 --add-location \
34 --debug \
35 --from-code=utf-8 \
36 --keyword=__ --keyword=_gettext --keyword=_pgettext:1c,2 --keyword=_ngettext:1,2 \
37 --copyright-holder="phpMyAdmin devel team" \
38 `cat ./twig-templates/filesList`
40 # Fixup filenames for Twig templates
41 php scripts/fix-po-twig
43 # Remote twig templates
44 rm -rf twig-templates/
46 # Generate PHP code for advisor rules
47 php ./scripts/advisor2po >> po/phpmyadmin.pot
49 ver=`sed -n "/PMA_VERSION', '/ s/.*PMA_VERSION', '\(.*\)'.*/\1/p" libraries/classes/Config.php`
51 sed -i.~ '
52 s/SOME DESCRIPTIVE TITLE/phpMyAdmin translation/;
53 s/PACKAGE/phpMyAdmin/;
54 s/(C) YEAR/(C) 2003 - '`date +%Y`'/;
55 s/VERSION/'$ver'/;
56 ' po/phpmyadmin.pot
58 # Update po files (translations)
59 for loc in $LOCS ; do
60 sed -i.~ '
61 s/SOME DESCRIPTIVE TITLE/phpMyAdmin translation/;
62 s/PACKAGE/phpMyAdmin/;
63 s/(C) YEAR/(C) 2003 - '`date +%Y`'/;
64 s/VERSION/'$ver'/;
65 s/Project-Id-Version: phpMyAdmin .*/Project-Id-Version: phpMyAdmin '$ver'\\n"/;
66 ' po/$loc.po
67 msgmerge --previous -U po/$loc.po po/phpmyadmin.pot
68 done
70 # Commit changes
71 git add po/*.po po/phpmyadmin.pot
72 git commit -s -m 'Update po files
74 [CI skip]'