Skip to content

Commit a759dd9

Browse files
authoredFeb 4, 2023
Merge pull request #83 from mikelolasagasti/eu
Add missing keys to extract translatable strings
2 parents e9acce9 + dfe6681 commit a759dd9

File tree

30 files changed

+2060
-1900
lines changed

30 files changed

+2060
-1900
lines changed
 

‎README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ FileNotFoundError: [Errno 2] No translation file found for domain: 'humanize'
226226
How to add new phrases to existing locale files:
227227

228228
```sh
229-
xgettext --from-code=UTF-8 -o humanize.pot -k'_' -k'N_' -k'P_:1c,2' -l python src/humanize/*.py # extract new phrases
229+
xgettext --from-code=UTF-8 -o humanize.pot -k'_' -k'N_' -k'P_:1c,2' -k'NS_:1,2' -k'_ngettext:1,2' -l python src/humanize/*.py # extract new phrases
230230
msgmerge -U src/humanize/locale/ru_RU/LC_MESSAGES/humanize.po humanize.pot # add them to locale files
231231
```
232232

‎scripts/update-translations.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
set -e
22

33
# extract new phrases
4-
/usr/local/opt/gettext/bin/xgettext --from-code=UTF-8 -o humanize.pot -k'_' -k'N_' -k'P_:1c,2' -k'NS_:1,2' -l python src/humanize/*.py
4+
xgettext --from-code=UTF-8 -o humanize.pot -k'_' -k'N_' -k'P_:1c,2' -k'NS_:1,2' -k'_ngettext:1,2' -l python src/humanize/*.py
55

66
for d in src/humanize/locale/*/; do
77
locale="$(basename $d)"
88
echo "$locale"
99
# add them to locale files
10-
/usr/local/opt/gettext/bin/msgmerge -U src/humanize/locale/$locale/LC_MESSAGES/humanize.po humanize.pot
10+
msgmerge -U src/humanize/locale/$locale/LC_MESSAGES/humanize.po humanize.pot
1111
# compile to binary .mo
12-
/usr/local/opt/gettext/bin/msgfmt --check -o src/humanize/locale/$locale/LC_MESSAGES/humanize{.mo,.po}
12+
msgfmt --check -o src/humanize/locale/$locale/LC_MESSAGES/humanize{.mo,.po}
1313
done

0 commit comments

Comments
 (0)