mirror of
https://github.com/photoprism/photoprism.git
synced 2026-01-23 02:24:24 +00:00
9 lines
350 B
Bash
Executable file
9 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."
|