CI: Replace "…" with "..."

Signed-off-by: Michael Mayer <michael@photoprism.app>
This commit is contained in:
Michael Mayer
2023-04-23 09:27:45 +02:00
parent 8517c82cb7
commit dc66625350
7 changed files with 27 additions and 27 deletions

View File

@@ -1,9 +1,9 @@
#!/usr/bin/env bash
echo "Merging backend translations"
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"
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."