зеркало из
1
0
Форкнуть 0
fxa-content-server-l10n/locale
Milo e5036cb0f7 Pontoon: Update Croatian (hr) localization of Mozilla accounts
Co-authored-by: Milo <mail@milotype.de>
2024-07-15 20:31:57 +00:00
..
ar
ast
be
bg
bn
bs
ca
cak
cs
cy Pontoon: Update Welsh (cy) localization of Mozilla accounts 2024-07-11 19:21:17 +00:00
da Pontoon: Update Danish (da) localization of Mozilla accounts 2024-07-13 19:11:35 +00:00
de
dsb
el Pontoon: Update Greek (el) localization of Mozilla accounts 2024-07-07 22:31:46 +00:00
en
en_CA Pontoon: Update English (Canada) (en-CA) localization of Mozilla accounts 2024-07-09 20:02:27 +00:00
en_GB
en_US/LC_MESSAGES
es Merge strings for train 25163 (#832) 2024-07-08 15:11:50 -05:00
es_AR Pontoon: Update Spanish (Argentina) (es-AR) localization of Mozilla accounts 2024-07-08 05:11:58 +00:00
es_CL
es_ES
es_MX
et
eu
fa
fi Pontoon: Update Finnish (fi) localization of Mozilla accounts 2024-07-08 15:02:15 +00:00
fr
fur
fy Merge strings for train 25163 (#832) 2024-07-08 15:11:50 -05:00
fy_NL
gd
gl
gn
he
hi
hi_IN
hr Pontoon: Update Croatian (hr) localization of Mozilla accounts 2024-07-15 20:31:57 +00:00
hsb
hu
hy_AM
ia
id
is
it
ja
ka
kab
kk
km
ko
lt
mk
ms
my
nb_NO
ne_NP
nl
nn_NO Pontoon: Update Norwegian Nynorsk (nn-NO) localization of Mozilla accounts 2024-07-08 15:51:22 +00:00
pa_IN
pl
pt
pt_BR Pontoon: Update Portuguese (Brazil) (pt-BR) localization of Mozilla accounts 2024-07-08 00:51:12 +00:00
pt_PT
rm Pontoon: Update Romansh (rm) localization of Mozilla accounts 2024-07-09 18:11:36 +00:00
ro
ru Pontoon: Update Russian (ru) localization of Mozilla accounts 2024-07-08 06:11:49 +00:00
sk
sl
sq Pontoon: Update Albanian (sq) localization of Mozilla accounts 2024-07-09 10:41:19 +00:00
sr
su
sv Merge strings for train 46131 (#833) 2024-07-12 05:39:26 +02:00
sv_SE Pontoon: Update Swedish (sv-SE) localization of Mozilla accounts 2024-07-09 19:02:21 +00:00
te
templates
th
tl
tr
tt
uk
ur
uz
vi Pontoon: Update Vietnamese (vi) localization of Mozilla accounts 2024-07-08 11:31:38 +00:00
zh_CN
zh_TW Pontoon: Update Chinese (Taiwan) (zh-TW) localization of Mozilla accounts 2024-07-08 03:11:49 +00:00
README.md

README.md

l10n

This directory contains translated strings for all supported locales. Strings are extracted using a gettext compatible extractor, generating PO template files.

Adding new strings

If you add a new string to the app or server, you'll need to wrap it in a gettext call so it can be extracted. In a mustache template, that will look like {{#t}}My new string{{/t}} and in a JavaScript it will look like t("My new string") (t is an alias for gettext).

After you've added new strings to source, you'll need to extract them and update the .pot files, using grunt:

grunt extract-l10n

This will also update the other locales with any new strings.

Updating translations

Translators will update the .po files in this repo directly. To convert the new translations into JSON for the app to use, run:

grunt po2json

The JSON is not included under version control– they're regenerated on each deployment.