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:
@@ -76,7 +76,7 @@
|
||||
},
|
||||
"CONFIRM": {
|
||||
"TITLE": "Подтвердите удаление",
|
||||
"MESSAGE": "Вы уверены, что хотите удалить вебхук? (%{webhookURL})",
|
||||
"MESSAGE": "Вы уверены, что хотите удалить вебхук? ({webhookURL})",
|
||||
"YES": "Да, удалить ",
|
||||
"NO": "Нет, не удалять"
|
||||
}
|
||||
@@ -114,7 +114,7 @@
|
||||
},
|
||||
"OPEN_AI": {
|
||||
"AI_ASSIST": "Помощь ИИ",
|
||||
"WITH_AI": " %{option} с ИИ ",
|
||||
"WITH_AI": " {option} с ИИ ",
|
||||
"OPTIONS": {
|
||||
"REPLY_SUGGESTION": "Предложить ответ",
|
||||
"SUMMARIZE": "Подведем итог",
|
||||
@@ -216,7 +216,7 @@
|
||||
"CONFIRM_YES": "Да, удалить",
|
||||
"CONFIRM_NO": "Нет, не удалять",
|
||||
"TITLE": "Подтвердите удаление",
|
||||
"MESSAGE": "Вы уверены, что хотите удалить приложение - %{appName}?",
|
||||
"MESSAGE": "Вы уверены, что хотите удалить приложение - {appName}?",
|
||||
"API_SUCCESS": "Приложение успешно удалено",
|
||||
"API_ERROR": "Не удалось удалить приложение. Повторите попытку позже"
|
||||
}
|
||||
@@ -294,7 +294,7 @@
|
||||
"PRIORITY": "Приоритет",
|
||||
"ASSIGNEE": "Назначено",
|
||||
"LABELS": "Категории",
|
||||
"CREATED_AT": "Created at %{createdAt}"
|
||||
"CREATED_AT": "Created at {createdAt}"
|
||||
},
|
||||
"UNLINK": {
|
||||
"TITLE": "Unlink",
|
||||
|
||||
Reference in New Issue
Block a user