1
0
mirror of git://git.proxmox.com/git/extjs.git synced 2026-06-27 22:24:55 -04:00
extjs/debian/rules
Thomas Lamprecht 4f893504d8 Revert "add Greek translations"
This reverts commit dea745fcf9. It was
not needed, as per [1] the code el_GR for Greek translations was valid
and it is supported by extjs.

[1] https://www.gnu.org/software/gettext/manual/gettext.html#Locale-Names

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
2026-06-21 17:05:33 +02:00

19 lines
602 B
Makefile
Executable File

#!/usr/bin/make -f
# See debhelper(7) (uncomment to enable)
# output every command that modifies files on the build system.
#DH_VERBOSE = 1
%:
dh $@
override_dh_auto_test:
dh_auto_test
# check if all languages are still shipped, as e.g. Georgian (ka) is manually added by us
set -e; for l in \
af bg ca cs da de el_GR en en_AU en_GB es et fa fi fr fr_CA gr he hr hu id it ja ka ko lt \
lv mk nl no_NB no_NN pl pt pt_BR pt_PT ro ru sk sl sr sr_RS sv_SE th tr ukr vn zh_CN zh_TW; do \
echo "checking for '$$l' locale"; \
test -e "extjs/build/classic/locale/locale-$$l.js"; \
done