mirror of
https://github.com/photoprism/photoprism.git
synced 2026-01-22 18:18:39 +00:00
9 lines
No EOL
409 B
Bash
Executable file
9 lines
No EOL
409 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
echo "Merging backend translations..."
|
|
for file in ./assets/locales/**/*.po; do msgmerge --previous --no-fuzzy-matching --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-wrap --update "${file}" ./frontend/src/locales/translations.pot; done
|
|
|
|
echo "Done." |