photoprism/scripts/gettext-merge.sh
Michael Mayer fd51d930bf Auth: Add "Create Account" to translation files #98
Signed-off-by: Michael Mayer <michael@photoprism.app>
2022-11-22 22:20:55 +01:00

9 lines
447 B
Bash
Executable file

#!/usr/bin/env bash
echo "Merging backend translations..."
for file in ./assets/locales/**/*.po; do msgmerge --previous --no-fuzzy-matching --no-location --no-wrap --update "${file}" ./assets/locales/messages.pot; done
echo "Merging frontend translations..."
for file in ./frontend/src/locales/*.po; do msgmerge --previous --no-fuzzy-matching --no-location --no-wrap --update "${file}" ./frontend/src/locales/translations.pot; done
echo "Done."