1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-03-19 22:19:29 +02:00

Martin prefers hyphens to underscores (#2207)

This commit is contained in:
Andrew Walbran 2024-07-09 14:19:16 +01:00 committed by GitHub
parent b075e17117
commit b68f563e45
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -55,14 +55,14 @@ jobs:
done
- name: Build translation report
run: i18n-report book/html/translation_report.html po/*.po
run: i18n-report book/html/translation-report.html po/*.po
- name: Build synced translation report
run: |
cp -r po synced-po
MDBOOK_OUTPUT='{"xgettext": {"pot-file": "messages.pot", "granularity": 0}}' mdbook build -d synced-po
for file in synced-po/*.po; do msgmerge --update $file synced-po/messages.pot ; done
i18n-report book/html/synced_translation_report.html synced-po/*.po
i18n-report book/html/synced-translation-report.html synced-po/*.po
- name: Setup Pages
uses: actions/configure-pages@v5