mirror of
https://github.com/ntop/ntopng.git
synced 2026-05-20 17:29:13 +00:00
20 lines
446 B
Bash
Executable file
20 lines
446 B
Bash
Executable file
#!/bin/sh
|
|
|
|
LUA_INTERPR="lua5.3"
|
|
|
|
if which ${LUA_INTERPR} 2>&1 >/dev/null; then
|
|
if hash ${LUA_INTERPR} 2>/dev/null; then
|
|
# Sort locales
|
|
for fname in `ls scripts/locales`; do
|
|
full_path=scripts/locales/${fname}
|
|
|
|
if ! git diff --staged --quiet $full_path; then
|
|
locale=${fname%%.lua}
|
|
tools/localization/localize.sh sort $locale
|
|
git add $full_path
|
|
fi
|
|
done
|
|
else
|
|
echo "$0: ${LUA_INTERPR} could not be found"
|
|
fi
|
|
fi
|