chore: update interpolation syntax for i18n files (#10198)
There were two warnings showing up on new teams page 1. `errorMessage` prop was getting invalid value, this was because were short circuting the error message using `&&`, fixed it by using ternary operator 2. `vue-i18n` has deprecated [rails syntax](https://vue-i18n.intlify.dev/guide/essentials/syntax#rails-i18n-format), fixed that warning by removing `%` before `{}` for interpolation > Note: the `vue-i18n` deprecation needs to be handled, but we can do it later
This commit is contained in:
@@ -47,10 +47,7 @@
|
||||
"LIST": {
|
||||
"404": "Bu hesap için yapılandırılmış web kancası yok.",
|
||||
"TITLE": "Web Kancalarını Yönet",
|
||||
"TABLE_HEADER": [
|
||||
"Web Kancası Uç Noktası",
|
||||
"Hareketler"
|
||||
]
|
||||
"TABLE_HEADER": ["Web Kancası Uç Noktası", "Hareketler"]
|
||||
},
|
||||
"EDIT": {
|
||||
"BUTTON_TEXT": "Düzenle",
|
||||
@@ -76,7 +73,7 @@
|
||||
},
|
||||
"CONFIRM": {
|
||||
"TITLE": "Silmeyi Onayla",
|
||||
"MESSAGE": "Web Kancasını silmek istediğinizden emin misiniz? (%{webhookURL})",
|
||||
"MESSAGE": "Web Kancasını silmek istediğinizden emin misiniz? ({webhookURL})",
|
||||
"YES": "Evet, Sil ",
|
||||
"NO": "Hayır, Kalsın"
|
||||
}
|
||||
@@ -114,7 +111,7 @@
|
||||
},
|
||||
"OPEN_AI": {
|
||||
"AI_ASSIST": "AI Yardımı",
|
||||
"WITH_AI": "AI ile %{option} ",
|
||||
"WITH_AI": "AI ile {option} ",
|
||||
"OPTIONS": {
|
||||
"REPLY_SUGGESTION": "Yanıt Önerisi",
|
||||
"SUMMARIZE": "Özetle",
|
||||
@@ -183,10 +180,7 @@
|
||||
"LIST": {
|
||||
"404": "Bu hesapta henüz yapılandırılmış panel uygulamaları yok",
|
||||
"LOADING": "Panel uygulamaları alınıyor...",
|
||||
"TABLE_HEADER": [
|
||||
"İsim",
|
||||
"Endpoint"
|
||||
],
|
||||
"TABLE_HEADER": ["İsim", "Endpoint"],
|
||||
"EDIT_TOOLTIP": "Uygulamayı Düzenle",
|
||||
"DELETE_TOOLTIP": "Uygulamayı Sil"
|
||||
},
|
||||
@@ -216,7 +210,7 @@
|
||||
"CONFIRM_YES": "Evet, sil",
|
||||
"CONFIRM_NO": "Hayır, sakla",
|
||||
"TITLE": "Silme işlemini onayla",
|
||||
"MESSAGE": "Uygulamayı silmek istediğinizden emin misiniz - %{appName}?",
|
||||
"MESSAGE": "Uygulamayı silmek istediğinizden emin misiniz - {appName}?",
|
||||
"API_SUCCESS": "Panel uygulaması başarıyla silindi",
|
||||
"API_ERROR": "Uygulamayı silemedik. Lütfen daha sonra tekrar deneyin"
|
||||
}
|
||||
@@ -235,7 +229,7 @@
|
||||
"ERROR": "There was an error fetching the linear issues, please try again",
|
||||
"LINK_SUCCESS": "Issue linked successfully",
|
||||
"LINK_ERROR": "There was an error linking the issue, please try again",
|
||||
"LINK_TITLE": "Conversation (#%{conversationId}) with %{name}"
|
||||
"LINK_TITLE": "Conversation (#{conversationId}) with {name}"
|
||||
},
|
||||
"ADD_OR_LINK": {
|
||||
"TITLE": "Create/link linear issue",
|
||||
@@ -294,7 +288,7 @@
|
||||
"PRIORITY": "Öncelik",
|
||||
"ASSIGNEE": "Assignee",
|
||||
"LABELS": "Etiketler",
|
||||
"CREATED_AT": "Created at %{createdAt}"
|
||||
"CREATED_AT": "Created at {createdAt}"
|
||||
},
|
||||
"UNLINK": {
|
||||
"TITLE": "Unlink",
|
||||
|
||||
Reference in New Issue
Block a user