photoprism/scripts/gettext-clear-fuzzy.sh
Michael Mayer dc66625350 CI: Replace "…" with "..."
Signed-off-by: Michael Mayer <michael@photoprism.app>
2023-04-23 09:27:45 +02:00

10 lines
350 B
Bash
Executable File

#!/usr/bin/env bash
echo "Removing fuzzy attribute from backend translations..."
for file in ./assets/locales/**/*.po; do msgattrib --clear-fuzzy -o "${file}" "${file}"; done
echo "Removing fuzzy attribute from frontend translations..."
for file in ./frontend/src/locales/*.po; do msgattrib --clear-fuzzy -o "${file}" "${file}"; done
echo "Done."