mirror of
git://git.proxmox.com/git/extjs.git
synced 2026-08-12 09:00:17 -04:00
The locale-lo.js file was obtained via:
uglifyjs locale-lo-debug.js > locale-lo.js
Contributed-by: Bone NI <bounkirdni@gmail.com>
Signed-off-by: Maximiliano Sandoval <m.sandoval@proxmox.com>
Link: https://lore.proxmox.com/20260724074820.90232-1-m.sandoval@proxmox.com
19 lines
608 B
Makefile
Executable File
19 lines
608 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 ga gr he hr hu id it ja ka ko lo 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
|