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:
Shivam Mishra
2024-10-07 23:42:40 +05:30
committed by GitHub
parent 97d4ce65c4
commit a8c12ffb25
780 changed files with 4396 additions and 4649 deletions

View File

@@ -65,7 +65,7 @@
"ERROR_MESSAGE": "Kan het aangepaste attribuut niet verwijderen. Probeer het opnieuw."
},
"CONFIRM": {
"TITLE": "Weet u zeker dat u wilt verwijderen - %{attributeName}",
"TITLE": "Weet u zeker dat u wilt verwijderen - {attributeName}",
"PLACE_HOLDER": "Voer {attributeName} in om te bevestigen",
"MESSAGE": "Verwijderen zal het aangepaste attribuut verwijderen",
"YES": "Verwijderen ",

View File

@@ -23,52 +23,52 @@
},
"DEFAULT_USER": "Systeem",
"AUTOMATION_RULE": {
"ADD": "%{agentName} heeft een nieuwe automatiseringsregel aangemaakt (#%{id})",
"EDIT": "%{agentName} heeft een automatiseringsregel bijgewerkt (#%{id})",
"DELETE": "%{agentName} heeft een automatiseringsregel verwijderd (#%{id})"
"ADD": "{agentName} heeft een nieuwe automatiseringsregel aangemaakt (#{id})",
"EDIT": "{agentName} heeft een automatiseringsregel bijgewerkt (#{id})",
"DELETE": "{agentName} heeft een automatiseringsregel verwijderd (#{id})"
},
"ACCOUNT_USER": {
"ADD": "%{agentName} heeft %{invitee} uitgenodigd voor het account als een %{role}",
"ADD": "{agentName} heeft {invitee} uitgenodigd voor het account als een {role}",
"EDIT": {
"SELF": "%{agentName} heeft zijn %{attributes} gewijzigd naar %{values}",
"OTHER": "%{agentName} heeft %{attributes} van %{user} gewijzigd naar %{values}",
"DELETED": "%{agentName} changed %{attributes} of a deleted user to %{values}"
"SELF": "{agentName} heeft zijn {attributes} gewijzigd naar {values}",
"OTHER": "{agentName} heeft {attributes} van {user} gewijzigd naar {values}",
"DELETED": "{agentName} changed {attributes} of a deleted user to {values}"
}
},
"INBOX": {
"ADD": "%{agentName} heeft een nieuwe inbox aangemaakt (#%{id})",
"EDIT": "%{agentName} heeft een inbox bijgewerkt (#%{id})",
"DELETE": "%{agentName} heeft een inbox verwijderd (#%{id})"
"ADD": "{agentName} heeft een nieuwe inbox aangemaakt (#{id})",
"EDIT": "{agentName} heeft een inbox bijgewerkt (#{id})",
"DELETE": "{agentName} heeft een inbox verwijderd (#{id})"
},
"WEBHOOK": {
"ADD": "%{agentName} heeft een nieuwe webhook aangemaakt (#%{id})",
"EDIT": "%{agentName} heeft een webhook bijgewerkt (#%{id})",
"DELETE": "%{agentName} heeft een webhook verwijderd (#%{id})"
"ADD": "{agentName} heeft een nieuwe webhook aangemaakt (#{id})",
"EDIT": "{agentName} heeft een webhook bijgewerkt (#{id})",
"DELETE": "{agentName} heeft een webhook verwijderd (#{id})"
},
"USER_ACTION": {
"SIGN_IN": "%{agentName} is ingelogd",
"SIGN_OUT": "%{agentName} heeft zich afgemeld"
"SIGN_IN": "{agentName} is ingelogd",
"SIGN_OUT": "{agentName} heeft zich afgemeld"
},
"TEAM": {
"ADD": "%{agentName} heeft een nieuw team aangemaakt (#%{id})",
"EDIT": "%{agentName} heeft een team bijgewerkt (#%{id})",
"DELETE": "%{agentName} heeft een team verwijderd (#%{id})"
"ADD": "{agentName} heeft een nieuw team aangemaakt (#{id})",
"EDIT": "{agentName} heeft een team bijgewerkt (#{id})",
"DELETE": "{agentName} heeft een team verwijderd (#{id})"
},
"MACRO": {
"ADD": "%{agentName} heeft een nieuwe macro aangemaakt (#%{id})",
"EDIT": "%{agentName} heeft een macro bijgewerkt (#%{id})",
"DELETE": "%{agentName} heeft een macro verwijderd (#%{id})"
"ADD": "{agentName} heeft een nieuwe macro aangemaakt (#{id})",
"EDIT": "{agentName} heeft een macro bijgewerkt (#{id})",
"DELETE": "{agentName} heeft een macro verwijderd (#{id})"
},
"INBOX_MEMBER": {
"ADD": "%{agentName} heeft %{user} toegevoegd aan de inbox (#%{inbox_id})",
"REMOVE": "%{agentName} heeft %{user} verwijderd uit de inbox (#%{inbox_id})"
"ADD": "{agentName} heeft {user} toegevoegd aan de inbox (#{inbox_id})",
"REMOVE": "{agentName} heeft {user} verwijderd uit de inbox (#{inbox_id})"
},
"TEAM_MEMBER": {
"ADD": "%{agentName} heeft %{user} toegevoegd aan het team (#%{team_id})",
"REMOVE": "%{agentName} heeft %{user} verwijderd van het team (#%{team_id})"
"ADD": "{agentName} heeft {user} toegevoegd aan het team (#{team_id})",
"REMOVE": "{agentName} heeft {user} verwijderd van het team (#{team_id})"
},
"ACCOUNT": {
"EDIT": "%{agentName} heeft de accountconfiguratie bijgewerkt (#%{id})"
"EDIT": "{agentName} heeft de accountconfiguratie bijgewerkt (#{id})"
}
}
}

View File

@@ -1,9 +1,9 @@
{
"BULK_ACTION": {
"CONVERSATIONS_SELECTED": "%{conversationCount} gesprekken geselecteerd",
"CONVERSATIONS_SELECTED": "{conversationCount} gesprekken geselecteerd",
"AGENT_SELECT_LABEL": "Selecteer agent",
"ASSIGN_CONFIRMATION_LABEL": "Weet u zeker dat u %{conversationCount} %{conversationLabel} wilt toewijzen aan",
"UNASSIGN_CONFIRMATION_LABEL": "Weet u zeker dat u %{conversationCount} %{conversationLabel} wilt ontkoppelen?",
"ASSIGN_CONFIRMATION_LABEL": "Weet u zeker dat u {conversationCount} {conversationLabel} wilt toewijzen aan",
"UNASSIGN_CONFIRMATION_LABEL": "Weet u zeker dat u {conversationCount} {conversationLabel} wilt ontkoppelen?",
"GO_BACK_LABEL": "Ga terug",
"ASSIGN_LABEL": "Toewijzen",
"YES": "Ja",

View File

@@ -367,8 +367,8 @@
},
"SUMMARY": {
"TITLE": "Samenvatting",
"DELETE_WARNING": "Contact van <strong>%{primaryContactName}</strong> zal worden verwijderd.",
"ATTRIBUTE_WARNING": "Contactgegevens van <strong>%{primaryContactName}</strong> worden gekopieerd naar <strong>%{parentContactName}</strong>."
"DELETE_WARNING": "Contact van <strong>{primaryContactName}</strong> zal worden verwijderd.",
"ATTRIBUTE_WARNING": "Contactgegevens van <strong>{primaryContactName}</strong> worden gekopieerd naar <strong>{parentContactName}</strong>."
},
"SEARCH": {
"ERROR": "FOUT_BERICHT"

View File

@@ -101,7 +101,7 @@
"SELECT_PLACEHOLDER": "Geen",
"INPUT_PLACEHOLDER": "Selecteer prioriteit",
"NO_RESULTS": "Geen resultaten gevonden",
"SUCCESSFUL": "Changed priority of conversation id %{conversationId} to %{priority}",
"SUCCESSFUL": "Changed priority of conversation id {conversationId} to {priority}",
"FAILED": "Couldn't change priority. Please try again."
}
},
@@ -122,15 +122,15 @@
"ASSIGN_TEAM": "Team toewijzen",
"API": {
"AGENT_ASSIGNMENT": {
"SUCCESFUL": "Gesprek id %{conversationId} toegewezen aan \"%{agentName}\"",
"SUCCESFUL": "Gesprek id {conversationId} toegewezen aan \"{agentName}\"",
"FAILED": "Kan agent niet toewijzen. Probeer het opnieuw."
},
"LABEL_ASSIGNMENT": {
"SUCCESFUL": "Assigned label #%{labelName} to conversation id %{conversationId}",
"SUCCESFUL": "Assigned label #{labelName} to conversation id {conversationId}",
"FAILED": "Couldn't assign label. Please try again."
},
"TEAM_ASSIGNMENT": {
"SUCCESFUL": "Assigned team \"%{team}\" to conversation id %{conversationId}",
"SUCCESFUL": "Assigned team \"{team}\" to conversation id {conversationId}",
"FAILED": "Couldn't assign team. Please try again."
}
}
@@ -239,11 +239,11 @@
}
},
"ONBOARDING": {
"TITLE": "Hey 👋, Welcome to %{installationName}!",
"DESCRIPTION": "Thanks for signing up. We want you to get the most out of %{installationName}. Here are a few things you can do in %{installationName} to make the experience delightful.",
"GREETING_MORNING": "👋 Good morning, %{name}. Welcome to %{installationName}.",
"GREETING_AFTERNOON": "👋 Good afternoon, %{name}. Welcome to %{installationName}.",
"GREETING_EVENING": "👋 Good evening, %{name}. Welcome to %{installationName}.",
"TITLE": "Hey 👋, Welcome to {installationName}!",
"DESCRIPTION": "Thanks for signing up. We want you to get the most out of {installationName}. Here are a few things you can do in {installationName} to make the experience delightful.",
"GREETING_MORNING": "👋 Good morning, {name}. Welcome to {installationName}.",
"GREETING_AFTERNOON": "👋 Good afternoon, {name}. Welcome to {installationName}.",
"GREETING_EVENING": "👋 Good evening, {name}. Welcome to {installationName}.",
"READ_LATEST_UPDATES": "Lees onze laatste updates",
"ALL_CONVERSATION": {
"TITLE": "All your conversations in one place",
@@ -317,10 +317,10 @@
"SIDEBAR_TITLE": "Conversation participants",
"NO_RECORDS_FOUND": "Geen resultaten gevonden",
"ADD_PARTICIPANTS": "Select participants",
"REMANING_PARTICIPANTS_TEXT": "+%{count} others",
"REMANING_PARTICIPANT_TEXT": "+%{count} other",
"TOTAL_PARTICIPANTS_TEXT": "%{count} people are participating.",
"TOTAL_PARTICIPANT_TEXT": "%{count} person is participating.",
"REMANING_PARTICIPANTS_TEXT": "+{count} others",
"REMANING_PARTICIPANT_TEXT": "+{count} other",
"TOTAL_PARTICIPANTS_TEXT": "{count} people are participating.",
"TOTAL_PARTICIPANT_TEXT": "{count} person is participating.",
"NO_PARTICIPANTS_TEXT": "No one is participating!.",
"WATCH_CONVERSATION": "Join conversation",
"YOU_ARE_WATCHING": "You are participating",

View File

@@ -48,7 +48,7 @@
"CUSTOM_EMAIL_DOMAIN_ENABLED": "You can receive emails in your custom domain now."
}
},
"UPDATE_CHATWOOT": "An update %{latestChatwootVersion} for Chatwoot is available. Please update your instance.",
"UPDATE_CHATWOOT": "An update {latestChatwootVersion} for Chatwoot is available. Please update your instance.",
"LEARN_MORE": "Learn more",
"PAYMENT_PENDING": "Your payment is pending. Please update your payment information to continue using Chatwoot",
"LIMITS_UPGRADE": "Your account has exceeded the usage limits, please upgrade your plan to continue using Chatwoot",

View File

@@ -84,7 +84,7 @@
},
"ARTICLE_SEARCH_RESULT": {
"UNCATEGORIZED": "Uncategorized",
"SEARCH_RESULTS": "Search results for %{query}",
"SEARCH_RESULTS": "Search results for {query}",
"EMPTY_TEXT": "Search for articles to insert into replies.",
"SEARCH_LOADER": "Zoeken...",
"INSERT_ARTICLE": "Insert",

View File

@@ -1,7 +1,7 @@
{
"INTEGRATION_APPS": {
"FETCHING": "Integraties ophalen",
"NO_HOOK_CONFIGURED": "Er zijn geen %{integrationId} integraties geconfigureerd in dit account.",
"NO_HOOK_CONFIGURED": "Er zijn geen {integrationId} integraties geconfigureerd in dit account.",
"HEADER": "Applicaties",
"STATUS": {
"ENABLED": "Ingeschakeld",
@@ -56,7 +56,7 @@
"BUTTON_TEXT": "Verbinding verbreken"
},
"SIDEBAR_DESCRIPTION": {
"DIALOGFLOW": "Dialogflow is een natuurlijk talenbegrip platform dat het makkelijk maakt om een conversatie-interface te ontwerpen en te integreren in uw mobiele app, Webapplicatie, apparaat, bot, interactieve stem responssysteem, enzovoort. <br /> <br /> Dialogflow integratie met %{installationName} stelt u in staat een Dialogflow bot met uw inboxen te configureren, die de bot in staat stelt de zoekopdrachten in eerste instantie af te handelen en deze aan een agent over te leveren indien nodig. De dialoogstroom kan worden gebruikt om de lood te kwalificeren, de werklast van agenten te verminderen door veelgestelde vragen te stellen, enzovoort. <br /> <br /> Om Dialogflow toe te voegen, moet u een Serviceaccount aanmaken in uw Google-projectconsole en de referenties delen. Raadpleeg de Dialogflow documenten voor meer informatie."
"DIALOGFLOW": "Dialogflow is een natuurlijk talenbegrip platform dat het makkelijk maakt om een conversatie-interface te ontwerpen en te integreren in uw mobiele app, Webapplicatie, apparaat, bot, interactieve stem responssysteem, enzovoort. <br /> <br /> Dialogflow integratie met {installationName} stelt u in staat een Dialogflow bot met uw inboxen te configureren, die de bot in staat stelt de zoekopdrachten in eerste instantie af te handelen en deze aan een agent over te leveren indien nodig. De dialoogstroom kan worden gebruikt om de lood te kwalificeren, de werklast van agenten te verminderen door veelgestelde vragen te stellen, enzovoort. <br /> <br /> Om Dialogflow toe te voegen, moet u een Serviceaccount aanmaken in uw Google-projectconsole en de referenties delen. Raadpleeg de Dialogflow documenten voor meer informatie."
}
}
}

View File

@@ -76,7 +76,7 @@
},
"CONFIRM": {
"TITLE": "Verwijdering bevestigen",
"MESSAGE": "Weet je zeker dat je de webhook wilt verwijderen? (%{webhookURL})",
"MESSAGE": "Weet je zeker dat je de webhook wilt verwijderen? ({webhookURL})",
"YES": "Ja, verwijderen ",
"NO": "Nee, Bewaar het"
}
@@ -114,7 +114,7 @@
},
"OPEN_AI": {
"AI_ASSIST": "AI Assistent",
"WITH_AI": " %{option} met AI ",
"WITH_AI": " {option} met AI ",
"OPTIONS": {
"REPLY_SUGGESTION": "Antwoord suggestie",
"SUMMARIZE": "Samenvatten",
@@ -216,7 +216,7 @@
"CONFIRM_YES": "Ja, verwijderen",
"CONFIRM_NO": "Nee, behouden",
"TITLE": "Verwijdering bevestigen",
"MESSAGE": "Weet u zeker dat u de app - %{appName} wilt verwijderen?",
"MESSAGE": "Weet u zeker dat u de app - {appName} wilt verwijderen?",
"API_SUCCESS": "Dashboard app deleted successfully",
"API_ERROR": "We couldn't delete the app. Please try again later"
}
@@ -235,7 +235,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 +294,7 @@
"PRIORITY": "Prioriteit",
"ASSIGNEE": "Assignee",
"LABELS": "Labelen",
"CREATED_AT": "Created at %{createdAt}"
"CREATED_AT": "Created at {createdAt}"
},
"UNLINK": {
"TITLE": "Unlink",

View File

@@ -23,13 +23,13 @@
"NAME": "Eerste reactietijd",
"DESC": "(Gem. )",
"INFO_TEXT": "Totaal aantal conversaties gebruikt voor berekening:",
"TOOLTIP_TEXT": "Eerste Reactie Tijd is %{metricValue} (gebaseerd op %{conversationCount} gesprekken)"
"TOOLTIP_TEXT": "Eerste Reactie Tijd is {metricValue} (gebaseerd op {conversationCount} gesprekken)"
},
"RESOLUTION_TIME": {
"NAME": "Resolutie Tijd",
"DESC": "(Gem. )",
"INFO_TEXT": "Totaal aantal conversaties gebruikt voor berekening:",
"TOOLTIP_TEXT": "Resolution Time is %{metricValue} (based on %{conversationCount} conversations)"
"TOOLTIP_TEXT": "Resolution Time is {metricValue} (based on {conversationCount} conversations)"
},
"RESOLUTION_COUNT": {
"NAME": "Aantal Resoluties",
@@ -45,7 +45,7 @@
},
"REPLY_TIME": {
"NAME": "Customer waiting time",
"TOOLTIP_TEXT": "Waiting time is %{metricValue} (based on %{conversationCount} replies)"
"TOOLTIP_TEXT": "Waiting time is {metricValue} (based on {conversationCount} replies)"
}
},
"DATE_RANGE_OPTIONS": {
@@ -167,13 +167,13 @@
"NAME": "Eerste reactietijd",
"DESC": "(Gem. )",
"INFO_TEXT": "Totaal aantal conversaties gebruikt voor berekening:",
"TOOLTIP_TEXT": "Eerste Reactie Tijd is %{metricValue} (gebaseerd op %{conversationCount} gesprekken)"
"TOOLTIP_TEXT": "Eerste Reactie Tijd is {metricValue} (gebaseerd op {conversationCount} gesprekken)"
},
"RESOLUTION_TIME": {
"NAME": "Resolutie Tijd",
"DESC": "(Gem. )",
"INFO_TEXT": "Totaal aantal conversaties gebruikt voor berekening:",
"TOOLTIP_TEXT": "Resolution Time is %{metricValue} (based on %{conversationCount} conversations)"
"TOOLTIP_TEXT": "Resolution Time is {metricValue} (based on {conversationCount} conversations)"
},
"RESOLUTION_COUNT": {
"NAME": "Aantal Resoluties",
@@ -234,13 +234,13 @@
"NAME": "Eerste reactietijd",
"DESC": "(Gem. )",
"INFO_TEXT": "Totaal aantal conversaties gebruikt voor berekening:",
"TOOLTIP_TEXT": "Eerste Reactie Tijd is %{metricValue} (gebaseerd op %{conversationCount} gesprekken)"
"TOOLTIP_TEXT": "Eerste Reactie Tijd is {metricValue} (gebaseerd op {conversationCount} gesprekken)"
},
"RESOLUTION_TIME": {
"NAME": "Resolutie Tijd",
"DESC": "(Gem. )",
"INFO_TEXT": "Totaal aantal conversaties gebruikt voor berekening:",
"TOOLTIP_TEXT": "Resolution Time is %{metricValue} (based on %{conversationCount} conversations)"
"TOOLTIP_TEXT": "Resolution Time is {metricValue} (based on {conversationCount} conversations)"
},
"RESOLUTION_COUNT": {
"NAME": "Aantal Resoluties",
@@ -301,13 +301,13 @@
"NAME": "Eerste reactietijd",
"DESC": "(Gem. )",
"INFO_TEXT": "Totaal aantal conversaties gebruikt voor berekening:",
"TOOLTIP_TEXT": "Eerste Reactie Tijd is %{metricValue} (gebaseerd op %{conversationCount} gesprekken)"
"TOOLTIP_TEXT": "Eerste Reactie Tijd is {metricValue} (gebaseerd op {conversationCount} gesprekken)"
},
"RESOLUTION_TIME": {
"NAME": "Resolutie Tijd",
"DESC": "(Gem. )",
"INFO_TEXT": "Totaal aantal conversaties gebruikt voor berekening:",
"TOOLTIP_TEXT": "Resolution Time is %{metricValue} (based on %{conversationCount} conversations)"
"TOOLTIP_TEXT": "Resolution Time is {metricValue} (based on {conversationCount} conversations)"
},
"RESOLUTION_COUNT": {
"NAME": "Aantal Resoluties",
@@ -368,13 +368,13 @@
"NAME": "Eerste reactietijd",
"DESC": "(Gem. )",
"INFO_TEXT": "Totaal aantal conversaties gebruikt voor berekening:",
"TOOLTIP_TEXT": "Eerste Reactie Tijd is %{metricValue} (gebaseerd op %{conversationCount} gesprekken)"
"TOOLTIP_TEXT": "Eerste Reactie Tijd is {metricValue} (gebaseerd op {conversationCount} gesprekken)"
},
"RESOLUTION_TIME": {
"NAME": "Resolutie Tijd",
"DESC": "(Gem. )",
"INFO_TEXT": "Totaal aantal conversaties gebruikt voor berekening:",
"TOOLTIP_TEXT": "Resolution Time is %{metricValue} (based on %{conversationCount} conversations)"
"TOOLTIP_TEXT": "Resolution Time is {metricValue} (based on {conversationCount} conversations)"
},
"RESOLUTION_COUNT": {
"NAME": "Aantal Resoluties",
@@ -480,8 +480,8 @@
"CONVERSATION_HEATMAP": {
"HEADER": "Conversation Traffic",
"NO_CONVERSATIONS": "No conversations",
"CONVERSATION": "%{count} conversation",
"CONVERSATIONS": "%{count} conversations",
"CONVERSATION": "{count} conversation",
"CONVERSATIONS": "{count} conversations",
"DOWNLOAD_REPORT": "Download report"
},
"AGENT_CONVERSATIONS": {

View File

@@ -12,8 +12,8 @@
"MESSAGES": "Berichten"
},
"SEARCHING_DATA": "Zoeken",
"EMPTY_STATE": "Geen %{item} gevonden voor query '%{query}'",
"EMPTY_STATE_FULL": "Geen resultaten gevonden voor query '%{query}'",
"EMPTY_STATE": "Geen {item} gevonden voor query '{query}'",
"EMPTY_STATE_FULL": "Geen resultaten gevonden voor query '{query}'",
"PLACEHOLDER_KEYBINDING": "/ om te focussen",
"INPUT_PLACEHOLDER": "Voer 3 of meer tekens in om te zoeken",
"EMPTY_STATE_DEFAULT": "Zoeken op gesprek id, e-mail, telefoonnummer, berichten voor betere zoekresultaten. ",

View File

@@ -301,7 +301,7 @@
"TITLE": "Billing",
"CURRENT_PLAN": {
"TITLE": "Current Plan",
"PLAN_NOTE": "You are currently subscribed to the **%{plan}** plan with **%{quantity}** licenses"
"PLAN_NOTE": "You are currently subscribed to the **{plan}** plan with **{quantity}** licenses"
},
"MANAGE_SUBSCRIPTION": {
"TITLE": "Manage your subscription",

View File

@@ -17,7 +17,7 @@
},
"AGENTS": {
"BUTTON_TEXT": "Add agents to team",
"TITLE": "Add agents to team - %{teamName}",
"TITLE": "Add agents to team - {teamName}",
"DESC": "Add Agents to your newly created team. This lets you collaborate as a team on conversations, get notified on new events in the same conversation."
},
"WIZARD": [
@@ -46,7 +46,7 @@
},
"AGENTS": {
"BUTTON_TEXT": "Update agents in team",
"TITLE": "Add agents to team - %{teamName}",
"TITLE": "Add agents to team - {teamName}",
"DESC": "Add Agents to your newly created team. All the added agents will be notified when a conversation is assigned to this team."
},
"WIZARD": [
@@ -77,14 +77,14 @@
"ADD_AGENTS": "Adding Agents to your Team...",
"SELECT": "select",
"SELECT_ALL": "select all agents",
"SELECTED_COUNT": "%{selected} out of %{total} agents selected."
"SELECTED_COUNT": "{selected} out of {total} agents selected."
},
"ADD": {
"TITLE": "Add agents to team - %{teamName}",
"TITLE": "Add agents to team - {teamName}",
"DESC": "Add Agents to your newly created team. This lets you collaborate as a team on conversations, get notified on new events in the same conversation.",
"SELECT": "select",
"SELECT_ALL": "select all agents",
"SELECTED_COUNT": "%{selected} out of %{total} agents selected.",
"SELECTED_COUNT": "{selected} out of {total} agents selected.",
"BUTTON_TEXT": "Voeg agenten toe",
"AGENT_VALIDATION_ERROR": "Select at least one agent."
},

View File

@@ -3,7 +3,7 @@
"MODAL": {
"TITLE": "Whatsapp Templates",
"SUBTITLE": "Selecteer de whatsapp template die u wilt verzenden",
"TEMPLATE_SELECTED_SUBTITLE": "Verwerk %{templateName}"
"TEMPLATE_SELECTED_SUBTITLE": "Verwerk {templateName}"
},
"PICKER": {
"SEARCH_PLACEHOLDER": "Templates zoeken",
@@ -16,7 +16,7 @@
},
"PARSER": {
"VARIABLES_LABEL": "Variabelen",
"VARIABLE_PLACEHOLDER": "Voer %{variable} waarde in",
"VARIABLE_PLACEHOLDER": "Voer {variable} waarde in",
"GO_BACK_LABEL": "Ga terug",
"SEND_MESSAGE_LABEL": "Verstuur bericht",
"FORM_ERROR_MESSAGE": "Vul alstublieft alle variabelen in voordat u deze verzendt"