photoprism/scripts/gettext-clear-fuzzy.sh
Michael Mayer 19d25c39a4 Logs: Replace "..." with "…" in info messages
Signed-off-by: Michael Mayer <michael@photoprism.app>
2023-03-28 14:42:19 +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."