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": "Confirmar eliminación",
|
||||
"MESSAGE": "¿Está seguro de eliminar el webhook? (%{webhookURL})",
|
||||
"MESSAGE": "¿Está seguro de eliminar el webhook? ({webhookURL})",
|
||||
"YES": "Sí, eliminar ",
|
||||
"NO": "No, mantenerlo"
|
||||
}
|
||||
@@ -114,7 +114,7 @@
|
||||
},
|
||||
"OPEN_AI": {
|
||||
"AI_ASSIST": "Asistencia AI",
|
||||
"WITH_AI": " %{option} con IA ",
|
||||
"WITH_AI": " {option} con IA ",
|
||||
"OPTIONS": {
|
||||
"REPLY_SUGGESTION": "Responder sugerencia",
|
||||
"SUMMARIZE": "Resumir",
|
||||
@@ -216,7 +216,7 @@
|
||||
"CONFIRM_YES": "Sí, eliminarlo",
|
||||
"CONFIRM_NO": "No, mantenerlo",
|
||||
"TITLE": "Confirme eliminación",
|
||||
"MESSAGE": "¿Está seguro que desea eliminar la aplicación - %{appName}?",
|
||||
"MESSAGE": "¿Está seguro que desea eliminar la aplicación - {appName}?",
|
||||
"API_SUCCESS": "Panel de control eliminado con éxito",
|
||||
"API_ERROR": "No pudimos eliminar la aplicación. Por favor, inténtalo de nuevo más tarde"
|
||||
}
|
||||
@@ -235,7 +235,7 @@
|
||||
"ERROR": "Hubo un error al recuperar los problemas lineales, por favor inténtalo de nuevo",
|
||||
"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 +294,7 @@
|
||||
"PRIORITY": "Prioridad",
|
||||
"ASSIGNEE": "Cesionario",
|
||||
"LABELS": "Etiquetas",
|
||||
"CREATED_AT": "Created at %{createdAt}"
|
||||
"CREATED_AT": "Created at {createdAt}"
|
||||
},
|
||||
"UNLINK": {
|
||||
"TITLE": "Desenlazar",
|
||||
|
||||
Reference in New Issue
Block a user