1
0
Fork 0
mirror of synced 2024-06-02 10:54:44 +12:00

feat(translations): fix incorrect language codes for czech and catalan

This commit is contained in:
Christy Jacob 2021-07-28 11:58:00 +05:30
parent 10554089b5
commit 27c078f4d6
3 changed files with 4 additions and 4 deletions

View file

@ -1,6 +1,6 @@
{
"settings.inspire": "\"L'art de ser savi és l'art de saber què passar per alt\"",
"settings.locale": "cat",
"settings.locale": "ca",
"settings.direction": "ltr",
"emails.sender": "%s Equip",
"emails.verification.subject": "",

View file

@ -1,6 +1,6 @@
{
"settings.inspire": "\"Umění moudrosti je umění vědět, co přehlédnout.\"",
"settings.locale": "cz",
"settings.locale": "cs",
"settings.direction": "ltr",
"emails.sender": "%s tým",
"emails.verification.subject": "",

View file

@ -262,8 +262,8 @@ Locale::setLanguageFromJSON('ba', __DIR__.'/config/locale/translations/ba.json')
Locale::setLanguageFromJSON('be', __DIR__.'/config/locale/translations/be.json');
Locale::setLanguageFromJSON('bg', __DIR__.'/config/locale/translations/bg.json');
Locale::setLanguageFromJSON('bn', __DIR__.'/config/locale/translations/bn.json');
Locale::setLanguageFromJSON('cat', __DIR__.'/config/locale/translations/cat.json');
Locale::setLanguageFromJSON('cz', __DIR__.'/config/locale/translations/cz.json');
Locale::setLanguageFromJSON('ca', __DIR__.'/config/locale/translations/ca.json');
Locale::setLanguageFromJSON('cs', __DIR__.'/config/locale/translations/cs.json');
Locale::setLanguageFromJSON('de', __DIR__.'/config/locale/translations/de.json');
Locale::setLanguageFromJSON('en', __DIR__.'/config/locale/translations/en.json');
Locale::setLanguageFromJSON('es', __DIR__.'/config/locale/translations/es.json');