index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
-rwxr-xr-x | archinstall/locales/locales_generator.sh | 2 |
diff --git a/archinstall/locales/locales_generator.sh b/archinstall/locales/locales_generator.sh index 9432f83f..cdd5be31 100755 --- a/archinstall/locales/locales_generator.sh +++ b/archinstall/locales/locales_generator.sh @@ -7,6 +7,6 @@ find . -type f -iname "*.py" | xargs xgettext --join-existing --no-location --om for file in $(find locales/ -name "base.po"); do echo "Updating: $file" path=$(dirname $file) - msgmerge --quiet --no-location --width 512 --update $file locales/base.pot + msgmerge --quiet --no-location --width 512 --backup none --update $file locales/base.pot msgfmt -o $path/base.mo $file done |