Files
leadchat/app/javascript/dashboard/i18n/locale/tr/login.json
Shivam Mishra c8657c55a8 fix: parsing of @ in i18n values (#10334)
Vue i18n has a new [linked message
syntax.](https://vue-i18n.intlify.dev/guide/essentials/syntax.html#linked-messages)
When it encounters `@` it assumes that we're trying to use a linked
message. And tries to parse it as such, in any case, it breaks since the
syntax is not valid and the params are not present. So it causes an
error. This works on dev but on production the error is bubbled up to
the top and rendering breaks.

A lot of folks use Chatwoot with default locale set in the env, this
surfaced the issue for the languages for which the syntax was not
updated

Fixes: https://github.com/chatwoot/chatwoot/issues/10313
2024-10-22 16:02:10 +05:30

28 lines
924 B
JSON
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{
"LOGIN": {
"TITLE": "Chatwoot'ta oturum açın",
"EMAIL": {
"LABEL": "E-Posta",
"PLACEHOLDER": "ornek{'@'}firmadi.com",
"ERROR": "Lütfen geçerli bir e-posta adresi girin"
},
"PASSWORD": {
"LABEL": "Parola",
"PLACEHOLDER": "Parola"
},
"API": {
"SUCCESS_MESSAGE": "Oturum açma başarılı",
"ERROR_MESSAGE": "Woot sunucusuna bağlanılamadı. Lütfen tekrar deneyin.",
"UNAUTH": "Kullanıcı adı veya parola yanlış. Lütfen tekrar deneyin."
},
"OAUTH": {
"GOOGLE_LOGIN": "Google ile giriş yap",
"BUSINESS_ACCOUNTS_ONLY": "Lütfen giriş yapmak için şirket e-posta adresinizi kullanın",
"NO_ACCOUNT_FOUND": "E-posta adresinizle ilişkilendirilmiş bir hesap bulunamadı."
},
"FORGOT_PASSWORD": "Parolanızı mı unuttunuz?",
"CREATE_NEW_ACCOUNT": "Yeni hesap oluştur",
"SUBMIT": "Oturum aç"
}
}