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": "Couldn't delete the custom attribute. Try again." "ERROR_MESSAGE": "Couldn't delete the custom attribute. Try again."
}, },
"CONFIRM": { "CONFIRM": {
"TITLE": "Are you sure want to delete - %{attributeName}", "TITLE": "Are you sure want to delete - {attributeName}",
"PLACE_HOLDER": "Please type {attributeName} to confirm", "PLACE_HOLDER": "Please type {attributeName} to confirm",
"MESSAGE": "Deleting will remove the custom attribute", "MESSAGE": "Deleting will remove the custom attribute",
"YES": "Delete ", "YES": "Delete ",

View File

@@ -23,52 +23,52 @@
}, },
"DEFAULT_USER": "System", "DEFAULT_USER": "System",
"AUTOMATION_RULE": { "AUTOMATION_RULE": {
"ADD": "%{agentName} created a new automation rule (#%{id})", "ADD": "{agentName} created a new automation rule (#{id})",
"EDIT": "%{agentName} updated an automation rule (#%{id})", "EDIT": "{agentName} updated an automation rule (#{id})",
"DELETE": "%{agentName} deleted an automation rule (#%{id})" "DELETE": "{agentName} deleted an automation rule (#{id})"
}, },
"ACCOUNT_USER": { "ACCOUNT_USER": {
"ADD": "%{agentName} invited %{invitee} to the account as an %{role}", "ADD": "{agentName} invited {invitee} to the account as an {role}",
"EDIT": { "EDIT": {
"SELF": "%{agentName} changed their %{attributes} to %{values}", "SELF": "{agentName} changed their {attributes} to {values}",
"OTHER": "%{agentName} changed %{attributes} of %{user} to %{values}", "OTHER": "{agentName} changed {attributes} of {user} to {values}",
"DELETED": "%{agentName} changed %{attributes} of a deleted user to %{values}" "DELETED": "{agentName} changed {attributes} of a deleted user to {values}"
} }
}, },
"INBOX": { "INBOX": {
"ADD": "%{agentName} created a new inbox (#%{id})", "ADD": "{agentName} created a new inbox (#{id})",
"EDIT": "%{agentName} updated an inbox (#%{id})", "EDIT": "{agentName} updated an inbox (#{id})",
"DELETE": "%{agentName} deleted an inbox (#%{id})" "DELETE": "{agentName} deleted an inbox (#{id})"
}, },
"WEBHOOK": { "WEBHOOK": {
"ADD": "%{agentName} created a new webhook (#%{id})", "ADD": "{agentName} created a new webhook (#{id})",
"EDIT": "%{agentName} updated a webhook (#%{id})", "EDIT": "{agentName} updated a webhook (#{id})",
"DELETE": "%{agentName} deleted a webhook (#%{id})" "DELETE": "{agentName} deleted a webhook (#{id})"
}, },
"USER_ACTION": { "USER_ACTION": {
"SIGN_IN": "%{agentName} signed in", "SIGN_IN": "{agentName} signed in",
"SIGN_OUT": "%{agentName} signed out" "SIGN_OUT": "{agentName} signed out"
}, },
"TEAM": { "TEAM": {
"ADD": "%{agentName} created a new team (#%{id})", "ADD": "{agentName} created a new team (#{id})",
"EDIT": "%{agentName} updated a team (#%{id})", "EDIT": "{agentName} updated a team (#{id})",
"DELETE": "%{agentName} deleted a team (#%{id})" "DELETE": "{agentName} deleted a team (#{id})"
}, },
"MACRO": { "MACRO": {
"ADD": "%{agentName} created a new macro (#%{id})", "ADD": "{agentName} created a new macro (#{id})",
"EDIT": "%{agentName} updated a macro (#%{id})", "EDIT": "{agentName} updated a macro (#{id})",
"DELETE": "%{agentName} deleted a macro (#%{id})" "DELETE": "{agentName} deleted a macro (#{id})"
}, },
"INBOX_MEMBER": { "INBOX_MEMBER": {
"ADD": "%{agentName} added %{user} to the inbox(#%{inbox_id})", "ADD": "{agentName} added {user} to the inbox(#{inbox_id})",
"REMOVE": "%{agentName} removed %{user} from the inbox(#%{inbox_id})" "REMOVE": "{agentName} removed {user} from the inbox(#{inbox_id})"
}, },
"TEAM_MEMBER": { "TEAM_MEMBER": {
"ADD": "%{agentName} added %{user} to the team(#%{team_id})", "ADD": "{agentName} added {user} to the team(#{team_id})",
"REMOVE": "%{agentName} removed %{user} from the team(#%{team_id})" "REMOVE": "{agentName} removed {user} from the team(#{team_id})"
}, },
"ACCOUNT": { "ACCOUNT": {
"EDIT": "%{agentName} updated the account configuration (#%{id})" "EDIT": "{agentName} updated the account configuration (#{id})"
} }
} }
} }

View File

@@ -1,9 +1,9 @@
{ {
"BULK_ACTION": { "BULK_ACTION": {
"CONVERSATIONS_SELECTED": "%{conversationCount} conversations selected", "CONVERSATIONS_SELECTED": "{conversationCount} conversations selected",
"AGENT_SELECT_LABEL": "Select agent", "AGENT_SELECT_LABEL": "Select agent",
"ASSIGN_CONFIRMATION_LABEL": "Are you sure to assign %{conversationCount} %{conversationLabel} to", "ASSIGN_CONFIRMATION_LABEL": "Are you sure to assign {conversationCount} {conversationLabel} to",
"UNASSIGN_CONFIRMATION_LABEL": "Are you sure to unassign %{conversationCount} %{conversationLabel}?", "UNASSIGN_CONFIRMATION_LABEL": "Are you sure to unassign {conversationCount} {conversationLabel}?",
"GO_BACK_LABEL": "Go back", "GO_BACK_LABEL": "Go back",
"ASSIGN_LABEL": "Assign", "ASSIGN_LABEL": "Assign",
"YES": "Yes", "YES": "Yes",

View File

@@ -367,8 +367,8 @@
}, },
"SUMMARY": { "SUMMARY": {
"TITLE": "Summary", "TITLE": "Summary",
"DELETE_WARNING": "Contact of <strong>%{primaryContactName}</strong> will be deleted.", "DELETE_WARNING": "Contact of <strong>{primaryContactName}</strong> will be deleted.",
"ATTRIBUTE_WARNING": "Contact details of <strong>%{primaryContactName}</strong> will be copied to <strong>%{parentContactName}</strong>." "ATTRIBUTE_WARNING": "Contact details of <strong>{primaryContactName}</strong> will be copied to <strong>{parentContactName}</strong>."
}, },
"SEARCH": { "SEARCH": {
"ERROR": "ERROR_MESSAGE" "ERROR": "ERROR_MESSAGE"

View File

@@ -101,7 +101,7 @@
"SELECT_PLACEHOLDER": "None", "SELECT_PLACEHOLDER": "None",
"INPUT_PLACEHOLDER": "Select priority", "INPUT_PLACEHOLDER": "Select priority",
"NO_RESULTS": "No results found", "NO_RESULTS": "No results found",
"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." "FAILED": "Couldn't change priority. Please try again."
} }
}, },
@@ -122,15 +122,15 @@
"ASSIGN_TEAM": "Assign team", "ASSIGN_TEAM": "Assign team",
"API": { "API": {
"AGENT_ASSIGNMENT": { "AGENT_ASSIGNMENT": {
"SUCCESFUL": "Conversation id %{conversationId} assigned to \"%{agentName}\"", "SUCCESFUL": "Conversation id {conversationId} assigned to \"{agentName}\"",
"FAILED": "Couldn't assign agent. Please try again." "FAILED": "Couldn't assign agent. Please try again."
}, },
"LABEL_ASSIGNMENT": { "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." "FAILED": "Couldn't assign label. Please try again."
}, },
"TEAM_ASSIGNMENT": { "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." "FAILED": "Couldn't assign team. Please try again."
} }
} }
@@ -239,11 +239,11 @@
} }
}, },
"ONBOARDING": { "ONBOARDING": {
"TITLE": "Hey 👋, 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.", "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_MORNING": "👋 Good morning, {name}. Welcome to {installationName}.",
"GREETING_AFTERNOON": "👋 Good afternoon, %{name}. Welcome to %{installationName}.", "GREETING_AFTERNOON": "👋 Good afternoon, {name}. Welcome to {installationName}.",
"GREETING_EVENING": "👋 Good evening, %{name}. Welcome to %{installationName}.", "GREETING_EVENING": "👋 Good evening, {name}. Welcome to {installationName}.",
"READ_LATEST_UPDATES": "Read our latest updates", "READ_LATEST_UPDATES": "Read our latest updates",
"ALL_CONVERSATION": { "ALL_CONVERSATION": {
"TITLE": "All your conversations in one place", "TITLE": "All your conversations in one place",
@@ -317,10 +317,10 @@
"SIDEBAR_TITLE": "Conversation participants", "SIDEBAR_TITLE": "Conversation participants",
"NO_RECORDS_FOUND": "No results found", "NO_RECORDS_FOUND": "No results found",
"ADD_PARTICIPANTS": "Select participants", "ADD_PARTICIPANTS": "Select participants",
"REMANING_PARTICIPANTS_TEXT": "+%{count} others", "REMANING_PARTICIPANTS_TEXT": "+{count} others",
"REMANING_PARTICIPANT_TEXT": "+%{count} other", "REMANING_PARTICIPANT_TEXT": "+{count} other",
"TOTAL_PARTICIPANTS_TEXT": "%{count} people are participating.", "TOTAL_PARTICIPANTS_TEXT": "{count} people are participating.",
"TOTAL_PARTICIPANT_TEXT": "%{count} person is participating.", "TOTAL_PARTICIPANT_TEXT": "{count} person is participating.",
"NO_PARTICIPANTS_TEXT": "No one is participating!.", "NO_PARTICIPANTS_TEXT": "No one is participating!.",
"WATCH_CONVERSATION": "Join conversation", "WATCH_CONVERSATION": "Join conversation",
"YOU_ARE_WATCHING": "You are participating", "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." "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", "LEARN_MORE": "Learn more",
"PAYMENT_PENDING": "Your payment is pending. Please update your payment information to continue using Chatwoot", "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", "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": { "ARTICLE_SEARCH_RESULT": {
"UNCATEGORIZED": "Uncategorized", "UNCATEGORIZED": "Uncategorized",
"SEARCH_RESULTS": "Search results for %{query}", "SEARCH_RESULTS": "Search results for {query}",
"EMPTY_TEXT": "Search for articles to insert into replies.", "EMPTY_TEXT": "Search for articles to insert into replies.",
"SEARCH_LOADER": "Searching...", "SEARCH_LOADER": "Searching...",
"INSERT_ARTICLE": "Insert", "INSERT_ARTICLE": "Insert",
@@ -250,13 +250,13 @@
"DOMAIN": { "DOMAIN": {
"LABEL": "Custom Domain", "LABEL": "Custom Domain",
"PLACEHOLDER": "Portal custom domain", "PLACEHOLDER": "Portal custom domain",
"HELP_TEXT": "Add only If you want to use a custom domain for your portals. Eg: %{exampleURL}", "HELP_TEXT": "Add only If you want to use a custom domain for your portals. Eg: {exampleURL}",
"ERROR": "Enter a valid domain URL" "ERROR": "Enter a valid domain URL"
}, },
"HOME_PAGE_LINK": { "HOME_PAGE_LINK": {
"LABEL": "Home Page Link", "LABEL": "Home Page Link",
"PLACEHOLDER": "Portal home page link", "PLACEHOLDER": "Portal home page link",
"HELP_TEXT": "The link used to return from the portal to the home page. Eg: %{exampleURL}", "HELP_TEXT": "The link used to return from the portal to the home page. Eg: {exampleURL}",
"ERROR": "Enter a valid home page URL" "ERROR": "Enter a valid home page URL"
}, },
"THEME_COLOR": { "THEME_COLOR": {

View File

@@ -1,7 +1,7 @@
{ {
"INTEGRATION_APPS": { "INTEGRATION_APPS": {
"FETCHING": "Fetching Integrations", "FETCHING": "Fetching Integrations",
"NO_HOOK_CONFIGURED": "There are no %{integrationId} integrations configured in this account.", "NO_HOOK_CONFIGURED": "There are no {integrationId} integrations configured in this account.",
"HEADER": "Applications", "HEADER": "Applications",
"STATUS": { "STATUS": {
"ENABLED": "Enabled", "ENABLED": "Enabled",
@@ -56,7 +56,7 @@
"BUTTON_TEXT": "Disconnect" "BUTTON_TEXT": "Disconnect"
}, },
"SIDEBAR_DESCRIPTION": { "SIDEBAR_DESCRIPTION": {
"DIALOGFLOW": "Dialogflow is a natural language understanding platform that makes it easy to design and integrate a conversational user interface into your mobile app, web application, device, bot, interactive voice response system, and so on. <br /> <br /> Dialogflow integration with %{installationName} allows you to configure a Dialogflow bot with your inboxes which lets the bot handle the queries initially and hand them over to an agent when needed. Dialogflow can be used to qualifying the leads, reduce the workload of agents by providing frequently asked questions etc. <br /> <br /> To add Dialogflow, you need to create a Service Account in your Google project console and share the credentials. Please refer to the Dialogflow docs for more information." "DIALOGFLOW": "Dialogflow is a natural language understanding platform that makes it easy to design and integrate a conversational user interface into your mobile app, web application, device, bot, interactive voice response system, and so on. <br /> <br /> Dialogflow integration with {installationName} allows you to configure a Dialogflow bot with your inboxes which lets the bot handle the queries initially and hand them over to an agent when needed. Dialogflow can be used to qualifying the leads, reduce the workload of agents by providing frequently asked questions etc. <br /> <br /> To add Dialogflow, you need to create a Service Account in your Google project console and share the credentials. Please refer to the Dialogflow docs for more information."
} }
} }
} }

View File

@@ -31,7 +31,7 @@
}, },
"END_POINT": { "END_POINT": {
"LABEL": "Webhook URL", "LABEL": "Webhook URL",
"PLACEHOLDER": "Example: %{webhookExampleURL}", "PLACEHOLDER": "Example: {webhookExampleURL}",
"ERROR": "Please enter a valid URL" "ERROR": "Please enter a valid URL"
}, },
"EDIT_SUBMIT": "Update webhook", "EDIT_SUBMIT": "Update webhook",
@@ -76,7 +76,7 @@
}, },
"CONFIRM": { "CONFIRM": {
"TITLE": "Confirm Deletion", "TITLE": "Confirm Deletion",
"MESSAGE": "Are you sure to delete the webhook? (%{webhookURL})", "MESSAGE": "Are you sure to delete the webhook? ({webhookURL})",
"YES": "Yes, Delete ", "YES": "Yes, Delete ",
"NO": "No, Keep it" "NO": "No, Keep it"
} }
@@ -90,7 +90,7 @@
}, },
"HELP_TEXT": { "HELP_TEXT": {
"TITLE": "How to use the Slack Integration?", "TITLE": "How to use the Slack Integration?",
"BODY": "With this integration, all of your incoming conversations will be synced to the ***%{selectedChannelName}*** channel in your Slack workspace. You can manage all your customer conversations right within the channel and never miss a message.\n\nHere are the main features of the integration:\n\n**Respond to conversations from within Slack:** To respond to a conversation in the ***%{selectedChannelName}*** Slack channel, simply type out your message and send it as a thread. This will create a response back to the customer through Chatwoot. It's that simple!\n\n **Create private notes:** If you want to create private notes instead of replies, start your message with ***`note:`***. This ensures that your message is kept private and won't be visible to the customer.\n\n**Associate an agent profile:** If the person who replied on Slack has an agent profile in Chatwoot under the same email, the replies will be associated with that agent profile automatically. This means you can easily track who said what and when. On the other hand, when the replier doesn't have an associated agent profile, the replies will appear from the bot profile to the customer.", "BODY": "With this integration, all of your incoming conversations will be synced to the ***{selectedChannelName}*** channel in your Slack workspace. You can manage all your customer conversations right within the channel and never miss a message.\n\nHere are the main features of the integration:\n\n**Respond to conversations from within Slack:** To respond to a conversation in the ***{selectedChannelName}*** Slack channel, simply type out your message and send it as a thread. This will create a response back to the customer through Chatwoot. It's that simple!\n\n **Create private notes:** If you want to create private notes instead of replies, start your message with ***`note:`***. This ensures that your message is kept private and won't be visible to the customer.\n\n**Associate an agent profile:** If the person who replied on Slack has an agent profile in Chatwoot under the same email, the replies will be associated with that agent profile automatically. This means you can easily track who said what and when. On the other hand, when the replier doesn't have an associated agent profile, the replies will appear from the bot profile to the customer.",
"SELECTED": "selected" "SELECTED": "selected"
}, },
"SELECT_CHANNEL": { "SELECT_CHANNEL": {
@@ -114,7 +114,7 @@
}, },
"OPEN_AI": { "OPEN_AI": {
"AI_ASSIST": "AI Assist", "AI_ASSIST": "AI Assist",
"WITH_AI": " %{option} with AI ", "WITH_AI": " {option} with AI ",
"OPTIONS": { "OPTIONS": {
"REPLY_SUGGESTION": "Reply Suggestion", "REPLY_SUGGESTION": "Reply Suggestion",
"SUMMARIZE": "Summarize", "SUMMARIZE": "Summarize",
@@ -216,7 +216,7 @@
"CONFIRM_YES": "Yes, delete it", "CONFIRM_YES": "Yes, delete it",
"CONFIRM_NO": "No, keep it", "CONFIRM_NO": "No, keep it",
"TITLE": "Confirm deletion", "TITLE": "Confirm deletion",
"MESSAGE": "Are you sure to delete the app - %{appName}?", "MESSAGE": "Are you sure to delete the app - {appName}?",
"API_SUCCESS": "Dashboard app deleted successfully", "API_SUCCESS": "Dashboard app deleted successfully",
"API_ERROR": "We couldn't delete the app. Please try again later" "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", "ERROR": "There was an error fetching the linear issues, please try again",
"LINK_SUCCESS": "Issue linked successfully", "LINK_SUCCESS": "Issue linked successfully",
"LINK_ERROR": "There was an error linking the issue, please try again", "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": { "ADD_OR_LINK": {
"TITLE": "Create/link linear issue", "TITLE": "Create/link linear issue",
@@ -294,7 +294,7 @@
"PRIORITY": "Priority", "PRIORITY": "Priority",
"ASSIGNEE": "Assignee", "ASSIGNEE": "Assignee",
"LABELS": "Labels", "LABELS": "Labels",
"CREATED_AT": "Created at %{createdAt}" "CREATED_AT": "Created at {createdAt}"
}, },
"UNLINK": { "UNLINK": {
"TITLE": "Unlink", "TITLE": "Unlink",

View File

@@ -23,13 +23,13 @@
"NAME": "First Response Time", "NAME": "First Response Time",
"DESC": "( Avg )", "DESC": "( Avg )",
"INFO_TEXT": "Total number of conversations used for computation:", "INFO_TEXT": "Total number of conversations used for computation:",
"TOOLTIP_TEXT": "First Response Time is %{metricValue} (based on %{conversationCount} conversations)" "TOOLTIP_TEXT": "First Response Time is {metricValue} (based on {conversationCount} conversations)"
}, },
"RESOLUTION_TIME": { "RESOLUTION_TIME": {
"NAME": "Resolution Time", "NAME": "Resolution Time",
"DESC": "( Avg )", "DESC": "( Avg )",
"INFO_TEXT": "Total number of conversations used for computation:", "INFO_TEXT": "Total number of conversations used for computation:",
"TOOLTIP_TEXT": "Resolution Time is %{metricValue} (based on %{conversationCount} conversations)" "TOOLTIP_TEXT": "Resolution Time is {metricValue} (based on {conversationCount} conversations)"
}, },
"RESOLUTION_COUNT": { "RESOLUTION_COUNT": {
"NAME": "Resolution Count", "NAME": "Resolution Count",
@@ -45,7 +45,7 @@
}, },
"REPLY_TIME": { "REPLY_TIME": {
"NAME": "Customer waiting 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": { "DATE_RANGE_OPTIONS": {
@@ -123,13 +123,13 @@
"NAME": "First Response Time", "NAME": "First Response Time",
"DESC": "( Avg )", "DESC": "( Avg )",
"INFO_TEXT": "Total number of conversations used for computation:", "INFO_TEXT": "Total number of conversations used for computation:",
"TOOLTIP_TEXT": "First Response Time is %{metricValue} (based on %{conversationCount} conversations)" "TOOLTIP_TEXT": "First Response Time is {metricValue} (based on {conversationCount} conversations)"
}, },
"RESOLUTION_TIME": { "RESOLUTION_TIME": {
"NAME": "Resolution Time", "NAME": "Resolution Time",
"DESC": "( Avg )", "DESC": "( Avg )",
"INFO_TEXT": "Total number of conversations used for computation:", "INFO_TEXT": "Total number of conversations used for computation:",
"TOOLTIP_TEXT": "Resolution Time is %{metricValue} (based on %{conversationCount} conversations)" "TOOLTIP_TEXT": "Resolution Time is {metricValue} (based on {conversationCount} conversations)"
}, },
"RESOLUTION_COUNT": { "RESOLUTION_COUNT": {
"NAME": "Resolution Count", "NAME": "Resolution Count",
@@ -190,13 +190,13 @@
"NAME": "First Response Time", "NAME": "First Response Time",
"DESC": "( Avg )", "DESC": "( Avg )",
"INFO_TEXT": "Total number of conversations used for computation:", "INFO_TEXT": "Total number of conversations used for computation:",
"TOOLTIP_TEXT": "First Response Time is %{metricValue} (based on %{conversationCount} conversations)" "TOOLTIP_TEXT": "First Response Time is {metricValue} (based on {conversationCount} conversations)"
}, },
"RESOLUTION_TIME": { "RESOLUTION_TIME": {
"NAME": "Resolution Time", "NAME": "Resolution Time",
"DESC": "( Avg )", "DESC": "( Avg )",
"INFO_TEXT": "Total number of conversations used for computation:", "INFO_TEXT": "Total number of conversations used for computation:",
"TOOLTIP_TEXT": "Resolution Time is %{metricValue} (based on %{conversationCount} conversations)" "TOOLTIP_TEXT": "Resolution Time is {metricValue} (based on {conversationCount} conversations)"
}, },
"RESOLUTION_COUNT": { "RESOLUTION_COUNT": {
"NAME": "Resolution Count", "NAME": "Resolution Count",
@@ -257,13 +257,13 @@
"NAME": "First Response Time", "NAME": "First Response Time",
"DESC": "( Avg )", "DESC": "( Avg )",
"INFO_TEXT": "Total number of conversations used for computation:", "INFO_TEXT": "Total number of conversations used for computation:",
"TOOLTIP_TEXT": "First Response Time is %{metricValue} (based on %{conversationCount} conversations)" "TOOLTIP_TEXT": "First Response Time is {metricValue} (based on {conversationCount} conversations)"
}, },
"RESOLUTION_TIME": { "RESOLUTION_TIME": {
"NAME": "Resolution Time", "NAME": "Resolution Time",
"DESC": "( Avg )", "DESC": "( Avg )",
"INFO_TEXT": "Total number of conversations used for computation:", "INFO_TEXT": "Total number of conversations used for computation:",
"TOOLTIP_TEXT": "Resolution Time is %{metricValue} (based on %{conversationCount} conversations)" "TOOLTIP_TEXT": "Resolution Time is {metricValue} (based on {conversationCount} conversations)"
}, },
"RESOLUTION_COUNT": { "RESOLUTION_COUNT": {
"NAME": "Resolution Count", "NAME": "Resolution Count",
@@ -324,13 +324,13 @@
"NAME": "First Response Time", "NAME": "First Response Time",
"DESC": "( Avg )", "DESC": "( Avg )",
"INFO_TEXT": "Total number of conversations used for computation:", "INFO_TEXT": "Total number of conversations used for computation:",
"TOOLTIP_TEXT": "First Response Time is %{metricValue} (based on %{conversationCount} conversations)" "TOOLTIP_TEXT": "First Response Time is {metricValue} (based on {conversationCount} conversations)"
}, },
"RESOLUTION_TIME": { "RESOLUTION_TIME": {
"NAME": "Resolution Time", "NAME": "Resolution Time",
"DESC": "( Avg )", "DESC": "( Avg )",
"INFO_TEXT": "Total number of conversations used for computation:", "INFO_TEXT": "Total number of conversations used for computation:",
"TOOLTIP_TEXT": "Resolution Time is %{metricValue} (based on %{conversationCount} conversations)" "TOOLTIP_TEXT": "Resolution Time is {metricValue} (based on {conversationCount} conversations)"
}, },
"RESOLUTION_COUNT": { "RESOLUTION_COUNT": {
"NAME": "Resolution Count", "NAME": "Resolution Count",
@@ -436,8 +436,8 @@
"CONVERSATION_HEATMAP": { "CONVERSATION_HEATMAP": {
"HEADER": "Conversation Traffic", "HEADER": "Conversation Traffic",
"NO_CONVERSATIONS": "No conversations", "NO_CONVERSATIONS": "No conversations",
"CONVERSATION": "%{count} conversation", "CONVERSATION": "{count} conversation",
"CONVERSATIONS": "%{count} conversations", "CONVERSATIONS": "{count} conversations",
"DOWNLOAD_REPORT": "Download report" "DOWNLOAD_REPORT": "Download report"
}, },
"AGENT_CONVERSATIONS": { "AGENT_CONVERSATIONS": {

View File

@@ -12,8 +12,8 @@
"MESSAGES": "Messages" "MESSAGES": "Messages"
}, },
"SEARCHING_DATA": "Searching", "SEARCHING_DATA": "Searching",
"EMPTY_STATE": "No %{item} found for query '%{query}'", "EMPTY_STATE": "No {item} found for query '{query}'",
"EMPTY_STATE_FULL": "No results found for query '%{query}'", "EMPTY_STATE_FULL": "No results found for query '{query}'",
"PLACEHOLDER_KEYBINDING": "/ to focus", "PLACEHOLDER_KEYBINDING": "/ to focus",
"INPUT_PLACEHOLDER": "Type 3 or more characters to search", "INPUT_PLACEHOLDER": "Type 3 or more characters to search",
"EMPTY_STATE_DEFAULT": "Search by conversation id, email, phone number, messages for better search results. ", "EMPTY_STATE_DEFAULT": "Search by conversation id, email, phone number, messages for better search results. ",

View File

@@ -301,7 +301,7 @@
"TITLE": "Billing", "TITLE": "Billing",
"CURRENT_PLAN": { "CURRENT_PLAN": {
"TITLE": "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": { "MANAGE_SUBSCRIPTION": {
"TITLE": "Manage your subscription", "TITLE": "Manage your subscription",

View File

@@ -17,7 +17,7 @@
}, },
"AGENTS": { "AGENTS": {
"BUTTON_TEXT": "Add agents to team", "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." "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": [ "WIZARD": [
@@ -46,7 +46,7 @@
}, },
"AGENTS": { "AGENTS": {
"BUTTON_TEXT": "Update agents in team", "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." "DESC": "Add Agents to your newly created team. All the added agents will be notified when a conversation is assigned to this team."
}, },
"WIZARD": [ "WIZARD": [
@@ -77,14 +77,14 @@
"ADD_AGENTS": "Adding Agents to your Team...", "ADD_AGENTS": "Adding Agents to your Team...",
"SELECT": "select", "SELECT": "select",
"SELECT_ALL": "select all agents", "SELECT_ALL": "select all agents",
"SELECTED_COUNT": "%{selected} out of %{total} agents selected." "SELECTED_COUNT": "{selected} out of {total} agents selected."
}, },
"ADD": { "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.", "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": "select",
"SELECT_ALL": "select all agents", "SELECT_ALL": "select all agents",
"SELECTED_COUNT": "%{selected} out of %{total} agents selected.", "SELECTED_COUNT": "{selected} out of {total} agents selected.",
"BUTTON_TEXT": "Add agents", "BUTTON_TEXT": "Add agents",
"AGENT_VALIDATION_ERROR": "Select at least one agent." "AGENT_VALIDATION_ERROR": "Select at least one agent."
}, },

View File

@@ -3,7 +3,7 @@
"MODAL": { "MODAL": {
"TITLE": "Whatsapp Templates", "TITLE": "Whatsapp Templates",
"SUBTITLE": "Select the whatsapp template you want to send", "SUBTITLE": "Select the whatsapp template you want to send",
"TEMPLATE_SELECTED_SUBTITLE": "Process %{templateName}" "TEMPLATE_SELECTED_SUBTITLE": "Process {templateName}"
}, },
"PICKER": { "PICKER": {
"SEARCH_PLACEHOLDER": "Search Templates", "SEARCH_PLACEHOLDER": "Search Templates",
@@ -16,7 +16,7 @@
}, },
"PARSER": { "PARSER": {
"VARIABLES_LABEL": "Variables", "VARIABLES_LABEL": "Variables",
"VARIABLE_PLACEHOLDER": "Enter %{variable} value", "VARIABLE_PLACEHOLDER": "Enter {variable} value",
"GO_BACK_LABEL": "Go Back", "GO_BACK_LABEL": "Go Back",
"SEND_MESSAGE_LABEL": "Send Message", "SEND_MESSAGE_LABEL": "Send Message",
"FORM_ERROR_MESSAGE": "Please fill all variables before sending" "FORM_ERROR_MESSAGE": "Please fill all variables before sending"

View File

@@ -65,7 +65,7 @@
"ERROR_MESSAGE": "تعذر حذف الصفة المخصصة. حاول مرة أخرى." "ERROR_MESSAGE": "تعذر حذف الصفة المخصصة. حاول مرة أخرى."
}, },
"CONFIRM": { "CONFIRM": {
"TITLE": "هل أنت متأكد من أنك تريد حذف - %{attributeName}", "TITLE": "هل أنت متأكد من أنك تريد حذف - {attributeName}",
"PLACE_HOLDER": "الرجاء كتابة {attributeName} للتأكيد", "PLACE_HOLDER": "الرجاء كتابة {attributeName} للتأكيد",
"MESSAGE": "الحذف سوف يزيل الصفة المخصصة", "MESSAGE": "الحذف سوف يزيل الصفة المخصصة",
"YES": "حذف ", "YES": "حذف ",

View File

@@ -23,52 +23,52 @@
}, },
"DEFAULT_USER": "النظام", "DEFAULT_USER": "النظام",
"AUTOMATION_RULE": { "AUTOMATION_RULE": {
"ADD": "%{agentName} أنشأ قاعدة أتمتة جديدة (#%{id})", "ADD": "{agentName} أنشأ قاعدة أتمتة جديدة (#{id})",
"EDIT": "%{agentName} قام بتحديث قاعدة أتمتة (#%{id})", "EDIT": "{agentName} قام بتحديث قاعدة أتمتة (#{id})",
"DELETE": "%{agentName} حذف قاعدة أتمتة (#%{id})" "DELETE": "{agentName} حذف قاعدة أتمتة (#{id})"
}, },
"ACCOUNT_USER": { "ACCOUNT_USER": {
"ADD": "%{agentName} دعا %{invitee} إلى الحساب كـ %{role}", "ADD": "{agentName} دعا {invitee} إلى الحساب كـ {role}",
"EDIT": { "EDIT": {
"SELF": "%{agentName} غير %{attributes} الخاصة به إلى %{values}", "SELF": "{agentName} غير {attributes} الخاصة به إلى {values}",
"OTHER": "%{agentName} غير %{attributes} لـ %{user} إلى %{values}", "OTHER": "{agentName} غير {attributes} لـ {user} إلى {values}",
"DELETED": "%{agentName} غير %{attributes} لـ %{user} إلى %{values}" "DELETED": "{agentName} غير {attributes} لـ {user} إلى {values}"
} }
}, },
"INBOX": { "INBOX": {
"ADD": "%{agentName} أنشأ صندوق وارد جديد (#%{id})", "ADD": "{agentName} أنشأ صندوق وارد جديد (#{id})",
"EDIT": "%{agentName} قام بتحديث صندوق الوارد (#%{id})", "EDIT": "{agentName} قام بتحديث صندوق الوارد (#{id})",
"DELETE": "%{agentName} حذف صندوق الوارد (#%{id})" "DELETE": "{agentName} حذف صندوق الوارد (#{id})"
}, },
"WEBHOOK": { "WEBHOOK": {
"ADD": "%{agentName} أنشأ Webhook جديد (#%{id})", "ADD": "{agentName} أنشأ Webhook جديد (#{id})",
"EDIT": "%{agentName} قام بتحديث Webhook (#%{id})", "EDIT": "{agentName} قام بتحديث Webhook (#{id})",
"DELETE": "%{agentName} حذف Webhook (#%{id})" "DELETE": "{agentName} حذف Webhook (#{id})"
}, },
"USER_ACTION": { "USER_ACTION": {
"SIGN_IN": "%{agentName} قام بتسجيل الدخول", "SIGN_IN": "{agentName} قام بتسجيل الدخول",
"SIGN_OUT": "%{agentName} قام بتسجيل الخروج" "SIGN_OUT": "{agentName} قام بتسجيل الخروج"
}, },
"TEAM": { "TEAM": {
"ADD": "%{agentName} أنشأ فريق جديد (#%{id})", "ADD": "{agentName} أنشأ فريق جديد (#{id})",
"EDIT": "%{agentName} قام بتحديث الفريق (#%{id})", "EDIT": "{agentName} قام بتحديث الفريق (#{id})",
"DELETE": "%{agentName} حذف الفريق (#%{id})" "DELETE": "{agentName} حذف الفريق (#{id})"
}, },
"MACRO": { "MACRO": {
"ADD": "%{agentName} أنشأ ماكرو جديد (#%{id})", "ADD": "{agentName} أنشأ ماكرو جديد (#{id})",
"EDIT": "%{agentName} قام بتحديث ماكرو (#%{id})", "EDIT": "{agentName} قام بتحديث ماكرو (#{id})",
"DELETE": "%{agentName} حذف ماكرو (#%{id})" "DELETE": "{agentName} حذف ماكرو (#{id})"
}, },
"INBOX_MEMBER": { "INBOX_MEMBER": {
"ADD": "%{agentName} أضاف %{user} إلى صندوق الوارد (#%{inbox_id})", "ADD": "{agentName} أضاف {user} إلى صندوق الوارد (#{inbox_id})",
"REMOVE": "%{agentName} أزال %{user} من صندوق الوارد (#%{inbox_id})" "REMOVE": "{agentName} أزال {user} من صندوق الوارد (#{inbox_id})"
}, },
"TEAM_MEMBER": { "TEAM_MEMBER": {
"ADD": "%{agentName} أضاف %{user} إلى الفريق (#%{team_id})", "ADD": "{agentName} أضاف {user} إلى الفريق (#{team_id})",
"REMOVE": "%{agentName} أزال %{user} من الفريق (#%{team_id})" "REMOVE": "{agentName} أزال {user} من الفريق (#{team_id})"
}, },
"ACCOUNT": { "ACCOUNT": {
"EDIT": "%{agentName} قام بتحديث إعدادات الحساب (#%{id})" "EDIT": "{agentName} قام بتحديث إعدادات الحساب (#{id})"
} }
} }
} }

View File

@@ -1,9 +1,9 @@
{ {
"BULK_ACTION": { "BULK_ACTION": {
"CONVERSATIONS_SELECTED": "%{conversationCount} المحادثات المحددة", "CONVERSATIONS_SELECTED": "{conversationCount} المحادثات المحددة",
"AGENT_SELECT_LABEL": "اختر وكيل", "AGENT_SELECT_LABEL": "اختر وكيل",
"ASSIGN_CONFIRMATION_LABEL": "هل أنت متأكد من أنك تريد تعيين %{conversationCount} %{conversationLabel} إلى", "ASSIGN_CONFIRMATION_LABEL": "هل أنت متأكد من أنك تريد تعيين {conversationCount} {conversationLabel} إلى",
"UNASSIGN_CONFIRMATION_LABEL": "هل أنت متأكد من إلغاء تعيين %{conversationCount} %{conversationLabel}؟", "UNASSIGN_CONFIRMATION_LABEL": "هل أنت متأكد من إلغاء تعيين {conversationCount} {conversationLabel}؟",
"GO_BACK_LABEL": "العودة للخلف", "GO_BACK_LABEL": "العودة للخلف",
"ASSIGN_LABEL": "تكليف", "ASSIGN_LABEL": "تكليف",
"YES": "نعم", "YES": "نعم",

View File

@@ -367,8 +367,8 @@
}, },
"SUMMARY": { "SUMMARY": {
"TITLE": "ملخص", "TITLE": "ملخص",
"DELETE_WARNING": "سيتم حذف جهة الاتصال <strong>%{primaryContactName}</strong>.", "DELETE_WARNING": "سيتم حذف جهة الاتصال <strong>{primaryContactName}</strong>.",
"ATTRIBUTE_WARNING": "سيتم نسخ تفاصيل الاتصال من <strong>%{primaryContactName}</strong> إلى <strong>%{parentContactName}</strong>." "ATTRIBUTE_WARNING": "سيتم نسخ تفاصيل الاتصال من <strong>{primaryContactName}</strong> إلى <strong>{parentContactName}</strong>."
}, },
"SEARCH": { "SEARCH": {
"ERROR": "رسالة_خطأ" "ERROR": "رسالة_خطأ"

View File

@@ -101,7 +101,7 @@
"SELECT_PLACEHOLDER": "لا يوجد", "SELECT_PLACEHOLDER": "لا يوجد",
"INPUT_PLACEHOLDER": "تحديد الأولوية", "INPUT_PLACEHOLDER": "تحديد الأولوية",
"NO_RESULTS": "لم يتم العثور على النتائج", "NO_RESULTS": "لم يتم العثور على النتائج",
"SUCCESSFUL": "تغيير أولوية معرف المحادثة %{conversationId} إلى %{priority}", "SUCCESSFUL": "تغيير أولوية معرف المحادثة {conversationId} إلى {priority}",
"FAILED": "تعذر تغيير الأولوية، الرجاء المحاولة مرة أخرى." "FAILED": "تعذر تغيير الأولوية، الرجاء المحاولة مرة أخرى."
} }
}, },
@@ -122,15 +122,15 @@
"ASSIGN_TEAM": "تعيين فريق", "ASSIGN_TEAM": "تعيين فريق",
"API": { "API": {
"AGENT_ASSIGNMENT": { "AGENT_ASSIGNMENT": {
"SUCCESFUL": "معرف المحادثة %{conversationId} تم تعيينه لـ \"%{agentName}\"", "SUCCESFUL": "معرف المحادثة {conversationId} تم تعيينه لـ \"{agentName}\"",
"FAILED": "تعذر تعيين الوكيل. الرجاء المحاولة مرة أخرى." "FAILED": "تعذر تعيين الوكيل. الرجاء المحاولة مرة أخرى."
}, },
"LABEL_ASSIGNMENT": { "LABEL_ASSIGNMENT": {
"SUCCESFUL": "تعيين تسمية #%{labelName} لمعرف المحادثة %{conversationId}", "SUCCESFUL": "تعيين تسمية #{labelName} لمعرف المحادثة {conversationId}",
"FAILED": "تعذر تعيين التسمية. الرجاء المحاولة مرة أخرى." "FAILED": "تعذر تعيين التسمية. الرجاء المحاولة مرة أخرى."
}, },
"TEAM_ASSIGNMENT": { "TEAM_ASSIGNMENT": {
"SUCCESFUL": "الفريق المعين \"%{team}\" لمعرف المحادثة %{conversationId}", "SUCCESFUL": "الفريق المعين \"{team}\" لمعرف المحادثة {conversationId}",
"FAILED": "تعذر تعيين الفريق. الرجاء المحاولة مرة أخرى." "FAILED": "تعذر تعيين الفريق. الرجاء المحاولة مرة أخرى."
} }
} }
@@ -239,11 +239,11 @@
} }
}, },
"ONBOARDING": { "ONBOARDING": {
"TITLE": "اهلاً 👋، مرحباً بك في %{installationName}!", "TITLE": "اهلاً 👋، مرحباً بك في {installationName}!",
"DESCRIPTION": "شكرا للتسجيل. نريدك أن تحصل على أقصى استفادة من %{installationName}. إليك بعض الأشياء التي يمكنك القيام بها في %{installationName} لجعل التجربة رائعة.", "DESCRIPTION": "شكرا للتسجيل. نريدك أن تحصل على أقصى استفادة من {installationName}. إليك بعض الأشياء التي يمكنك القيام بها في {installationName} لجعل التجربة رائعة.",
"GREETING_MORNING": "👋 صباح الخير، %{name}. مرحبا بك في %{installationName}.", "GREETING_MORNING": "👋 صباح الخير، {name}. مرحبا بك في {installationName}.",
"GREETING_AFTERNOON": "👋 مساء الخير، %{name}. مرحبا بك في %{installationName}.", "GREETING_AFTERNOON": "👋 مساء الخير، {name}. مرحبا بك في {installationName}.",
"GREETING_EVENING": "👋 مساء الخير، %{name}. مرحبا بك في %{installationName}.", "GREETING_EVENING": "👋 مساء الخير، {name}. مرحبا بك في {installationName}.",
"READ_LATEST_UPDATES": "اطلع على آخر التحديثات", "READ_LATEST_UPDATES": "اطلع على آخر التحديثات",
"ALL_CONVERSATION": { "ALL_CONVERSATION": {
"TITLE": "جميع محادثاتك في مكان واحد", "TITLE": "جميع محادثاتك في مكان واحد",
@@ -317,10 +317,10 @@
"SIDEBAR_TITLE": "المشاركون في المحادثة", "SIDEBAR_TITLE": "المشاركون في المحادثة",
"NO_RECORDS_FOUND": "لم يتم العثور على النتائج", "NO_RECORDS_FOUND": "لم يتم العثور على النتائج",
"ADD_PARTICIPANTS": "اختر المشاركين", "ADD_PARTICIPANTS": "اختر المشاركين",
"REMANING_PARTICIPANTS_TEXT": "+%{count} أخرى", "REMANING_PARTICIPANTS_TEXT": "+{count} أخرى",
"REMANING_PARTICIPANT_TEXT": "+%{count} أخرى", "REMANING_PARTICIPANT_TEXT": "+{count} أخرى",
"TOTAL_PARTICIPANTS_TEXT": "%{count} شخص مشارك.", "TOTAL_PARTICIPANTS_TEXT": "{count} شخص مشارك.",
"TOTAL_PARTICIPANT_TEXT": "%{count} شخص مشارك.", "TOTAL_PARTICIPANT_TEXT": "{count} شخص مشارك.",
"NO_PARTICIPANTS_TEXT": "لا أحد يشارك!", "NO_PARTICIPANTS_TEXT": "لا أحد يشارك!",
"WATCH_CONVERSATION": "الانضمام إلى المحادثة", "WATCH_CONVERSATION": "الانضمام إلى المحادثة",
"YOU_ARE_WATCHING": "أنت مشترك", "YOU_ARE_WATCHING": "أنت مشترك",

View File

@@ -48,7 +48,7 @@
"CUSTOM_EMAIL_DOMAIN_ENABLED": "يمكنك تلقي رسائل البريد الإلكتروني في النطاق المخصص الخاص بك الآن." "CUSTOM_EMAIL_DOMAIN_ENABLED": "يمكنك تلقي رسائل البريد الإلكتروني في النطاق المخصص الخاص بك الآن."
} }
}, },
"UPDATE_CHATWOOT": "يتوفر تحديث %{latestChatwootVersion} لـ Chatwoot. الرجاء التحديث.", "UPDATE_CHATWOOT": "يتوفر تحديث {latestChatwootVersion} لـ Chatwoot. الرجاء التحديث.",
"LEARN_MORE": "اعرف المزيد", "LEARN_MORE": "اعرف المزيد",
"PAYMENT_PENDING": "الدفعة الخاصة بك معلقة. الرجاء تحديث معلومات الدفع الخاصة بك للاستمرار في استخدام Chatwoot", "PAYMENT_PENDING": "الدفعة الخاصة بك معلقة. الرجاء تحديث معلومات الدفع الخاصة بك للاستمرار في استخدام Chatwoot",
"LIMITS_UPGRADE": "لقد تجاوز حسابك حدود الاستخدام، يرجى ترقية خطتك للاستمرار في استخدام Chatwoot", "LIMITS_UPGRADE": "لقد تجاوز حسابك حدود الاستخدام، يرجى ترقية خطتك للاستمرار في استخدام Chatwoot",

View File

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

View File

@@ -1,7 +1,7 @@
{ {
"INTEGRATION_APPS": { "INTEGRATION_APPS": {
"FETCHING": "جلب التكاملات", "FETCHING": "جلب التكاملات",
"NO_HOOK_CONFIGURED": "لا يوجد %{integrationId} تكاملات مكونة في هذا الحساب.", "NO_HOOK_CONFIGURED": "لا يوجد {integrationId} تكاملات مكونة في هذا الحساب.",
"HEADER": "التطبيقات", "HEADER": "التطبيقات",
"STATUS": { "STATUS": {
"ENABLED": "مفعل", "ENABLED": "مفعل",
@@ -56,7 +56,7 @@
"BUTTON_TEXT": "قطع الاتصال" "BUTTON_TEXT": "قطع الاتصال"
}, },
"SIDEBAR_DESCRIPTION": { "SIDEBAR_DESCRIPTION": {
"DIALOGFLOW": "تدفق الحوار هو منصة لفهم اللغة الطبيعية التي تجعل من السهل تصميم ودمج واجهة المستخدم للمحادثة في تطبيق الهاتف المحمول الخاص بك، تطبيق الويب، الجهاز، البوت، نظام الاستجابة الصوتية التفاعلي، وما إلى ذلك. <br /> <br /> تكامل تدفق الحوار مع %{installationName} يسمح لك بتكوين بوت تدفق الحوار مع صناديق الوارد الخاصة بك والذي يتيح للبوت التعامل مع الاستفسارات في البداية وتسليمها إلى وكيل عند الحاجة. ويمكن استخدام تدفق البيانات لتأهيل الخيوط وتقليل عبء العمل الملقى على عاتق الوكلاء عن طريق طرح الأسئلة المتكررة وما إلى ذلك. <br /> <br /> لإضافة تدفق الحوار، تحتاج إلى إنشاء حساب خدمة في وحدة تحكم مشروع جوجل الخاص بك ومشاركة بيانات الاعتماد. يرجى الرجوع إلى مستندات Dialogflow للحصول على مزيد من المعلومات." "DIALOGFLOW": "تدفق الحوار هو منصة لفهم اللغة الطبيعية التي تجعل من السهل تصميم ودمج واجهة المستخدم للمحادثة في تطبيق الهاتف المحمول الخاص بك، تطبيق الويب، الجهاز، البوت، نظام الاستجابة الصوتية التفاعلي، وما إلى ذلك. <br /> <br /> تكامل تدفق الحوار مع {installationName} يسمح لك بتكوين بوت تدفق الحوار مع صناديق الوارد الخاصة بك والذي يتيح للبوت التعامل مع الاستفسارات في البداية وتسليمها إلى وكيل عند الحاجة. ويمكن استخدام تدفق البيانات لتأهيل الخيوط وتقليل عبء العمل الملقى على عاتق الوكلاء عن طريق طرح الأسئلة المتكررة وما إلى ذلك. <br /> <br /> لإضافة تدفق الحوار، تحتاج إلى إنشاء حساب خدمة في وحدة تحكم مشروع جوجل الخاص بك ومشاركة بيانات الاعتماد. يرجى الرجوع إلى مستندات Dialogflow للحصول على مزيد من المعلومات."
} }
} }
} }

View File

@@ -76,7 +76,7 @@
}, },
"CONFIRM": { "CONFIRM": {
"TITLE": "تأكيد الحذف", "TITLE": "تأكيد الحذف",
"MESSAGE": "هل أنت متأكد من حذف webhook؟ (%{webhookURL})", "MESSAGE": "هل أنت متأكد من حذف webhook؟ ({webhookURL})",
"YES": "نعم، احذف ", "YES": "نعم، احذف ",
"NO": "لا، احتفظ به" "NO": "لا، احتفظ به"
} }
@@ -114,7 +114,7 @@
}, },
"OPEN_AI": { "OPEN_AI": {
"AI_ASSIST": "AI Assist", "AI_ASSIST": "AI Assist",
"WITH_AI": " %{option} with AI ", "WITH_AI": " {option} with AI ",
"OPTIONS": { "OPTIONS": {
"REPLY_SUGGESTION": "Reply Suggestion", "REPLY_SUGGESTION": "Reply Suggestion",
"SUMMARIZE": "Summarize", "SUMMARIZE": "Summarize",
@@ -216,7 +216,7 @@
"CONFIRM_YES": "نعم، احذف", "CONFIRM_YES": "نعم، احذف",
"CONFIRM_NO": "لا، احتفظ به", "CONFIRM_NO": "لا، احتفظ به",
"TITLE": "تأكيد الحذف", "TITLE": "تأكيد الحذف",
"MESSAGE": "هل أنت متأكد من حذف التطبيق - %{appName}؟", "MESSAGE": "هل أنت متأكد من حذف التطبيق - {appName}؟",
"API_SUCCESS": "تم حذف تطبيق لوحة التحكم بنجاح", "API_SUCCESS": "تم حذف تطبيق لوحة التحكم بنجاح",
"API_ERROR": "لم نتمكن من حذف التطبيق. الرجاء المحاولة مرة أخرى لاحقاً" "API_ERROR": "لم نتمكن من حذف التطبيق. الرجاء المحاولة مرة أخرى لاحقاً"
} }
@@ -235,7 +235,7 @@
"ERROR": "حدث خطأ أثناء جلب المشكلات من Linear، الرجاء المحاولة مرة أخرى", "ERROR": "حدث خطأ أثناء جلب المشكلات من Linear، الرجاء المحاولة مرة أخرى",
"LINK_SUCCESS": "تم ربط المشكلة بنجاح", "LINK_SUCCESS": "تم ربط المشكلة بنجاح",
"LINK_ERROR": "حدث خطأ أثناء ربط المشكلة، الرجاء المحاولة مرة أخرى", "LINK_ERROR": "حدث خطأ أثناء ربط المشكلة، الرجاء المحاولة مرة أخرى",
"LINK_TITLE": "محادثة (#%{conversationId}) مع %{name}" "LINK_TITLE": "محادثة (#{conversationId}) مع {name}"
}, },
"ADD_OR_LINK": { "ADD_OR_LINK": {
"TITLE": "إنشاء/رابط مشكلة في Linear", "TITLE": "إنشاء/رابط مشكلة في Linear",
@@ -294,7 +294,7 @@
"PRIORITY": "الأولوية", "PRIORITY": "الأولوية",
"ASSIGNEE": "المكلَّف", "ASSIGNEE": "المكلَّف",
"LABELS": "الوسوم", "LABELS": "الوسوم",
"CREATED_AT": "تم إنشاؤها في %{createdAt}" "CREATED_AT": "تم إنشاؤها في {createdAt}"
}, },
"UNLINK": { "UNLINK": {
"TITLE": "إلغاء الربط", "TITLE": "إلغاء الربط",

View File

@@ -23,13 +23,13 @@
"NAME": "وقت الاستجابة الأولى", "NAME": "وقت الاستجابة الأولى",
"DESC": "(متوسط)", "DESC": "(متوسط)",
"INFO_TEXT": "العدد الإجمالي للمحادثات المستخدمة في الحساب:", "INFO_TEXT": "العدد الإجمالي للمحادثات المستخدمة في الحساب:",
"TOOLTIP_TEXT": "وقت الرد الأول هو %{metricValue} (على أساس %{conversationCount} محادثات)" "TOOLTIP_TEXT": "وقت الرد الأول هو {metricValue} (على أساس {conversationCount} محادثات)"
}, },
"RESOLUTION_TIME": { "RESOLUTION_TIME": {
"NAME": "وقت إغلاق المحادثات", "NAME": "وقت إغلاق المحادثات",
"DESC": "(متوسط)", "DESC": "(متوسط)",
"INFO_TEXT": "العدد الإجمالي للمحادثات المستخدمة في الحساب:", "INFO_TEXT": "العدد الإجمالي للمحادثات المستخدمة في الحساب:",
"TOOLTIP_TEXT": "وقت الحل هو %{metricValue} (على أساس %{conversationCount} محادثات)" "TOOLTIP_TEXT": "وقت الحل هو {metricValue} (على أساس {conversationCount} محادثات)"
}, },
"RESOLUTION_COUNT": { "RESOLUTION_COUNT": {
"NAME": "عدد مرات الإغلاق", "NAME": "عدد مرات الإغلاق",
@@ -45,7 +45,7 @@
}, },
"REPLY_TIME": { "REPLY_TIME": {
"NAME": "وقت انتظار العميل", "NAME": "وقت انتظار العميل",
"TOOLTIP_TEXT": "وقت الانتظار هو %{metricValue} (بناء على ردود %{conversationCount})" "TOOLTIP_TEXT": "وقت الانتظار هو {metricValue} (بناء على ردود {conversationCount})"
} }
}, },
"DATE_RANGE_OPTIONS": { "DATE_RANGE_OPTIONS": {
@@ -167,13 +167,13 @@
"NAME": "وقت الاستجابة الأولى", "NAME": "وقت الاستجابة الأولى",
"DESC": "(متوسط)", "DESC": "(متوسط)",
"INFO_TEXT": "العدد الإجمالي للمحادثات المستخدمة في الحساب:", "INFO_TEXT": "العدد الإجمالي للمحادثات المستخدمة في الحساب:",
"TOOLTIP_TEXT": "وقت الرد الأول هو %{metricValue} (على أساس %{conversationCount} محادثات)" "TOOLTIP_TEXT": "وقت الرد الأول هو {metricValue} (على أساس {conversationCount} محادثات)"
}, },
"RESOLUTION_TIME": { "RESOLUTION_TIME": {
"NAME": "وقت إغلاق المحادثات", "NAME": "وقت إغلاق المحادثات",
"DESC": "(متوسط)", "DESC": "(متوسط)",
"INFO_TEXT": "العدد الإجمالي للمحادثات المستخدمة في الحساب:", "INFO_TEXT": "العدد الإجمالي للمحادثات المستخدمة في الحساب:",
"TOOLTIP_TEXT": "وقت الحل هو %{metricValue} (على أساس %{conversationCount} محادثات)" "TOOLTIP_TEXT": "وقت الحل هو {metricValue} (على أساس {conversationCount} محادثات)"
}, },
"RESOLUTION_COUNT": { "RESOLUTION_COUNT": {
"NAME": "عدد مرات الإغلاق", "NAME": "عدد مرات الإغلاق",
@@ -234,13 +234,13 @@
"NAME": "وقت الاستجابة الأولى", "NAME": "وقت الاستجابة الأولى",
"DESC": "(متوسط)", "DESC": "(متوسط)",
"INFO_TEXT": "العدد الإجمالي للمحادثات المستخدمة في الحساب:", "INFO_TEXT": "العدد الإجمالي للمحادثات المستخدمة في الحساب:",
"TOOLTIP_TEXT": "وقت الرد الأول هو %{metricValue} (على أساس %{conversationCount} محادثات)" "TOOLTIP_TEXT": "وقت الرد الأول هو {metricValue} (على أساس {conversationCount} محادثات)"
}, },
"RESOLUTION_TIME": { "RESOLUTION_TIME": {
"NAME": "وقت إغلاق المحادثات", "NAME": "وقت إغلاق المحادثات",
"DESC": "(متوسط)", "DESC": "(متوسط)",
"INFO_TEXT": "العدد الإجمالي للمحادثات المستخدمة في الحساب:", "INFO_TEXT": "العدد الإجمالي للمحادثات المستخدمة في الحساب:",
"TOOLTIP_TEXT": "وقت الحل هو %{metricValue} (على أساس %{conversationCount} محادثات)" "TOOLTIP_TEXT": "وقت الحل هو {metricValue} (على أساس {conversationCount} محادثات)"
}, },
"RESOLUTION_COUNT": { "RESOLUTION_COUNT": {
"NAME": "عدد مرات الإغلاق", "NAME": "عدد مرات الإغلاق",
@@ -301,13 +301,13 @@
"NAME": "وقت الاستجابة الأولى", "NAME": "وقت الاستجابة الأولى",
"DESC": "(متوسط)", "DESC": "(متوسط)",
"INFO_TEXT": "العدد الإجمالي للمحادثات المستخدمة في الحساب:", "INFO_TEXT": "العدد الإجمالي للمحادثات المستخدمة في الحساب:",
"TOOLTIP_TEXT": "وقت الرد الأول هو %{metricValue} (على أساس %{conversationCount} محادثات)" "TOOLTIP_TEXT": "وقت الرد الأول هو {metricValue} (على أساس {conversationCount} محادثات)"
}, },
"RESOLUTION_TIME": { "RESOLUTION_TIME": {
"NAME": "وقت إغلاق المحادثات", "NAME": "وقت إغلاق المحادثات",
"DESC": "(متوسط)", "DESC": "(متوسط)",
"INFO_TEXT": "العدد الإجمالي للمحادثات المستخدمة في الحساب:", "INFO_TEXT": "العدد الإجمالي للمحادثات المستخدمة في الحساب:",
"TOOLTIP_TEXT": "وقت الحل هو %{metricValue} (على أساس %{conversationCount} محادثات)" "TOOLTIP_TEXT": "وقت الحل هو {metricValue} (على أساس {conversationCount} محادثات)"
}, },
"RESOLUTION_COUNT": { "RESOLUTION_COUNT": {
"NAME": "عدد مرات الإغلاق", "NAME": "عدد مرات الإغلاق",
@@ -368,13 +368,13 @@
"NAME": "وقت الاستجابة الأولى", "NAME": "وقت الاستجابة الأولى",
"DESC": "(متوسط)", "DESC": "(متوسط)",
"INFO_TEXT": "العدد الإجمالي للمحادثات المستخدمة في الحساب:", "INFO_TEXT": "العدد الإجمالي للمحادثات المستخدمة في الحساب:",
"TOOLTIP_TEXT": "وقت الرد الأول هو %{metricValue} (على أساس %{conversationCount} محادثات)" "TOOLTIP_TEXT": "وقت الرد الأول هو {metricValue} (على أساس {conversationCount} محادثات)"
}, },
"RESOLUTION_TIME": { "RESOLUTION_TIME": {
"NAME": "وقت إغلاق المحادثات", "NAME": "وقت إغلاق المحادثات",
"DESC": "(متوسط)", "DESC": "(متوسط)",
"INFO_TEXT": "العدد الإجمالي للمحادثات المستخدمة في الحساب:", "INFO_TEXT": "العدد الإجمالي للمحادثات المستخدمة في الحساب:",
"TOOLTIP_TEXT": "وقت الحل هو %{metricValue} (على أساس %{conversationCount} محادثات)" "TOOLTIP_TEXT": "وقت الحل هو {metricValue} (على أساس {conversationCount} محادثات)"
}, },
"RESOLUTION_COUNT": { "RESOLUTION_COUNT": {
"NAME": "عدد مرات الإغلاق", "NAME": "عدد مرات الإغلاق",
@@ -480,8 +480,8 @@
"CONVERSATION_HEATMAP": { "CONVERSATION_HEATMAP": {
"HEADER": "Conversation Traffic", "HEADER": "Conversation Traffic",
"NO_CONVERSATIONS": "No conversations", "NO_CONVERSATIONS": "No conversations",
"CONVERSATION": "%{count} conversation", "CONVERSATION": "{count} conversation",
"CONVERSATIONS": "%{count} conversations", "CONVERSATIONS": "{count} conversations",
"DOWNLOAD_REPORT": "Download report" "DOWNLOAD_REPORT": "Download report"
}, },
"AGENT_CONVERSATIONS": { "AGENT_CONVERSATIONS": {

View File

@@ -12,8 +12,8 @@
"MESSAGES": "الرسائل" "MESSAGES": "الرسائل"
}, },
"SEARCHING_DATA": "جاري البحث", "SEARCHING_DATA": "جاري البحث",
"EMPTY_STATE": "لم يتم العثور على %{item} للطلب '%{query}'", "EMPTY_STATE": "لم يتم العثور على {item} للطلب '{query}'",
"EMPTY_STATE_FULL": "لم يتم العثور على نتائج للطلب '%{query}'", "EMPTY_STATE_FULL": "لم يتم العثور على نتائج للطلب '{query}'",
"PLACEHOLDER_KEYBINDING": "/ للتركيز", "PLACEHOLDER_KEYBINDING": "/ للتركيز",
"INPUT_PLACEHOLDER": "أكتب 3 أحرف أو أكثر للبحث", "INPUT_PLACEHOLDER": "أكتب 3 أحرف أو أكثر للبحث",
"EMPTY_STATE_DEFAULT": "البحث عن طريق معرف المحادثة أو البريد الإلكتروني أو رقم الهاتف أو الرسائل للحصول على نتائج بحث أفضل. ", "EMPTY_STATE_DEFAULT": "البحث عن طريق معرف المحادثة أو البريد الإلكتروني أو رقم الهاتف أو الرسائل للحصول على نتائج بحث أفضل. ",

View File

@@ -301,7 +301,7 @@
"TITLE": "الفواتير", "TITLE": "الفواتير",
"CURRENT_PLAN": { "CURRENT_PLAN": {
"TITLE": "الباقة الحالية", "TITLE": "الباقة الحالية",
"PLAN_NOTE": "أنت مشترك حاليا في باقة**%{plan}** مع تراخيص **%{quantity}**" "PLAN_NOTE": "أنت مشترك حاليا في باقة**{plan}** مع تراخيص **{quantity}**"
}, },
"MANAGE_SUBSCRIPTION": { "MANAGE_SUBSCRIPTION": {
"TITLE": "إدارة الاشتراك الخاص بك", "TITLE": "إدارة الاشتراك الخاص بك",

View File

@@ -17,7 +17,7 @@
}, },
"AGENTS": { "AGENTS": {
"BUTTON_TEXT": "إضافة وكيل للفريق", "BUTTON_TEXT": "إضافة وكيل للفريق",
"TITLE": "إضافة وكلاء للفريق - %{teamName}", "TITLE": "إضافة وكلاء للفريق - {teamName}",
"DESC": "إضافة وكلاء إلى فريقك الجديد. هذا يتيح لكم العمل كفريق في المحادثات، والحصول على إشعار عن الأحداث الجديدة في نفس المحادثة." "DESC": "إضافة وكلاء إلى فريقك الجديد. هذا يتيح لكم العمل كفريق في المحادثات، والحصول على إشعار عن الأحداث الجديدة في نفس المحادثة."
}, },
"WIZARD": [ "WIZARD": [
@@ -46,7 +46,7 @@
}, },
"AGENTS": { "AGENTS": {
"BUTTON_TEXT": "تحديث الوكلاء في الفريق", "BUTTON_TEXT": "تحديث الوكلاء في الفريق",
"TITLE": "إضافة وكلاء للفريق - %{teamName}", "TITLE": "إضافة وكلاء للفريق - {teamName}",
"DESC": "إضافة وكلاء إلى فريقك الذي تم إنشاؤه حديثاً. سيتم إعلام جميع الوكلاء المضافين عند تعيين محادثة لهذا الفريق." "DESC": "إضافة وكلاء إلى فريقك الذي تم إنشاؤه حديثاً. سيتم إعلام جميع الوكلاء المضافين عند تعيين محادثة لهذا الفريق."
}, },
"WIZARD": [ "WIZARD": [
@@ -77,14 +77,14 @@
"ADD_AGENTS": "إضافة وكلاء إلى فريقك...", "ADD_AGENTS": "إضافة وكلاء إلى فريقك...",
"SELECT": "حدد", "SELECT": "حدد",
"SELECT_ALL": "تحديد جميع الوكلاء", "SELECT_ALL": "تحديد جميع الوكلاء",
"SELECTED_COUNT": "تم تحديد %{selected} من أصل %{total} وكيل." "SELECTED_COUNT": "تم تحديد {selected} من أصل {total} وكيل."
}, },
"ADD": { "ADD": {
"TITLE": "إضافة وكلاء للفريق - %{teamName}", "TITLE": "إضافة وكلاء للفريق - {teamName}",
"DESC": "إضافة وكلاء إلى فريقك الجديد. هذا يتيح لكم العمل كفريق في المحادثات، والحصول على إشعار عن الأحداث الجديدة في نفس المحادثة.", "DESC": "إضافة وكلاء إلى فريقك الجديد. هذا يتيح لكم العمل كفريق في المحادثات، والحصول على إشعار عن الأحداث الجديدة في نفس المحادثة.",
"SELECT": "حدد", "SELECT": "حدد",
"SELECT_ALL": "تحديد جميع الوكلاء", "SELECT_ALL": "تحديد جميع الوكلاء",
"SELECTED_COUNT": "تم تحديد %{selected} من أصل %{total} وكيل.", "SELECTED_COUNT": "تم تحديد {selected} من أصل {total} وكيل.",
"BUTTON_TEXT": "إضافة وكلاء", "BUTTON_TEXT": "إضافة وكلاء",
"AGENT_VALIDATION_ERROR": "اختر وكيل واحد على الأقل." "AGENT_VALIDATION_ERROR": "اختر وكيل واحد على الأقل."
}, },

View File

@@ -3,7 +3,7 @@
"MODAL": { "MODAL": {
"TITLE": "قوالب الواتساب", "TITLE": "قوالب الواتساب",
"SUBTITLE": "حدد القالب الذي تريد إرساله", "SUBTITLE": "حدد القالب الذي تريد إرساله",
"TEMPLATE_SELECTED_SUBTITLE": "معالجة %{templateName}" "TEMPLATE_SELECTED_SUBTITLE": "معالجة {templateName}"
}, },
"PICKER": { "PICKER": {
"SEARCH_PLACEHOLDER": "نماذج البحث", "SEARCH_PLACEHOLDER": "نماذج البحث",
@@ -16,7 +16,7 @@
}, },
"PARSER": { "PARSER": {
"VARIABLES_LABEL": "المتغيرات", "VARIABLES_LABEL": "المتغيرات",
"VARIABLE_PLACEHOLDER": "أدخل قيمة %{variable}", "VARIABLE_PLACEHOLDER": "أدخل قيمة {variable}",
"GO_BACK_LABEL": "العودة للخلف", "GO_BACK_LABEL": "العودة للخلف",
"SEND_MESSAGE_LABEL": "إرسال الرسالة", "SEND_MESSAGE_LABEL": "إرسال الرسالة",
"FORM_ERROR_MESSAGE": "يرجى ملء جميع المتغيرات قبل الإرسال" "FORM_ERROR_MESSAGE": "يرجى ملء جميع المتغيرات قبل الإرسال"

View File

@@ -65,7 +65,7 @@
"ERROR_MESSAGE": "Couldn't delete the custom attribute. Try again." "ERROR_MESSAGE": "Couldn't delete the custom attribute. Try again."
}, },
"CONFIRM": { "CONFIRM": {
"TITLE": "Are you sure want to delete - %{attributeName}", "TITLE": "Are you sure want to delete - {attributeName}",
"PLACE_HOLDER": "Please type {attributeName} to confirm", "PLACE_HOLDER": "Please type {attributeName} to confirm",
"MESSAGE": "Deleting will remove the custom attribute", "MESSAGE": "Deleting will remove the custom attribute",
"YES": "Изтриване ", "YES": "Изтриване ",

View File

@@ -23,52 +23,52 @@
}, },
"DEFAULT_USER": "System", "DEFAULT_USER": "System",
"AUTOMATION_RULE": { "AUTOMATION_RULE": {
"ADD": "%{agentName} created a new automation rule (#%{id})", "ADD": "{agentName} created a new automation rule (#{id})",
"EDIT": "%{agentName} updated an automation rule (#%{id})", "EDIT": "{agentName} updated an automation rule (#{id})",
"DELETE": "%{agentName} deleted an automation rule (#%{id})" "DELETE": "{agentName} deleted an automation rule (#{id})"
}, },
"ACCOUNT_USER": { "ACCOUNT_USER": {
"ADD": "%{agentName} invited %{invitee} to the account as an %{role}", "ADD": "{agentName} invited {invitee} to the account as an {role}",
"EDIT": { "EDIT": {
"SELF": "%{agentName} changed their %{attributes} to %{values}", "SELF": "{agentName} changed their {attributes} to {values}",
"OTHER": "%{agentName} changed %{attributes} of %{user} to %{values}", "OTHER": "{agentName} changed {attributes} of {user} to {values}",
"DELETED": "%{agentName} changed %{attributes} of a deleted user to %{values}" "DELETED": "{agentName} changed {attributes} of a deleted user to {values}"
} }
}, },
"INBOX": { "INBOX": {
"ADD": "%{agentName} created a new inbox (#%{id})", "ADD": "{agentName} created a new inbox (#{id})",
"EDIT": "%{agentName} updated an inbox (#%{id})", "EDIT": "{agentName} updated an inbox (#{id})",
"DELETE": "%{agentName} deleted an inbox (#%{id})" "DELETE": "{agentName} deleted an inbox (#{id})"
}, },
"WEBHOOK": { "WEBHOOK": {
"ADD": "%{agentName} created a new webhook (#%{id})", "ADD": "{agentName} created a new webhook (#{id})",
"EDIT": "%{agentName} updated a webhook (#%{id})", "EDIT": "{agentName} updated a webhook (#{id})",
"DELETE": "%{agentName} deleted a webhook (#%{id})" "DELETE": "{agentName} deleted a webhook (#{id})"
}, },
"USER_ACTION": { "USER_ACTION": {
"SIGN_IN": "%{agentName} signed in", "SIGN_IN": "{agentName} signed in",
"SIGN_OUT": "%{agentName} signed out" "SIGN_OUT": "{agentName} signed out"
}, },
"TEAM": { "TEAM": {
"ADD": "%{agentName} created a new team (#%{id})", "ADD": "{agentName} created a new team (#{id})",
"EDIT": "%{agentName} updated a team (#%{id})", "EDIT": "{agentName} updated a team (#{id})",
"DELETE": "%{agentName} deleted a team (#%{id})" "DELETE": "{agentName} deleted a team (#{id})"
}, },
"MACRO": { "MACRO": {
"ADD": "%{agentName} created a new macro (#%{id})", "ADD": "{agentName} created a new macro (#{id})",
"EDIT": "%{agentName} updated a macro (#%{id})", "EDIT": "{agentName} updated a macro (#{id})",
"DELETE": "%{agentName} deleted a macro (#%{id})" "DELETE": "{agentName} deleted a macro (#{id})"
}, },
"INBOX_MEMBER": { "INBOX_MEMBER": {
"ADD": "%{agentName} added %{user} to the inbox(#%{inbox_id})", "ADD": "{agentName} added {user} to the inbox(#{inbox_id})",
"REMOVE": "%{agentName} removed %{user} from the inbox(#%{inbox_id})" "REMOVE": "{agentName} removed {user} from the inbox(#{inbox_id})"
}, },
"TEAM_MEMBER": { "TEAM_MEMBER": {
"ADD": "%{agentName} added %{user} to the team(#%{team_id})", "ADD": "{agentName} added {user} to the team(#{team_id})",
"REMOVE": "%{agentName} removed %{user} from the team(#%{team_id})" "REMOVE": "{agentName} removed {user} from the team(#{team_id})"
}, },
"ACCOUNT": { "ACCOUNT": {
"EDIT": "%{agentName} updated the account configuration (#%{id})" "EDIT": "{agentName} updated the account configuration (#{id})"
} }
} }
} }

View File

@@ -1,9 +1,9 @@
{ {
"BULK_ACTION": { "BULK_ACTION": {
"CONVERSATIONS_SELECTED": "%{conversationCount} conversations selected", "CONVERSATIONS_SELECTED": "{conversationCount} conversations selected",
"AGENT_SELECT_LABEL": "Изберете агент", "AGENT_SELECT_LABEL": "Изберете агент",
"ASSIGN_CONFIRMATION_LABEL": "Are you sure to assign %{conversationCount} %{conversationLabel} to", "ASSIGN_CONFIRMATION_LABEL": "Are you sure to assign {conversationCount} {conversationLabel} to",
"UNASSIGN_CONFIRMATION_LABEL": "Are you sure to unassign %{conversationCount} %{conversationLabel}?", "UNASSIGN_CONFIRMATION_LABEL": "Are you sure to unassign {conversationCount} {conversationLabel}?",
"GO_BACK_LABEL": "Go back", "GO_BACK_LABEL": "Go back",
"ASSIGN_LABEL": "Assign", "ASSIGN_LABEL": "Assign",
"YES": "Yes", "YES": "Yes",

View File

@@ -367,8 +367,8 @@
}, },
"SUMMARY": { "SUMMARY": {
"TITLE": "Резюме", "TITLE": "Резюме",
"DELETE_WARNING": "Контакт от <strong>%{primaryContactName}</strong> ще бъде изтрит.", "DELETE_WARNING": "Контакт от <strong>{primaryContactName}</strong> ще бъде изтрит.",
"ATTRIBUTE_WARNING": "Детайлите на контакт <strong>%{primaryContactName}</strong> ще бъдат копирани в <strong>%{parentContactName}</strong>." "ATTRIBUTE_WARNING": "Детайлите на контакт <strong>{primaryContactName}</strong> ще бъдат копирани в <strong>{parentContactName}</strong>."
}, },
"SEARCH": { "SEARCH": {
"ERROR": "ГРЕШКА" "ERROR": "ГРЕШКА"

View File

@@ -101,7 +101,7 @@
"SELECT_PLACEHOLDER": "Нито един", "SELECT_PLACEHOLDER": "Нито един",
"INPUT_PLACEHOLDER": "Select priority", "INPUT_PLACEHOLDER": "Select priority",
"NO_RESULTS": "Няма намерени резултати", "NO_RESULTS": "Няма намерени резултати",
"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." "FAILED": "Couldn't change priority. Please try again."
} }
}, },
@@ -122,15 +122,15 @@
"ASSIGN_TEAM": "Assign team", "ASSIGN_TEAM": "Assign team",
"API": { "API": {
"AGENT_ASSIGNMENT": { "AGENT_ASSIGNMENT": {
"SUCCESFUL": "Conversation id %{conversationId} assigned to \"%{agentName}\"", "SUCCESFUL": "Conversation id {conversationId} assigned to \"{agentName}\"",
"FAILED": "Couldn't assign agent. Please try again." "FAILED": "Couldn't assign agent. Please try again."
}, },
"LABEL_ASSIGNMENT": { "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." "FAILED": "Couldn't assign label. Please try again."
}, },
"TEAM_ASSIGNMENT": { "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." "FAILED": "Couldn't assign team. Please try again."
} }
} }
@@ -239,11 +239,11 @@
} }
}, },
"ONBOARDING": { "ONBOARDING": {
"TITLE": "Hey 👋, 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.", "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_MORNING": "👋 Good morning, {name}. Welcome to {installationName}.",
"GREETING_AFTERNOON": "👋 Good afternoon, %{name}. Welcome to %{installationName}.", "GREETING_AFTERNOON": "👋 Good afternoon, {name}. Welcome to {installationName}.",
"GREETING_EVENING": "👋 Good evening, %{name}. Welcome to %{installationName}.", "GREETING_EVENING": "👋 Good evening, {name}. Welcome to {installationName}.",
"READ_LATEST_UPDATES": "Read our latest updates", "READ_LATEST_UPDATES": "Read our latest updates",
"ALL_CONVERSATION": { "ALL_CONVERSATION": {
"TITLE": "All your conversations in one place", "TITLE": "All your conversations in one place",
@@ -317,10 +317,10 @@
"SIDEBAR_TITLE": "Conversation participants", "SIDEBAR_TITLE": "Conversation participants",
"NO_RECORDS_FOUND": "Няма намерени резултати", "NO_RECORDS_FOUND": "Няма намерени резултати",
"ADD_PARTICIPANTS": "Select participants", "ADD_PARTICIPANTS": "Select participants",
"REMANING_PARTICIPANTS_TEXT": "+%{count} others", "REMANING_PARTICIPANTS_TEXT": "+{count} others",
"REMANING_PARTICIPANT_TEXT": "+%{count} other", "REMANING_PARTICIPANT_TEXT": "+{count} other",
"TOTAL_PARTICIPANTS_TEXT": "%{count} people are participating.", "TOTAL_PARTICIPANTS_TEXT": "{count} people are participating.",
"TOTAL_PARTICIPANT_TEXT": "%{count} person is participating.", "TOTAL_PARTICIPANT_TEXT": "{count} person is participating.",
"NO_PARTICIPANTS_TEXT": "No one is participating!.", "NO_PARTICIPANTS_TEXT": "No one is participating!.",
"WATCH_CONVERSATION": "Join conversation", "WATCH_CONVERSATION": "Join conversation",
"YOU_ARE_WATCHING": "You are participating", "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." "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", "LEARN_MORE": "Learn more",
"PAYMENT_PENDING": "Your payment is pending. Please update your payment information to continue using Chatwoot", "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", "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": { "ARTICLE_SEARCH_RESULT": {
"UNCATEGORIZED": "Uncategorized", "UNCATEGORIZED": "Uncategorized",
"SEARCH_RESULTS": "Search results for %{query}", "SEARCH_RESULTS": "Search results for {query}",
"EMPTY_TEXT": "Search for articles to insert into replies.", "EMPTY_TEXT": "Search for articles to insert into replies.",
"SEARCH_LOADER": "Searching...", "SEARCH_LOADER": "Searching...",
"INSERT_ARTICLE": "Insert", "INSERT_ARTICLE": "Insert",

View File

@@ -1,7 +1,7 @@
{ {
"INTEGRATION_APPS": { "INTEGRATION_APPS": {
"FETCHING": "Fetching Integrations", "FETCHING": "Fetching Integrations",
"NO_HOOK_CONFIGURED": "There are no %{integrationId} integrations configured in this account.", "NO_HOOK_CONFIGURED": "There are no {integrationId} integrations configured in this account.",
"HEADER": "Applications", "HEADER": "Applications",
"STATUS": { "STATUS": {
"ENABLED": "Включен", "ENABLED": "Включен",
@@ -56,7 +56,7 @@
"BUTTON_TEXT": "Прекъсване" "BUTTON_TEXT": "Прекъсване"
}, },
"SIDEBAR_DESCRIPTION": { "SIDEBAR_DESCRIPTION": {
"DIALOGFLOW": "Dialogflow is a natural language understanding platform that makes it easy to design and integrate a conversational user interface into your mobile app, web application, device, bot, interactive voice response system, and so on. <br /> <br /> Dialogflow integration with %{installationName} allows you to configure a Dialogflow bot with your inboxes which lets the bot handle the queries initially and hand them over to an agent when needed. Dialogflow can be used to qualifying the leads, reduce the workload of agents by providing frequently asked questions etc. <br /> <br /> To add Dialogflow, you need to create a Service Account in your Google project console and share the credentials. Please refer to the Dialogflow docs for more information." "DIALOGFLOW": "Dialogflow is a natural language understanding platform that makes it easy to design and integrate a conversational user interface into your mobile app, web application, device, bot, interactive voice response system, and so on. <br /> <br /> Dialogflow integration with {installationName} allows you to configure a Dialogflow bot with your inboxes which lets the bot handle the queries initially and hand them over to an agent when needed. Dialogflow can be used to qualifying the leads, reduce the workload of agents by providing frequently asked questions etc. <br /> <br /> To add Dialogflow, you need to create a Service Account in your Google project console and share the credentials. Please refer to the Dialogflow docs for more information."
} }
} }
} }

View File

@@ -76,7 +76,7 @@
}, },
"CONFIRM": { "CONFIRM": {
"TITLE": "Потвърди изтриването", "TITLE": "Потвърди изтриването",
"MESSAGE": "Are you sure to delete the webhook? (%{webhookURL})", "MESSAGE": "Are you sure to delete the webhook? ({webhookURL})",
"YES": "Да, изтрий ", "YES": "Да, изтрий ",
"NO": "No, Keep it" "NO": "No, Keep it"
} }
@@ -114,7 +114,7 @@
}, },
"OPEN_AI": { "OPEN_AI": {
"AI_ASSIST": "AI Assist", "AI_ASSIST": "AI Assist",
"WITH_AI": " %{option} with AI ", "WITH_AI": " {option} with AI ",
"OPTIONS": { "OPTIONS": {
"REPLY_SUGGESTION": "Reply Suggestion", "REPLY_SUGGESTION": "Reply Suggestion",
"SUMMARIZE": "Summarize", "SUMMARIZE": "Summarize",
@@ -216,7 +216,7 @@
"CONFIRM_YES": "Yes, delete it", "CONFIRM_YES": "Yes, delete it",
"CONFIRM_NO": "No, keep it", "CONFIRM_NO": "No, keep it",
"TITLE": "Потвърди изтриването", "TITLE": "Потвърди изтриването",
"MESSAGE": "Are you sure to delete the app - %{appName}?", "MESSAGE": "Are you sure to delete the app - {appName}?",
"API_SUCCESS": "Dashboard app deleted successfully", "API_SUCCESS": "Dashboard app deleted successfully",
"API_ERROR": "We couldn't delete the app. Please try again later" "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", "ERROR": "There was an error fetching the linear issues, please try again",
"LINK_SUCCESS": "Issue linked successfully", "LINK_SUCCESS": "Issue linked successfully",
"LINK_ERROR": "There was an error linking the issue, please try again", "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": { "ADD_OR_LINK": {
"TITLE": "Create/link linear issue", "TITLE": "Create/link linear issue",
@@ -294,7 +294,7 @@
"PRIORITY": "Priority", "PRIORITY": "Priority",
"ASSIGNEE": "Assignee", "ASSIGNEE": "Assignee",
"LABELS": "Етикети", "LABELS": "Етикети",
"CREATED_AT": "Created at %{createdAt}" "CREATED_AT": "Created at {createdAt}"
}, },
"UNLINK": { "UNLINK": {
"TITLE": "Unlink", "TITLE": "Unlink",

View File

@@ -23,13 +23,13 @@
"NAME": "First Response Time", "NAME": "First Response Time",
"DESC": "( Avg )", "DESC": "( Avg )",
"INFO_TEXT": "Total number of conversations used for computation:", "INFO_TEXT": "Total number of conversations used for computation:",
"TOOLTIP_TEXT": "First Response Time is %{metricValue} (based on %{conversationCount} conversations)" "TOOLTIP_TEXT": "First Response Time is {metricValue} (based on {conversationCount} conversations)"
}, },
"RESOLUTION_TIME": { "RESOLUTION_TIME": {
"NAME": "Resolution Time", "NAME": "Resolution Time",
"DESC": "( Avg )", "DESC": "( Avg )",
"INFO_TEXT": "Total number of conversations used for computation:", "INFO_TEXT": "Total number of conversations used for computation:",
"TOOLTIP_TEXT": "Resolution Time is %{metricValue} (based on %{conversationCount} conversations)" "TOOLTIP_TEXT": "Resolution Time is {metricValue} (based on {conversationCount} conversations)"
}, },
"RESOLUTION_COUNT": { "RESOLUTION_COUNT": {
"NAME": "Resolution Count", "NAME": "Resolution Count",
@@ -45,7 +45,7 @@
}, },
"REPLY_TIME": { "REPLY_TIME": {
"NAME": "Customer waiting 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": { "DATE_RANGE_OPTIONS": {
@@ -167,13 +167,13 @@
"NAME": "First Response Time", "NAME": "First Response Time",
"DESC": "( Avg )", "DESC": "( Avg )",
"INFO_TEXT": "Total number of conversations used for computation:", "INFO_TEXT": "Total number of conversations used for computation:",
"TOOLTIP_TEXT": "First Response Time is %{metricValue} (based on %{conversationCount} conversations)" "TOOLTIP_TEXT": "First Response Time is {metricValue} (based on {conversationCount} conversations)"
}, },
"RESOLUTION_TIME": { "RESOLUTION_TIME": {
"NAME": "Resolution Time", "NAME": "Resolution Time",
"DESC": "( Avg )", "DESC": "( Avg )",
"INFO_TEXT": "Total number of conversations used for computation:", "INFO_TEXT": "Total number of conversations used for computation:",
"TOOLTIP_TEXT": "Resolution Time is %{metricValue} (based on %{conversationCount} conversations)" "TOOLTIP_TEXT": "Resolution Time is {metricValue} (based on {conversationCount} conversations)"
}, },
"RESOLUTION_COUNT": { "RESOLUTION_COUNT": {
"NAME": "Resolution Count", "NAME": "Resolution Count",
@@ -234,13 +234,13 @@
"NAME": "First Response Time", "NAME": "First Response Time",
"DESC": "( Avg )", "DESC": "( Avg )",
"INFO_TEXT": "Total number of conversations used for computation:", "INFO_TEXT": "Total number of conversations used for computation:",
"TOOLTIP_TEXT": "First Response Time is %{metricValue} (based on %{conversationCount} conversations)" "TOOLTIP_TEXT": "First Response Time is {metricValue} (based on {conversationCount} conversations)"
}, },
"RESOLUTION_TIME": { "RESOLUTION_TIME": {
"NAME": "Resolution Time", "NAME": "Resolution Time",
"DESC": "( Avg )", "DESC": "( Avg )",
"INFO_TEXT": "Total number of conversations used for computation:", "INFO_TEXT": "Total number of conversations used for computation:",
"TOOLTIP_TEXT": "Resolution Time is %{metricValue} (based on %{conversationCount} conversations)" "TOOLTIP_TEXT": "Resolution Time is {metricValue} (based on {conversationCount} conversations)"
}, },
"RESOLUTION_COUNT": { "RESOLUTION_COUNT": {
"NAME": "Resolution Count", "NAME": "Resolution Count",
@@ -301,13 +301,13 @@
"NAME": "First Response Time", "NAME": "First Response Time",
"DESC": "( Avg )", "DESC": "( Avg )",
"INFO_TEXT": "Total number of conversations used for computation:", "INFO_TEXT": "Total number of conversations used for computation:",
"TOOLTIP_TEXT": "First Response Time is %{metricValue} (based on %{conversationCount} conversations)" "TOOLTIP_TEXT": "First Response Time is {metricValue} (based on {conversationCount} conversations)"
}, },
"RESOLUTION_TIME": { "RESOLUTION_TIME": {
"NAME": "Resolution Time", "NAME": "Resolution Time",
"DESC": "( Avg )", "DESC": "( Avg )",
"INFO_TEXT": "Total number of conversations used for computation:", "INFO_TEXT": "Total number of conversations used for computation:",
"TOOLTIP_TEXT": "Resolution Time is %{metricValue} (based on %{conversationCount} conversations)" "TOOLTIP_TEXT": "Resolution Time is {metricValue} (based on {conversationCount} conversations)"
}, },
"RESOLUTION_COUNT": { "RESOLUTION_COUNT": {
"NAME": "Resolution Count", "NAME": "Resolution Count",
@@ -368,13 +368,13 @@
"NAME": "First Response Time", "NAME": "First Response Time",
"DESC": "( Avg )", "DESC": "( Avg )",
"INFO_TEXT": "Total number of conversations used for computation:", "INFO_TEXT": "Total number of conversations used for computation:",
"TOOLTIP_TEXT": "First Response Time is %{metricValue} (based on %{conversationCount} conversations)" "TOOLTIP_TEXT": "First Response Time is {metricValue} (based on {conversationCount} conversations)"
}, },
"RESOLUTION_TIME": { "RESOLUTION_TIME": {
"NAME": "Resolution Time", "NAME": "Resolution Time",
"DESC": "( Avg )", "DESC": "( Avg )",
"INFO_TEXT": "Total number of conversations used for computation:", "INFO_TEXT": "Total number of conversations used for computation:",
"TOOLTIP_TEXT": "Resolution Time is %{metricValue} (based on %{conversationCount} conversations)" "TOOLTIP_TEXT": "Resolution Time is {metricValue} (based on {conversationCount} conversations)"
}, },
"RESOLUTION_COUNT": { "RESOLUTION_COUNT": {
"NAME": "Resolution Count", "NAME": "Resolution Count",
@@ -480,8 +480,8 @@
"CONVERSATION_HEATMAP": { "CONVERSATION_HEATMAP": {
"HEADER": "Conversation Traffic", "HEADER": "Conversation Traffic",
"NO_CONVERSATIONS": "No conversations", "NO_CONVERSATIONS": "No conversations",
"CONVERSATION": "%{count} conversation", "CONVERSATION": "{count} conversation",
"CONVERSATIONS": "%{count} conversations", "CONVERSATIONS": "{count} conversations",
"DOWNLOAD_REPORT": "Download report" "DOWNLOAD_REPORT": "Download report"
}, },
"AGENT_CONVERSATIONS": { "AGENT_CONVERSATIONS": {

View File

@@ -12,8 +12,8 @@
"MESSAGES": "Messages" "MESSAGES": "Messages"
}, },
"SEARCHING_DATA": "Searching", "SEARCHING_DATA": "Searching",
"EMPTY_STATE": "No %{item} found for query '%{query}'", "EMPTY_STATE": "No {item} found for query '{query}'",
"EMPTY_STATE_FULL": "No results found for query '%{query}'", "EMPTY_STATE_FULL": "No results found for query '{query}'",
"PLACEHOLDER_KEYBINDING": "/ to focus", "PLACEHOLDER_KEYBINDING": "/ to focus",
"INPUT_PLACEHOLDER": "Search messages, contacts or conversations", "INPUT_PLACEHOLDER": "Search messages, contacts or conversations",
"EMPTY_STATE_DEFAULT": "Search by conversation id, email, phone number, messages for better search results.", "EMPTY_STATE_DEFAULT": "Search by conversation id, email, phone number, messages for better search results.",

View File

@@ -301,7 +301,7 @@
"TITLE": "Billing", "TITLE": "Billing",
"CURRENT_PLAN": { "CURRENT_PLAN": {
"TITLE": "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": { "MANAGE_SUBSCRIPTION": {
"TITLE": "Manage your subscription", "TITLE": "Manage your subscription",

View File

@@ -17,7 +17,7 @@
}, },
"AGENTS": { "AGENTS": {
"BUTTON_TEXT": "Add agents to team", "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." "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": [ "WIZARD": [
@@ -46,7 +46,7 @@
}, },
"AGENTS": { "AGENTS": {
"BUTTON_TEXT": "Update agents in team", "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." "DESC": "Add Agents to your newly created team. All the added agents will be notified when a conversation is assigned to this team."
}, },
"WIZARD": [ "WIZARD": [
@@ -77,14 +77,14 @@
"ADD_AGENTS": "Adding Agents to your Team...", "ADD_AGENTS": "Adding Agents to your Team...",
"SELECT": "select", "SELECT": "select",
"SELECT_ALL": "select all agents", "SELECT_ALL": "select all agents",
"SELECTED_COUNT": "%{selected} out of %{total} agents selected." "SELECTED_COUNT": "{selected} out of {total} agents selected."
}, },
"ADD": { "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.", "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": "select",
"SELECT_ALL": "select all agents", "SELECT_ALL": "select all agents",
"SELECTED_COUNT": "%{selected} out of %{total} agents selected.", "SELECTED_COUNT": "{selected} out of {total} agents selected.",
"BUTTON_TEXT": "Add agents", "BUTTON_TEXT": "Add agents",
"AGENT_VALIDATION_ERROR": "Select at least one agent." "AGENT_VALIDATION_ERROR": "Select at least one agent."
}, },

View File

@@ -3,7 +3,7 @@
"MODAL": { "MODAL": {
"TITLE": "Whatsapp Templates", "TITLE": "Whatsapp Templates",
"SUBTITLE": "Select the whatsapp template you want to send", "SUBTITLE": "Select the whatsapp template you want to send",
"TEMPLATE_SELECTED_SUBTITLE": "Process %{templateName}" "TEMPLATE_SELECTED_SUBTITLE": "Process {templateName}"
}, },
"PICKER": { "PICKER": {
"SEARCH_PLACEHOLDER": "Search Templates", "SEARCH_PLACEHOLDER": "Search Templates",
@@ -16,7 +16,7 @@
}, },
"PARSER": { "PARSER": {
"VARIABLES_LABEL": "Variables", "VARIABLES_LABEL": "Variables",
"VARIABLE_PLACEHOLDER": "Enter %{variable} value", "VARIABLE_PLACEHOLDER": "Enter {variable} value",
"GO_BACK_LABEL": "Go Back", "GO_BACK_LABEL": "Go Back",
"SEND_MESSAGE_LABEL": "Send Message", "SEND_MESSAGE_LABEL": "Send Message",
"FORM_ERROR_MESSAGE": "Please fill all variables before sending" "FORM_ERROR_MESSAGE": "Please fill all variables before sending"

View File

@@ -65,7 +65,7 @@
"ERROR_MESSAGE": "No s'ha pogut suprimir l'atribut personalitzat. Torna-ho a provar." "ERROR_MESSAGE": "No s'ha pogut suprimir l'atribut personalitzat. Torna-ho a provar."
}, },
"CONFIRM": { "CONFIRM": {
"TITLE": "Estàs segur que vols suprimir - %{attributeName}", "TITLE": "Estàs segur que vols suprimir - {attributeName}",
"PLACE_HOLDER": "Escriu {attributeName} per confirmar", "PLACE_HOLDER": "Escriu {attributeName} per confirmar",
"MESSAGE": "En suprimir, s'eliminarà l'atribut personalitzat", "MESSAGE": "En suprimir, s'eliminarà l'atribut personalitzat",
"YES": "Suprimeix ", "YES": "Suprimeix ",

View File

@@ -23,52 +23,52 @@
}, },
"DEFAULT_USER": "Sistema", "DEFAULT_USER": "Sistema",
"AUTOMATION_RULE": { "AUTOMATION_RULE": {
"ADD": "%{agentName} ha creat una nova regla d'automatització (#%{id})", "ADD": "{agentName} ha creat una nova regla d'automatització (#{id})",
"EDIT": "%{agentName} ha actualitzat una regla d'automatització (#%{id})", "EDIT": "{agentName} ha actualitzat una regla d'automatització (#{id})",
"DELETE": "%{agentName} ha suprimit una regla d'automatització (#%{id})" "DELETE": "{agentName} ha suprimit una regla d'automatització (#{id})"
}, },
"ACCOUNT_USER": { "ACCOUNT_USER": {
"ADD": "%{agentName} ha convidat %{invitee} al compte com a %{role}", "ADD": "{agentName} ha convidat {invitee} al compte com a {role}",
"EDIT": { "EDIT": {
"SELF": "%{agentName} ha canviat els seus %{attributes} a %{values}", "SELF": "{agentName} ha canviat els seus {attributes} a {values}",
"OTHER": "%{agentName} ha canviat %{attributes} de %{user} a %{values}", "OTHER": "{agentName} ha canviat {attributes} de {user} a {values}",
"DELETED": "%{agentName} changed %{attributes} of a deleted user to %{values}" "DELETED": "{agentName} changed {attributes} of a deleted user to {values}"
} }
}, },
"INBOX": { "INBOX": {
"ADD": "%{agentName} ha creat una safata d'entrada nova (#%{id})", "ADD": "{agentName} ha creat una safata d'entrada nova (#{id})",
"EDIT": "%{agentName} ha actualitzat una safata d'entrada (#%{id})", "EDIT": "{agentName} ha actualitzat una safata d'entrada (#{id})",
"DELETE": "%{agentName} ha suprimit una safata d'entrada (#%{id})" "DELETE": "{agentName} ha suprimit una safata d'entrada (#{id})"
}, },
"WEBHOOK": { "WEBHOOK": {
"ADD": "%{agentName} ha creat un nou webhook (#%{id})", "ADD": "{agentName} ha creat un nou webhook (#{id})",
"EDIT": "%{agentName} ha actualitzat un webhook (#%{id})", "EDIT": "{agentName} ha actualitzat un webhook (#{id})",
"DELETE": "%{agentName} ha suprimit un webhook (#%{id})" "DELETE": "{agentName} ha suprimit un webhook (#{id})"
}, },
"USER_ACTION": { "USER_ACTION": {
"SIGN_IN": "%{agentName} ha iniciat la sessió", "SIGN_IN": "{agentName} ha iniciat la sessió",
"SIGN_OUT": "%{agentName} ha tancat la sessió" "SIGN_OUT": "{agentName} ha tancat la sessió"
}, },
"TEAM": { "TEAM": {
"ADD": "%{agentName} ha creat un equip nou (#%{id})", "ADD": "{agentName} ha creat un equip nou (#{id})",
"EDIT": "%{agentName} ha actualitzat un equip (#%{id})", "EDIT": "{agentName} ha actualitzat un equip (#{id})",
"DELETE": "%{agentName} ha suprimit un equip (#%{id})" "DELETE": "{agentName} ha suprimit un equip (#{id})"
}, },
"MACRO": { "MACRO": {
"ADD": "%{agentName} ha creat una macro nova (#%{id})", "ADD": "{agentName} ha creat una macro nova (#{id})",
"EDIT": "%{agentName} ha actualitzat una macro (#%{id})", "EDIT": "{agentName} ha actualitzat una macro (#{id})",
"DELETE": "%{agentName} ha suprimit una macro (#%{id})" "DELETE": "{agentName} ha suprimit una macro (#{id})"
}, },
"INBOX_MEMBER": { "INBOX_MEMBER": {
"ADD": "%{agentName} ha afegit %{user} a la safata d'entrada(#%{inbox_id})", "ADD": "{agentName} ha afegit {user} a la safata d'entrada(#{inbox_id})",
"REMOVE": "%{agentName} ha eliminat %{user} de la safata d'entrada(#%{inbox_id})" "REMOVE": "{agentName} ha eliminat {user} de la safata d'entrada(#{inbox_id})"
}, },
"TEAM_MEMBER": { "TEAM_MEMBER": {
"ADD": "%{agentName} ha afegit %{user} a l'equip (#%{team_id})", "ADD": "{agentName} ha afegit {user} a l'equip (#{team_id})",
"REMOVE": "%{agentName} ha eliminat %{user} de l'equip (#%{team_id})" "REMOVE": "{agentName} ha eliminat {user} de l'equip (#{team_id})"
}, },
"ACCOUNT": { "ACCOUNT": {
"EDIT": "%{agentName} ha actualitzat la configuració del compte (#%{id})" "EDIT": "{agentName} ha actualitzat la configuració del compte (#{id})"
} }
} }
} }

View File

@@ -1,9 +1,9 @@
{ {
"BULK_ACTION": { "BULK_ACTION": {
"CONVERSATIONS_SELECTED": "%{conversationCount} converses seleccionades", "CONVERSATIONS_SELECTED": "{conversationCount} converses seleccionades",
"AGENT_SELECT_LABEL": "Seleccionar Agent", "AGENT_SELECT_LABEL": "Seleccionar Agent",
"ASSIGN_CONFIRMATION_LABEL": "Estas segur d'assignar %{conversationCount} %{conversationLabel} a", "ASSIGN_CONFIRMATION_LABEL": "Estas segur d'assignar {conversationCount} {conversationLabel} a",
"UNASSIGN_CONFIRMATION_LABEL": "Estàs segur de desassignar %{conversationCount} %{conversationLabel}?", "UNASSIGN_CONFIRMATION_LABEL": "Estàs segur de desassignar {conversationCount} {conversationLabel}?",
"GO_BACK_LABEL": "Torna", "GO_BACK_LABEL": "Torna",
"ASSIGN_LABEL": "Assignar", "ASSIGN_LABEL": "Assignar",
"YES": "Si", "YES": "Si",

View File

@@ -367,8 +367,8 @@
}, },
"SUMMARY": { "SUMMARY": {
"TITLE": "Resum", "TITLE": "Resum",
"DELETE_WARNING": "El contacte de <strong>%{primaryContactName}</strong> es suprimirà.", "DELETE_WARNING": "El contacte de <strong>{primaryContactName}</strong> es suprimirà.",
"ATTRIBUTE_WARNING": "Les dades de contacte de <strong>%{primaryContactName}</strong> es copiaran a <strong>%{parentContactName}</strong>." "ATTRIBUTE_WARNING": "Les dades de contacte de <strong>{primaryContactName}</strong> es copiaran a <strong>{parentContactName}</strong>."
}, },
"SEARCH": { "SEARCH": {
"ERROR": "ERROR_MESSAGE" "ERROR": "ERROR_MESSAGE"

View File

@@ -101,7 +101,7 @@
"SELECT_PLACEHOLDER": "Ningú", "SELECT_PLACEHOLDER": "Ningú",
"INPUT_PLACEHOLDER": "Selecciona la prioritat", "INPUT_PLACEHOLDER": "Selecciona la prioritat",
"NO_RESULTS": "No s'ha trobat agents", "NO_RESULTS": "No s'ha trobat agents",
"SUCCESSFUL": "S'ha canviat la prioritat de l'identificador de conversa %{conversationId} a %{priority}", "SUCCESSFUL": "S'ha canviat la prioritat de l'identificador de conversa {conversationId} a {priority}",
"FAILED": "No s'ha pogut canviar la prioritat. Si us plau, torna-ho a provar." "FAILED": "No s'ha pogut canviar la prioritat. Si us plau, torna-ho a provar."
} }
}, },
@@ -122,15 +122,15 @@
"ASSIGN_TEAM": "Assigna un equip", "ASSIGN_TEAM": "Assigna un equip",
"API": { "API": {
"AGENT_ASSIGNMENT": { "AGENT_ASSIGNMENT": {
"SUCCESFUL": "Id de conversa %{conversationId} assignat a \"%{agentName}\"", "SUCCESFUL": "Id de conversa {conversationId} assignat a \"{agentName}\"",
"FAILED": "No s'ha pogut assignar l'agent. Torna-ho a provar." "FAILED": "No s'ha pogut assignar l'agent. Torna-ho a provar."
}, },
"LABEL_ASSIGNMENT": { "LABEL_ASSIGNMENT": {
"SUCCESFUL": "S'ha assignat l'etiqueta #%{labelName} a l'id de conversa %{conversationId}", "SUCCESFUL": "S'ha assignat l'etiqueta #{labelName} a l'id de conversa {conversationId}",
"FAILED": "No s'ha pogut assignar l'etiqueta. Torna-ho a provar." "FAILED": "No s'ha pogut assignar l'etiqueta. Torna-ho a provar."
}, },
"TEAM_ASSIGNMENT": { "TEAM_ASSIGNMENT": {
"SUCCESFUL": "S'ha assignat l'equip \"%{team}\" a l'id de conversa %{conversationId}", "SUCCESFUL": "S'ha assignat l'equip \"{team}\" a l'id de conversa {conversationId}",
"FAILED": "No s'ha pogut assignar l'equip. Torna-ho a provar." "FAILED": "No s'ha pogut assignar l'equip. Torna-ho a provar."
} }
} }
@@ -239,11 +239,11 @@
} }
}, },
"ONBOARDING": { "ONBOARDING": {
"TITLE": "Hola 👋, Benvingut a %{installationName}!", "TITLE": "Hola 👋, Benvingut a {installationName}!",
"DESCRIPTION": "Gràcies per registrar-te. Volem que treguis el màxim profit de %{installationName}. Aquí teniu algunes coses que pots fer a %{installationName} perquè l'experiència sigui agradable.", "DESCRIPTION": "Gràcies per registrar-te. Volem que treguis el màxim profit de {installationName}. Aquí teniu algunes coses que pots fer a {installationName} perquè l'experiència sigui agradable.",
"GREETING_MORNING": "👋 Good morning, %{name}. Welcome to %{installationName}.", "GREETING_MORNING": "👋 Good morning, {name}. Welcome to {installationName}.",
"GREETING_AFTERNOON": "👋 Good afternoon, %{name}. Welcome to %{installationName}.", "GREETING_AFTERNOON": "👋 Good afternoon, {name}. Welcome to {installationName}.",
"GREETING_EVENING": "👋 Good evening, %{name}. Welcome to %{installationName}.", "GREETING_EVENING": "👋 Good evening, {name}. Welcome to {installationName}.",
"READ_LATEST_UPDATES": "Llegiu les nostres últimes actualitzacions", "READ_LATEST_UPDATES": "Llegiu les nostres últimes actualitzacions",
"ALL_CONVERSATION": { "ALL_CONVERSATION": {
"TITLE": "Totes les teves converses en un sol lloc", "TITLE": "Totes les teves converses en un sol lloc",
@@ -317,10 +317,10 @@
"SIDEBAR_TITLE": "Participants de la conversa", "SIDEBAR_TITLE": "Participants de la conversa",
"NO_RECORDS_FOUND": "No s'ha trobat agents", "NO_RECORDS_FOUND": "No s'ha trobat agents",
"ADD_PARTICIPANTS": "Selecciona els participants", "ADD_PARTICIPANTS": "Selecciona els participants",
"REMANING_PARTICIPANTS_TEXT": "+%{count} més", "REMANING_PARTICIPANTS_TEXT": "+{count} més",
"REMANING_PARTICIPANT_TEXT": "+%{count} més", "REMANING_PARTICIPANT_TEXT": "+{count} més",
"TOTAL_PARTICIPANTS_TEXT": "%{count} persones estan participant.", "TOTAL_PARTICIPANTS_TEXT": "{count} persones estan participant.",
"TOTAL_PARTICIPANT_TEXT": "%{count} persona està participant.", "TOTAL_PARTICIPANT_TEXT": "{count} persona està participant.",
"NO_PARTICIPANTS_TEXT": "No hi participa ningú!", "NO_PARTICIPANTS_TEXT": "No hi participa ningú!",
"WATCH_CONVERSATION": "Uneix-te a la conversa", "WATCH_CONVERSATION": "Uneix-te a la conversa",
"YOU_ARE_WATCHING": "Estàs participant", "YOU_ARE_WATCHING": "Estàs participant",

View File

@@ -48,7 +48,7 @@
"CUSTOM_EMAIL_DOMAIN_ENABLED": "Ara podeu rebre correus electrònics al vostre domini personalitzat." "CUSTOM_EMAIL_DOMAIN_ENABLED": "Ara podeu rebre correus electrònics al vostre domini personalitzat."
} }
}, },
"UPDATE_CHATWOOT": "L'actualització %{latestChatwootVersion} per Chatwoot està disponible. Si us plau, actualitza l'instancia.", "UPDATE_CHATWOOT": "L'actualització {latestChatwootVersion} per Chatwoot està disponible. Si us plau, actualitza l'instancia.",
"LEARN_MORE": "Aprèn més", "LEARN_MORE": "Aprèn més",
"PAYMENT_PENDING": "El teu pagament està pendent. Actualitzeu la vostra informació de pagament per continuar utilitzant Chatwoot", "PAYMENT_PENDING": "El teu pagament està pendent. Actualitzeu la vostra informació de pagament per continuar utilitzant Chatwoot",
"LIMITS_UPGRADE": "El teu compte ha superat els límits d'ús, actualitza el pla per continuar utilitzant Chatwoot", "LIMITS_UPGRADE": "El teu compte ha superat els límits d'ús, actualitza el pla per continuar utilitzant Chatwoot",

View File

@@ -84,7 +84,7 @@
}, },
"ARTICLE_SEARCH_RESULT": { "ARTICLE_SEARCH_RESULT": {
"UNCATEGORIZED": "Sense categoria", "UNCATEGORIZED": "Sense categoria",
"SEARCH_RESULTS": "Resultats de la cerca per a %{query}", "SEARCH_RESULTS": "Resultats de la cerca per a {query}",
"EMPTY_TEXT": "Cerca articles per inserir a les respostes.", "EMPTY_TEXT": "Cerca articles per inserir a les respostes.",
"SEARCH_LOADER": "S'està cercant...", "SEARCH_LOADER": "S'està cercant...",
"INSERT_ARTICLE": "Insereix", "INSERT_ARTICLE": "Insereix",

View File

@@ -1,7 +1,7 @@
{ {
"INTEGRATION_APPS": { "INTEGRATION_APPS": {
"FETCHING": "S'estan obtenint integracions", "FETCHING": "S'estan obtenint integracions",
"NO_HOOK_CONFIGURED": "No hi ha integracions %{integrationId} configurades en aquest compte.", "NO_HOOK_CONFIGURED": "No hi ha integracions {integrationId} configurades en aquest compte.",
"HEADER": "Aplicacions", "HEADER": "Aplicacions",
"STATUS": { "STATUS": {
"ENABLED": "Habilita", "ENABLED": "Habilita",
@@ -56,7 +56,7 @@
"BUTTON_TEXT": "Desconnecta" "BUTTON_TEXT": "Desconnecta"
}, },
"SIDEBAR_DESCRIPTION": { "SIDEBAR_DESCRIPTION": {
"DIALOGFLOW": "Dialogflow és una plataforma de comprensió del llenguatge natural que facilita el disseny i la integració d'una interfície d'usuari conversacional a la teva aplicació mòbil, aplicació web, dispositiu, bot, sistema interactiu de resposta de veu, etc. <br /> <br /> La integració de Dialogflow amb %{installationName} us permet configurar un bot de Dialogflow amb les teves safates d'entrada, la qual cosa permet al bot gestionar les consultes inicialment i lliurar-les a un agent quan sigui necessari. Dialogflow es pot utilitzar per qualificar els clients potencials, reduir la càrrega de treball dels agents proporcionant preguntes freqüents, etc. <br /> <br /> Per afegir Dialogflow, has de crear un compte de servei a la consola del vostre projecte de Google i compartir les credencials. Consulta els documents de Dialogflow per obtenir més informació." "DIALOGFLOW": "Dialogflow és una plataforma de comprensió del llenguatge natural que facilita el disseny i la integració d'una interfície d'usuari conversacional a la teva aplicació mòbil, aplicació web, dispositiu, bot, sistema interactiu de resposta de veu, etc. <br /> <br /> La integració de Dialogflow amb {installationName} us permet configurar un bot de Dialogflow amb les teves safates d'entrada, la qual cosa permet al bot gestionar les consultes inicialment i lliurar-les a un agent quan sigui necessari. Dialogflow es pot utilitzar per qualificar els clients potencials, reduir la càrrega de treball dels agents proporcionant preguntes freqüents, etc. <br /> <br /> Per afegir Dialogflow, has de crear un compte de servei a la consola del vostre projecte de Google i compartir les credencials. Consulta els documents de Dialogflow per obtenir més informació."
} }
} }
} }

View File

@@ -76,7 +76,7 @@
}, },
"CONFIRM": { "CONFIRM": {
"TITLE": "Confirma l'esborrat", "TITLE": "Confirma l'esborrat",
"MESSAGE": "N'estàs segur que suprimiu el webhook? (%{webhookURL})", "MESSAGE": "N'estàs segur que suprimiu el webhook? ({webhookURL})",
"YES": "Si, esborra ", "YES": "Si, esborra ",
"NO": "No, mantén-la" "NO": "No, mantén-la"
} }
@@ -90,7 +90,7 @@
}, },
"HELP_TEXT": { "HELP_TEXT": {
"TITLE": "Com utilitzar la integració de Slack?", "TITLE": "Com utilitzar la integració de Slack?",
"BODY": "Amb aquesta integració, totes les teves converses entrants se sincronitzaran amb el canal ***%{selectedChannelName}*** del teu espai de treball de Slack. Podeu gestionar totes les converses dels vostres clients directament des del canal i no perdreu cap missatge.\n\nAquestes són les principals característiques de la integració:\n\n**Respondre a converses des de Slack:** Per respondre a una conversa al ***%{selectedChannelName}*** canal de Slack, només has d'escriure el teu missatge i enviar-lo com a fil. Això crearà una resposta al client mitjançant Chatwoot. Així de senzill!\n\n **Crear notes privades:** si vols crear notes privades en lloc de respostes, comença el teu missatge amb ***`nota:`***. Això garanteix que el vostre missatge es mantingui privat i no serà visible per al client.\n\n**Associar un perfil d'agent:** si la persona que va respondre a Slack té un perfil d'agent a Chatwoot amb el mateix correu electrònic, les respostes s'associaran amb aquest perfil d'agent automàticament. Això vol dir que podeu fer un seguiment fàcilment qui va dir què i quan. D'altra banda, quan el contestador no té un perfil d'agent associat, les respostes apareixeran des del perfil del bot al client.", "BODY": "Amb aquesta integració, totes les teves converses entrants se sincronitzaran amb el canal ***{selectedChannelName}*** del teu espai de treball de Slack. Podeu gestionar totes les converses dels vostres clients directament des del canal i no perdreu cap missatge.\n\nAquestes són les principals característiques de la integració:\n\n**Respondre a converses des de Slack:** Per respondre a una conversa al ***{selectedChannelName}*** canal de Slack, només has d'escriure el teu missatge i enviar-lo com a fil. Això crearà una resposta al client mitjançant Chatwoot. Així de senzill!\n\n **Crear notes privades:** si vols crear notes privades en lloc de respostes, comença el teu missatge amb ***`nota:`***. Això garanteix que el vostre missatge es mantingui privat i no serà visible per al client.\n\n**Associar un perfil d'agent:** si la persona que va respondre a Slack té un perfil d'agent a Chatwoot amb el mateix correu electrònic, les respostes s'associaran amb aquest perfil d'agent automàticament. Això vol dir que podeu fer un seguiment fàcilment qui va dir què i quan. D'altra banda, quan el contestador no té un perfil d'agent associat, les respostes apareixeran des del perfil del bot al client.",
"SELECTED": "seleccionat" "SELECTED": "seleccionat"
}, },
"SELECT_CHANNEL": { "SELECT_CHANNEL": {
@@ -114,7 +114,7 @@
}, },
"OPEN_AI": { "OPEN_AI": {
"AI_ASSIST": "Assistència IA", "AI_ASSIST": "Assistència IA",
"WITH_AI": " %{option} amb IA ", "WITH_AI": " {option} amb IA ",
"OPTIONS": { "OPTIONS": {
"REPLY_SUGGESTION": "Suggeriment de resposta", "REPLY_SUGGESTION": "Suggeriment de resposta",
"SUMMARIZE": "Resumir", "SUMMARIZE": "Resumir",
@@ -216,7 +216,7 @@
"CONFIRM_YES": "Sí, esborra-ho", "CONFIRM_YES": "Sí, esborra-ho",
"CONFIRM_NO": "No, mantén-la", "CONFIRM_NO": "No, mantén-la",
"TITLE": "Confirma la supressió", "TITLE": "Confirma la supressió",
"MESSAGE": "N'estàs segur que vols suprimir l'aplicació - %{appName}?", "MESSAGE": "N'estàs segur que vols suprimir l'aplicació - {appName}?",
"API_SUCCESS": "L'aplicació del tauler de control s'ha esborrat correctament", "API_SUCCESS": "L'aplicació del tauler de control s'ha esborrat correctament",
"API_ERROR": "No hem pogut esborrar l'aplicació. Intenta-ho més tard" "API_ERROR": "No hem pogut esborrar l'aplicació. Intenta-ho més tard"
} }
@@ -235,7 +235,7 @@
"ERROR": "S'ha produït un error en obtenir les issues en Linear, torna-ho a provar", "ERROR": "S'ha produït un error en obtenir les issues en Linear, torna-ho a provar",
"LINK_SUCCESS": "S'ha enllaçat la issue correctament", "LINK_SUCCESS": "S'ha enllaçat la issue correctament",
"LINK_ERROR": "S'ha produït un error en enllaçar la issue, torna-ho a provar", "LINK_ERROR": "S'ha produït un error en enllaçar la issue, torna-ho a provar",
"LINK_TITLE": "Conversa (#%{conversationId}) amb %{name}" "LINK_TITLE": "Conversa (#{conversationId}) amb {name}"
}, },
"ADD_OR_LINK": { "ADD_OR_LINK": {
"TITLE": "Crear/enllaçar una issue en Linear", "TITLE": "Crear/enllaçar una issue en Linear",
@@ -294,7 +294,7 @@
"PRIORITY": "Prioritat", "PRIORITY": "Prioritat",
"ASSIGNEE": "Cessionari", "ASSIGNEE": "Cessionari",
"LABELS": "Etiquetes", "LABELS": "Etiquetes",
"CREATED_AT": "Creat a %{createdAt}" "CREATED_AT": "Creat a {createdAt}"
}, },
"UNLINK": { "UNLINK": {
"TITLE": "Desenllaça", "TITLE": "Desenllaça",

View File

@@ -23,13 +23,13 @@
"NAME": "Primer Temps de Resposta", "NAME": "Primer Temps de Resposta",
"DESC": "( Promig )", "DESC": "( Promig )",
"INFO_TEXT": "Nombre total de converses utilitzades per al càlcul:", "INFO_TEXT": "Nombre total de converses utilitzades per al càlcul:",
"TOOLTIP_TEXT": "El temps de primera resposta (FRT) és %{metricValue} (basat en %{conversationCount} converses)" "TOOLTIP_TEXT": "El temps de primera resposta (FRT) és {metricValue} (basat en {conversationCount} converses)"
}, },
"RESOLUTION_TIME": { "RESOLUTION_TIME": {
"NAME": "Temps de resolució", "NAME": "Temps de resolució",
"DESC": "( Promig )", "DESC": "( Promig )",
"INFO_TEXT": "Nombre total de converses utilitzades per al càlcul:", "INFO_TEXT": "Nombre total de converses utilitzades per al càlcul:",
"TOOLTIP_TEXT": "El temps de resolució (RT) és %{metricValue} (basat en %{conversationCount} converses)" "TOOLTIP_TEXT": "El temps de resolució (RT) és {metricValue} (basat en {conversationCount} converses)"
}, },
"RESOLUTION_COUNT": { "RESOLUTION_COUNT": {
"NAME": "Total de resolucions", "NAME": "Total de resolucions",
@@ -45,7 +45,7 @@
}, },
"REPLY_TIME": { "REPLY_TIME": {
"NAME": "Temps d'espera del client", "NAME": "Temps d'espera del client",
"TOOLTIP_TEXT": "El temps d'espera és %{metricValue} (basat en %{conversationCount} respostes)" "TOOLTIP_TEXT": "El temps d'espera és {metricValue} (basat en {conversationCount} respostes)"
} }
}, },
"DATE_RANGE_OPTIONS": { "DATE_RANGE_OPTIONS": {
@@ -167,13 +167,13 @@
"NAME": "Primer Temps de Resposta", "NAME": "Primer Temps de Resposta",
"DESC": "( Promig )", "DESC": "( Promig )",
"INFO_TEXT": "Nombre total de converses utilitzades per al càlcul:", "INFO_TEXT": "Nombre total de converses utilitzades per al càlcul:",
"TOOLTIP_TEXT": "El temps de primera resposta (FRT) és %{metricValue} (basat en %{conversationCount} converses)" "TOOLTIP_TEXT": "El temps de primera resposta (FRT) és {metricValue} (basat en {conversationCount} converses)"
}, },
"RESOLUTION_TIME": { "RESOLUTION_TIME": {
"NAME": "Temps de resolució", "NAME": "Temps de resolució",
"DESC": "( Promig )", "DESC": "( Promig )",
"INFO_TEXT": "Nombre total de converses utilitzades per al càlcul:", "INFO_TEXT": "Nombre total de converses utilitzades per al càlcul:",
"TOOLTIP_TEXT": "El temps de resolució (RT) és %{metricValue} (basat en %{conversationCount} converses)" "TOOLTIP_TEXT": "El temps de resolució (RT) és {metricValue} (basat en {conversationCount} converses)"
}, },
"RESOLUTION_COUNT": { "RESOLUTION_COUNT": {
"NAME": "Total de resolucions", "NAME": "Total de resolucions",
@@ -234,13 +234,13 @@
"NAME": "Primer Temps de Resposta", "NAME": "Primer Temps de Resposta",
"DESC": "(Mitjana)", "DESC": "(Mitjana)",
"INFO_TEXT": "Nombre total de converses utilitzades per al càlcul:", "INFO_TEXT": "Nombre total de converses utilitzades per al càlcul:",
"TOOLTIP_TEXT": "El temps de primera resposta (FRT) és %{metricValue} (basat en %{conversationCount} converses)" "TOOLTIP_TEXT": "El temps de primera resposta (FRT) és {metricValue} (basat en {conversationCount} converses)"
}, },
"RESOLUTION_TIME": { "RESOLUTION_TIME": {
"NAME": "Temps de resolució", "NAME": "Temps de resolució",
"DESC": "( Promig )", "DESC": "( Promig )",
"INFO_TEXT": "Nombre total de converses utilitzades per al càlcul:", "INFO_TEXT": "Nombre total de converses utilitzades per al càlcul:",
"TOOLTIP_TEXT": "El temps de resolució (RT) és %{metricValue} (basat en %{conversationCount} converses)" "TOOLTIP_TEXT": "El temps de resolució (RT) és {metricValue} (basat en {conversationCount} converses)"
}, },
"RESOLUTION_COUNT": { "RESOLUTION_COUNT": {
"NAME": "Total de resolucions", "NAME": "Total de resolucions",
@@ -301,13 +301,13 @@
"NAME": "Primer Temps de Resposta", "NAME": "Primer Temps de Resposta",
"DESC": "( Promig )", "DESC": "( Promig )",
"INFO_TEXT": "Nombre total de converses utilitzades per al càlcul:", "INFO_TEXT": "Nombre total de converses utilitzades per al càlcul:",
"TOOLTIP_TEXT": "El temps de primera resposta (FRT) és %{metricValue} (basat en %{conversationCount} converses)" "TOOLTIP_TEXT": "El temps de primera resposta (FRT) és {metricValue} (basat en {conversationCount} converses)"
}, },
"RESOLUTION_TIME": { "RESOLUTION_TIME": {
"NAME": "Temps de resolució", "NAME": "Temps de resolució",
"DESC": "( Promig )", "DESC": "( Promig )",
"INFO_TEXT": "Nombre total de converses utilitzades per al càlcul:", "INFO_TEXT": "Nombre total de converses utilitzades per al càlcul:",
"TOOLTIP_TEXT": "El temps de resolució (RT) és %{metricValue} (basat en %{conversationCount} converses)" "TOOLTIP_TEXT": "El temps de resolució (RT) és {metricValue} (basat en {conversationCount} converses)"
}, },
"RESOLUTION_COUNT": { "RESOLUTION_COUNT": {
"NAME": "Total de resolucions", "NAME": "Total de resolucions",
@@ -368,13 +368,13 @@
"NAME": "Primer Temps de Resposta", "NAME": "Primer Temps de Resposta",
"DESC": "( Promig )", "DESC": "( Promig )",
"INFO_TEXT": "Nombre total de converses utilitzades per al càlcul:", "INFO_TEXT": "Nombre total de converses utilitzades per al càlcul:",
"TOOLTIP_TEXT": "El temps de primera resposta (FRT) és %{metricValue} (basat en %{conversationCount} converses)" "TOOLTIP_TEXT": "El temps de primera resposta (FRT) és {metricValue} (basat en {conversationCount} converses)"
}, },
"RESOLUTION_TIME": { "RESOLUTION_TIME": {
"NAME": "Temps de resolució", "NAME": "Temps de resolució",
"DESC": "( Promig )", "DESC": "( Promig )",
"INFO_TEXT": "Nombre total de converses utilitzades per al càlcul:", "INFO_TEXT": "Nombre total de converses utilitzades per al càlcul:",
"TOOLTIP_TEXT": "El temps de resolució (RT) és %{metricValue} (basat en %{conversationCount} converses)" "TOOLTIP_TEXT": "El temps de resolució (RT) és {metricValue} (basat en {conversationCount} converses)"
}, },
"RESOLUTION_COUNT": { "RESOLUTION_COUNT": {
"NAME": "Total de resolucions", "NAME": "Total de resolucions",
@@ -480,8 +480,8 @@
"CONVERSATION_HEATMAP": { "CONVERSATION_HEATMAP": {
"HEADER": "Trànsit de conversa", "HEADER": "Trànsit de conversa",
"NO_CONVERSATIONS": "Sense converses", "NO_CONVERSATIONS": "Sense converses",
"CONVERSATION": "%{count} conversa", "CONVERSATION": "{count} conversa",
"CONVERSATIONS": "%{count} converses", "CONVERSATIONS": "{count} converses",
"DOWNLOAD_REPORT": "Download report" "DOWNLOAD_REPORT": "Download report"
}, },
"AGENT_CONVERSATIONS": { "AGENT_CONVERSATIONS": {

View File

@@ -12,8 +12,8 @@
"MESSAGES": "Missatges" "MESSAGES": "Missatges"
}, },
"SEARCHING_DATA": "S'està cercant", "SEARCHING_DATA": "S'està cercant",
"EMPTY_STATE": "No s'ha trobat cap %{item} per a la consulta '%{query}'", "EMPTY_STATE": "No s'ha trobat cap {item} per a la consulta '{query}'",
"EMPTY_STATE_FULL": "No s'han trobat resultats per a la consulta '%{query}'", "EMPTY_STATE_FULL": "No s'han trobat resultats per a la consulta '{query}'",
"PLACEHOLDER_KEYBINDING": "/ centrar", "PLACEHOLDER_KEYBINDING": "/ centrar",
"INPUT_PLACEHOLDER": "Search messages, contacts or conversations", "INPUT_PLACEHOLDER": "Search messages, contacts or conversations",
"EMPTY_STATE_DEFAULT": "Search by conversation id, email, phone number, messages for better search results.", "EMPTY_STATE_DEFAULT": "Search by conversation id, email, phone number, messages for better search results.",

View File

@@ -301,7 +301,7 @@
"TITLE": "Facturació", "TITLE": "Facturació",
"CURRENT_PLAN": { "CURRENT_PLAN": {
"TITLE": "Pla actual", "TITLE": "Pla actual",
"PLAN_NOTE": "Actualment estàs subscrit al pla **%{plan}** amb **%{quantity}** llicències" "PLAN_NOTE": "Actualment estàs subscrit al pla **{plan}** amb **{quantity}** llicències"
}, },
"MANAGE_SUBSCRIPTION": { "MANAGE_SUBSCRIPTION": {
"TITLE": "Gestiona la teva subscripció", "TITLE": "Gestiona la teva subscripció",

View File

@@ -17,7 +17,7 @@
}, },
"AGENTS": { "AGENTS": {
"BUTTON_TEXT": "Afegir agents a l'equip", "BUTTON_TEXT": "Afegir agents a l'equip",
"TITLE": "Afegeix agents a l'equip - %{teamName}", "TITLE": "Afegeix agents a l'equip - {teamName}",
"DESC": "Afegeix agents al teu equip acabat de crear. Això et permet col·laborar com a equip en converses, rebre notificacions sobre esdeveniments nous a la mateixa conversa." "DESC": "Afegeix agents al teu equip acabat de crear. Això et permet col·laborar com a equip en converses, rebre notificacions sobre esdeveniments nous a la mateixa conversa."
}, },
"WIZARD": [ "WIZARD": [
@@ -46,7 +46,7 @@
}, },
"AGENTS": { "AGENTS": {
"BUTTON_TEXT": "Actualitza els agents de l'equip", "BUTTON_TEXT": "Actualitza els agents de l'equip",
"TITLE": "Afegeix agents a l'equip - %{teamName}", "TITLE": "Afegeix agents a l'equip - {teamName}",
"DESC": "Afegeix agents al teu equip acabat de crear. Tots els agents afegits rebran una notificació quan s'assigni una conversa a aquest equip." "DESC": "Afegeix agents al teu equip acabat de crear. Tots els agents afegits rebran una notificació quan s'assigni una conversa a aquest equip."
}, },
"WIZARD": [ "WIZARD": [
@@ -77,14 +77,14 @@
"ADD_AGENTS": "S'estan afegint agents al teu equip...", "ADD_AGENTS": "S'estan afegint agents al teu equip...",
"SELECT": "selecciona", "SELECT": "selecciona",
"SELECT_ALL": "selecciona tots els agents", "SELECT_ALL": "selecciona tots els agents",
"SELECTED_COUNT": "%{selected} de %{total} agents seleccionats." "SELECTED_COUNT": "{selected} de {total} agents seleccionats."
}, },
"ADD": { "ADD": {
"TITLE": "Afegeix agents a l'equip - %{teamName}", "TITLE": "Afegeix agents a l'equip - {teamName}",
"DESC": "Afegeix agents al teu equip acabat de crear. Això et permet col·laborar com a equip en converses, rebre notificacions sobre esdeveniments nous a la mateixa conversa.", "DESC": "Afegeix agents al teu equip acabat de crear. Això et permet col·laborar com a equip en converses, rebre notificacions sobre esdeveniments nous a la mateixa conversa.",
"SELECT": "selecciona", "SELECT": "selecciona",
"SELECT_ALL": "selecciona tots els agents", "SELECT_ALL": "selecciona tots els agents",
"SELECTED_COUNT": "%{selected} de %{total} agents seleccionats.", "SELECTED_COUNT": "{selected} de {total} agents seleccionats.",
"BUTTON_TEXT": "Afegir agents", "BUTTON_TEXT": "Afegir agents",
"AGENT_VALIDATION_ERROR": "Selecciona almenys un agent." "AGENT_VALIDATION_ERROR": "Selecciona almenys un agent."
}, },

View File

@@ -3,7 +3,7 @@
"MODAL": { "MODAL": {
"TITLE": "Plantilles de Whatsapp", "TITLE": "Plantilles de Whatsapp",
"SUBTITLE": "Selecciona la plantilla de whatsapp que vols enviar", "SUBTITLE": "Selecciona la plantilla de whatsapp que vols enviar",
"TEMPLATE_SELECTED_SUBTITLE": "Procés %{templateName}" "TEMPLATE_SELECTED_SUBTITLE": "Procés {templateName}"
}, },
"PICKER": { "PICKER": {
"SEARCH_PLACEHOLDER": "Cerca plantilles", "SEARCH_PLACEHOLDER": "Cerca plantilles",
@@ -16,7 +16,7 @@
}, },
"PARSER": { "PARSER": {
"VARIABLES_LABEL": "Variables", "VARIABLES_LABEL": "Variables",
"VARIABLE_PLACEHOLDER": "Introdueix el valor %{variable}", "VARIABLE_PLACEHOLDER": "Introdueix el valor {variable}",
"GO_BACK_LABEL": "Torna enrere", "GO_BACK_LABEL": "Torna enrere",
"SEND_MESSAGE_LABEL": "Envia missatge", "SEND_MESSAGE_LABEL": "Envia missatge",
"FORM_ERROR_MESSAGE": "Omple totes les variables abans d'enviar-les" "FORM_ERROR_MESSAGE": "Omple totes les variables abans d'enviar-les"

View File

@@ -65,7 +65,7 @@
"ERROR_MESSAGE": "Couldn't delete the custom attribute. Try again." "ERROR_MESSAGE": "Couldn't delete the custom attribute. Try again."
}, },
"CONFIRM": { "CONFIRM": {
"TITLE": "Are you sure want to delete - %{attributeName}", "TITLE": "Are you sure want to delete - {attributeName}",
"PLACE_HOLDER": "Please type {attributeName} to confirm", "PLACE_HOLDER": "Please type {attributeName} to confirm",
"MESSAGE": "Deleting will remove the custom attribute", "MESSAGE": "Deleting will remove the custom attribute",
"YES": "Vymazat ", "YES": "Vymazat ",

View File

@@ -23,52 +23,52 @@
}, },
"DEFAULT_USER": "System", "DEFAULT_USER": "System",
"AUTOMATION_RULE": { "AUTOMATION_RULE": {
"ADD": "%{agentName} created a new automation rule (#%{id})", "ADD": "{agentName} created a new automation rule (#{id})",
"EDIT": "%{agentName} updated an automation rule (#%{id})", "EDIT": "{agentName} updated an automation rule (#{id})",
"DELETE": "%{agentName} deleted an automation rule (#%{id})" "DELETE": "{agentName} deleted an automation rule (#{id})"
}, },
"ACCOUNT_USER": { "ACCOUNT_USER": {
"ADD": "%{agentName} invited %{invitee} to the account as an %{role}", "ADD": "{agentName} invited {invitee} to the account as an {role}",
"EDIT": { "EDIT": {
"SELF": "%{agentName} changed their %{attributes} to %{values}", "SELF": "{agentName} changed their {attributes} to {values}",
"OTHER": "%{agentName} changed %{attributes} of %{user} to %{values}", "OTHER": "{agentName} changed {attributes} of {user} to {values}",
"DELETED": "%{agentName} changed %{attributes} of a deleted user to %{values}" "DELETED": "{agentName} changed {attributes} of a deleted user to {values}"
} }
}, },
"INBOX": { "INBOX": {
"ADD": "%{agentName} created a new inbox (#%{id})", "ADD": "{agentName} created a new inbox (#{id})",
"EDIT": "%{agentName} updated an inbox (#%{id})", "EDIT": "{agentName} updated an inbox (#{id})",
"DELETE": "%{agentName} deleted an inbox (#%{id})" "DELETE": "{agentName} deleted an inbox (#{id})"
}, },
"WEBHOOK": { "WEBHOOK": {
"ADD": "%{agentName} created a new webhook (#%{id})", "ADD": "{agentName} created a new webhook (#{id})",
"EDIT": "%{agentName} updated a webhook (#%{id})", "EDIT": "{agentName} updated a webhook (#{id})",
"DELETE": "%{agentName} deleted a webhook (#%{id})" "DELETE": "{agentName} deleted a webhook (#{id})"
}, },
"USER_ACTION": { "USER_ACTION": {
"SIGN_IN": "%{agentName} signed in", "SIGN_IN": "{agentName} signed in",
"SIGN_OUT": "%{agentName} signed out" "SIGN_OUT": "{agentName} signed out"
}, },
"TEAM": { "TEAM": {
"ADD": "%{agentName} created a new team (#%{id})", "ADD": "{agentName} created a new team (#{id})",
"EDIT": "%{agentName} updated a team (#%{id})", "EDIT": "{agentName} updated a team (#{id})",
"DELETE": "%{agentName} deleted a team (#%{id})" "DELETE": "{agentName} deleted a team (#{id})"
}, },
"MACRO": { "MACRO": {
"ADD": "%{agentName} created a new macro (#%{id})", "ADD": "{agentName} created a new macro (#{id})",
"EDIT": "%{agentName} updated a macro (#%{id})", "EDIT": "{agentName} updated a macro (#{id})",
"DELETE": "%{agentName} deleted a macro (#%{id})" "DELETE": "{agentName} deleted a macro (#{id})"
}, },
"INBOX_MEMBER": { "INBOX_MEMBER": {
"ADD": "%{agentName} added %{user} to the inbox(#%{inbox_id})", "ADD": "{agentName} added {user} to the inbox(#{inbox_id})",
"REMOVE": "%{agentName} removed %{user} from the inbox(#%{inbox_id})" "REMOVE": "{agentName} removed {user} from the inbox(#{inbox_id})"
}, },
"TEAM_MEMBER": { "TEAM_MEMBER": {
"ADD": "%{agentName} added %{user} to the team(#%{team_id})", "ADD": "{agentName} added {user} to the team(#{team_id})",
"REMOVE": "%{agentName} removed %{user} from the team(#%{team_id})" "REMOVE": "{agentName} removed {user} from the team(#{team_id})"
}, },
"ACCOUNT": { "ACCOUNT": {
"EDIT": "%{agentName} updated the account configuration (#%{id})" "EDIT": "{agentName} updated the account configuration (#{id})"
} }
} }
} }

View File

@@ -1,9 +1,9 @@
{ {
"BULK_ACTION": { "BULK_ACTION": {
"CONVERSATIONS_SELECTED": "%{conversationCount} conversations selected", "CONVERSATIONS_SELECTED": "{conversationCount} conversations selected",
"AGENT_SELECT_LABEL": "Vybrat agenta", "AGENT_SELECT_LABEL": "Vybrat agenta",
"ASSIGN_CONFIRMATION_LABEL": "Are you sure to assign %{conversationCount} %{conversationLabel} to", "ASSIGN_CONFIRMATION_LABEL": "Are you sure to assign {conversationCount} {conversationLabel} to",
"UNASSIGN_CONFIRMATION_LABEL": "Are you sure to unassign %{conversationCount} %{conversationLabel}?", "UNASSIGN_CONFIRMATION_LABEL": "Are you sure to unassign {conversationCount} {conversationLabel}?",
"GO_BACK_LABEL": "Go back", "GO_BACK_LABEL": "Go back",
"ASSIGN_LABEL": "Přiřadit", "ASSIGN_LABEL": "Přiřadit",
"YES": "Ano", "YES": "Ano",

View File

@@ -367,8 +367,8 @@
}, },
"SUMMARY": { "SUMMARY": {
"TITLE": "Summary", "TITLE": "Summary",
"DELETE_WARNING": "Contact of <strong>%{primaryContactName}</strong> will be deleted.", "DELETE_WARNING": "Contact of <strong>{primaryContactName}</strong> will be deleted.",
"ATTRIBUTE_WARNING": "Contact details of <strong>%{primaryContactName}</strong> will be copied to <strong>%{parentContactName}</strong>." "ATTRIBUTE_WARNING": "Contact details of <strong>{primaryContactName}</strong> will be copied to <strong>{parentContactName}</strong>."
}, },
"SEARCH": { "SEARCH": {
"ERROR": "ERROR_MESSAGE" "ERROR": "ERROR_MESSAGE"

View File

@@ -101,7 +101,7 @@
"SELECT_PLACEHOLDER": "Nic", "SELECT_PLACEHOLDER": "Nic",
"INPUT_PLACEHOLDER": "Select priority", "INPUT_PLACEHOLDER": "Select priority",
"NO_RESULTS": "Žádné výsledky", "NO_RESULTS": "Žádné výsledky",
"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." "FAILED": "Couldn't change priority. Please try again."
} }
}, },
@@ -122,15 +122,15 @@
"ASSIGN_TEAM": "Přiřadit tým", "ASSIGN_TEAM": "Přiřadit tým",
"API": { "API": {
"AGENT_ASSIGNMENT": { "AGENT_ASSIGNMENT": {
"SUCCESFUL": "Konverzace id %{conversationId} přiřazena \"%{agentName}\"", "SUCCESFUL": "Konverzace id {conversationId} přiřazena \"{agentName}\"",
"FAILED": "Nelze přiřadit agenta. Zkuste to prosím znovu." "FAILED": "Nelze přiřadit agenta. Zkuste to prosím znovu."
}, },
"LABEL_ASSIGNMENT": { "LABEL_ASSIGNMENT": {
"SUCCESFUL": "Přiřazený štítek #%{labelName} ke konverzaci id %{conversationId}", "SUCCESFUL": "Přiřazený štítek #{labelName} ke konverzaci id {conversationId}",
"FAILED": "Nelze přiřadit štítek. Zkuste to prosím znovu." "FAILED": "Nelze přiřadit štítek. Zkuste to prosím znovu."
}, },
"TEAM_ASSIGNMENT": { "TEAM_ASSIGNMENT": {
"SUCCESFUL": "Přiřazený tým #%{team} ke konverzaci id %{conversationId}", "SUCCESFUL": "Přiřazený tým #{team} ke konverzaci id {conversationId}",
"FAILED": "Nelze přiřadit tým. Zkuste to prosím znovu." "FAILED": "Nelze přiřadit tým. Zkuste to prosím znovu."
} }
} }
@@ -239,11 +239,11 @@
} }
}, },
"ONBOARDING": { "ONBOARDING": {
"TITLE": "Ahoj, 👋, Vítejte na %{installationName}!", "TITLE": "Ahoj, 👋, Vítejte na {installationName}!",
"DESCRIPTION": "Děkujeme za registraci. Chceme, abyste získali maximum z %{installationName}. Zde je několik věcí, které můžete v %{installationName} udělat, abyste udělali zážitek příjemný.", "DESCRIPTION": "Děkujeme za registraci. Chceme, abyste získali maximum z {installationName}. Zde je několik věcí, které můžete v {installationName} udělat, abyste udělali zážitek příjemný.",
"GREETING_MORNING": "👋 Good morning, %{name}. Welcome to %{installationName}.", "GREETING_MORNING": "👋 Good morning, {name}. Welcome to {installationName}.",
"GREETING_AFTERNOON": "👋 Good afternoon, %{name}. Welcome to %{installationName}.", "GREETING_AFTERNOON": "👋 Good afternoon, {name}. Welcome to {installationName}.",
"GREETING_EVENING": "👋 Good evening, %{name}. Welcome to %{installationName}.", "GREETING_EVENING": "👋 Good evening, {name}. Welcome to {installationName}.",
"READ_LATEST_UPDATES": "Přečtěte si nejnovější aktualizace", "READ_LATEST_UPDATES": "Přečtěte si nejnovější aktualizace",
"ALL_CONVERSATION": { "ALL_CONVERSATION": {
"TITLE": "Všechny vaše konverzace na jednom místě", "TITLE": "Všechny vaše konverzace na jednom místě",
@@ -317,10 +317,10 @@
"SIDEBAR_TITLE": "Conversation participants", "SIDEBAR_TITLE": "Conversation participants",
"NO_RECORDS_FOUND": "Žádné výsledky", "NO_RECORDS_FOUND": "Žádné výsledky",
"ADD_PARTICIPANTS": "Select participants", "ADD_PARTICIPANTS": "Select participants",
"REMANING_PARTICIPANTS_TEXT": "+%{count} others", "REMANING_PARTICIPANTS_TEXT": "+{count} others",
"REMANING_PARTICIPANT_TEXT": "+%{count} other", "REMANING_PARTICIPANT_TEXT": "+{count} other",
"TOTAL_PARTICIPANTS_TEXT": "%{count} people are participating.", "TOTAL_PARTICIPANTS_TEXT": "{count} people are participating.",
"TOTAL_PARTICIPANT_TEXT": "%{count} person is participating.", "TOTAL_PARTICIPANT_TEXT": "{count} person is participating.",
"NO_PARTICIPANTS_TEXT": "No one is participating!.", "NO_PARTICIPANTS_TEXT": "No one is participating!.",
"WATCH_CONVERSATION": "Join conversation", "WATCH_CONVERSATION": "Join conversation",
"YOU_ARE_WATCHING": "You are participating", "YOU_ARE_WATCHING": "You are participating",

View File

@@ -48,7 +48,7 @@
"CUSTOM_EMAIL_DOMAIN_ENABLED": "Nyní můžete přijímat e-maily na vaši vlastní doménu." "CUSTOM_EMAIL_DOMAIN_ENABLED": "Nyní můžete přijímat e-maily na vaši vlastní doménu."
} }
}, },
"UPDATE_CHATWOOT": "Je dostupná aktualizace %{latestChatwootVersion} pro Chatwoot. Aktualizujte prosím svou instanci.", "UPDATE_CHATWOOT": "Je dostupná aktualizace {latestChatwootVersion} pro Chatwoot. Aktualizujte prosím svou instanci.",
"LEARN_MORE": "Learn more", "LEARN_MORE": "Learn more",
"PAYMENT_PENDING": "Your payment is pending. Please update your payment information to continue using Chatwoot", "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", "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": { "ARTICLE_SEARCH_RESULT": {
"UNCATEGORIZED": "Uncategorized", "UNCATEGORIZED": "Uncategorized",
"SEARCH_RESULTS": "Search results for %{query}", "SEARCH_RESULTS": "Search results for {query}",
"EMPTY_TEXT": "Search for articles to insert into replies.", "EMPTY_TEXT": "Search for articles to insert into replies.",
"SEARCH_LOADER": "Searching...", "SEARCH_LOADER": "Searching...",
"INSERT_ARTICLE": "Insert", "INSERT_ARTICLE": "Insert",

View File

@@ -1,7 +1,7 @@
{ {
"INTEGRATION_APPS": { "INTEGRATION_APPS": {
"FETCHING": "Fetching Integrations", "FETCHING": "Fetching Integrations",
"NO_HOOK_CONFIGURED": "There are no %{integrationId} integrations configured in this account.", "NO_HOOK_CONFIGURED": "There are no {integrationId} integrations configured in this account.",
"HEADER": "Applications", "HEADER": "Applications",
"STATUS": { "STATUS": {
"ENABLED": "Povoleno", "ENABLED": "Povoleno",
@@ -56,7 +56,7 @@
"BUTTON_TEXT": "Disconnect" "BUTTON_TEXT": "Disconnect"
}, },
"SIDEBAR_DESCRIPTION": { "SIDEBAR_DESCRIPTION": {
"DIALOGFLOW": "Dialogflow is a natural language understanding platform that makes it easy to design and integrate a conversational user interface into your mobile app, web application, device, bot, interactive voice response system, and so on. <br /> <br /> Dialogflow integration with %{installationName} allows you to configure a Dialogflow bot with your inboxes which lets the bot handle the queries initially and hand them over to an agent when needed. Dialogflow can be used to qualifying the leads, reduce the workload of agents by providing frequently asked questions etc. <br /> <br /> To add Dialogflow, you need to create a Service Account in your Google project console and share the credentials. Please refer to the Dialogflow docs for more information." "DIALOGFLOW": "Dialogflow is a natural language understanding platform that makes it easy to design and integrate a conversational user interface into your mobile app, web application, device, bot, interactive voice response system, and so on. <br /> <br /> Dialogflow integration with {installationName} allows you to configure a Dialogflow bot with your inboxes which lets the bot handle the queries initially and hand them over to an agent when needed. Dialogflow can be used to qualifying the leads, reduce the workload of agents by providing frequently asked questions etc. <br /> <br /> To add Dialogflow, you need to create a Service Account in your Google project console and share the credentials. Please refer to the Dialogflow docs for more information."
} }
} }
} }

View File

@@ -76,7 +76,7 @@
}, },
"CONFIRM": { "CONFIRM": {
"TITLE": "Potvrdit odstranění", "TITLE": "Potvrdit odstranění",
"MESSAGE": "Are you sure to delete the webhook? (%{webhookURL})", "MESSAGE": "Are you sure to delete the webhook? ({webhookURL})",
"YES": "Ano, odstranit ", "YES": "Ano, odstranit ",
"NO": "No, Keep it" "NO": "No, Keep it"
} }
@@ -114,7 +114,7 @@
}, },
"OPEN_AI": { "OPEN_AI": {
"AI_ASSIST": "AI Assist", "AI_ASSIST": "AI Assist",
"WITH_AI": " %{option} with AI ", "WITH_AI": " {option} with AI ",
"OPTIONS": { "OPTIONS": {
"REPLY_SUGGESTION": "Reply Suggestion", "REPLY_SUGGESTION": "Reply Suggestion",
"SUMMARIZE": "Summarize", "SUMMARIZE": "Summarize",
@@ -216,7 +216,7 @@
"CONFIRM_YES": "Yes, delete it", "CONFIRM_YES": "Yes, delete it",
"CONFIRM_NO": "No, keep it", "CONFIRM_NO": "No, keep it",
"TITLE": "Confirm deletion", "TITLE": "Confirm deletion",
"MESSAGE": "Are you sure to delete the app - %{appName}?", "MESSAGE": "Are you sure to delete the app - {appName}?",
"API_SUCCESS": "Dashboard app deleted successfully", "API_SUCCESS": "Dashboard app deleted successfully",
"API_ERROR": "We couldn't delete the app. Please try again later" "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", "ERROR": "There was an error fetching the linear issues, please try again",
"LINK_SUCCESS": "Issue linked successfully", "LINK_SUCCESS": "Issue linked successfully",
"LINK_ERROR": "There was an error linking the issue, please try again", "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": { "ADD_OR_LINK": {
"TITLE": "Create/link linear issue", "TITLE": "Create/link linear issue",
@@ -294,7 +294,7 @@
"PRIORITY": "Priority", "PRIORITY": "Priority",
"ASSIGNEE": "Assignee", "ASSIGNEE": "Assignee",
"LABELS": "Štítky", "LABELS": "Štítky",
"CREATED_AT": "Created at %{createdAt}" "CREATED_AT": "Created at {createdAt}"
}, },
"UNLINK": { "UNLINK": {
"TITLE": "Unlink", "TITLE": "Unlink",

View File

@@ -23,13 +23,13 @@
"NAME": "First Response Time", "NAME": "First Response Time",
"DESC": "(Průměrný)", "DESC": "(Průměrný)",
"INFO_TEXT": "Total number of conversations used for computation:", "INFO_TEXT": "Total number of conversations used for computation:",
"TOOLTIP_TEXT": "First Response Time is %{metricValue} (based on %{conversationCount} conversations)" "TOOLTIP_TEXT": "First Response Time is {metricValue} (based on {conversationCount} conversations)"
}, },
"RESOLUTION_TIME": { "RESOLUTION_TIME": {
"NAME": "Čas rozlišení", "NAME": "Čas rozlišení",
"DESC": "(Průměrný)", "DESC": "(Průměrný)",
"INFO_TEXT": "Total number of conversations used for computation:", "INFO_TEXT": "Total number of conversations used for computation:",
"TOOLTIP_TEXT": "Resolution Time is %{metricValue} (based on %{conversationCount} conversations)" "TOOLTIP_TEXT": "Resolution Time is {metricValue} (based on {conversationCount} conversations)"
}, },
"RESOLUTION_COUNT": { "RESOLUTION_COUNT": {
"NAME": "Počet rozlišení", "NAME": "Počet rozlišení",
@@ -45,7 +45,7 @@
}, },
"REPLY_TIME": { "REPLY_TIME": {
"NAME": "Customer waiting 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": { "DATE_RANGE_OPTIONS": {
@@ -167,13 +167,13 @@
"NAME": "First Response Time", "NAME": "First Response Time",
"DESC": "(Průměrný)", "DESC": "(Průměrný)",
"INFO_TEXT": "Total number of conversations used for computation:", "INFO_TEXT": "Total number of conversations used for computation:",
"TOOLTIP_TEXT": "First Response Time is %{metricValue} (based on %{conversationCount} conversations)" "TOOLTIP_TEXT": "First Response Time is {metricValue} (based on {conversationCount} conversations)"
}, },
"RESOLUTION_TIME": { "RESOLUTION_TIME": {
"NAME": "Čas rozlišení", "NAME": "Čas rozlišení",
"DESC": "(Průměrný)", "DESC": "(Průměrný)",
"INFO_TEXT": "Total number of conversations used for computation:", "INFO_TEXT": "Total number of conversations used for computation:",
"TOOLTIP_TEXT": "Resolution Time is %{metricValue} (based on %{conversationCount} conversations)" "TOOLTIP_TEXT": "Resolution Time is {metricValue} (based on {conversationCount} conversations)"
}, },
"RESOLUTION_COUNT": { "RESOLUTION_COUNT": {
"NAME": "Počet rozlišení", "NAME": "Počet rozlišení",
@@ -234,13 +234,13 @@
"NAME": "First Response Time", "NAME": "First Response Time",
"DESC": "(Průměrný)", "DESC": "(Průměrný)",
"INFO_TEXT": "Total number of conversations used for computation:", "INFO_TEXT": "Total number of conversations used for computation:",
"TOOLTIP_TEXT": "First Response Time is %{metricValue} (based on %{conversationCount} conversations)" "TOOLTIP_TEXT": "First Response Time is {metricValue} (based on {conversationCount} conversations)"
}, },
"RESOLUTION_TIME": { "RESOLUTION_TIME": {
"NAME": "Čas rozlišení", "NAME": "Čas rozlišení",
"DESC": "(Průměrný)", "DESC": "(Průměrný)",
"INFO_TEXT": "Total number of conversations used for computation:", "INFO_TEXT": "Total number of conversations used for computation:",
"TOOLTIP_TEXT": "Resolution Time is %{metricValue} (based on %{conversationCount} conversations)" "TOOLTIP_TEXT": "Resolution Time is {metricValue} (based on {conversationCount} conversations)"
}, },
"RESOLUTION_COUNT": { "RESOLUTION_COUNT": {
"NAME": "Počet rozlišení", "NAME": "Počet rozlišení",
@@ -301,13 +301,13 @@
"NAME": "First Response Time", "NAME": "First Response Time",
"DESC": "(Průměrný)", "DESC": "(Průměrný)",
"INFO_TEXT": "Total number of conversations used for computation:", "INFO_TEXT": "Total number of conversations used for computation:",
"TOOLTIP_TEXT": "First Response Time is %{metricValue} (based on %{conversationCount} conversations)" "TOOLTIP_TEXT": "First Response Time is {metricValue} (based on {conversationCount} conversations)"
}, },
"RESOLUTION_TIME": { "RESOLUTION_TIME": {
"NAME": "Čas rozlišení", "NAME": "Čas rozlišení",
"DESC": "(Průměrný)", "DESC": "(Průměrný)",
"INFO_TEXT": "Total number of conversations used for computation:", "INFO_TEXT": "Total number of conversations used for computation:",
"TOOLTIP_TEXT": "Resolution Time is %{metricValue} (based on %{conversationCount} conversations)" "TOOLTIP_TEXT": "Resolution Time is {metricValue} (based on {conversationCount} conversations)"
}, },
"RESOLUTION_COUNT": { "RESOLUTION_COUNT": {
"NAME": "Počet rozlišení", "NAME": "Počet rozlišení",
@@ -368,13 +368,13 @@
"NAME": "First Response Time", "NAME": "First Response Time",
"DESC": "(Průměrný)", "DESC": "(Průměrný)",
"INFO_TEXT": "Total number of conversations used for computation:", "INFO_TEXT": "Total number of conversations used for computation:",
"TOOLTIP_TEXT": "First Response Time is %{metricValue} (based on %{conversationCount} conversations)" "TOOLTIP_TEXT": "First Response Time is {metricValue} (based on {conversationCount} conversations)"
}, },
"RESOLUTION_TIME": { "RESOLUTION_TIME": {
"NAME": "Čas rozlišení", "NAME": "Čas rozlišení",
"DESC": "(Průměrný)", "DESC": "(Průměrný)",
"INFO_TEXT": "Total number of conversations used for computation:", "INFO_TEXT": "Total number of conversations used for computation:",
"TOOLTIP_TEXT": "Resolution Time is %{metricValue} (based on %{conversationCount} conversations)" "TOOLTIP_TEXT": "Resolution Time is {metricValue} (based on {conversationCount} conversations)"
}, },
"RESOLUTION_COUNT": { "RESOLUTION_COUNT": {
"NAME": "Počet rozlišení", "NAME": "Počet rozlišení",
@@ -480,8 +480,8 @@
"CONVERSATION_HEATMAP": { "CONVERSATION_HEATMAP": {
"HEADER": "Conversation Traffic", "HEADER": "Conversation Traffic",
"NO_CONVERSATIONS": "No conversations", "NO_CONVERSATIONS": "No conversations",
"CONVERSATION": "%{count} conversation", "CONVERSATION": "{count} conversation",
"CONVERSATIONS": "%{count} conversations", "CONVERSATIONS": "{count} conversations",
"DOWNLOAD_REPORT": "Download report" "DOWNLOAD_REPORT": "Download report"
}, },
"AGENT_CONVERSATIONS": { "AGENT_CONVERSATIONS": {

View File

@@ -12,8 +12,8 @@
"MESSAGES": "Zprávy" "MESSAGES": "Zprávy"
}, },
"SEARCHING_DATA": "Searching", "SEARCHING_DATA": "Searching",
"EMPTY_STATE": "No %{item} found for query '%{query}'", "EMPTY_STATE": "No {item} found for query '{query}'",
"EMPTY_STATE_FULL": "No results found for query '%{query}'", "EMPTY_STATE_FULL": "No results found for query '{query}'",
"PLACEHOLDER_KEYBINDING": "/ to focus", "PLACEHOLDER_KEYBINDING": "/ to focus",
"INPUT_PLACEHOLDER": "Search messages, contacts or conversations", "INPUT_PLACEHOLDER": "Search messages, contacts or conversations",
"EMPTY_STATE_DEFAULT": "Search by conversation id, email, phone number, messages for better search results.", "EMPTY_STATE_DEFAULT": "Search by conversation id, email, phone number, messages for better search results.",

View File

@@ -301,7 +301,7 @@
"TITLE": "Billing", "TITLE": "Billing",
"CURRENT_PLAN": { "CURRENT_PLAN": {
"TITLE": "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": { "MANAGE_SUBSCRIPTION": {
"TITLE": "Manage your subscription", "TITLE": "Manage your subscription",

View File

@@ -17,7 +17,7 @@
}, },
"AGENTS": { "AGENTS": {
"BUTTON_TEXT": "Add agents to team", "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." "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": [ "WIZARD": [
@@ -46,7 +46,7 @@
}, },
"AGENTS": { "AGENTS": {
"BUTTON_TEXT": "Update agents in team", "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." "DESC": "Add Agents to your newly created team. All the added agents will be notified when a conversation is assigned to this team."
}, },
"WIZARD": [ "WIZARD": [
@@ -77,14 +77,14 @@
"ADD_AGENTS": "Adding Agents to your Team...", "ADD_AGENTS": "Adding Agents to your Team...",
"SELECT": "select", "SELECT": "select",
"SELECT_ALL": "select all agents", "SELECT_ALL": "select all agents",
"SELECTED_COUNT": "%{selected} out of %{total} agents selected." "SELECTED_COUNT": "{selected} out of {total} agents selected."
}, },
"ADD": { "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.", "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": "select",
"SELECT_ALL": "select all agents", "SELECT_ALL": "select all agents",
"SELECTED_COUNT": "%{selected} out of %{total} agents selected.", "SELECTED_COUNT": "{selected} out of {total} agents selected.",
"BUTTON_TEXT": "Přidat agenty", "BUTTON_TEXT": "Přidat agenty",
"AGENT_VALIDATION_ERROR": "Select at least one agent." "AGENT_VALIDATION_ERROR": "Select at least one agent."
}, },

View File

@@ -3,7 +3,7 @@
"MODAL": { "MODAL": {
"TITLE": "Whatsapp Templates", "TITLE": "Whatsapp Templates",
"SUBTITLE": "Select the whatsapp template you want to send", "SUBTITLE": "Select the whatsapp template you want to send",
"TEMPLATE_SELECTED_SUBTITLE": "Process %{templateName}" "TEMPLATE_SELECTED_SUBTITLE": "Process {templateName}"
}, },
"PICKER": { "PICKER": {
"SEARCH_PLACEHOLDER": "Search Templates", "SEARCH_PLACEHOLDER": "Search Templates",
@@ -16,7 +16,7 @@
}, },
"PARSER": { "PARSER": {
"VARIABLES_LABEL": "Variables", "VARIABLES_LABEL": "Variables",
"VARIABLE_PLACEHOLDER": "Enter %{variable} value", "VARIABLE_PLACEHOLDER": "Enter {variable} value",
"GO_BACK_LABEL": "Go Back", "GO_BACK_LABEL": "Go Back",
"SEND_MESSAGE_LABEL": "Send Message", "SEND_MESSAGE_LABEL": "Send Message",
"FORM_ERROR_MESSAGE": "Please fill all variables before sending" "FORM_ERROR_MESSAGE": "Please fill all variables before sending"

View File

@@ -65,7 +65,7 @@
"ERROR_MESSAGE": "Kunne ikke slette den brugerdefinerede attribut. Prøv igen." "ERROR_MESSAGE": "Kunne ikke slette den brugerdefinerede attribut. Prøv igen."
}, },
"CONFIRM": { "CONFIRM": {
"TITLE": "Er du sikker på du vil slette - %{attributeName}", "TITLE": "Er du sikker på du vil slette - {attributeName}",
"PLACE_HOLDER": "Skriv venligst {attributeName} for at bekræfte", "PLACE_HOLDER": "Skriv venligst {attributeName} for at bekræfte",
"MESSAGE": "Sletning vil fjerne den brugerdefinerede attribut", "MESSAGE": "Sletning vil fjerne den brugerdefinerede attribut",
"YES": "Slet ", "YES": "Slet ",

View File

@@ -23,52 +23,52 @@
}, },
"DEFAULT_USER": "System", "DEFAULT_USER": "System",
"AUTOMATION_RULE": { "AUTOMATION_RULE": {
"ADD": "%{agentName} created a new automation rule (#%{id})", "ADD": "{agentName} created a new automation rule (#{id})",
"EDIT": "%{agentName} updated an automation rule (#%{id})", "EDIT": "{agentName} updated an automation rule (#{id})",
"DELETE": "%{agentName} deleted an automation rule (#%{id})" "DELETE": "{agentName} deleted an automation rule (#{id})"
}, },
"ACCOUNT_USER": { "ACCOUNT_USER": {
"ADD": "%{agentName} invited %{invitee} to the account as an %{role}", "ADD": "{agentName} invited {invitee} to the account as an {role}",
"EDIT": { "EDIT": {
"SELF": "%{agentName} changed their %{attributes} to %{values}", "SELF": "{agentName} changed their {attributes} to {values}",
"OTHER": "%{agentName} changed %{attributes} of %{user} to %{values}", "OTHER": "{agentName} changed {attributes} of {user} to {values}",
"DELETED": "%{agentName} changed %{attributes} of a deleted user to %{values}" "DELETED": "{agentName} changed {attributes} of a deleted user to {values}"
} }
}, },
"INBOX": { "INBOX": {
"ADD": "%{agentName} created a new inbox (#%{id})", "ADD": "{agentName} created a new inbox (#{id})",
"EDIT": "%{agentName} updated an inbox (#%{id})", "EDIT": "{agentName} updated an inbox (#{id})",
"DELETE": "%{agentName} deleted an inbox (#%{id})" "DELETE": "{agentName} deleted an inbox (#{id})"
}, },
"WEBHOOK": { "WEBHOOK": {
"ADD": "%{agentName} created a new webhook (#%{id})", "ADD": "{agentName} created a new webhook (#{id})",
"EDIT": "%{agentName} updated a webhook (#%{id})", "EDIT": "{agentName} updated a webhook (#{id})",
"DELETE": "%{agentName} deleted a webhook (#%{id})" "DELETE": "{agentName} deleted a webhook (#{id})"
}, },
"USER_ACTION": { "USER_ACTION": {
"SIGN_IN": "%{agentName} signed in", "SIGN_IN": "{agentName} signed in",
"SIGN_OUT": "%{agentName} signed out" "SIGN_OUT": "{agentName} signed out"
}, },
"TEAM": { "TEAM": {
"ADD": "%{agentName} created a new team (#%{id})", "ADD": "{agentName} created a new team (#{id})",
"EDIT": "%{agentName} updated a team (#%{id})", "EDIT": "{agentName} updated a team (#{id})",
"DELETE": "%{agentName} deleted a team (#%{id})" "DELETE": "{agentName} deleted a team (#{id})"
}, },
"MACRO": { "MACRO": {
"ADD": "%{agentName} created a new macro (#%{id})", "ADD": "{agentName} created a new macro (#{id})",
"EDIT": "%{agentName} updated a macro (#%{id})", "EDIT": "{agentName} updated a macro (#{id})",
"DELETE": "%{agentName} deleted a macro (#%{id})" "DELETE": "{agentName} deleted a macro (#{id})"
}, },
"INBOX_MEMBER": { "INBOX_MEMBER": {
"ADD": "%{agentName} added %{user} to the inbox(#%{inbox_id})", "ADD": "{agentName} added {user} to the inbox(#{inbox_id})",
"REMOVE": "%{agentName} removed %{user} from the inbox(#%{inbox_id})" "REMOVE": "{agentName} removed {user} from the inbox(#{inbox_id})"
}, },
"TEAM_MEMBER": { "TEAM_MEMBER": {
"ADD": "%{agentName} added %{user} to the team(#%{team_id})", "ADD": "{agentName} added {user} to the team(#{team_id})",
"REMOVE": "%{agentName} removed %{user} from the team(#%{team_id})" "REMOVE": "{agentName} removed {user} from the team(#{team_id})"
}, },
"ACCOUNT": { "ACCOUNT": {
"EDIT": "%{agentName} updated the account configuration (#%{id})" "EDIT": "{agentName} updated the account configuration (#{id})"
} }
} }
} }

View File

@@ -1,9 +1,9 @@
{ {
"BULK_ACTION": { "BULK_ACTION": {
"CONVERSATIONS_SELECTED": "%{conversationCount} samtaler valgt", "CONVERSATIONS_SELECTED": "{conversationCount} samtaler valgt",
"AGENT_SELECT_LABEL": "Vælg agent", "AGENT_SELECT_LABEL": "Vælg agent",
"ASSIGN_CONFIRMATION_LABEL": "Are you sure to assign %{conversationCount} %{conversationLabel} to", "ASSIGN_CONFIRMATION_LABEL": "Are you sure to assign {conversationCount} {conversationLabel} to",
"UNASSIGN_CONFIRMATION_LABEL": "Are you sure to unassign %{conversationCount} %{conversationLabel}?", "UNASSIGN_CONFIRMATION_LABEL": "Are you sure to unassign {conversationCount} {conversationLabel}?",
"GO_BACK_LABEL": "Gå tilbage", "GO_BACK_LABEL": "Gå tilbage",
"ASSIGN_LABEL": "Tildel", "ASSIGN_LABEL": "Tildel",
"YES": "Ja", "YES": "Ja",

View File

@@ -367,8 +367,8 @@
}, },
"SUMMARY": { "SUMMARY": {
"TITLE": "Oversigt", "TITLE": "Oversigt",
"DELETE_WARNING": "Kontakt af <strong>%{primaryContactName}</strong> vil blive slettet.", "DELETE_WARNING": "Kontakt af <strong>{primaryContactName}</strong> vil blive slettet.",
"ATTRIBUTE_WARNING": "Kontaktoplysninger på <strong>%{primaryContactName}</strong> vil blive kopieret til <strong>%{parentContactName}</strong>." "ATTRIBUTE_WARNING": "Kontaktoplysninger på <strong>{primaryContactName}</strong> vil blive kopieret til <strong>{parentContactName}</strong>."
}, },
"SEARCH": { "SEARCH": {
"ERROR": "FEJL_MEDDELELSE" "ERROR": "FEJL_MEDDELELSE"

View File

@@ -101,7 +101,7 @@
"SELECT_PLACEHOLDER": "Ingen", "SELECT_PLACEHOLDER": "Ingen",
"INPUT_PLACEHOLDER": "Select priority", "INPUT_PLACEHOLDER": "Select priority",
"NO_RESULTS": "Ingen resultater fundet", "NO_RESULTS": "Ingen resultater fundet",
"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." "FAILED": "Couldn't change priority. Please try again."
} }
}, },
@@ -122,15 +122,15 @@
"ASSIGN_TEAM": "Tildel team", "ASSIGN_TEAM": "Tildel team",
"API": { "API": {
"AGENT_ASSIGNMENT": { "AGENT_ASSIGNMENT": {
"SUCCESFUL": "Samtale id %{conversationId} tildelt \"%{agentName}\"", "SUCCESFUL": "Samtale id {conversationId} tildelt \"{agentName}\"",
"FAILED": "Kunne ikke tildele agent. Prøv venligst igen." "FAILED": "Kunne ikke tildele agent. Prøv venligst igen."
}, },
"LABEL_ASSIGNMENT": { "LABEL_ASSIGNMENT": {
"SUCCESFUL": "Tildelt etiket #%{labelName} til samtale-id %{conversationId}", "SUCCESFUL": "Tildelt etiket #{labelName} til samtale-id {conversationId}",
"FAILED": "Kunne ikke tildele etiket. Prøv venligst igen." "FAILED": "Kunne ikke tildele etiket. Prøv venligst igen."
}, },
"TEAM_ASSIGNMENT": { "TEAM_ASSIGNMENT": {
"SUCCESFUL": "Tildelt team \"%{team}\" til samtale-id %{conversationId}", "SUCCESFUL": "Tildelt team \"{team}\" til samtale-id {conversationId}",
"FAILED": "Kunne ikke tildele team. Prøv venligst igen." "FAILED": "Kunne ikke tildele team. Prøv venligst igen."
} }
} }
@@ -239,11 +239,11 @@
} }
}, },
"ONBOARDING": { "ONBOARDING": {
"TITLE": "Hej 👋, Velkommen til %{installationName}!", "TITLE": "Hej 👋, Velkommen til {installationName}!",
"DESCRIPTION": "Tak for din tilmelding. Vi vil have dig til at få mest muligt ud af %{installationName}. Her er et par ting, du kan gøre i %{installationName} for at gøre oplevelsen dejlig.", "DESCRIPTION": "Tak for din tilmelding. Vi vil have dig til at få mest muligt ud af {installationName}. Her er et par ting, du kan gøre i {installationName} for at gøre oplevelsen dejlig.",
"GREETING_MORNING": "👋 Good morning, %{name}. Welcome to %{installationName}.", "GREETING_MORNING": "👋 Good morning, {name}. Welcome to {installationName}.",
"GREETING_AFTERNOON": "👋 Good afternoon, %{name}. Welcome to %{installationName}.", "GREETING_AFTERNOON": "👋 Good afternoon, {name}. Welcome to {installationName}.",
"GREETING_EVENING": "👋 Good evening, %{name}. Welcome to %{installationName}.", "GREETING_EVENING": "👋 Good evening, {name}. Welcome to {installationName}.",
"READ_LATEST_UPDATES": "Læs vores seneste opdateringer", "READ_LATEST_UPDATES": "Læs vores seneste opdateringer",
"ALL_CONVERSATION": { "ALL_CONVERSATION": {
"TITLE": "Alle dine samtaler på ét sted", "TITLE": "Alle dine samtaler på ét sted",
@@ -317,10 +317,10 @@
"SIDEBAR_TITLE": "Conversation participants", "SIDEBAR_TITLE": "Conversation participants",
"NO_RECORDS_FOUND": "Ingen resultater fundet", "NO_RECORDS_FOUND": "Ingen resultater fundet",
"ADD_PARTICIPANTS": "Select participants", "ADD_PARTICIPANTS": "Select participants",
"REMANING_PARTICIPANTS_TEXT": "+%{count} others", "REMANING_PARTICIPANTS_TEXT": "+{count} others",
"REMANING_PARTICIPANT_TEXT": "+%{count} other", "REMANING_PARTICIPANT_TEXT": "+{count} other",
"TOTAL_PARTICIPANTS_TEXT": "%{count} people are participating.", "TOTAL_PARTICIPANTS_TEXT": "{count} people are participating.",
"TOTAL_PARTICIPANT_TEXT": "%{count} person is participating.", "TOTAL_PARTICIPANT_TEXT": "{count} person is participating.",
"NO_PARTICIPANTS_TEXT": "No one is participating!.", "NO_PARTICIPANTS_TEXT": "No one is participating!.",
"WATCH_CONVERSATION": "Join conversation", "WATCH_CONVERSATION": "Join conversation",
"YOU_ARE_WATCHING": "You are participating", "YOU_ARE_WATCHING": "You are participating",

View File

@@ -48,7 +48,7 @@
"CUSTOM_EMAIL_DOMAIN_ENABLED": "Du kan modtage e-mails på dit brugerdefinerede domæne nu." "CUSTOM_EMAIL_DOMAIN_ENABLED": "Du kan modtage e-mails på dit brugerdefinerede domæne nu."
} }
}, },
"UPDATE_CHATWOOT": "En opdatering %{latestChatwootVersion} til Chatwoot er tilgængelig. Opdater venligst din instans.", "UPDATE_CHATWOOT": "En opdatering {latestChatwootVersion} til Chatwoot er tilgængelig. Opdater venligst din instans.",
"LEARN_MORE": "Lær mere", "LEARN_MORE": "Lær mere",
"PAYMENT_PENDING": "Your payment is pending. Please update your payment information to continue using Chatwoot", "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", "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": { "ARTICLE_SEARCH_RESULT": {
"UNCATEGORIZED": "Uncategorized", "UNCATEGORIZED": "Uncategorized",
"SEARCH_RESULTS": "Search results for %{query}", "SEARCH_RESULTS": "Search results for {query}",
"EMPTY_TEXT": "Search for articles to insert into replies.", "EMPTY_TEXT": "Search for articles to insert into replies.",
"SEARCH_LOADER": "Søger...", "SEARCH_LOADER": "Søger...",
"INSERT_ARTICLE": "Insert", "INSERT_ARTICLE": "Insert",

View File

@@ -1,7 +1,7 @@
{ {
"INTEGRATION_APPS": { "INTEGRATION_APPS": {
"FETCHING": "Henter Integrationer", "FETCHING": "Henter Integrationer",
"NO_HOOK_CONFIGURED": "Der er ingen %{integrationId} integrationer konfigureret på denne konto.", "NO_HOOK_CONFIGURED": "Der er ingen {integrationId} integrationer konfigureret på denne konto.",
"HEADER": "Applikationer", "HEADER": "Applikationer",
"STATUS": { "STATUS": {
"ENABLED": "Aktiveret", "ENABLED": "Aktiveret",
@@ -56,7 +56,7 @@
"BUTTON_TEXT": "Afbryd" "BUTTON_TEXT": "Afbryd"
}, },
"SIDEBAR_DESCRIPTION": { "SIDEBAR_DESCRIPTION": {
"DIALOGFLOW": "Dialogflow er en naturlig sprogforståelsesplatform, der gør det nemt at designe og integrere en samtalebrugergrænseflade i din mobile app, webapplikation, enhed, bot, interaktivt talespons system, og så videre. <br /> <br /> Dialogflow integration med %{installationName} giver dig mulighed for at konfigurere en Dialogflow bot med dine indbakker, som lader botten håndtere spørgsmålene i første omgang og overdrage dem til en agent, når det er nødvendigt. Dialogflow kan bruges til at kvalificere kundeemner, reducere arbejdsbyrden af agenter ved at stille ofte stillede spørgsmål osv. <br /> <br /> For at tilføje Dialogflow skal du oprette en servicekonto i din Google-projektkonsol og dele legitimationsoplysningerne. Se Dialogflow dokumenterne for mere information." "DIALOGFLOW": "Dialogflow er en naturlig sprogforståelsesplatform, der gør det nemt at designe og integrere en samtalebrugergrænseflade i din mobile app, webapplikation, enhed, bot, interaktivt talespons system, og så videre. <br /> <br /> Dialogflow integration med {installationName} giver dig mulighed for at konfigurere en Dialogflow bot med dine indbakker, som lader botten håndtere spørgsmålene i første omgang og overdrage dem til en agent, når det er nødvendigt. Dialogflow kan bruges til at kvalificere kundeemner, reducere arbejdsbyrden af agenter ved at stille ofte stillede spørgsmål osv. <br /> <br /> For at tilføje Dialogflow skal du oprette en servicekonto i din Google-projektkonsol og dele legitimationsoplysningerne. Se Dialogflow dokumenterne for mere information."
} }
} }
} }

View File

@@ -76,7 +76,7 @@
}, },
"CONFIRM": { "CONFIRM": {
"TITLE": "Bekræft Sletning", "TITLE": "Bekræft Sletning",
"MESSAGE": "Er du sikker på at du vil slette webhook? (%{webhookURL})", "MESSAGE": "Er du sikker på at du vil slette webhook? ({webhookURL})",
"YES": "Ja, Slet ", "YES": "Ja, Slet ",
"NO": "Nej, behold det" "NO": "Nej, behold det"
} }
@@ -114,7 +114,7 @@
}, },
"OPEN_AI": { "OPEN_AI": {
"AI_ASSIST": "AI Assist", "AI_ASSIST": "AI Assist",
"WITH_AI": " %{option} with AI ", "WITH_AI": " {option} with AI ",
"OPTIONS": { "OPTIONS": {
"REPLY_SUGGESTION": "Reply Suggestion", "REPLY_SUGGESTION": "Reply Suggestion",
"SUMMARIZE": "Summarize", "SUMMARIZE": "Summarize",
@@ -216,7 +216,7 @@
"CONFIRM_YES": "Ja, slet det", "CONFIRM_YES": "Ja, slet det",
"CONFIRM_NO": "Nej, behold det", "CONFIRM_NO": "Nej, behold det",
"TITLE": "Bekræft sletning", "TITLE": "Bekræft sletning",
"MESSAGE": "Er du sikker på at du vil slette appen - %{appName}?", "MESSAGE": "Er du sikker på at du vil slette appen - {appName}?",
"API_SUCCESS": "Dashboard app slettet", "API_SUCCESS": "Dashboard app slettet",
"API_ERROR": "Vi kunne ikke slette appen. Prøv igen senere" "API_ERROR": "Vi kunne ikke slette appen. Prøv igen senere"
} }
@@ -235,7 +235,7 @@
"ERROR": "There was an error fetching the linear issues, please try again", "ERROR": "There was an error fetching the linear issues, please try again",
"LINK_SUCCESS": "Issue linked successfully", "LINK_SUCCESS": "Issue linked successfully",
"LINK_ERROR": "There was an error linking the issue, please try again", "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": { "ADD_OR_LINK": {
"TITLE": "Create/link linear issue", "TITLE": "Create/link linear issue",
@@ -294,7 +294,7 @@
"PRIORITY": "Priority", "PRIORITY": "Priority",
"ASSIGNEE": "Assignee", "ASSIGNEE": "Assignee",
"LABELS": "Etiketter", "LABELS": "Etiketter",
"CREATED_AT": "Created at %{createdAt}" "CREATED_AT": "Created at {createdAt}"
}, },
"UNLINK": { "UNLINK": {
"TITLE": "Unlink", "TITLE": "Unlink",

View File

@@ -23,13 +23,13 @@
"NAME": "Første Respons Tid", "NAME": "Første Respons Tid",
"DESC": "( Gns. )", "DESC": "( Gns. )",
"INFO_TEXT": "Samlet antal samtaler, der anvendes til beregning:", "INFO_TEXT": "Samlet antal samtaler, der anvendes til beregning:",
"TOOLTIP_TEXT": "Første svartid er %{metricValue} (baseret på %{conversationCount} samtaler)" "TOOLTIP_TEXT": "Første svartid er {metricValue} (baseret på {conversationCount} samtaler)"
}, },
"RESOLUTION_TIME": { "RESOLUTION_TIME": {
"NAME": "Løsnings Tid", "NAME": "Løsnings Tid",
"DESC": "( Gns. )", "DESC": "( Gns. )",
"INFO_TEXT": "Samlet antal samtaler, der anvendes til beregning:", "INFO_TEXT": "Samlet antal samtaler, der anvendes til beregning:",
"TOOLTIP_TEXT": "Opløsningstid er %{metricValue} (baseret på %{conversationCount} samtaler)" "TOOLTIP_TEXT": "Opløsningstid er {metricValue} (baseret på {conversationCount} samtaler)"
}, },
"RESOLUTION_COUNT": { "RESOLUTION_COUNT": {
"NAME": "Antal Afsluttede", "NAME": "Antal Afsluttede",
@@ -45,7 +45,7 @@
}, },
"REPLY_TIME": { "REPLY_TIME": {
"NAME": "Customer waiting 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": { "DATE_RANGE_OPTIONS": {
@@ -167,13 +167,13 @@
"NAME": "Første Respons Tid", "NAME": "Første Respons Tid",
"DESC": "( Gns. )", "DESC": "( Gns. )",
"INFO_TEXT": "Samlet antal samtaler, der anvendes til beregning:", "INFO_TEXT": "Samlet antal samtaler, der anvendes til beregning:",
"TOOLTIP_TEXT": "Første svartid er %{metricValue} (baseret på %{conversationCount} samtaler)" "TOOLTIP_TEXT": "Første svartid er {metricValue} (baseret på {conversationCount} samtaler)"
}, },
"RESOLUTION_TIME": { "RESOLUTION_TIME": {
"NAME": "Løsnings Tid", "NAME": "Løsnings Tid",
"DESC": "( Gns. )", "DESC": "( Gns. )",
"INFO_TEXT": "Samlet antal samtaler, der anvendes til beregning:", "INFO_TEXT": "Samlet antal samtaler, der anvendes til beregning:",
"TOOLTIP_TEXT": "Opløsningstid er %{metricValue} (baseret på %{conversationCount} samtaler)" "TOOLTIP_TEXT": "Opløsningstid er {metricValue} (baseret på {conversationCount} samtaler)"
}, },
"RESOLUTION_COUNT": { "RESOLUTION_COUNT": {
"NAME": "Antal Afsluttede", "NAME": "Antal Afsluttede",
@@ -234,13 +234,13 @@
"NAME": "Første Respons Tid", "NAME": "Første Respons Tid",
"DESC": "( Gns. )", "DESC": "( Gns. )",
"INFO_TEXT": "Samlet antal samtaler, der anvendes til beregning:", "INFO_TEXT": "Samlet antal samtaler, der anvendes til beregning:",
"TOOLTIP_TEXT": "Første svartid er %{metricValue} (baseret på %{conversationCount} samtaler)" "TOOLTIP_TEXT": "Første svartid er {metricValue} (baseret på {conversationCount} samtaler)"
}, },
"RESOLUTION_TIME": { "RESOLUTION_TIME": {
"NAME": "Løsnings Tid", "NAME": "Løsnings Tid",
"DESC": "( Gns. )", "DESC": "( Gns. )",
"INFO_TEXT": "Samlet antal samtaler, der anvendes til beregning:", "INFO_TEXT": "Samlet antal samtaler, der anvendes til beregning:",
"TOOLTIP_TEXT": "Opløsningstid er %{metricValue} (baseret på %{conversationCount} samtaler)" "TOOLTIP_TEXT": "Opløsningstid er {metricValue} (baseret på {conversationCount} samtaler)"
}, },
"RESOLUTION_COUNT": { "RESOLUTION_COUNT": {
"NAME": "Antal Afsluttede", "NAME": "Antal Afsluttede",
@@ -301,13 +301,13 @@
"NAME": "Første Respons Tid", "NAME": "Første Respons Tid",
"DESC": "( Gns. )", "DESC": "( Gns. )",
"INFO_TEXT": "Samlet antal samtaler, der anvendes til beregning:", "INFO_TEXT": "Samlet antal samtaler, der anvendes til beregning:",
"TOOLTIP_TEXT": "Første svartid er %{metricValue} (baseret på %{conversationCount} samtaler)" "TOOLTIP_TEXT": "Første svartid er {metricValue} (baseret på {conversationCount} samtaler)"
}, },
"RESOLUTION_TIME": { "RESOLUTION_TIME": {
"NAME": "Løsnings Tid", "NAME": "Løsnings Tid",
"DESC": "( Gns. )", "DESC": "( Gns. )",
"INFO_TEXT": "Samlet antal samtaler, der anvendes til beregning:", "INFO_TEXT": "Samlet antal samtaler, der anvendes til beregning:",
"TOOLTIP_TEXT": "Opløsningstid er %{metricValue} (baseret på %{conversationCount} samtaler)" "TOOLTIP_TEXT": "Opløsningstid er {metricValue} (baseret på {conversationCount} samtaler)"
}, },
"RESOLUTION_COUNT": { "RESOLUTION_COUNT": {
"NAME": "Antal Afsluttede", "NAME": "Antal Afsluttede",
@@ -368,13 +368,13 @@
"NAME": "Første Respons Tid", "NAME": "Første Respons Tid",
"DESC": "( Gns. )", "DESC": "( Gns. )",
"INFO_TEXT": "Samlet antal samtaler, der anvendes til beregning:", "INFO_TEXT": "Samlet antal samtaler, der anvendes til beregning:",
"TOOLTIP_TEXT": "Første svartid er %{metricValue} (baseret på %{conversationCount} samtaler)" "TOOLTIP_TEXT": "Første svartid er {metricValue} (baseret på {conversationCount} samtaler)"
}, },
"RESOLUTION_TIME": { "RESOLUTION_TIME": {
"NAME": "Løsnings Tid", "NAME": "Løsnings Tid",
"DESC": "( Gns. )", "DESC": "( Gns. )",
"INFO_TEXT": "Samlet antal samtaler, der anvendes til beregning:", "INFO_TEXT": "Samlet antal samtaler, der anvendes til beregning:",
"TOOLTIP_TEXT": "Opløsningstid er %{metricValue} (baseret på %{conversationCount} samtaler)" "TOOLTIP_TEXT": "Opløsningstid er {metricValue} (baseret på {conversationCount} samtaler)"
}, },
"RESOLUTION_COUNT": { "RESOLUTION_COUNT": {
"NAME": "Antal Afsluttede", "NAME": "Antal Afsluttede",
@@ -480,8 +480,8 @@
"CONVERSATION_HEATMAP": { "CONVERSATION_HEATMAP": {
"HEADER": "Conversation Traffic", "HEADER": "Conversation Traffic",
"NO_CONVERSATIONS": "No conversations", "NO_CONVERSATIONS": "No conversations",
"CONVERSATION": "%{count} conversation", "CONVERSATION": "{count} conversation",
"CONVERSATIONS": "%{count} conversations", "CONVERSATIONS": "{count} conversations",
"DOWNLOAD_REPORT": "Download report" "DOWNLOAD_REPORT": "Download report"
}, },
"AGENT_CONVERSATIONS": { "AGENT_CONVERSATIONS": {

View File

@@ -12,8 +12,8 @@
"MESSAGES": "Beskeder" "MESSAGES": "Beskeder"
}, },
"SEARCHING_DATA": "Søger", "SEARCHING_DATA": "Søger",
"EMPTY_STATE": "No %{item} found for query '%{query}'", "EMPTY_STATE": "No {item} found for query '{query}'",
"EMPTY_STATE_FULL": "No results found for query '%{query}'", "EMPTY_STATE_FULL": "No results found for query '{query}'",
"PLACEHOLDER_KEYBINDING": "/ to focus", "PLACEHOLDER_KEYBINDING": "/ to focus",
"INPUT_PLACEHOLDER": "Search messages, contacts or conversations", "INPUT_PLACEHOLDER": "Search messages, contacts or conversations",
"EMPTY_STATE_DEFAULT": "Search by conversation id, email, phone number, messages for better search results.", "EMPTY_STATE_DEFAULT": "Search by conversation id, email, phone number, messages for better search results.",

View File

@@ -301,7 +301,7 @@
"TITLE": "Fakturering", "TITLE": "Fakturering",
"CURRENT_PLAN": { "CURRENT_PLAN": {
"TITLE": "Nuværende Abonnement", "TITLE": "Nuværende Abonnement",
"PLAN_NOTE": "Du abonnerer i øjeblikket på **%{plan}** planen med **%{quantity}** licenser" "PLAN_NOTE": "Du abonnerer i øjeblikket på **{plan}** planen med **{quantity}** licenser"
}, },
"MANAGE_SUBSCRIPTION": { "MANAGE_SUBSCRIPTION": {
"TITLE": "Administrer dit abonnement", "TITLE": "Administrer dit abonnement",

View File

@@ -17,7 +17,7 @@
}, },
"AGENTS": { "AGENTS": {
"BUTTON_TEXT": "Tilføj agenter til team", "BUTTON_TEXT": "Tilføj agenter til team",
"TITLE": "Tilføj agenter til team - %{teamName}", "TITLE": "Tilføj agenter til team - {teamName}",
"DESC": "Tilføj agenter til dit nyoprettede team. Dette lader dig samarbejde som et team om samtaler, få besked om nye begivenheder i samme samtale." "DESC": "Tilføj agenter til dit nyoprettede team. Dette lader dig samarbejde som et team om samtaler, få besked om nye begivenheder i samme samtale."
}, },
"WIZARD": [ "WIZARD": [
@@ -46,7 +46,7 @@
}, },
"AGENTS": { "AGENTS": {
"BUTTON_TEXT": "Opdater agenter i teamet", "BUTTON_TEXT": "Opdater agenter i teamet",
"TITLE": "Tilføj agenter til team - %{teamName}", "TITLE": "Tilføj agenter til team - {teamName}",
"DESC": "Tilføj agenter til dit nyoprettede team. Alle de tilføjede agenter vil blive underrettet, når en samtale er tildelt til dette team." "DESC": "Tilføj agenter til dit nyoprettede team. Alle de tilføjede agenter vil blive underrettet, når en samtale er tildelt til dette team."
}, },
"WIZARD": [ "WIZARD": [
@@ -77,14 +77,14 @@
"ADD_AGENTS": "Tilføjer agenter til dit Team...", "ADD_AGENTS": "Tilføjer agenter til dit Team...",
"SELECT": "vælg", "SELECT": "vælg",
"SELECT_ALL": "vælg alle agenter", "SELECT_ALL": "vælg alle agenter",
"SELECTED_COUNT": "%{selected} ud af %{total} valgte agenter." "SELECTED_COUNT": "{selected} ud af {total} valgte agenter."
}, },
"ADD": { "ADD": {
"TITLE": "Tilføj agenter til team - %{teamName}", "TITLE": "Tilføj agenter til team - {teamName}",
"DESC": "Tilføj agenter til dit nyoprettede team. Dette lader dig samarbejde som et team om samtaler, få besked om nye begivenheder i samme samtale.", "DESC": "Tilføj agenter til dit nyoprettede team. Dette lader dig samarbejde som et team om samtaler, få besked om nye begivenheder i samme samtale.",
"SELECT": "vælg", "SELECT": "vælg",
"SELECT_ALL": "vælg alle agenter", "SELECT_ALL": "vælg alle agenter",
"SELECTED_COUNT": "%{selected} ud af %{total} valgte agenter.", "SELECTED_COUNT": "{selected} ud af {total} valgte agenter.",
"BUTTON_TEXT": "Tilføj agenter", "BUTTON_TEXT": "Tilføj agenter",
"AGENT_VALIDATION_ERROR": "Vælg mindst én agent." "AGENT_VALIDATION_ERROR": "Vælg mindst én agent."
}, },

View File

@@ -3,7 +3,7 @@
"MODAL": { "MODAL": {
"TITLE": "Whatsapp Skabeloner", "TITLE": "Whatsapp Skabeloner",
"SUBTITLE": "Vælg den whatsapp skabelon, du vil sende", "SUBTITLE": "Vælg den whatsapp skabelon, du vil sende",
"TEMPLATE_SELECTED_SUBTITLE": "Proces %{templateName}" "TEMPLATE_SELECTED_SUBTITLE": "Proces {templateName}"
}, },
"PICKER": { "PICKER": {
"SEARCH_PLACEHOLDER": "Søg Skabeloner", "SEARCH_PLACEHOLDER": "Søg Skabeloner",
@@ -16,7 +16,7 @@
}, },
"PARSER": { "PARSER": {
"VARIABLES_LABEL": "Variabler", "VARIABLES_LABEL": "Variabler",
"VARIABLE_PLACEHOLDER": "Indtast %{variable} værdi", "VARIABLE_PLACEHOLDER": "Indtast {variable} værdi",
"GO_BACK_LABEL": "Gå Tilbage", "GO_BACK_LABEL": "Gå Tilbage",
"SEND_MESSAGE_LABEL": "Send Besked", "SEND_MESSAGE_LABEL": "Send Besked",
"FORM_ERROR_MESSAGE": "Udfyld venligst alle variabler før afsendelse" "FORM_ERROR_MESSAGE": "Udfyld venligst alle variabler før afsendelse"

View File

@@ -65,7 +65,7 @@
"ERROR_MESSAGE": "Das benutzerdefinierte Attribut konnte nicht gelöscht werden. Versuchen Sie es noch einmal." "ERROR_MESSAGE": "Das benutzerdefinierte Attribut konnte nicht gelöscht werden. Versuchen Sie es noch einmal."
}, },
"CONFIRM": { "CONFIRM": {
"TITLE": "Sind Sie sicher, dass Sie %{attributeName} löschen möchten", "TITLE": "Sind Sie sicher, dass Sie {attributeName} löschen möchten",
"PLACE_HOLDER": "Bitte geben Sie {attributeName} zur Bestätigung ein", "PLACE_HOLDER": "Bitte geben Sie {attributeName} zur Bestätigung ein",
"MESSAGE": "Beim Löschen wird das benutzerdefinierte Attribut entfernt", "MESSAGE": "Beim Löschen wird das benutzerdefinierte Attribut entfernt",
"YES": "Löschen ", "YES": "Löschen ",

View File

@@ -23,52 +23,52 @@
}, },
"DEFAULT_USER": "System", "DEFAULT_USER": "System",
"AUTOMATION_RULE": { "AUTOMATION_RULE": {
"ADD": "%{agentName} created a new automation rule (#%{id})", "ADD": "{agentName} created a new automation rule (#{id})",
"EDIT": "%{agentName} updated an automation rule (#%{id})", "EDIT": "{agentName} updated an automation rule (#{id})",
"DELETE": "%{agentName} deleted an automation rule (#%{id})" "DELETE": "{agentName} deleted an automation rule (#{id})"
}, },
"ACCOUNT_USER": { "ACCOUNT_USER": {
"ADD": "%{agentName} invited %{invitee} to the account as an %{role}", "ADD": "{agentName} invited {invitee} to the account as an {role}",
"EDIT": { "EDIT": {
"SELF": "%{agentName} changed their %{attributes} to %{values}", "SELF": "{agentName} changed their {attributes} to {values}",
"OTHER": "%{agentName} changed %{attributes} of %{user} to %{values}", "OTHER": "{agentName} changed {attributes} of {user} to {values}",
"DELETED": "%{agentName} changed %{attributes} of a deleted user to %{values}" "DELETED": "{agentName} changed {attributes} of a deleted user to {values}"
} }
}, },
"INBOX": { "INBOX": {
"ADD": "%{agentName} created a new inbox (#%{id})", "ADD": "{agentName} created a new inbox (#{id})",
"EDIT": "%{agentName} updated an inbox (#%{id})", "EDIT": "{agentName} updated an inbox (#{id})",
"DELETE": "%{agentName} deleted an inbox (#%{id})" "DELETE": "{agentName} deleted an inbox (#{id})"
}, },
"WEBHOOK": { "WEBHOOK": {
"ADD": "%{agentName} created a new webhook (#%{id})", "ADD": "{agentName} created a new webhook (#{id})",
"EDIT": "%{agentName} updated a webhook (#%{id})", "EDIT": "{agentName} updated a webhook (#{id})",
"DELETE": "%{agentName} deleted a webhook (#%{id})" "DELETE": "{agentName} deleted a webhook (#{id})"
}, },
"USER_ACTION": { "USER_ACTION": {
"SIGN_IN": "%{agentName} signed in", "SIGN_IN": "{agentName} signed in",
"SIGN_OUT": "%{agentName} signed out" "SIGN_OUT": "{agentName} signed out"
}, },
"TEAM": { "TEAM": {
"ADD": "%{agentName} created a new team (#%{id})", "ADD": "{agentName} created a new team (#{id})",
"EDIT": "%{agentName} updated a team (#%{id})", "EDIT": "{agentName} updated a team (#{id})",
"DELETE": "%{agentName} deleted a team (#%{id})" "DELETE": "{agentName} deleted a team (#{id})"
}, },
"MACRO": { "MACRO": {
"ADD": "%{agentName} created a new macro (#%{id})", "ADD": "{agentName} created a new macro (#{id})",
"EDIT": "%{agentName} updated a macro (#%{id})", "EDIT": "{agentName} updated a macro (#{id})",
"DELETE": "%{agentName} deleted a macro (#%{id})" "DELETE": "{agentName} deleted a macro (#{id})"
}, },
"INBOX_MEMBER": { "INBOX_MEMBER": {
"ADD": "%{agentName} added %{user} to the inbox(#%{inbox_id})", "ADD": "{agentName} added {user} to the inbox(#{inbox_id})",
"REMOVE": "%{agentName} removed %{user} from the inbox(#%{inbox_id})" "REMOVE": "{agentName} removed {user} from the inbox(#{inbox_id})"
}, },
"TEAM_MEMBER": { "TEAM_MEMBER": {
"ADD": "%{agentName} added %{user} to the team(#%{team_id})", "ADD": "{agentName} added {user} to the team(#{team_id})",
"REMOVE": "%{agentName} removed %{user} from the team(#%{team_id})" "REMOVE": "{agentName} removed {user} from the team(#{team_id})"
}, },
"ACCOUNT": { "ACCOUNT": {
"EDIT": "%{agentName} updated the account configuration (#%{id})" "EDIT": "{agentName} updated the account configuration (#{id})"
} }
} }
} }

View File

@@ -1,9 +1,9 @@
{ {
"BULK_ACTION": { "BULK_ACTION": {
"CONVERSATIONS_SELECTED": "%{conversationCount} Konversationen ausgewählt", "CONVERSATIONS_SELECTED": "{conversationCount} Konversationen ausgewählt",
"AGENT_SELECT_LABEL": "Agent auswählen", "AGENT_SELECT_LABEL": "Agent auswählen",
"ASSIGN_CONFIRMATION_LABEL": "Sind Sie sicher, %{conversationCount} %{conversationLabel} zuzuweisen", "ASSIGN_CONFIRMATION_LABEL": "Sind Sie sicher, {conversationCount} {conversationLabel} zuzuweisen",
"UNASSIGN_CONFIRMATION_LABEL": "Möchten Sie die Zuweisung von %{conversationCount} %{conversationLabel} wirklich aufheben?", "UNASSIGN_CONFIRMATION_LABEL": "Möchten Sie die Zuweisung von {conversationCount} {conversationLabel} wirklich aufheben?",
"GO_BACK_LABEL": "Zurück", "GO_BACK_LABEL": "Zurück",
"ASSIGN_LABEL": "Zuordnen", "ASSIGN_LABEL": "Zuordnen",
"YES": "Ja", "YES": "Ja",

View File

@@ -367,8 +367,8 @@
}, },
"SUMMARY": { "SUMMARY": {
"TITLE": "Zusammenfassung", "TITLE": "Zusammenfassung",
"DELETE_WARNING": "Der Kontakt von <strong>%{primaryContactName}</strong> wird gelöscht.", "DELETE_WARNING": "Der Kontakt von <strong>{primaryContactName}</strong> wird gelöscht.",
"ATTRIBUTE_WARNING": "Details von Kontakt <strong>%{primaryContactName}</strong> wird zu <strong>%{parentContactName}</strong> kopiert." "ATTRIBUTE_WARNING": "Details von Kontakt <strong>{primaryContactName}</strong> wird zu <strong>{parentContactName}</strong> kopiert."
}, },
"SEARCH": { "SEARCH": {
"ERROR": "ERROR_MESSAGE" "ERROR": "ERROR_MESSAGE"

View File

@@ -101,7 +101,7 @@
"SELECT_PLACEHOLDER": "Keine", "SELECT_PLACEHOLDER": "Keine",
"INPUT_PLACEHOLDER": "Priorität auswählen", "INPUT_PLACEHOLDER": "Priorität auswählen",
"NO_RESULTS": "Keine Ergebnisse gefunden", "NO_RESULTS": "Keine Ergebnisse gefunden",
"SUCCESSFUL": "Priorität der Konversations-ID %{conversationId} zu %{priority} geändert", "SUCCESSFUL": "Priorität der Konversations-ID {conversationId} zu {priority} geändert",
"FAILED": "Priorität konnte nicht geändert werden. Bitte versuchen Sie es erneut." "FAILED": "Priorität konnte nicht geändert werden. Bitte versuchen Sie es erneut."
} }
}, },
@@ -122,15 +122,15 @@
"ASSIGN_TEAM": "Team zuweisen", "ASSIGN_TEAM": "Team zuweisen",
"API": { "API": {
"AGENT_ASSIGNMENT": { "AGENT_ASSIGNMENT": {
"SUCCESFUL": "Konversations-ID %{conversationId} zugewiesen zu \"%{agentName}\"", "SUCCESFUL": "Konversations-ID {conversationId} zugewiesen zu \"{agentName}\"",
"FAILED": "Agent konnte nicht zugewiesen werden. Bitte versuche es erneut." "FAILED": "Agent konnte nicht zugewiesen werden. Bitte versuche es erneut."
}, },
"LABEL_ASSIGNMENT": { "LABEL_ASSIGNMENT": {
"SUCCESFUL": "Das Label #%{labelName} wurde der Konversations-ID %{conversationId} zugewiesen", "SUCCESFUL": "Das Label #{labelName} wurde der Konversations-ID {conversationId} zugewiesen",
"FAILED": "Label konnte nicht zugewiesen werden. Bitte versuche es erneut." "FAILED": "Label konnte nicht zugewiesen werden. Bitte versuche es erneut."
}, },
"TEAM_ASSIGNMENT": { "TEAM_ASSIGNMENT": {
"SUCCESFUL": "Das Team\"%{team}\" wurde der Konversations-ID %{conversationId} zugewiesen", "SUCCESFUL": "Das Team\"{team}\" wurde der Konversations-ID {conversationId} zugewiesen",
"FAILED": "Team konnte nicht zugewiesen werden. Bitte versuche es erneut." "FAILED": "Team konnte nicht zugewiesen werden. Bitte versuche es erneut."
} }
} }
@@ -239,11 +239,11 @@
} }
}, },
"ONBOARDING": { "ONBOARDING": {
"TITLE": "Hallo 👋, Willkommen bei %{installationName}!", "TITLE": "Hallo 👋, Willkommen bei {installationName}!",
"DESCRIPTION": "Danke für's Registrieren. Wir möchten, dass Sie %{installationName} optimal nutzen. Hier sind ein paar Dinge, die Sie in %{installationName} tun können, um das Erlebnis angenehm zu gestalten.", "DESCRIPTION": "Danke für's Registrieren. Wir möchten, dass Sie {installationName} optimal nutzen. Hier sind ein paar Dinge, die Sie in {installationName} tun können, um das Erlebnis angenehm zu gestalten.",
"GREETING_MORNING": "👋 Guten Morgen, %{name}. Willkommen bei %{installationName}.", "GREETING_MORNING": "👋 Guten Morgen, {name}. Willkommen bei {installationName}.",
"GREETING_AFTERNOON": "👋 Guten Nachmittag, %{name}. Willkommen bei %{installationName}.", "GREETING_AFTERNOON": "👋 Guten Nachmittag, {name}. Willkommen bei {installationName}.",
"GREETING_EVENING": "👋 Guten Abend, %{name}. Willkommen bei %{installationName}.", "GREETING_EVENING": "👋 Guten Abend, {name}. Willkommen bei {installationName}.",
"READ_LATEST_UPDATES": "Lesen Sie unsere neuesten Updates", "READ_LATEST_UPDATES": "Lesen Sie unsere neuesten Updates",
"ALL_CONVERSATION": { "ALL_CONVERSATION": {
"TITLE": "All Ihre Konversationen an einem Ort", "TITLE": "All Ihre Konversationen an einem Ort",
@@ -317,10 +317,10 @@
"SIDEBAR_TITLE": "Konversationsteilnehmer", "SIDEBAR_TITLE": "Konversationsteilnehmer",
"NO_RECORDS_FOUND": "Keine Ergebnisse gefunden", "NO_RECORDS_FOUND": "Keine Ergebnisse gefunden",
"ADD_PARTICIPANTS": "Teilnehmer wählen", "ADD_PARTICIPANTS": "Teilnehmer wählen",
"REMANING_PARTICIPANTS_TEXT": "+%{count} andere", "REMANING_PARTICIPANTS_TEXT": "+{count} andere",
"REMANING_PARTICIPANT_TEXT": "+%{count} andere", "REMANING_PARTICIPANT_TEXT": "+{count} andere",
"TOTAL_PARTICIPANTS_TEXT": "%{count} Personen nehmen teil.", "TOTAL_PARTICIPANTS_TEXT": "{count} Personen nehmen teil.",
"TOTAL_PARTICIPANT_TEXT": "%{count} Person nimmt teil.", "TOTAL_PARTICIPANT_TEXT": "{count} Person nimmt teil.",
"NO_PARTICIPANTS_TEXT": "Niemand nimmt teil!.", "NO_PARTICIPANTS_TEXT": "Niemand nimmt teil!.",
"WATCH_CONVERSATION": "Konversation beitreten", "WATCH_CONVERSATION": "Konversation beitreten",
"YOU_ARE_WATCHING": "Sie nehmen teil", "YOU_ARE_WATCHING": "Sie nehmen teil",

View File

@@ -48,7 +48,7 @@
"CUSTOM_EMAIL_DOMAIN_ENABLED": "Sie können jetzt E-Mails in Ihrer benutzerdefinierten Domäne empfangen." "CUSTOM_EMAIL_DOMAIN_ENABLED": "Sie können jetzt E-Mails in Ihrer benutzerdefinierten Domäne empfangen."
} }
}, },
"UPDATE_CHATWOOT": "Ein Update %{latestChatwootVersion} für Chatwoot ist verfügbar. Bitte aktualisieren Sie Ihre Instanz.", "UPDATE_CHATWOOT": "Ein Update {latestChatwootVersion} für Chatwoot ist verfügbar. Bitte aktualisieren Sie Ihre Instanz.",
"LEARN_MORE": "Mehr erfahren", "LEARN_MORE": "Mehr erfahren",
"PAYMENT_PENDING": "Ihre Zahlung steht noch aus. Um Chatwoot weiter zu verwenden, aktualisieren Sie Bitte Ihre Zahlungsinformationen", "PAYMENT_PENDING": "Ihre Zahlung steht noch aus. Um Chatwoot weiter zu verwenden, aktualisieren Sie Bitte Ihre Zahlungsinformationen",
"LIMITS_UPGRADE": "Ihr Konto hat die Nutzungsbeschränkungen überschritten. Um Chatwoot weiter nutzen zu können aktualisieren Sie bitte Ihren Tarif", "LIMITS_UPGRADE": "Ihr Konto hat die Nutzungsbeschränkungen überschritten. Um Chatwoot weiter nutzen zu können aktualisieren Sie bitte Ihren Tarif",

View File

@@ -84,7 +84,7 @@
}, },
"ARTICLE_SEARCH_RESULT": { "ARTICLE_SEARCH_RESULT": {
"UNCATEGORIZED": "Nicht kategorisiert", "UNCATEGORIZED": "Nicht kategorisiert",
"SEARCH_RESULTS": "Suchergebnisse für %{query}", "SEARCH_RESULTS": "Suchergebnisse für {query}",
"EMPTY_TEXT": "Suche nach Artikeln, um sie in Antworten einzufügen.", "EMPTY_TEXT": "Suche nach Artikeln, um sie in Antworten einzufügen.",
"SEARCH_LOADER": "Suchen...", "SEARCH_LOADER": "Suchen...",
"INSERT_ARTICLE": "Einfügen", "INSERT_ARTICLE": "Einfügen",

View File

@@ -1,7 +1,7 @@
{ {
"INTEGRATION_APPS": { "INTEGRATION_APPS": {
"FETCHING": "Integrationen werden abgerufen", "FETCHING": "Integrationen werden abgerufen",
"NO_HOOK_CONFIGURED": "Es wurden keine %{integrationId} Integrationen in diesem Konto konfiguriert.", "NO_HOOK_CONFIGURED": "Es wurden keine {integrationId} Integrationen in diesem Konto konfiguriert.",
"HEADER": "Anwendungen", "HEADER": "Anwendungen",
"STATUS": { "STATUS": {
"ENABLED": "Aktiviert", "ENABLED": "Aktiviert",
@@ -56,7 +56,7 @@
"BUTTON_TEXT": "Verbindung trennen" "BUTTON_TEXT": "Verbindung trennen"
}, },
"SIDEBAR_DESCRIPTION": { "SIDEBAR_DESCRIPTION": {
"DIALOGFLOW": "Dialogflow ist eine Sprachverständnis-Plattform, die es einfach macht, eine interaktive Benutzeroberfläche in Ihre mobile App, Web-Anwendung, Gerät, Bot, interaktives Voice-Antwort-System etc. zu integrieren. <br /> <br /> Die Dialogflow-Integration mit %{installationName} ermöglicht es Ihnen, einen Dialogfluss-Bot mit Ihren Posteingängen zu verknüpfen. Dieser Bot erlaubt es Ihnen, eingehende Anfragen zunächst zu bearbeiten und diese bei Bedarf an einen Agenten zu übergeben. Dialogflow kann zur Qualifizierung der Leads, zur Reduzierung der Arbeitsbelastung von Agenten durch häufig gestellte Fragen usw. genutzt werden. <br /> <br /> Um Dialogflow hinzuzufügen, müssen Sie ein Service-Konto in Ihrer Google-Projekt-Konsole erstellen und die Zugangsdaten freigeben. Weitere Informationen finden Sie in der Dialogflow-Dokumentation." "DIALOGFLOW": "Dialogflow ist eine Sprachverständnis-Plattform, die es einfach macht, eine interaktive Benutzeroberfläche in Ihre mobile App, Web-Anwendung, Gerät, Bot, interaktives Voice-Antwort-System etc. zu integrieren. <br /> <br /> Die Dialogflow-Integration mit {installationName} ermöglicht es Ihnen, einen Dialogfluss-Bot mit Ihren Posteingängen zu verknüpfen. Dieser Bot erlaubt es Ihnen, eingehende Anfragen zunächst zu bearbeiten und diese bei Bedarf an einen Agenten zu übergeben. Dialogflow kann zur Qualifizierung der Leads, zur Reduzierung der Arbeitsbelastung von Agenten durch häufig gestellte Fragen usw. genutzt werden. <br /> <br /> Um Dialogflow hinzuzufügen, müssen Sie ein Service-Konto in Ihrer Google-Projekt-Konsole erstellen und die Zugangsdaten freigeben. Weitere Informationen finden Sie in der Dialogflow-Dokumentation."
} }
} }
} }

View File

@@ -76,7 +76,7 @@
}, },
"CONFIRM": { "CONFIRM": {
"TITLE": "Löschung bestätigen", "TITLE": "Löschung bestätigen",
"MESSAGE": "Möchten Sie den Webhook wirklich löschen? (%{webhookURL})", "MESSAGE": "Möchten Sie den Webhook wirklich löschen? ({webhookURL})",
"YES": "Ja, löschen ", "YES": "Ja, löschen ",
"NO": "Nein, behalte es" "NO": "Nein, behalte es"
} }
@@ -114,7 +114,7 @@
}, },
"OPEN_AI": { "OPEN_AI": {
"AI_ASSIST": "AI-Assistent", "AI_ASSIST": "AI-Assistent",
"WITH_AI": " %{option} mit KI ", "WITH_AI": " {option} mit KI ",
"OPTIONS": { "OPTIONS": {
"REPLY_SUGGESTION": "Antwortvorschlag", "REPLY_SUGGESTION": "Antwortvorschlag",
"SUMMARIZE": "Zusammenfassen", "SUMMARIZE": "Zusammenfassen",
@@ -216,7 +216,7 @@
"CONFIRM_YES": "Ja, löschen", "CONFIRM_YES": "Ja, löschen",
"CONFIRM_NO": "Nein, behalte es", "CONFIRM_NO": "Nein, behalte es",
"TITLE": "Löschen bestätigen", "TITLE": "Löschen bestätigen",
"MESSAGE": "Möchten Sie die App %{appName} wirklich löschen?", "MESSAGE": "Möchten Sie die App {appName} wirklich löschen?",
"API_SUCCESS": "Dashboard-App erfolgreich gelöscht", "API_SUCCESS": "Dashboard-App erfolgreich gelöscht",
"API_ERROR": "Wir konnten die App nicht löschen. Bitte versuchen Sie es später erneut" "API_ERROR": "Wir konnten die App nicht löschen. Bitte versuchen Sie es später erneut"
} }
@@ -235,7 +235,7 @@
"ERROR": "Beim Abrufen der linearen Probleme ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut", "ERROR": "Beim Abrufen der linearen Probleme ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut",
"LINK_SUCCESS": "Problem erfolgreich verknüpft", "LINK_SUCCESS": "Problem erfolgreich verknüpft",
"LINK_ERROR": "Beim Verknüpfen des Problems ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut", "LINK_ERROR": "Beim Verknüpfen des Problems ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut",
"LINK_TITLE": "Unterhaltung (#%{conversationId}) mit %{name}" "LINK_TITLE": "Unterhaltung (#{conversationId}) mit {name}"
}, },
"ADD_OR_LINK": { "ADD_OR_LINK": {
"TITLE": "Lineares Problem erstellen/verknüpfen", "TITLE": "Lineares Problem erstellen/verknüpfen",
@@ -294,7 +294,7 @@
"PRIORITY": "Priorität", "PRIORITY": "Priorität",
"ASSIGNEE": "Zugewiesener", "ASSIGNEE": "Zugewiesener",
"LABELS": "Labels", "LABELS": "Labels",
"CREATED_AT": "Erstellt am %{createdAt}" "CREATED_AT": "Erstellt am {createdAt}"
}, },
"UNLINK": { "UNLINK": {
"TITLE": "Verknüpfung aufheben", "TITLE": "Verknüpfung aufheben",

View File

@@ -23,13 +23,13 @@
"NAME": "Erste Antwortzeit", "NAME": "Erste Antwortzeit",
"DESC": "( Durchschnitt )", "DESC": "( Durchschnitt )",
"INFO_TEXT": "Gesamtzahl der Konversationen, die für die Berechnung verwendet wurden:", "INFO_TEXT": "Gesamtzahl der Konversationen, die für die Berechnung verwendet wurden:",
"TOOLTIP_TEXT": "Die Zeit bis zur ersten Reaktion beträgt %{metricValue} (basierend auf %{conversationCount} Konversationen)" "TOOLTIP_TEXT": "Die Zeit bis zur ersten Reaktion beträgt {metricValue} (basierend auf {conversationCount} Konversationen)"
}, },
"RESOLUTION_TIME": { "RESOLUTION_TIME": {
"NAME": "Lösungszeit", "NAME": "Lösungszeit",
"DESC": "( Durchschnitt )", "DESC": "( Durchschnitt )",
"INFO_TEXT": "Gesamtzahl der Konversationen, die für die Berechnung verwendet wurden:", "INFO_TEXT": "Gesamtzahl der Konversationen, die für die Berechnung verwendet wurden:",
"TOOLTIP_TEXT": "Die Lösungszeit beträgt %{metricValue} (basierend auf %{conversationCount} Konversationen)" "TOOLTIP_TEXT": "Die Lösungszeit beträgt {metricValue} (basierend auf {conversationCount} Konversationen)"
}, },
"RESOLUTION_COUNT": { "RESOLUTION_COUNT": {
"NAME": "Auflösungsanzahl", "NAME": "Auflösungsanzahl",
@@ -45,7 +45,7 @@
}, },
"REPLY_TIME": { "REPLY_TIME": {
"NAME": "Wartezeit des Kunden", "NAME": "Wartezeit des Kunden",
"TOOLTIP_TEXT": "Die Wartezeit beträgt %{metricValue} (basierend auf %{conversationCount} Antworten)" "TOOLTIP_TEXT": "Die Wartezeit beträgt {metricValue} (basierend auf {conversationCount} Antworten)"
} }
}, },
"DATE_RANGE_OPTIONS": { "DATE_RANGE_OPTIONS": {
@@ -167,13 +167,13 @@
"NAME": "Erste Antwortzeit", "NAME": "Erste Antwortzeit",
"DESC": "( Durchschnitt )", "DESC": "( Durchschnitt )",
"INFO_TEXT": "Gesamtzahl der Konversationen, die für die Berechnung verwendet wurden:", "INFO_TEXT": "Gesamtzahl der Konversationen, die für die Berechnung verwendet wurden:",
"TOOLTIP_TEXT": "Die Zeit bis zur ersten Reaktion beträgt %{metricValue} (basierend auf %{conversationCount} Konversationen)" "TOOLTIP_TEXT": "Die Zeit bis zur ersten Reaktion beträgt {metricValue} (basierend auf {conversationCount} Konversationen)"
}, },
"RESOLUTION_TIME": { "RESOLUTION_TIME": {
"NAME": "Lösungszeit", "NAME": "Lösungszeit",
"DESC": "( Durchschnitt )", "DESC": "( Durchschnitt )",
"INFO_TEXT": "Gesamtzahl der Konversationen, die für die Berechnung verwendet wurden:", "INFO_TEXT": "Gesamtzahl der Konversationen, die für die Berechnung verwendet wurden:",
"TOOLTIP_TEXT": "Die Lösungszeit beträgt %{metricValue} (basierend auf %{conversationCount} Konversationen)" "TOOLTIP_TEXT": "Die Lösungszeit beträgt {metricValue} (basierend auf {conversationCount} Konversationen)"
}, },
"RESOLUTION_COUNT": { "RESOLUTION_COUNT": {
"NAME": "Lösungsanzahl", "NAME": "Lösungsanzahl",
@@ -234,13 +234,13 @@
"NAME": "Erste Antwortzeit", "NAME": "Erste Antwortzeit",
"DESC": "( Durchschnitt )", "DESC": "( Durchschnitt )",
"INFO_TEXT": "Gesamtzahl der Konversationen, die für die Berechnung verwendet wurden:", "INFO_TEXT": "Gesamtzahl der Konversationen, die für die Berechnung verwendet wurden:",
"TOOLTIP_TEXT": "Die Zeit bis zur ersten Reaktion beträgt %{metricValue} (basierend auf %{conversationCount} Konversationen)" "TOOLTIP_TEXT": "Die Zeit bis zur ersten Reaktion beträgt {metricValue} (basierend auf {conversationCount} Konversationen)"
}, },
"RESOLUTION_TIME": { "RESOLUTION_TIME": {
"NAME": "Lösungszeit", "NAME": "Lösungszeit",
"DESC": "( Durchschnitt )", "DESC": "( Durchschnitt )",
"INFO_TEXT": "Gesamtzahl der Konversationen, die für die Berechnung verwendet wurden:", "INFO_TEXT": "Gesamtzahl der Konversationen, die für die Berechnung verwendet wurden:",
"TOOLTIP_TEXT": "Die Lösungszeit beträgt %{metricValue} (basierend auf %{conversationCount} Konversationen)" "TOOLTIP_TEXT": "Die Lösungszeit beträgt {metricValue} (basierend auf {conversationCount} Konversationen)"
}, },
"RESOLUTION_COUNT": { "RESOLUTION_COUNT": {
"NAME": "Lösungsanzahl", "NAME": "Lösungsanzahl",
@@ -301,13 +301,13 @@
"NAME": "Erste Antwortzeit", "NAME": "Erste Antwortzeit",
"DESC": "( Durchschnitt )", "DESC": "( Durchschnitt )",
"INFO_TEXT": "Gesamtzahl der Konversationen, die für die Berechnung verwendet wurden:", "INFO_TEXT": "Gesamtzahl der Konversationen, die für die Berechnung verwendet wurden:",
"TOOLTIP_TEXT": "Die Zeit bis zur ersten Reaktion beträgt %{metricValue} (basierend auf %{conversationCount} Konversationen)" "TOOLTIP_TEXT": "Die Zeit bis zur ersten Reaktion beträgt {metricValue} (basierend auf {conversationCount} Konversationen)"
}, },
"RESOLUTION_TIME": { "RESOLUTION_TIME": {
"NAME": "Lösungszeit", "NAME": "Lösungszeit",
"DESC": "( Durchschnitt )", "DESC": "( Durchschnitt )",
"INFO_TEXT": "Gesamtzahl der Konversationen, die für die Berechnung verwendet wurden:", "INFO_TEXT": "Gesamtzahl der Konversationen, die für die Berechnung verwendet wurden:",
"TOOLTIP_TEXT": "Die Lösungszeit beträgt %{metricValue} (basierend auf %{conversationCount} Konversationen)" "TOOLTIP_TEXT": "Die Lösungszeit beträgt {metricValue} (basierend auf {conversationCount} Konversationen)"
}, },
"RESOLUTION_COUNT": { "RESOLUTION_COUNT": {
"NAME": "Lösungsanzahl", "NAME": "Lösungsanzahl",
@@ -368,13 +368,13 @@
"NAME": "Erste Antwortzeit", "NAME": "Erste Antwortzeit",
"DESC": "( Durchschnitt )", "DESC": "( Durchschnitt )",
"INFO_TEXT": "Gesamtzahl der Konversationen, die für die Berechnung verwendet wurden:", "INFO_TEXT": "Gesamtzahl der Konversationen, die für die Berechnung verwendet wurden:",
"TOOLTIP_TEXT": "Die Zeit bis zur ersten Reaktion beträgt %{metricValue} (basierend auf %{conversationCount} Konversationen)" "TOOLTIP_TEXT": "Die Zeit bis zur ersten Reaktion beträgt {metricValue} (basierend auf {conversationCount} Konversationen)"
}, },
"RESOLUTION_TIME": { "RESOLUTION_TIME": {
"NAME": "Lösungszeit", "NAME": "Lösungszeit",
"DESC": "( Durchschnitt )", "DESC": "( Durchschnitt )",
"INFO_TEXT": "Gesamtzahl der Konversationen, die für die Berechnung verwendet wurden:", "INFO_TEXT": "Gesamtzahl der Konversationen, die für die Berechnung verwendet wurden:",
"TOOLTIP_TEXT": "Die Lösungszeit beträgt %{metricValue} (basierend auf %{conversationCount} Konversationen)" "TOOLTIP_TEXT": "Die Lösungszeit beträgt {metricValue} (basierend auf {conversationCount} Konversationen)"
}, },
"RESOLUTION_COUNT": { "RESOLUTION_COUNT": {
"NAME": "Lösungsanzahl", "NAME": "Lösungsanzahl",
@@ -480,8 +480,8 @@
"CONVERSATION_HEATMAP": { "CONVERSATION_HEATMAP": {
"HEADER": "Gesprächsprotokoll", "HEADER": "Gesprächsprotokoll",
"NO_CONVERSATIONS": "Keine Konversation", "NO_CONVERSATIONS": "Keine Konversation",
"CONVERSATION": "%{count} Konversation", "CONVERSATION": "{count} Konversation",
"CONVERSATIONS": "%{count} Konversationen", "CONVERSATIONS": "{count} Konversationen",
"DOWNLOAD_REPORT": "Bericht herunterladen" "DOWNLOAD_REPORT": "Bericht herunterladen"
}, },
"AGENT_CONVERSATIONS": { "AGENT_CONVERSATIONS": {

View File

@@ -12,8 +12,8 @@
"MESSAGES": "Nachrichten" "MESSAGES": "Nachrichten"
}, },
"SEARCHING_DATA": "Suchen", "SEARCHING_DATA": "Suchen",
"EMPTY_STATE": "Keine %{item} für Abfrage '%{query} ' gefunden", "EMPTY_STATE": "Keine {item} für Abfrage '{query} ' gefunden",
"EMPTY_STATE_FULL": "Kein Ergebnis für Abfrage '%{query} ' gefunden", "EMPTY_STATE_FULL": "Kein Ergebnis für Abfrage '{query} ' gefunden",
"PLACEHOLDER_KEYBINDING": "/ fokussieren", "PLACEHOLDER_KEYBINDING": "/ fokussieren",
"INPUT_PLACEHOLDER": "Search messages, contacts or conversations", "INPUT_PLACEHOLDER": "Search messages, contacts or conversations",
"EMPTY_STATE_DEFAULT": "Search by conversation id, email, phone number, messages for better search results.", "EMPTY_STATE_DEFAULT": "Search by conversation id, email, phone number, messages for better search results.",

View File

@@ -301,7 +301,7 @@
"TITLE": "Rechnungen", "TITLE": "Rechnungen",
"CURRENT_PLAN": { "CURRENT_PLAN": {
"TITLE": "Derzeitiger Plan", "TITLE": "Derzeitiger Plan",
"PLAN_NOTE": "Sie haben derzeit den Tarif **%{plan}** mit **%{quantity}** Lizenzen abonniert" "PLAN_NOTE": "Sie haben derzeit den Tarif **{plan}** mit **{quantity}** Lizenzen abonniert"
}, },
"MANAGE_SUBSCRIPTION": { "MANAGE_SUBSCRIPTION": {
"TITLE": "Abonnement verwalten", "TITLE": "Abonnement verwalten",

View File

@@ -17,7 +17,7 @@
}, },
"AGENTS": { "AGENTS": {
"BUTTON_TEXT": "Agenten zum Team hinzufügen", "BUTTON_TEXT": "Agenten zum Team hinzufügen",
"TITLE": "Agenten zum Team hinzufügen - %{teamName}", "TITLE": "Agenten zum Team hinzufügen - {teamName}",
"DESC": "Fügen Sie Agenten zu Ihrem neu erstellten Team hinzu. So können Sie bei Konversationen als Team zusammenarbeiten, erhalten Sie Benachrichtigungen über neue Ereignisse in der gleichen Konversation." "DESC": "Fügen Sie Agenten zu Ihrem neu erstellten Team hinzu. So können Sie bei Konversationen als Team zusammenarbeiten, erhalten Sie Benachrichtigungen über neue Ereignisse in der gleichen Konversation."
}, },
"WIZARD": [ "WIZARD": [
@@ -46,7 +46,7 @@
}, },
"AGENTS": { "AGENTS": {
"BUTTON_TEXT": "Agenten im Team aktualisieren", "BUTTON_TEXT": "Agenten im Team aktualisieren",
"TITLE": "Agenten zum Team %{teamName} hinzufügen", "TITLE": "Agenten zum Team {teamName} hinzufügen",
"DESC": "Fügen Sie Agenten zu Ihrem neu erstellten Team hinzu. Alle hinzugefügten Agenten werden benachrichtigt, wenn diesem Team eine Unterhaltung zugewiesen wird." "DESC": "Fügen Sie Agenten zu Ihrem neu erstellten Team hinzu. Alle hinzugefügten Agenten werden benachrichtigt, wenn diesem Team eine Unterhaltung zugewiesen wird."
}, },
"WIZARD": [ "WIZARD": [
@@ -77,14 +77,14 @@
"ADD_AGENTS": "Agenten zu Ihrem Team hinzufügen...", "ADD_AGENTS": "Agenten zu Ihrem Team hinzufügen...",
"SELECT": "Auswählen", "SELECT": "Auswählen",
"SELECT_ALL": "Alle Agenten auswählen", "SELECT_ALL": "Alle Agenten auswählen",
"SELECTED_COUNT": "%{selected} von %{total} Agenten ausgewählt." "SELECTED_COUNT": "{selected} von {total} Agenten ausgewählt."
}, },
"ADD": { "ADD": {
"TITLE": "Agenten zum Team %{teamName} hinzufügen", "TITLE": "Agenten zum Team {teamName} hinzufügen",
"DESC": "Fügen Sie Agenten zu Ihrem neu erstellten Team hinzu. So können Sie bei Konversationen als Team zusammenarbeiten und erhalten Benachrichtigungen über neue Ereignisse in der gleichen Konversation.", "DESC": "Fügen Sie Agenten zu Ihrem neu erstellten Team hinzu. So können Sie bei Konversationen als Team zusammenarbeiten und erhalten Benachrichtigungen über neue Ereignisse in der gleichen Konversation.",
"SELECT": "Auswählen", "SELECT": "Auswählen",
"SELECT_ALL": "Alle Agenten auswählen", "SELECT_ALL": "Alle Agenten auswählen",
"SELECTED_COUNT": "%{selected} von %{total} Agenten ausgewählt.", "SELECTED_COUNT": "{selected} von {total} Agenten ausgewählt.",
"BUTTON_TEXT": "Agenten hinzufügen", "BUTTON_TEXT": "Agenten hinzufügen",
"AGENT_VALIDATION_ERROR": "Wählen Sie mindestens einen Agenten aus." "AGENT_VALIDATION_ERROR": "Wählen Sie mindestens einen Agenten aus."
}, },

View File

@@ -3,7 +3,7 @@
"MODAL": { "MODAL": {
"TITLE": "WhatsApp-Vorlagen", "TITLE": "WhatsApp-Vorlagen",
"SUBTITLE": "Wählen Sie die WhatsApp-Vorlage aus, die Sie senden möchten", "SUBTITLE": "Wählen Sie die WhatsApp-Vorlage aus, die Sie senden möchten",
"TEMPLATE_SELECTED_SUBTITLE": "Verarbeite %{templateName}" "TEMPLATE_SELECTED_SUBTITLE": "Verarbeite {templateName}"
}, },
"PICKER": { "PICKER": {
"SEARCH_PLACEHOLDER": "Vorlagen suchen", "SEARCH_PLACEHOLDER": "Vorlagen suchen",
@@ -16,7 +16,7 @@
}, },
"PARSER": { "PARSER": {
"VARIABLES_LABEL": "Variablen", "VARIABLES_LABEL": "Variablen",
"VARIABLE_PLACEHOLDER": "Geben Sie den Wert %{variable} ein", "VARIABLE_PLACEHOLDER": "Geben Sie den Wert {variable} ein",
"GO_BACK_LABEL": "Zurück", "GO_BACK_LABEL": "Zurück",
"SEND_MESSAGE_LABEL": "Nachricht senden", "SEND_MESSAGE_LABEL": "Nachricht senden",
"FORM_ERROR_MESSAGE": "Bitte füllen Sie vor dem Absenden alle Variablen aus" "FORM_ERROR_MESSAGE": "Bitte füllen Sie vor dem Absenden alle Variablen aus"

View File

@@ -65,7 +65,7 @@
"ERROR_MESSAGE": "Δεν ήταν δυνατή η διαγραφή της ιδιότητας. Δοκιμάστε ξανά." "ERROR_MESSAGE": "Δεν ήταν δυνατή η διαγραφή της ιδιότητας. Δοκιμάστε ξανά."
}, },
"CONFIRM": { "CONFIRM": {
"TITLE": "Είστε σίγουροι ότι θέλετε να διαγράψετε την ομάδα %{attributeName}", "TITLE": "Είστε σίγουροι ότι θέλετε να διαγράψετε την ομάδα {attributeName}",
"PLACE_HOLDER": "Παρακαλώ πληκτρολογήστε {attributeName} για επιβεβαίωση", "PLACE_HOLDER": "Παρακαλώ πληκτρολογήστε {attributeName} για επιβεβαίωση",
"MESSAGE": "Η Διαγραφή θα καταργήσει την ιδιότητα", "MESSAGE": "Η Διαγραφή θα καταργήσει την ιδιότητα",
"YES": "Διαγραφή ", "YES": "Διαγραφή ",

View File

@@ -23,52 +23,52 @@
}, },
"DEFAULT_USER": "System", "DEFAULT_USER": "System",
"AUTOMATION_RULE": { "AUTOMATION_RULE": {
"ADD": "%{agentName} created a new automation rule (#%{id})", "ADD": "{agentName} created a new automation rule (#{id})",
"EDIT": "%{agentName} updated an automation rule (#%{id})", "EDIT": "{agentName} updated an automation rule (#{id})",
"DELETE": "%{agentName} deleted an automation rule (#%{id})" "DELETE": "{agentName} deleted an automation rule (#{id})"
}, },
"ACCOUNT_USER": { "ACCOUNT_USER": {
"ADD": "%{agentName} invited %{invitee} to the account as an %{role}", "ADD": "{agentName} invited {invitee} to the account as an {role}",
"EDIT": { "EDIT": {
"SELF": "%{agentName} changed their %{attributes} to %{values}", "SELF": "{agentName} changed their {attributes} to {values}",
"OTHER": "%{agentName} changed %{attributes} of %{user} to %{values}", "OTHER": "{agentName} changed {attributes} of {user} to {values}",
"DELETED": "%{agentName} changed %{attributes} of a deleted user to %{values}" "DELETED": "{agentName} changed {attributes} of a deleted user to {values}"
} }
}, },
"INBOX": { "INBOX": {
"ADD": "%{agentName} created a new inbox (#%{id})", "ADD": "{agentName} created a new inbox (#{id})",
"EDIT": "%{agentName} updated an inbox (#%{id})", "EDIT": "{agentName} updated an inbox (#{id})",
"DELETE": "%{agentName} deleted an inbox (#%{id})" "DELETE": "{agentName} deleted an inbox (#{id})"
}, },
"WEBHOOK": { "WEBHOOK": {
"ADD": "%{agentName} created a new webhook (#%{id})", "ADD": "{agentName} created a new webhook (#{id})",
"EDIT": "%{agentName} updated a webhook (#%{id})", "EDIT": "{agentName} updated a webhook (#{id})",
"DELETE": "%{agentName} deleted a webhook (#%{id})" "DELETE": "{agentName} deleted a webhook (#{id})"
}, },
"USER_ACTION": { "USER_ACTION": {
"SIGN_IN": "%{agentName} signed in", "SIGN_IN": "{agentName} signed in",
"SIGN_OUT": "%{agentName} signed out" "SIGN_OUT": "{agentName} signed out"
}, },
"TEAM": { "TEAM": {
"ADD": "%{agentName} created a new team (#%{id})", "ADD": "{agentName} created a new team (#{id})",
"EDIT": "%{agentName} updated a team (#%{id})", "EDIT": "{agentName} updated a team (#{id})",
"DELETE": "%{agentName} deleted a team (#%{id})" "DELETE": "{agentName} deleted a team (#{id})"
}, },
"MACRO": { "MACRO": {
"ADD": "%{agentName} created a new macro (#%{id})", "ADD": "{agentName} created a new macro (#{id})",
"EDIT": "%{agentName} updated a macro (#%{id})", "EDIT": "{agentName} updated a macro (#{id})",
"DELETE": "%{agentName} deleted a macro (#%{id})" "DELETE": "{agentName} deleted a macro (#{id})"
}, },
"INBOX_MEMBER": { "INBOX_MEMBER": {
"ADD": "%{agentName} added %{user} to the inbox(#%{inbox_id})", "ADD": "{agentName} added {user} to the inbox(#{inbox_id})",
"REMOVE": "%{agentName} removed %{user} from the inbox(#%{inbox_id})" "REMOVE": "{agentName} removed {user} from the inbox(#{inbox_id})"
}, },
"TEAM_MEMBER": { "TEAM_MEMBER": {
"ADD": "%{agentName} added %{user} to the team(#%{team_id})", "ADD": "{agentName} added {user} to the team(#{team_id})",
"REMOVE": "%{agentName} removed %{user} from the team(#%{team_id})" "REMOVE": "{agentName} removed {user} from the team(#{team_id})"
}, },
"ACCOUNT": { "ACCOUNT": {
"EDIT": "%{agentName} updated the account configuration (#%{id})" "EDIT": "{agentName} updated the account configuration (#{id})"
} }
} }
} }

Some files were not shown because too many files have changed in this diff Show More