diff options
Diffstat (limited to 'resources/locale/update-po.sh')
-rwxr-xr-x | resources/locale/update-po.sh | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/resources/locale/update-po.sh b/resources/locale/update-po.sh new file mode 100755 index 0000000..15c15f5 --- /dev/null +++ b/resources/locale/update-po.sh @@ -0,0 +1,12 @@ +#!/bin/bash + +echo "Insert the locale which you want to update:"; +read locale; + +if [ "$locale" == "" ] +then + echo "No locale inserted! Aborting..."; + exit 1 +fi + +msgmerge -U $locale/LC_MESSAGES/$locale.po gnomepie.pot |