iachat/app/javascript/dashboard/i18n/locale/id/login.json
Shivam Mishra 2a832f8ed5
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 15:43:01 +05:30

28 lines
876 B
JSON

{
"LOGIN": {
"TITLE": "Masuk ke Chatwoot",
"EMAIL": {
"LABEL": "Email",
"PLACEHOLDER": "contoh{'@'}perusahan-mu.com",
"ERROR": "Harap masukkan alamat email yang valid"
},
"PASSWORD": {
"LABEL": "Kata Sandi",
"PLACEHOLDER": "Kata Sandi"
},
"API": {
"SUCCESS_MESSAGE": "Berhasil Masuk",
"ERROR_MESSAGE": "Tidak dapat terhubung ke Server Woot, Silahkan coba lagi nanti",
"UNAUTH": "Nama Pengguna / Kata Sandi Salah. Silahkan coba lagi"
},
"OAUTH": {
"GOOGLE_LOGIN": "Masuk dengan Google",
"BUSINESS_ACCOUNTS_ONLY": "Harap gunakan alamat email perusahaan Anda untuk masuk",
"NO_ACCOUNT_FOUND": "Kami tidak dapat menemukan akun untuk alamat email Anda."
},
"FORGOT_PASSWORD": "Lupa kata sandi Anda?",
"CREATE_NEW_ACCOUNT": "Buat akun baru",
"SUBMIT": "Masuk"
}
}