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:
@@ -145,11 +145,7 @@
|
||||
},
|
||||
"AVAILABILITY": {
|
||||
"LABEL": "Dostupnost",
|
||||
"STATUSES_LIST": [
|
||||
"Dostupan",
|
||||
"Zauzet",
|
||||
"Nedostupan"
|
||||
],
|
||||
"STATUSES_LIST": ["Dostupan", "Zauzet", "Nedostupan"],
|
||||
"SET_AVAILABILITY_SUCCESS": "Availability has been set successfully",
|
||||
"SET_AVAILABILITY_ERROR": "Couldn't set availability, please try again"
|
||||
},
|
||||
@@ -301,7 +297,7 @@
|
||||
"TITLE": "Plaćanje",
|
||||
"CURRENT_PLAN": {
|
||||
"TITLE": "Trenutni plan",
|
||||
"PLAN_NOTE": "Trenutno ste pretplaćeni na **%{plan}** plan sa **%{quantity}** licenci"
|
||||
"PLAN_NOTE": "Trenutno ste pretplaćeni na **{plan}** plan sa **{quantity}** licenci"
|
||||
},
|
||||
"MANAGE_SUBSCRIPTION": {
|
||||
"TITLE": "Upravljate vašom pretplatom",
|
||||
|
||||
Reference in New Issue
Block a user