Merge branch 'develop' into chore/rename_private

This commit is contained in:
Sojan Jose 2021-03-17 17:53:28 +05:30 committed by GitHub
commit 6ebb2250e4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
354 changed files with 12728 additions and 1995 deletions

View file

@ -39,17 +39,24 @@ POSTGRES_PASSWORD=
RAILS_ENV=development
RAILS_MAX_THREADS=5
# Mail outgoing
MAILER_SENDER_EMAIL=accounts@chatwoot.com
SMTP_PORT=1025
# The email from which all outgoing emails are sent
# could user either `email@yourdomain.com` or `BrandName <email@yourdomain.com>`
MAILER_SENDER_EMAIL=Chatwoot <accounts@chatwoot.com>
#SMTP domain key is set up for HELO checking
SMTP_DOMAIN=chatwoot.com
# if you are running docker-compose, set SMTP_ADDRESS value as "mailhog",
# else set the value as "localhost"
# the default value is set "mailhog" and is used by docker-compose for development environments,
# Set the value as "localhost" or your SMTP address in other environments
SMTP_ADDRESS=mailhog
SMTP_PORT=1025
SMTP_USERNAME=
SMTP_PASSWORD=
# plain,login,cram_md5
SMTP_AUTHENTICATION=
SMTP_ENABLE_STARTTLS_AUTO=
SMTP_ENABLE_STARTTLS_AUTO=true
# Can be: 'none', 'peer', 'client_once', 'fail_if_no_peer_cert', see http://api.rubyonrails.org/classes/ActionMailer/Base.html
SMTP_OPENSSL_VERIFY_MODE=peer
# Mail Incoming
# This is the domain set for the reply emails when conversation continuity is enabled

View file

@ -10,20 +10,16 @@ class Platform::Api::V1::UsersController < PlatformController
@resource.confirm
@resource.save!
@platform_app.platform_app_permissibles.find_or_create_by(permissible: @resource)
render json: @resource
end
def login
render json: { url: "#{ENV['FRONTEND_URL']}/app/login?email=#{@resource.email}&sso_auth_token=#{@resource.generate_sso_auth_token}" }
end
def show
render json: @resource
end
def show; end
def update
@resource.update!(user_params)
render json: @resource
end
def destroy

View file

@ -33,12 +33,17 @@ class ConversationApi extends ApiClient {
}
assignAgent({ conversationId, agentId }) {
axios.post(
return axios.post(
`${this.url}/${conversationId}/assignments?assignee_id=${agentId}`,
{}
);
}
assignTeam({ conversationId, teamId }) {
const params = { team_id: teamId };
return axios.post(`${this.url}/${conversationId}/assignments`, params);
}
markMessageRead({ id }) {
return axios.post(`${this.url}/${id}/update_last_seen`);
}

View file

@ -11,6 +11,7 @@ describe('#ConversationAPI', () => {
expect(conversationAPI).toHaveProperty('delete');
expect(conversationAPI).toHaveProperty('toggleStatus');
expect(conversationAPI).toHaveProperty('assignAgent');
expect(conversationAPI).toHaveProperty('assignTeam');
expect(conversationAPI).toHaveProperty('markMessageRead');
expect(conversationAPI).toHaveProperty('toggleTyping');
expect(conversationAPI).toHaveProperty('mute');

View file

@ -11,5 +11,6 @@ describe('#TeamsAPI', () => {
expect(teams).toHaveProperty('delete');
expect(teams).toHaveProperty('getAgents');
expect(teams).toHaveProperty('addAgents');
expect(teams).toHaveProperty('updateAgents');
});
});

View file

@ -15,6 +15,12 @@ export class TeamsAPI extends ApiClient {
user_ids: agentsList,
});
}
updateAgents({ teamId, agentsList }) {
return axios.patch(`${this.url}/${teamId}/team_members`, {
user_ids: agentsList,
});
}
}
export default new TeamsAPI();

View file

@ -89,7 +89,9 @@ $breakpoints: (small: 0,
medium: 640px,
large: 1024px,
xlarge: 1200px,
xxlarge: 1440px);
xxlarge: 1400px,
xxxlarge: 1600px,
);
$print-breakpoint: large;
$breakpoint-classes: (small medium large);

View file

@ -16,7 +16,7 @@
margin-bottom: var(--space-normal);
.multiselect--active {
> .multiselect__tags {
>.multiselect__tags {
border-color: $color-woot;
}
}
@ -124,6 +124,7 @@
}
.sidebar-labels-wrap {
&.has-edited,
&:hover {
.multiselect {
@ -132,16 +133,48 @@
}
.multiselect {
> .multiselect__select {
>.multiselect__select {
visibility: hidden;
}
> .multiselect__tags {
>.multiselect__tags {
border-color: transparent;
}
&.multiselect--active > .multiselect__tags {
&.multiselect--active>.multiselect__tags {
border-color: $color-woot;
}
}
}
.multiselect-wrap--small {
$multiselect-height: 3.8rem;
.multiselect__tags,
.multiselect__input,
.multiselect {
background: var(--white);
font-size: var(--font-size-small);
height: $multiselect-height;
min-height: $multiselect-height;
}
.multiselect__input {
height: $multiselect-height - $space-micro;
min-height: $multiselect-height - $space-micro;
}
.multiselect__single {
font-size: var(--font-size-small);
padding: var(--space-small) 0;
}
.multiselect__placeholder {
padding: var(--space-small) 0;
}
.multiselect__select {
min-height: $multiselect-height;
}
}

View file

@ -2,12 +2,17 @@
margin-bottom: 0;
&.button--emoji {
align-items: center;
background: var(--b-50);
border: 1px solid var(--color-border-light);
border-radius: var(--border-radius-large);
display: flex;
font-size: var(--font-size-small);
margin-right: var(--space-small);
padding: var(--space-small);
height: var(--space-large);
justify-content: center;
padding: var(--space-micro);
text-align: center;
width: var(--space-large);
&:hover {
background: var(--b-200);

View file

@ -14,7 +14,6 @@
@include flex;
@include flex-shrink;
@include padding(0 0 0 $space-normal);
align-items: center;
border-bottom: 1px solid transparent;
border-left: $space-micro solid transparent;
border-top: 1px solid transparent;

View file

@ -61,9 +61,7 @@
}
.bottom-box .button--emoji.button--upload {
height: var(--space-large);
padding: 0;
width: var(--space-large);
.file-uploads {
height: 100%;

View file

@ -49,10 +49,8 @@
margin-top: $space-micro;
.inbox-icon {
$icon-top-space: -1px;
display: inline-block;
margin-right: $space-micro;
margin-top: $icon-top-space;
min-width: $space-normal;
text-align: center;
}

View file

@ -25,6 +25,7 @@
v-for="chat in conversationList"
:key="chat.id"
:active-label="label"
:team-id="teamId"
:chat="chat"
/>
@ -76,14 +77,14 @@ export default {
type: [String, Number],
default: 0,
},
teamId: {
type: [String, Number],
default: 0,
},
label: {
type: String,
default: '',
},
activeTeam: {
type: Object,
default: () => {},
},
},
data() {
return {
@ -132,7 +133,7 @@ export default {
status: this.activeStatus,
page: this.currentPage + 1,
labels: this.label ? [this.label] : undefined,
teamId: this.activeTeam.name ? this.activeTeam.id : undefined,
teamId: this.teamId ? this.teamId : undefined,
};
},
pageTitle() {
@ -168,6 +169,12 @@ export default {
return labels.includes(this.label);
});
},
activeTeam() {
if (this.teamId) {
return this.$store.getters['teams/getTeam'](this.teamId);
}
return {};
},
},
watch: {
activeTeam() {
@ -232,10 +239,13 @@ export default {
width: 36rem;
}
@include breakpoint(xlarge up) {
width: 33rem;
width: 35rem;
}
@include breakpoint(xxlarge up) {
width: 42rem;
width: 38rem;
}
@include breakpoint(xxxlarge up) {
flex-basis: 46rem;
}
}
</style>

View file

@ -178,7 +178,6 @@ export default {
icon: 'ion-ios-people',
label: 'TEAMS',
hasSubMenu: true,
newLink: true,
key: 'team',
cssClass: 'menu-title align-justify teams-sidebar-menu',
toState: frontendURL(`accounts/${this.accountId}/settings/teams`),

View file

@ -60,35 +60,7 @@ import { mapGetters } from 'vuex';
import router from '../../routes';
import adminMixin from '../../mixins/isAdmin';
import { INBOX_TYPES } from 'shared/mixins/inboxMixin';
const getInboxClassByType = (type, phoneNumber) => {
switch (type) {
case INBOX_TYPES.WEB:
return 'ion-earth';
case INBOX_TYPES.FB:
return 'ion-social-facebook';
case INBOX_TYPES.TWITTER:
return 'ion-social-twitter';
case INBOX_TYPES.TWILIO:
return phoneNumber.startsWith('whatsapp')
? 'ion-social-whatsapp-outline'
: 'ion-android-textsms';
case INBOX_TYPES.API:
return 'ion-cloud';
case INBOX_TYPES.EMAIL:
return 'ion-email';
default:
return '';
}
};
import { getInboxClassByType } from 'dashboard/helper/inbox';
export default {
mixins: [adminMixin],
props: {
@ -155,6 +127,7 @@ export default {
.wrap {
display: flex;
align-items: center;
}
.label-color--display {
@ -165,27 +138,11 @@ export default {
width: $space-normal;
}
.inbox-icon.ion-social-facebook {
color: var(--color-facebook-brand);
}
.inbox-icon.ion-social-whatsapp-outline {
color: var(--color-twitter-brand);
}
.inbox-icon.ion-social-twitter {
color: var(--color-twitter-brand);
}
.inbox-icon.ion-android-textsms {
color: var(--color-sms-twilio);
}
.inbox-icon.ion-earth {
color: var(--color-woot);
}
.inbox-icon.ion-cloud {
color: var(--color-cloud-generic);
.inbox-icon {
position: relative;
top: -1px;
&.ion-ios-email {
font-size: var(--font-size-medium);
}
}
</style>

View file

@ -160,9 +160,9 @@ export default {
}
.button {
display: flex;
align-items: center;
justify-content: space-between;
&.button--emoji {
margin-right: var(--space-small);
}
&.is-active {
background: white;
@ -221,6 +221,7 @@ export default {
label {
color: var(--s-500);
font-size: var(--font-size-mini);
}
}
}

View file

@ -74,36 +74,38 @@ export default {
flex-direction: column;
width: 100%;
border-left: 1px solid var(--color-border);
background: var(--color-background-light);
}
.messages-and-sidebar {
display: flex;
background: var(--color-background-light);
margin: 0;
height: auto;
flex: 1 1;
overflow: hidden;
height: calc(100vh - var(--space-jumbo));
}
.conversation-sidebar-wrap {
height: auto;
flex: 0 1;
flex: 0 0;
overflow: hidden;
overflow: auto;
background: white;
flex-shrink: 0;
flex-basis: 28rem;
@include breakpoint(large up) {
flex-basis: 31em;
flex-basis: 30em;
}
@include breakpoint(xlarge up) {
flex-basis: 32em;
flex-basis: 31em;
}
@include breakpoint(xxlarge up) {
flex-basis: 36rem;
flex-basis: 33rem;
}
@include breakpoint(xxxlarge up) {
flex-basis: 40rem;
}
&::v-deep .contact--panel {

View file

@ -1,7 +1,11 @@
<template>
<div
class="conversation"
:class="{ active: isActiveChat, 'unread-chat': hasUnread }"
:class="{
active: isActiveChat,
'unread-chat': hasUnread,
'has-inbox-name': showInboxName,
}"
@click="cardClick(chat)"
>
<Thumbnail
@ -14,15 +18,12 @@
size="40px"
/>
<div class="conversation--details columns">
<span v-if="showInboxName" v-tooltip.bottom="inboxName" class="label">
<i :class="computedInboxClass" />
{{ inboxName }}
</span>
<h4 class="conversation--user">
{{ currentContact.name }}
<span
v-if="!hideInboxName && isInboxNameVisible"
v-tooltip.bottom="inboxName(chat.inbox_id)"
class="label"
>
{{ inboxName(chat.inbox_id) }}
</span>
</h4>
<p v-if="lastMessageInChat" class="conversation--message">
<i v-if="messageByAgent" class="ion-ios-undo message-from-agent"></i>
@ -54,7 +55,7 @@
import { mapGetters } from 'vuex';
import { MESSAGE_TYPE } from 'widget/helpers/constants';
import messageFormatterMixin from 'shared/mixins/messageFormatterMixin';
import { getInboxClassByType } from 'dashboard/helper/inbox';
import Thumbnail from '../Thumbnail';
import conversationMixin from '../../../mixins/conversations';
import timeMixin from '../../../mixins/time';
@ -84,6 +85,10 @@ export default {
type: Boolean,
default: false,
},
teamId: {
type: [String, Number],
default: 0,
},
},
computed: {
@ -140,6 +145,26 @@ export default {
parsedLastMessage() {
return this.getPlainText(this.lastMessageInChat.content);
},
chatInbox() {
const { inbox_id: inboxId } = this.chat;
const stateInbox = this.$store.getters['inboxes/getInbox'](inboxId);
return stateInbox;
},
computedInboxClass() {
const { phone_number: phoneNumber, channel_type: type } = this.chatInbox;
const classByType = getInboxClassByType(type, phoneNumber);
return classByType;
},
showInboxName() {
return !this.hideInboxName && this.isInboxNameVisible;
},
inboxName() {
const stateInbox = this.chatInbox;
return stateInbox.name || '';
},
},
methods: {
@ -150,13 +175,47 @@ export default {
activeInbox,
id: chat.id,
label: this.activeLabel,
teamId: this.teamId,
});
router.push({ path: frontendURL(path) });
},
inboxName(inboxId) {
const stateInbox = this.$store.getters['inboxes/getInbox'](inboxId);
return stateInbox.name || '';
},
},
};
</script>
<style lang="scss" scoped>
.conversation {
align-items: center;
}
.has-inbox-name {
&::v-deep .user-thumbnail-box {
margin-top: var(--space-normal);
align-items: flex-start;
}
.conversation--meta {
margin-top: var(--space-normal);
}
}
.conversation--details .label {
padding: var(--space-micro) 0 var(--space-micro) 0;
line-height: var(--space-slab);
font-weight: var(--font-weight-medium);
background: none;
color: var(--s-500);
font-size: var(--font-size-mini);
}
.conversation--details {
.conversation--user {
padding-top: var(--space-micro);
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
width: 60%;
}
.ion-earth {
font-size: var(--font-size-mini);
}
}
</style>

View file

@ -133,4 +133,8 @@ export default {
overflow: hidden;
text-overflow: ellipsis;
}
.conv-header {
flex: 0 0 var(--space-jumbo);
}
</style>

View file

@ -5,13 +5,22 @@ export const frontendURL = (path, params) => {
return `/app/${path}${stringifiedParams}`;
};
export const conversationUrl = ({ accountId, activeInbox, id, label }) => {
export const conversationUrl = ({
accountId,
activeInbox,
id,
label,
teamId,
}) => {
if (activeInbox) {
return `accounts/${accountId}/inbox/${activeInbox}/conversations/${id}`;
}
if (label) {
return `accounts/${accountId}/label/${label}/conversations/${id}`;
}
if (teamId) {
return `accounts/${accountId}/team/${teamId}/conversations/${id}`;
}
return `accounts/${accountId}/conversations/${id}`;
};

View file

@ -0,0 +1,28 @@
import { INBOX_TYPES } from 'shared/mixins/inboxMixin';
export const getInboxClassByType = (type, phoneNumber) => {
switch (type) {
case INBOX_TYPES.WEB:
return 'ion-earth';
case INBOX_TYPES.FB:
return 'ion-social-facebook';
case INBOX_TYPES.TWITTER:
return 'ion-social-twitter';
case INBOX_TYPES.TWILIO:
return phoneNumber.startsWith('whatsapp')
? 'ion-social-whatsapp-outline'
: 'ion-android-textsms';
case INBOX_TYPES.API:
return 'ion-cloud';
case INBOX_TYPES.EMAIL:
return 'ion-ios-email';
default:
return '';
}
};

View file

@ -21,6 +21,11 @@ describe('#URL Helpers', () => {
conversationUrl({ accountId: 1, label: 'customer-support', id: 1 })
).toBe('accounts/1/label/customer-support/conversations/1');
});
it('should return correct conversation URL if team Id is available', () => {
expect(conversationUrl({ accountId: 1, teamId: 1, id: 1 })).toBe(
'accounts/1/team/1/conversations/1'
);
});
});
describe('frontendURL', () => {

View file

@ -0,0 +1,35 @@
import { getInboxClassByType } from '../inbox';
describe('#Inbox Helpers', () => {
describe('getInboxClassByType', () => {
it('should return correct class for web widget', () => {
expect(getInboxClassByType('Channel::WebWidget')).toEqual('ion-earth');
});
it('should return correct class for fb page', () => {
expect(getInboxClassByType('Channel::FacebookPage')).toEqual(
'ion-social-facebook'
);
});
it('should return correct class for twitter profile', () => {
expect(getInboxClassByType('Channel::TwitterProfile')).toEqual(
'ion-social-twitter'
);
});
it('should return correct class for twilio sms', () => {
expect(getInboxClassByType('Channel::TwilioSms', '')).toEqual(
'ion-android-textsms'
);
});
it('should return correct class for whatsapp', () => {
expect(getInboxClassByType('Channel::TwilioSms', 'whatsapp')).toEqual(
'ion-social-whatsapp-outline'
);
});
it('should return correct class for Api', () => {
expect(getInboxClassByType('Channel::Api')).toEqual('ion-cloud');
});
it('should return correct class for Email', () => {
expect(getInboxClassByType('Channel::Email')).toEqual('ion-ios-email');
});
});
});

View file

@ -75,6 +75,13 @@ export const getSidebarItems = accountId => ({
'settings_integrations_integration',
'general_settings',
'general_settings_index',
'settings_teams_list',
'settings_teams_new',
'settings_teams_add_agents',
'settings_teams_finish',
'settings_teams_edit',
'settings_teams_edit_members',
'settings_teams_edit_finish',
],
menuItems: {
back: {
@ -91,6 +98,13 @@ export const getSidebarItems = accountId => ({
toState: frontendURL(`accounts/${accountId}/settings/agents/list`),
toStateName: 'agent_list',
},
teams: {
icon: 'ion-ios-people',
label: 'TEAMS',
hasSubMenu: false,
toState: frontendURL(`accounts/${accountId}/settings/teams/list`),
toStateName: 'settings_teams_list',
},
inboxes: {
icon: 'ion-archive',
label: 'INBOXES',

View file

@ -43,7 +43,14 @@
"EDIT_CONTACT": {
"BUTTON_LABEL": "تعديل جهة الاتصال",
"TITLE": "تعديل جهة الاتصال",
"DESC": "تعديل تفاصيل جهة الاتصال",
"DESC": "تعديل تفاصيل جهة الاتصال"
},
"CREATE_CONTACT": {
"BUTTON_LABEL": "New Contact",
"TITLE": "Create new contact",
"DESC": "Add basic information details about the contact."
},
"CONTACT_FORM": {
"FORM": {
"SUBMIT": "إرسال",
"CANCEL": "إلغاء",
@ -93,9 +100,9 @@
}
}
},
"SUCCESS_MESSAGE": "تم تحديث جهة الاتصال بنجاح",
"SUCCESS_MESSAGE": "Contact saved successfully",
"CONTACT_ALREADY_EXIST": "عنوان البريد الإلكتروني هذا مستخدم لجهة اتصال أخرى.",
"ERROR_MESSAGE": "حدث خطأ أثناء تحديث جهة الاتصال، الرجاء المحاولة مرة أخرى"
"ERROR_MESSAGE": "حدث خطأ، الرجاء المحاولة مرة أخرى"
},
"CONTACTS_PAGE": {
"HEADER": "Contacts",
@ -104,12 +111,18 @@
"LIST": {
"LOADING_MESSAGE": "Loading contacts...",
"404": "No contacts matches your search 🔍",
"TABLE_HEADER": [
"الاسم",
"رقم الهاتف",
"المحادثات",
"Last Contacted"
]
"TABLE_HEADER": {
"NAME": "الاسم",
"PHONE_NUMBER": "رقم الهاتف",
"CONVERSATIONS": "المحادثات",
"LAST_ACTIVITY": "Last Activity",
"COUNTRY": "Country",
"CITY": "City",
"SOCIAL_PROFILES": "Social Profiles",
"COMPANY": "الشركة",
"EMAIL_ADDRESS": "عنوان البريد الإلكتروني"
},
"VIEW_DETAILS": "View details"
}
}
}

View file

@ -11,7 +11,7 @@
"TITLE": "Search messages",
"LOADING_MESSAGE": "Crunching data...",
"PLACEHOLDER": "Type any text to search messages",
"NO_MATCHING_RESULTS": "There are no messages matching the search parameters."
"NO_MATCHING_RESULTS": "No results found."
},
"UNREAD_MESSAGES": "Unread Messages",
"UNREAD_MESSAGE": "Unread Message",
@ -51,6 +51,7 @@
"VISIBLE_TO_AGENTS": "ملاحظة خاصة: مرئية فقط لأعضاء فريق العمل والموظفين",
"CHANGE_STATUS": "تم تغيير حالة المحادثة",
"CHANGE_AGENT": "تم تغيير الموظف الذي تم إحالة المحادثة إليه",
"CHANGE_TEAM": "Conversation team changed",
"SENT_BY": "Sent by:",
"ASSIGNMENT": {
"SELECT_AGENT": "Select Agent",
@ -74,5 +75,37 @@
"ERROR": "الرجاء إدخال عنوان بريد إلكتروني صحيح"
}
}
},
"ONBOARDING": {
"TITLE": "Hey 👋, Welcome to %{installationName}!",
"DESCRIPTION": "Thanks for signing up. We want you to get the most out of %{installationName}. Here are a few things you can do in %{installationName} to make the experience delightful.",
"READ_LATEST_UPDATES": "Read our latest updates",
"ALL_CONVERSATION": {
"TITLE": "All your conversations in one place",
"DESCRIPTION": "View all the conversations from your customers in one single dashboard. You can filter the conversations by the incoming channel, label and status."
},
"TEAM_MEMBERS": {
"TITLE": "Invite your team members",
"DESCRIPTION": "Since you are getting ready to talk to your customer, bring in your teammates to assist you. You can invite your teammates by adding their email address to the agent list.",
"NEW_LINK": "Click here to invite a team member"
},
"INBOXES": {
"TITLE": "Connect Inboxes",
"DESCRIPTION": "Connect various channels through which your customers would be talking to you. It can be a website live-chat, your Facebook or Twitter page or even your WhatsApp number.",
"NEW_LINK": "Click here to create an inbox"
},
"LABELS": {
"TITLE": "Organize conversations with labels",
"DESCRIPTION": "Labels provide an easier way to categorize your conversation. Create some labels like #support-enquiry, #billing-question etc., so that you can use them in a conversation later.",
"NEW_LINK": "Click here to create tags"
}
},
"CONVERSATION_SIDEBAR": {
"DETAILS_TITLE": "Conversations Details",
"ASSIGNEE_LABEL": "Assigned Agent",
"TEAM_LABEL": "Assigned Team",
"SELECT": {
"PLACEHOLDER": "None"
}
}
}

View file

@ -38,7 +38,8 @@
"PICK_A_VALUE": "اختر قيمة"
},
"TWITTER": {
"HELP": "لإضافة حساب تويتر الخاص بك كقناة تواصل، تحتاج إلى مصادقة حسابك على تويتر بك بالنقر على زر \"تسجيل الدخول باستخدام تويتر\" "
"HELP": "لإضافة حساب تويتر الخاص بك كقناة تواصل، تحتاج إلى مصادقة حسابك على تويتر بك بالنقر على زر \"تسجيل الدخول باستخدام تويتر\" ",
"ERROR_MESSAGE": "There was an error connecting to Twitter, please try again"
},
"WEBSITE_CHANNEL": {
"TITLE": "قناة الموقع",
@ -224,7 +225,9 @@
"TABS": {
"SETTINGS": "الإعدادات",
"COLLABORATORS": "المتعاونون",
"CONFIGURATION": "الإعدادات"
"CONFIGURATION": "الإعدادات",
"PRE_CHAT_FORM": "Pre Chat Form",
"BUSINESS_HOURS": "Business Hours"
},
"SETTINGS": "الإعدادات",
"FEATURES": {
@ -250,6 +253,41 @@
"SUBTITLE": "Your Facebook connection has expired, please reconnect your Facebook page to continue services",
"MESSAGE_SUCCESS": "Reconnection successful",
"MESSAGE_ERROR": "حدث خطأ، الرجاء المحاولة مرة أخرى"
},
"PRE_CHAT_FORM": {
"DESCRIPTION": "Pre chat forms enable you to capture user information before they start conversation with you.",
"ENABLE": {
"LABEL": "Enable pre chat form",
"OPTIONS": {
"ENABLED": "Yes",
"DISABLED": "No"
}
},
"PRE_CHAT_MESSAGE": {
"LABEL": "Pre Chat Message",
"PLACEHOLDER": "This message would be visible to the users along with the form"
},
"REQUIRE_EMAIL": {
"LABEL": "Visitors should provide their name and email address before starting the chat"
}
},
"BUSINESS_HOURS": {
"TITLE": "Set your availability",
"SUBTITLE": "Set your availability on your livechat widget",
"WEEKLY_TITLE": "Set your weekly hours",
"TIMEZONE_LABEL": "Select timezone",
"UPDATE": "Update business hours settings",
"TOGGLE_AVAILABILITY": "Enable business availability for this inbox",
"UNAVAILABLE_MESSAGE_LABEL": "Unavailable message for vistors",
"UNAVAILABLE_MESSAGE_DEFAULT": "We are unavailable at the moment. Leave a message we will respond once we are back.",
"TOGGLE_HELP": "Enabling business availability will show the available hours on live chat widget even if all the agents are offline. Outside available hours vistors can be warned with a message and a pre-chat form.",
"DAY": {
"ENABLE": "Enable availability for this day",
"UNAVAILABLE": "Unavailable",
"HOURS": "hours",
"VALIDATION_ERROR": "Starting time should be before closing time.",
"CHOOSE": "Choose"
}
}
}
}

View file

@ -1,6 +1,6 @@
{
"LOGIN": {
"TITLE": "تسجيل الدخول إلى Chatwoot",
"TITLE": "تسجيل الدخول إلى شات ووت",
"EMAIL": {
"LABEL": "البريد الإلكتروني",
"PLACEHOLDER": "مثال: someone@example.com"

View file

@ -0,0 +1,124 @@
{
"TEAMS_SETTINGS": {
"NEW_TEAM": "Create new team",
"HEADER": "Teams",
"SIDEBAR_TXT": "<p><b>Teams</b></p> <p>Teams let you organize your agents into groups based on their responsibilities. <br /> A user can be part of multiple teams. You can assign conversations to a team when you are working collaboratively. </p>",
"LIST": {
"404": "There are no teams created on this account.",
"EDIT_TEAM": "Edit team"
},
"CREATE_FLOW": {
"CREATE": {
"TITLE": "Create a new team",
"DESC": "Add a title and description to your new team."
},
"AGENTS": {
"BUTTON_TEXT": "Add agents to team",
"TITLE": "Add agents to team - %{teamName}",
"DESC": "Add Agents to your newly created team. This lets you collaborate as a team on conversations, get notified on new events in the same conversation."
},
"WIZARD": [
{
"title": "إنشاء",
"route": "settings_teams_new",
"body": "Create a new team of agents."
},
{
"title": "إضافة موظفين",
"route": "settings_teams_add_agents",
"body": "Add agents to the team."
},
{
"title": "Finish",
"route": "settings_teams_finish",
"body": "أصبح كل شيء جاهزاً الآن!"
}
]
},
"EDIT_FLOW": {
"CREATE": {
"TITLE": "Edit your team details",
"DESC": "Edit title and description to your team.",
"BUTTON_TEXT": "Update team"
},
"AGENTS": {
"BUTTON_TEXT": "Update agents in team",
"TITLE": "Add agents to team - %{teamName}",
"DESC": "Add Agents to your newly created team. All the added agents will be notified when a conversation is assigned to this team."
},
"WIZARD": [
{
"title": "Team details",
"route": "settings_teams_edit",
"body": "Change name, description and other details."
},
{
"title": "Edit Agents",
"route": "settings_teams_edit_members",
"body": "Edit agents in your team."
},
{
"title": "Finish",
"route": "settings_teams_edit_finish",
"body": "أصبح كل شيء جاهزاً الآن!"
}
]
},
"TEAM_FORM": {
"ERROR_MESSAGE": "Couldn't save the team details. Try again."
},
"AGENTS": {
"AGENT": "AGENT",
"EMAIL": "البريد الإلكتروني",
"BUTTON_TEXT": "إضافة موظفين",
"ADD_AGENTS": "Adding Agents to your Team...",
"SELECT": "select",
"SELECT_ALL": "select all agents",
"SELECTED_COUNT": "%{selected} out of %{total} agents selected."
},
"ADD": {
"TITLE": "Add agents to team - %{teamName}",
"DESC": "Add Agents to your newly created team. This lets you collaborate as a team on conversations, get notified on new events in the same conversation.",
"SELECT": "select",
"SELECT_ALL": "select all agents",
"SELECTED_COUNT": "%{selected} out of %{total} agents selected.",
"BUTTON_TEXT": "إضافة موظفين",
"AGENT_VALIDATION_ERROR": "Select atleaset one agent."
},
"FINISH": {
"TITLE": "Your team is ready!",
"MESSAGE": "You can now collaborate as a team on conversations. Happy supporting ",
"BUTTON_TEXT": "Finish"
},
"DELETE": {
"BUTTON_TEXT": "حذف",
"API": {
"SUCCESS_MESSAGE": "Team deleted successfully.",
"ERROR_MESSAGE": "Couldn't delete the team. Try again."
},
"CONFIRM": {
"TITLE": "Are you sure want to delete - %{teamName}",
"MESSAGE": "Deleting the team will remove the team assignment from the conversations assigned to this team.",
"YES": "حذف ",
"NO": "إلغاء"
}
},
"SETTINGS": "الإعدادات",
"FORM": {
"UPDATE": "Update team",
"CREATE": "Create team",
"NAME": {
"LABEL": "Team name",
"PLACEHOLDER": "Example: Sales, Customer Support"
},
"DESCRIPTION": {
"LABEL": "Team Description",
"PLACEHOLDER": "Short description about this team."
},
"AUTO_ASSIGN": {
"LABEL": "Allow auto assign for this team."
},
"SUBMIT_CREATE": "Create team"
}
}
}

View file

@ -43,7 +43,14 @@
"EDIT_CONTACT": {
"BUTTON_LABEL": "Edita el contacte",
"TITLE": "Edita el contacte",
"DESC": "Edita els detalls de contacte",
"DESC": "Edita els detalls de contacte"
},
"CREATE_CONTACT": {
"BUTTON_LABEL": "Nou Contacte",
"TITLE": "Crear un nou contacte",
"DESC": "Afegir informació bàsica sobre el contacte."
},
"CONTACT_FORM": {
"FORM": {
"SUBMIT": "Envia",
"CANCEL": "Cancel·la",
@ -93,9 +100,9 @@
}
}
},
"SUCCESS_MESSAGE": "S'ha actualitzat correctament el contacte",
"SUCCESS_MESSAGE": "Contacte guardat correctament",
"CONTACT_ALREADY_EXIST": "Aquesta adreça de correu electrònic sutilitza per a un altre contacte.",
"ERROR_MESSAGE": "S'ha produït un error en actualitzar el contacte. Tornau-ho a provar"
"ERROR_MESSAGE": "S'ha produït un error; tornau-ho a provar"
},
"CONTACTS_PAGE": {
"HEADER": "Contactes",
@ -104,12 +111,18 @@
"LIST": {
"LOADING_MESSAGE": "Carregant contactes...",
"404": "No hi ha cap contacte que coincideixi amb la vostra cerca 🔍",
"TABLE_HEADER": [
"Nom",
"Número de telèfon",
"Converses",
"Darrer contacte"
]
"TABLE_HEADER": {
"NAME": "Nom",
"PHONE_NUMBER": "Número de telèfon",
"CONVERSATIONS": "Converses",
"LAST_ACTIVITY": "Last Activity",
"COUNTRY": "Country",
"CITY": "City",
"SOCIAL_PROFILES": "Social Profiles",
"COMPANY": "Companyia",
"EMAIL_ADDRESS": "Adreça de correu electrònic"
},
"VIEW_DETAILS": "View details"
}
}
}

View file

@ -11,7 +11,7 @@
"TITLE": "Cerca missatges",
"LOADING_MESSAGE": "S'estan restringint les dades...",
"PLACEHOLDER": "Escriu qualsevol text per cercar missatges",
"NO_MATCHING_RESULTS": "No hi ha missatges que coincideixin amb els paràmetres de cerca."
"NO_MATCHING_RESULTS": "No results found."
},
"UNREAD_MESSAGES": "Missatges no Llegits",
"UNREAD_MESSAGE": "Missatge no Llegit",
@ -51,6 +51,7 @@
"VISIBLE_TO_AGENTS": "Nota privada: Només és visible per tu i el vostre equip",
"CHANGE_STATUS": "Estat de la conversa canviat",
"CHANGE_AGENT": "Assignació de la conversa canviat",
"CHANGE_TEAM": "Conversation team changed",
"SENT_BY": "Enviat per:",
"ASSIGNMENT": {
"SELECT_AGENT": "Seleccionar Agent",
@ -74,5 +75,37 @@
"ERROR": "Introduïu una adreça de correu electrònic vàlida"
}
}
},
"ONBOARDING": {
"TITLE": "Hey 👋, Welcome to %{installationName}!",
"DESCRIPTION": "Thanks for signing up. We want you to get the most out of %{installationName}. Here are a few things you can do in %{installationName} to make the experience delightful.",
"READ_LATEST_UPDATES": "Read our latest updates",
"ALL_CONVERSATION": {
"TITLE": "All your conversations in one place",
"DESCRIPTION": "View all the conversations from your customers in one single dashboard. You can filter the conversations by the incoming channel, label and status."
},
"TEAM_MEMBERS": {
"TITLE": "Invite your team members",
"DESCRIPTION": "Since you are getting ready to talk to your customer, bring in your teammates to assist you. You can invite your teammates by adding their email address to the agent list.",
"NEW_LINK": "Click here to invite a team member"
},
"INBOXES": {
"TITLE": "Connect Inboxes",
"DESCRIPTION": "Connect various channels through which your customers would be talking to you. It can be a website live-chat, your Facebook or Twitter page or even your WhatsApp number.",
"NEW_LINK": "Click here to create an inbox"
},
"LABELS": {
"TITLE": "Organize conversations with labels",
"DESCRIPTION": "Labels provide an easier way to categorize your conversation. Create some labels like #support-enquiry, #billing-question etc., so that you can use them in a conversation later.",
"NEW_LINK": "Click here to create tags"
}
},
"CONVERSATION_SIDEBAR": {
"DETAILS_TITLE": "Conversations Details",
"ASSIGNEE_LABEL": "Assigned Agent",
"TEAM_LABEL": "Assigned Team",
"SELECT": {
"PLACEHOLDER": "None"
}
}
}

View file

@ -38,7 +38,8 @@
"PICK_A_VALUE": "Tria un valor"
},
"TWITTER": {
"HELP": "Per afegir el teu perfil de Twitter com a canal, has d'autentificar el vostre perfil de Twitter fent clic a 'Inicieu la sessió amb Twitter' "
"HELP": "Per afegir el teu perfil de Twitter com a canal, has d'autentificar el vostre perfil de Twitter fent clic a 'Inicieu la sessió amb Twitter' ",
"ERROR_MESSAGE": "There was an error connecting to Twitter, please try again"
},
"WEBSITE_CHANNEL": {
"TITLE": "Canal Web",
@ -224,7 +225,9 @@
"TABS": {
"SETTINGS": "Configuracions",
"COLLABORATORS": "Col·laboradors",
"CONFIGURATION": "Configuració"
"CONFIGURATION": "Configuració",
"PRE_CHAT_FORM": "Pre Chat Form",
"BUSINESS_HOURS": "Business Hours"
},
"SETTINGS": "Configuracions",
"FEATURES": {
@ -250,6 +253,41 @@
"SUBTITLE": "La teva connexió a Facebook ha caducat, torna a connectar la vostra pàgina de Facebook per continuar els serveis",
"MESSAGE_SUCCESS": "La reconnexió s'ha realitzat correctament",
"MESSAGE_ERROR": "S'ha produït un error; tornau-ho a provar"
},
"PRE_CHAT_FORM": {
"DESCRIPTION": "Pre chat forms enable you to capture user information before they start conversation with you.",
"ENABLE": {
"LABEL": "Enable pre chat form",
"OPTIONS": {
"ENABLED": "Si",
"DISABLED": "No"
}
},
"PRE_CHAT_MESSAGE": {
"LABEL": "Pre Chat Message",
"PLACEHOLDER": "This message would be visible to the users along with the form"
},
"REQUIRE_EMAIL": {
"LABEL": "Visitors should provide their name and email address before starting the chat"
}
},
"BUSINESS_HOURS": {
"TITLE": "Set your availability",
"SUBTITLE": "Set your availability on your livechat widget",
"WEEKLY_TITLE": "Set your weekly hours",
"TIMEZONE_LABEL": "Select timezone",
"UPDATE": "Update business hours settings",
"TOGGLE_AVAILABILITY": "Enable business availability for this inbox",
"UNAVAILABLE_MESSAGE_LABEL": "Unavailable message for vistors",
"UNAVAILABLE_MESSAGE_DEFAULT": "We are unavailable at the moment. Leave a message we will respond once we are back.",
"TOGGLE_HELP": "Enabling business availability will show the available hours on live chat widget even if all the agents are offline. Outside available hours vistors can be warned with a message and a pre-chat form.",
"DAY": {
"ENABLE": "Enable availability for this day",
"UNAVAILABLE": "Unavailable",
"HOURS": "hores",
"VALIDATION_ERROR": "Starting time should be before closing time.",
"CHOOSE": "Tria"
}
}
}
}

View file

@ -125,7 +125,7 @@
"INTEGRATIONS": "Integracions",
"ACCOUNT_SETTINGS": "Configuració del compte",
"LABELS": "Etiquetes",
"TEAMS": "Teams"
"TEAMS": "Equips"
},
"CREATE_ACCOUNT": {
"NEW_ACCOUNT": "Compte nou",

View file

@ -0,0 +1,124 @@
{
"TEAMS_SETTINGS": {
"NEW_TEAM": "Create new team",
"HEADER": "Equips",
"SIDEBAR_TXT": "<p><b>Teams</b></p> <p>Teams let you organize your agents into groups based on their responsibilities. <br /> A user can be part of multiple teams. You can assign conversations to a team when you are working collaboratively. </p>",
"LIST": {
"404": "There are no teams created on this account.",
"EDIT_TEAM": "Edit team"
},
"CREATE_FLOW": {
"CREATE": {
"TITLE": "Create a new team",
"DESC": "Add a title and description to your new team."
},
"AGENTS": {
"BUTTON_TEXT": "Add agents to team",
"TITLE": "Add agents to team - %{teamName}",
"DESC": "Add Agents to your newly created team. This lets you collaborate as a team on conversations, get notified on new events in the same conversation."
},
"WIZARD": [
{
"title": "Crear",
"route": "settings_teams_new",
"body": "Create a new team of agents."
},
{
"title": "Afegir agents",
"route": "settings_teams_add_agents",
"body": "Add agents to the team."
},
{
"title": "Finish",
"route": "settings_teams_finish",
"body": "Ja estàs preparat!"
}
]
},
"EDIT_FLOW": {
"CREATE": {
"TITLE": "Edit your team details",
"DESC": "Edit title and description to your team.",
"BUTTON_TEXT": "Update team"
},
"AGENTS": {
"BUTTON_TEXT": "Update agents in team",
"TITLE": "Add agents to team - %{teamName}",
"DESC": "Add Agents to your newly created team. All the added agents will be notified when a conversation is assigned to this team."
},
"WIZARD": [
{
"title": "Team details",
"route": "settings_teams_edit",
"body": "Change name, description and other details."
},
{
"title": "Edit Agents",
"route": "settings_teams_edit_members",
"body": "Edit agents in your team."
},
{
"title": "Finish",
"route": "settings_teams_edit_finish",
"body": "Ja estàs preparat!"
}
]
},
"TEAM_FORM": {
"ERROR_MESSAGE": "Couldn't save the team details. Try again."
},
"AGENTS": {
"AGENT": "AGENT",
"EMAIL": "Correu electrònic",
"BUTTON_TEXT": "Afegir agents",
"ADD_AGENTS": "Adding Agents to your Team...",
"SELECT": "select",
"SELECT_ALL": "select all agents",
"SELECTED_COUNT": "%{selected} out of %{total} agents selected."
},
"ADD": {
"TITLE": "Add agents to team - %{teamName}",
"DESC": "Add Agents to your newly created team. This lets you collaborate as a team on conversations, get notified on new events in the same conversation.",
"SELECT": "select",
"SELECT_ALL": "select all agents",
"SELECTED_COUNT": "%{selected} out of %{total} agents selected.",
"BUTTON_TEXT": "Afegir agents",
"AGENT_VALIDATION_ERROR": "Select atleaset one agent."
},
"FINISH": {
"TITLE": "Your team is ready!",
"MESSAGE": "You can now collaborate as a team on conversations. Happy supporting ",
"BUTTON_TEXT": "Finish"
},
"DELETE": {
"BUTTON_TEXT": "Esborrar",
"API": {
"SUCCESS_MESSAGE": "Team deleted successfully.",
"ERROR_MESSAGE": "Couldn't delete the team. Try again."
},
"CONFIRM": {
"TITLE": "Are you sure want to delete - %{teamName}",
"MESSAGE": "Deleting the team will remove the team assignment from the conversations assigned to this team.",
"YES": "Suprimeix ",
"NO": "Cancel·la"
}
},
"SETTINGS": "Configuracions",
"FORM": {
"UPDATE": "Update team",
"CREATE": "Create team",
"NAME": {
"LABEL": "Team name",
"PLACEHOLDER": "Example: Sales, Customer Support"
},
"DESCRIPTION": {
"LABEL": "Team Description",
"PLACEHOLDER": "Short description about this team."
},
"AUTO_ASSIGN": {
"LABEL": "Allow auto assign for this team."
},
"SUBMIT_CREATE": "Create team"
}
}
}

View file

@ -43,7 +43,14 @@
"EDIT_CONTACT": {
"BUTTON_LABEL": "Upravit kontakt",
"TITLE": "Upravit kontakt",
"DESC": "Upravit kontaktní údaje",
"DESC": "Upravit kontaktní údaje"
},
"CREATE_CONTACT": {
"BUTTON_LABEL": "New Contact",
"TITLE": "Create new contact",
"DESC": "Add basic information details about the contact."
},
"CONTACT_FORM": {
"FORM": {
"SUBMIT": "Odeslat",
"CANCEL": "Zrušit",
@ -93,9 +100,9 @@
}
}
},
"SUCCESS_MESSAGE": "Kontakt byl úspěšně aktualizován",
"SUCCESS_MESSAGE": "Contact saved successfully",
"CONTACT_ALREADY_EXIST": "Tuto e-mailovou adresu již používá jiný kontakt.",
"ERROR_MESSAGE": "Při aktualizaci kontaktu se vyskytla chyba, zkuste to prosím znovu"
"ERROR_MESSAGE": "Došlo k chybě, zkuste to prosím znovu"
},
"CONTACTS_PAGE": {
"HEADER": "Kontakty",
@ -104,12 +111,18 @@
"LIST": {
"LOADING_MESSAGE": "Načítání kontaktů...",
"404": "Vašemu hledání neodpovídají žádné kontakty 🔍",
"TABLE_HEADER": [
"Název",
"Telefonní číslo",
"Konverzace",
"Naposledy kontaktováno"
]
"TABLE_HEADER": {
"NAME": "Název",
"PHONE_NUMBER": "Telefonní číslo",
"CONVERSATIONS": "Konverzace",
"LAST_ACTIVITY": "Last Activity",
"COUNTRY": "Country",
"CITY": "City",
"SOCIAL_PROFILES": "Social Profiles",
"COMPANY": "Společnost",
"EMAIL_ADDRESS": "E-mailová adresa"
},
"VIEW_DETAILS": "View details"
}
}
}

View file

@ -11,7 +11,7 @@
"TITLE": "Hledat zprávy",
"LOADING_MESSAGE": "Načítám data...",
"PLACEHOLDER": "Zadejte jakýkoli text k hledání",
"NO_MATCHING_RESULTS": "Vašemu vyhledávání neodpovídají žádné zprávy."
"NO_MATCHING_RESULTS": "No results found."
},
"UNREAD_MESSAGES": "Nepřečtené zprávy",
"UNREAD_MESSAGE": "Nepřečtená zpráva",
@ -25,7 +25,7 @@
"REMOVE_SELECTION": "Odstranit výběr",
"DOWNLOAD": "Stáhnout",
"UPLOADING_ATTACHMENTS": "Nahrávání příloh...",
"NO_RESPONSE": "No response",
"NO_RESPONSE": "Bez odpovědi",
"HEADER": {
"RESOLVE_ACTION": "Vyřešit",
"REOPEN_ACTION": "Znovu otevřít",
@ -43,14 +43,15 @@
"SEND": "Poslat",
"CREATE": "Přidat poznámku",
"TWEET": "Tweet",
"TIP_FORMAT_ICON": "Show rich text editor",
"TIP_EMOJI_ICON": "Show emoji selector",
"TIP_ATTACH_ICON": "Attach files",
"TIP_FORMAT_ICON": "Zobrazit formátovaný textový editor",
"TIP_EMOJI_ICON": "Zobrazit výběr emoji",
"TIP_ATTACH_ICON": "Přiložit soubory",
"ENTER_TO_SEND": "Enter to send"
},
"VISIBLE_TO_AGENTS": "Soukromá poznámka: Viditelné pouze pro vás a váš tým",
"CHANGE_STATUS": "Stav konverzace byl změněn",
"CHANGE_AGENT": "Konverzace pověřená osoba změněna",
"CHANGE_TEAM": "Conversation team changed",
"SENT_BY": "Odeslal:",
"ASSIGNMENT": {
"SELECT_AGENT": "Vybrat agenta",
@ -74,5 +75,37 @@
"ERROR": "Zadejte prosím platnou e-mailovou adresu"
}
}
},
"ONBOARDING": {
"TITLE": "Hey 👋, Welcome to %{installationName}!",
"DESCRIPTION": "Thanks for signing up. We want you to get the most out of %{installationName}. Here are a few things you can do in %{installationName} to make the experience delightful.",
"READ_LATEST_UPDATES": "Read our latest updates",
"ALL_CONVERSATION": {
"TITLE": "All your conversations in one place",
"DESCRIPTION": "View all the conversations from your customers in one single dashboard. You can filter the conversations by the incoming channel, label and status."
},
"TEAM_MEMBERS": {
"TITLE": "Invite your team members",
"DESCRIPTION": "Since you are getting ready to talk to your customer, bring in your teammates to assist you. You can invite your teammates by adding their email address to the agent list.",
"NEW_LINK": "Click here to invite a team member"
},
"INBOXES": {
"TITLE": "Připojit schránky",
"DESCRIPTION": "Connect various channels through which your customers would be talking to you. It can be a website live-chat, your Facebook or Twitter page or even your WhatsApp number.",
"NEW_LINK": "Click here to create an inbox"
},
"LABELS": {
"TITLE": "Organize conversations with labels",
"DESCRIPTION": "Labels provide an easier way to categorize your conversation. Create some labels like #support-enquiry, #billing-question etc., so that you can use them in a conversation later.",
"NEW_LINK": "Klikněte zde pro vytvoření štítků"
}
},
"CONVERSATION_SIDEBAR": {
"DETAILS_TITLE": "Conversations Details",
"ASSIGNEE_LABEL": "Assigned Agent",
"TEAM_LABEL": "Assigned Team",
"SELECT": {
"PLACEHOLDER": "None"
}
}
}

View file

@ -1,6 +1,6 @@
{
"INBOX_MGMT": {
"HEADER": "Krabice",
"HEADER": "Schránky",
"SIDEBAR_TXT": "<p><b>Inbox</b></p> <p> When you connect a website or a facebook Page to Chatwoot, it is called an <b>Inbox</b>. You can have unlimited inboxes in your Chatwoot account. </p><p> Click on <b>Add Inbox</b> to connect a website or a Facebook Page. </p><p> In the Dashboard, you can see all the conversations from all your inboxes in a single place and respond to them under the `Conversations` tab. </p><p> You can also see conversations specific to an inbox by clicking on the inbox name on the left pane of the dashboard. </p>",
"LIST": {
"404": "K tomuto účtu nejsou připojeny žádné doručené schránky."
@ -38,7 +38,8 @@
"PICK_A_VALUE": "Vyberte hodnotu"
},
"TWITTER": {
"HELP": "Chcete-li přidat svůj Twitter profil jako kanál, musíte ověřit svůj Twitter profil kliknutím na tlačítko 'Přihlásit se přes Twitter' "
"HELP": "Chcete-li přidat svůj Twitter profil jako kanál, musíte ověřit svůj Twitter profil kliknutím na tlačítko 'Přihlásit se přes Twitter' ",
"ERROR_MESSAGE": "There was an error connecting to Twitter, please try again"
},
"WEBSITE_CHANNEL": {
"TITLE": "Kanál webové stránky",
@ -223,12 +224,14 @@
},
"TABS": {
"SETTINGS": "Nastavení",
"COLLABORATORS": "Collaborators",
"CONFIGURATION": "Configuration"
"COLLABORATORS": "Spolupracující",
"CONFIGURATION": "Nastavení",
"PRE_CHAT_FORM": "Formulář před chatem",
"BUSINESS_HOURS": "Pracovní doba"
},
"SETTINGS": "Nastavení",
"FEATURES": {
"LABEL": "Features",
"LABEL": "Funkce",
"DISPLAY_FILE_PICKER": "Display file picker on the widget",
"DISPLAY_EMOJI_PICKER": "Display emoji picker on the widget"
},
@ -250,6 +253,41 @@
"SUBTITLE": "Your Facebook connection has expired, please reconnect your Facebook page to continue services",
"MESSAGE_SUCCESS": "Reconnection successful",
"MESSAGE_ERROR": "There was an error, please try again"
},
"PRE_CHAT_FORM": {
"DESCRIPTION": "Pre chat forms enable you to capture user information before they start conversation with you.",
"ENABLE": {
"LABEL": "Enable pre chat form",
"OPTIONS": {
"ENABLED": "Ano",
"DISABLED": "Ne"
}
},
"PRE_CHAT_MESSAGE": {
"LABEL": "Zpráva před chatem",
"PLACEHOLDER": "This message would be visible to the users along with the form"
},
"REQUIRE_EMAIL": {
"LABEL": "Visitors should provide their name and email address before starting the chat"
}
},
"BUSINESS_HOURS": {
"TITLE": "Set your availability",
"SUBTITLE": "Set your availability on your livechat widget",
"WEEKLY_TITLE": "Set your weekly hours",
"TIMEZONE_LABEL": "Vyberte časové pásmo",
"UPDATE": "Update business hours settings",
"TOGGLE_AVAILABILITY": "Enable business availability for this inbox",
"UNAVAILABLE_MESSAGE_LABEL": "Unavailable message for vistors",
"UNAVAILABLE_MESSAGE_DEFAULT": "We are unavailable at the moment. Leave a message we will respond once we are back.",
"TOGGLE_HELP": "Enabling business availability will show the available hours on live chat widget even if all the agents are offline. Outside available hours vistors can be warned with a message and a pre-chat form.",
"DAY": {
"ENABLE": "Enable availability for this day",
"UNAVAILABLE": "Nedostupný",
"HOURS": "hodiny",
"VALIDATION_ERROR": "Starting time should be before closing time.",
"CHOOSE": "Choose"
}
}
}
}

View file

@ -16,6 +16,6 @@
},
"FORGOT_PASSWORD": "Zapomněli jste heslo?",
"CREATE_NEW_ACCOUNT": "Vytvořit nový účet",
"SUBMIT": "Login"
"SUBMIT": "Přihlásit se"
}
}

View file

@ -5,7 +5,7 @@
"BTN_TEXT": "Aktualizovat profil",
"AFTER_EMAIL_CHANGED": "Váš profil byl úspěšně aktualizován, přihlaste se prosím znovu, protože se vaše přihlašovací údaje změnily",
"FORM": {
"AVATAR": "Profil obrázek",
"AVATAR": "Profilový obrázek",
"ERROR": "Opravte chyby formuláře",
"REMOVE_IMAGE": "Odebrat",
"UPLOAD_IMAGE": "Nahrát obrázek",
@ -27,41 +27,41 @@
"NOTE": "Zde aktualizujte nastavení e-mailových oznámení",
"CONVERSATION_ASSIGNMENT": "Odeslat e-mailová oznámení, když je mi přiřazena konverzace",
"CONVERSATION_CREATION": "Odeslat oznámení e-mailem při vytváření nové konverzace",
"CONVERSATION_MENTION": "Send email notifications when you are mentioned in a conversation",
"ASSIGNED_CONVERSATION_NEW_MESSAGE": "Send email notifications when a new message is created in an assigned conversation"
"CONVERSATION_MENTION": "Odeslat oznámení e-mailem, pokud jste zmíněni v konverzaci",
"ASSIGNED_CONVERSATION_NEW_MESSAGE": "Odeslat oznámení e-mailem, když je nová zpráva vytvořena v přiřazené konverzaci"
},
"API": {
"UPDATE_SUCCESS": "Your notification preferences are updated successfully",
"UPDATE_ERROR": "There is an error while updating the preferences, please try again"
"UPDATE_SUCCESS": "Vaše předvolby oznámení byly úspěšně aktualizovány",
"UPDATE_ERROR": "Při aktualizaci nastavení došlo k chybě, zkuste to prosím znovu"
},
"PUSH_NOTIFICATIONS_SECTION": {
"TITLE": "Push Notifications",
"NOTE": "Update your push notification preferences here",
"CONVERSATION_ASSIGNMENT": "Send push notifications when a conversation is assigned to me",
"CONVERSATION_CREATION": "Send push notifications when a new conversation is created",
"CONVERSATION_MENTION": "Send push notifications when you are mentioned in a conversation",
"ASSIGNED_CONVERSATION_NEW_MESSAGE": "Send push notifications when a new message is created in an assigned conversation",
"HAS_ENABLED_PUSH": "You have enabled push for this browser.",
"REQUEST_PUSH": "Enable push notifications"
"TITLE": "Push oznámení",
"NOTE": "Zde aktualizujte předvolby push oznámení",
"CONVERSATION_ASSIGNMENT": "Odeslat push oznámení, když je mi přiřazena konverzace",
"CONVERSATION_CREATION": "Odeslat push oznámení při vytváření nové konverzace",
"CONVERSATION_MENTION": "Poslat push oznámení, když jste zmíněni v konverzaci",
"ASSIGNED_CONVERSATION_NEW_MESSAGE": "Odeslat push oznámení, když je nová zpráva vytvořena v přiřazené konverzaci",
"HAS_ENABLED_PUSH": "Povolili jste push pro tento prohlížeč.",
"REQUEST_PUSH": "Povolit push oznámení"
},
"PROFILE_IMAGE": {
"LABEL": "Profil obrázek"
},
"NAME": {
"LABEL": "Your full name",
"ERROR": "Please enter a valid full name",
"PLACEHOLDER": "Please enter your full name"
"LABEL": "Vaše celé jméno",
"ERROR": "Zadejte prosím platné celé jméno",
"PLACEHOLDER": "Zadejte své celé jméno"
},
"DISPLAY_NAME": {
"LABEL": "Display name",
"ERROR": "Please enter a valid display name",
"PLACEHOLDER": "Please enter a display name, this would be displayed in conversations"
"LABEL": "Zobrazované jméno",
"ERROR": "Zadejte prosím platné zobrazované jméno",
"PLACEHOLDER": "Zadejte prosím zobrazované jméno, bude zobrazeno v konverzacích"
},
"AVAILABILITY": {
"LABEL": "Availability",
"LABEL": "Dostupnost",
"STATUSES_LIST": [
"Online",
"Busy",
"Zaneprázdněn",
"Offline"
]
},
@ -84,19 +84,19 @@
},
"SIDEBAR_ITEMS": {
"CHANGE_AVAILABILITY_STATUS": "Změnit",
"CHANGE_ACCOUNTS": "Switch Account",
"SELECTOR_SUBTITLE": "Select an account from the following list",
"CHANGE_ACCOUNTS": "Přepnout účet",
"SELECTOR_SUBTITLE": "Vyberte účet z následujícího seznamu",
"PROFILE_SETTINGS": "Nastavení profilu",
"LOGOUT": "Odhlásit se"
},
"APP_GLOBAL": {
"TRIAL_MESSAGE": "days trial remaining.",
"TRAIL_BUTTON": "Buy Now"
"TRIAL_MESSAGE": "dní zbývá zkušební verze.",
"TRAIL_BUTTON": "Koupit nyní"
},
"COMPONENTS": {
"CODE": {
"BUTTON_TEXT": "Copy",
"COPY_SUCCESSFUL": "Code copied to clipboard successfully"
"BUTTON_TEXT": "Kopírovat",
"COPY_SUCCESSFUL": "Kód byl úspěšně zkopírován do schránky"
},
"FILE_BUBBLE": {
"DOWNLOAD": "Stáhnout",
@ -106,10 +106,10 @@
"SUBMIT": "Odeslat"
}
},
"CONFIRM_EMAIL": "Verifying...",
"CONFIRM_EMAIL": "Ověřování...",
"SETTINGS": {
"INBOXES": {
"NEW_INBOX": "Add Inbox"
"NEW_INBOX": "Přidat schránku"
}
},
"SIDEBAR": {
@ -117,22 +117,22 @@
"REPORTS": "Zprávy",
"CONTACTS": "Kontakty",
"SETTINGS": "Nastavení",
"HOME": "Home",
"HOME": "Domů",
"AGENTS": "Agenti",
"INBOXES": "Krabice",
"NOTIFICATIONS": "Notifications",
"INBOXES": "Schránky",
"NOTIFICATIONS": "Oznámení",
"CANNED_RESPONSES": "Konzervované odpovědi",
"INTEGRATIONS": "Integrace",
"ACCOUNT_SETTINGS": "Account Settings",
"LABELS": "Labels",
"TEAMS": "Teams"
"ACCOUNT_SETTINGS": "Nastavení účtu",
"LABELS": "Štítky",
"TEAMS": "Týmy"
},
"CREATE_ACCOUNT": {
"NEW_ACCOUNT": "New Account",
"SELECTOR_SUBTITLE": "Create a new account",
"NEW_ACCOUNT": "Nový účet",
"SELECTOR_SUBTITLE": "Vytvořit nový účet",
"API": {
"SUCCESS_MESSAGE": "Account created successfully",
"EXIST_MESSAGE": "Account already exists",
"SUCCESS_MESSAGE": "Účet byl úspěšně vytvořen",
"EXIST_MESSAGE": "Účet již existuje",
"ERROR_MESSAGE": "Nelze se připojit k Woot serveru, opakujte akci později"
},
"FORM": {

View file

@ -0,0 +1,124 @@
{
"TEAMS_SETTINGS": {
"NEW_TEAM": "Create new team",
"HEADER": "Týmy",
"SIDEBAR_TXT": "<p><b>Teams</b></p> <p>Teams let you organize your agents into groups based on their responsibilities. <br /> A user can be part of multiple teams. You can assign conversations to a team when you are working collaboratively. </p>",
"LIST": {
"404": "There are no teams created on this account.",
"EDIT_TEAM": "Edit team"
},
"CREATE_FLOW": {
"CREATE": {
"TITLE": "Create a new team",
"DESC": "Add a title and description to your new team."
},
"AGENTS": {
"BUTTON_TEXT": "Add agents to team",
"TITLE": "Add agents to team - %{teamName}",
"DESC": "Add Agents to your newly created team. This lets you collaborate as a team on conversations, get notified on new events in the same conversation."
},
"WIZARD": [
{
"title": "Create",
"route": "settings_teams_new",
"body": "Create a new team of agents."
},
{
"title": "Přidat agenty",
"route": "settings_teams_add_agents",
"body": "Add agents to the team."
},
{
"title": "Finish",
"route": "settings_teams_finish",
"body": "Vše je nastaveno!"
}
]
},
"EDIT_FLOW": {
"CREATE": {
"TITLE": "Edit your team details",
"DESC": "Edit title and description to your team.",
"BUTTON_TEXT": "Update team"
},
"AGENTS": {
"BUTTON_TEXT": "Update agents in team",
"TITLE": "Add agents to team - %{teamName}",
"DESC": "Add Agents to your newly created team. All the added agents will be notified when a conversation is assigned to this team."
},
"WIZARD": [
{
"title": "Team details",
"route": "settings_teams_edit",
"body": "Change name, description and other details."
},
{
"title": "Edit Agents",
"route": "settings_teams_edit_members",
"body": "Edit agents in your team."
},
{
"title": "Finish",
"route": "settings_teams_edit_finish",
"body": "Vše je nastaveno!"
}
]
},
"TEAM_FORM": {
"ERROR_MESSAGE": "Couldn't save the team details. Try again."
},
"AGENTS": {
"AGENT": "AGENT",
"EMAIL": "E-MAIL",
"BUTTON_TEXT": "Přidat agenty",
"ADD_AGENTS": "Adding Agents to your Team...",
"SELECT": "select",
"SELECT_ALL": "select all agents",
"SELECTED_COUNT": "%{selected} out of %{total} agents selected."
},
"ADD": {
"TITLE": "Add agents to team - %{teamName}",
"DESC": "Add Agents to your newly created team. This lets you collaborate as a team on conversations, get notified on new events in the same conversation.",
"SELECT": "select",
"SELECT_ALL": "select all agents",
"SELECTED_COUNT": "%{selected} out of %{total} agents selected.",
"BUTTON_TEXT": "Přidat agenty",
"AGENT_VALIDATION_ERROR": "Select atleaset one agent."
},
"FINISH": {
"TITLE": "Your team is ready!",
"MESSAGE": "You can now collaborate as a team on conversations. Happy supporting ",
"BUTTON_TEXT": "Finish"
},
"DELETE": {
"BUTTON_TEXT": "Vymazat",
"API": {
"SUCCESS_MESSAGE": "Team deleted successfully.",
"ERROR_MESSAGE": "Couldn't delete the team. Try again."
},
"CONFIRM": {
"TITLE": "Are you sure want to delete - %{teamName}",
"MESSAGE": "Deleting the team will remove the team assignment from the conversations assigned to this team.",
"YES": "Vymazat ",
"NO": "Zrušit"
}
},
"SETTINGS": "Nastavení",
"FORM": {
"UPDATE": "Update team",
"CREATE": "Create team",
"NAME": {
"LABEL": "Team name",
"PLACEHOLDER": "Example: Sales, Customer Support"
},
"DESCRIPTION": {
"LABEL": "Team Description",
"PLACEHOLDER": "Short description about this team."
},
"AUTO_ASSIGN": {
"LABEL": "Allow auto assign for this team."
},
"SUBMIT_CREATE": "Create team"
}
}
}

View file

@ -43,7 +43,14 @@
"EDIT_CONTACT": {
"BUTTON_LABEL": "Rediger Kontakt",
"TITLE": "Rediger Kontakt",
"DESC": "Rediger kontaktoplysninger",
"DESC": "Rediger kontaktoplysninger"
},
"CREATE_CONTACT": {
"BUTTON_LABEL": "New Contact",
"TITLE": "Create new contact",
"DESC": "Add basic information details about the contact."
},
"CONTACT_FORM": {
"FORM": {
"SUBMIT": "Send",
"CANCEL": "Annuller",
@ -93,9 +100,9 @@
}
}
},
"SUCCESS_MESSAGE": "Kontakt opdateret",
"SUCCESS_MESSAGE": "Contact saved successfully",
"CONTACT_ALREADY_EXIST": "Denne e-mail adresse er i brug for en anden kontakt.",
"ERROR_MESSAGE": "Der opstod en fejl under opdatering af kontakten. Prøv igen"
"ERROR_MESSAGE": "Der opstod en fejl. Prøv venligst igen"
},
"CONTACTS_PAGE": {
"HEADER": "Kontakter",
@ -104,12 +111,18 @@
"LIST": {
"LOADING_MESSAGE": "Indlæser kontakter...",
"404": "Ingen kontakter matcher din søgning 🔍",
"TABLE_HEADER": [
"Navn",
"Telefonnummer",
"Samtaler",
"Sidst Kontaktet"
]
"TABLE_HEADER": {
"NAME": "Navn",
"PHONE_NUMBER": "Telefonnummer",
"CONVERSATIONS": "Samtaler",
"LAST_ACTIVITY": "Last Activity",
"COUNTRY": "Country",
"CITY": "City",
"SOCIAL_PROFILES": "Social Profiles",
"COMPANY": "Virksomhed",
"EMAIL_ADDRESS": "E-Mail Adresse"
},
"VIEW_DETAILS": "View details"
}
}
}

View file

@ -11,7 +11,7 @@
"TITLE": "Søg efter beskeder",
"LOADING_MESSAGE": "Behandler data...",
"PLACEHOLDER": "Skriv tekst for at søge i beskeder",
"NO_MATCHING_RESULTS": "Der er ingen meddelelser, der matcher søgeparametrene."
"NO_MATCHING_RESULTS": "No results found."
},
"UNREAD_MESSAGES": "Unread Messages",
"UNREAD_MESSAGE": "Unread Message",
@ -51,6 +51,7 @@
"VISIBLE_TO_AGENTS": "Privat Note: Kun synlig for dig og dit team",
"CHANGE_STATUS": "Samtalestatus ændret",
"CHANGE_AGENT": "Samtaleansvarlig ændret",
"CHANGE_TEAM": "Conversation team changed",
"SENT_BY": "Sent by:",
"ASSIGNMENT": {
"SELECT_AGENT": "Select Agent",
@ -74,5 +75,37 @@
"ERROR": "Indtast venligst en gyldig e-mailadresse"
}
}
},
"ONBOARDING": {
"TITLE": "Hey 👋, Welcome to %{installationName}!",
"DESCRIPTION": "Thanks for signing up. We want you to get the most out of %{installationName}. Here are a few things you can do in %{installationName} to make the experience delightful.",
"READ_LATEST_UPDATES": "Read our latest updates",
"ALL_CONVERSATION": {
"TITLE": "All your conversations in one place",
"DESCRIPTION": "View all the conversations from your customers in one single dashboard. You can filter the conversations by the incoming channel, label and status."
},
"TEAM_MEMBERS": {
"TITLE": "Invite your team members",
"DESCRIPTION": "Since you are getting ready to talk to your customer, bring in your teammates to assist you. You can invite your teammates by adding their email address to the agent list.",
"NEW_LINK": "Click here to invite a team member"
},
"INBOXES": {
"TITLE": "Connect Inboxes",
"DESCRIPTION": "Connect various channels through which your customers would be talking to you. It can be a website live-chat, your Facebook or Twitter page or even your WhatsApp number.",
"NEW_LINK": "Click here to create an inbox"
},
"LABELS": {
"TITLE": "Organize conversations with labels",
"DESCRIPTION": "Labels provide an easier way to categorize your conversation. Create some labels like #support-enquiry, #billing-question etc., so that you can use them in a conversation later.",
"NEW_LINK": "Click here to create tags"
}
},
"CONVERSATION_SIDEBAR": {
"DETAILS_TITLE": "Conversations Details",
"ASSIGNEE_LABEL": "Assigned Agent",
"TEAM_LABEL": "Assigned Team",
"SELECT": {
"PLACEHOLDER": "None"
}
}
}

View file

@ -38,7 +38,8 @@
"PICK_A_VALUE": "Vælg en værdi"
},
"TWITTER": {
"HELP": "For at tilføje din Twitter-profil som en kanal, skal du godkende din Twitter-profil ved at klikke på 'Log ind med Twitter' "
"HELP": "For at tilføje din Twitter-profil som en kanal, skal du godkende din Twitter-profil ved at klikke på 'Log ind med Twitter' ",
"ERROR_MESSAGE": "There was an error connecting to Twitter, please try again"
},
"WEBSITE_CHANNEL": {
"TITLE": "Hjemmesidekanal",
@ -224,7 +225,9 @@
"TABS": {
"SETTINGS": "Indstillinger",
"COLLABORATORS": "Samarbejdspartnere",
"CONFIGURATION": "Konfiguration"
"CONFIGURATION": "Konfiguration",
"PRE_CHAT_FORM": "Pre Chat Form",
"BUSINESS_HOURS": "Business Hours"
},
"SETTINGS": "Indstillinger",
"FEATURES": {
@ -250,6 +253,41 @@
"SUBTITLE": "Din Facebook-forbindelse er udløbet, tilslut venligst din Facebook-side igen for at fortsætte tjenesterne",
"MESSAGE_SUCCESS": "Genoprettelse lykkedes",
"MESSAGE_ERROR": "Der opstod en fejl, prøv igen"
},
"PRE_CHAT_FORM": {
"DESCRIPTION": "Pre chat forms enable you to capture user information before they start conversation with you.",
"ENABLE": {
"LABEL": "Enable pre chat form",
"OPTIONS": {
"ENABLED": "Yes",
"DISABLED": "No"
}
},
"PRE_CHAT_MESSAGE": {
"LABEL": "Pre Chat Message",
"PLACEHOLDER": "This message would be visible to the users along with the form"
},
"REQUIRE_EMAIL": {
"LABEL": "Visitors should provide their name and email address before starting the chat"
}
},
"BUSINESS_HOURS": {
"TITLE": "Set your availability",
"SUBTITLE": "Set your availability on your livechat widget",
"WEEKLY_TITLE": "Set your weekly hours",
"TIMEZONE_LABEL": "Select timezone",
"UPDATE": "Update business hours settings",
"TOGGLE_AVAILABILITY": "Enable business availability for this inbox",
"UNAVAILABLE_MESSAGE_LABEL": "Unavailable message for vistors",
"UNAVAILABLE_MESSAGE_DEFAULT": "We are unavailable at the moment. Leave a message we will respond once we are back.",
"TOGGLE_HELP": "Enabling business availability will show the available hours on live chat widget even if all the agents are offline. Outside available hours vistors can be warned with a message and a pre-chat form.",
"DAY": {
"ENABLE": "Enable availability for this day",
"UNAVAILABLE": "Unavailable",
"HOURS": "hours",
"VALIDATION_ERROR": "Starting time should be before closing time.",
"CHOOSE": "Choose"
}
}
}
}

View file

@ -0,0 +1,124 @@
{
"TEAMS_SETTINGS": {
"NEW_TEAM": "Create new team",
"HEADER": "Teams",
"SIDEBAR_TXT": "<p><b>Teams</b></p> <p>Teams let you organize your agents into groups based on their responsibilities. <br /> A user can be part of multiple teams. You can assign conversations to a team when you are working collaboratively. </p>",
"LIST": {
"404": "There are no teams created on this account.",
"EDIT_TEAM": "Edit team"
},
"CREATE_FLOW": {
"CREATE": {
"TITLE": "Create a new team",
"DESC": "Add a title and description to your new team."
},
"AGENTS": {
"BUTTON_TEXT": "Add agents to team",
"TITLE": "Add agents to team - %{teamName}",
"DESC": "Add Agents to your newly created team. This lets you collaborate as a team on conversations, get notified on new events in the same conversation."
},
"WIZARD": [
{
"title": "Opret",
"route": "settings_teams_new",
"body": "Create a new team of agents."
},
{
"title": "Tilføj Agenter",
"route": "settings_teams_add_agents",
"body": "Add agents to the team."
},
{
"title": "Finish",
"route": "settings_teams_finish",
"body": "Så er alt klart!"
}
]
},
"EDIT_FLOW": {
"CREATE": {
"TITLE": "Edit your team details",
"DESC": "Edit title and description to your team.",
"BUTTON_TEXT": "Update team"
},
"AGENTS": {
"BUTTON_TEXT": "Update agents in team",
"TITLE": "Add agents to team - %{teamName}",
"DESC": "Add Agents to your newly created team. All the added agents will be notified when a conversation is assigned to this team."
},
"WIZARD": [
{
"title": "Team details",
"route": "settings_teams_edit",
"body": "Change name, description and other details."
},
{
"title": "Edit Agents",
"route": "settings_teams_edit_members",
"body": "Edit agents in your team."
},
{
"title": "Finish",
"route": "settings_teams_edit_finish",
"body": "Så er alt klart!"
}
]
},
"TEAM_FORM": {
"ERROR_MESSAGE": "Couldn't save the team details. Try again."
},
"AGENTS": {
"AGENT": "AGENT",
"EMAIL": "E-MAIL",
"BUTTON_TEXT": "Tilføj agenter",
"ADD_AGENTS": "Adding Agents to your Team...",
"SELECT": "select",
"SELECT_ALL": "select all agents",
"SELECTED_COUNT": "%{selected} out of %{total} agents selected."
},
"ADD": {
"TITLE": "Add agents to team - %{teamName}",
"DESC": "Add Agents to your newly created team. This lets you collaborate as a team on conversations, get notified on new events in the same conversation.",
"SELECT": "select",
"SELECT_ALL": "select all agents",
"SELECTED_COUNT": "%{selected} out of %{total} agents selected.",
"BUTTON_TEXT": "Tilføj agenter",
"AGENT_VALIDATION_ERROR": "Select atleaset one agent."
},
"FINISH": {
"TITLE": "Your team is ready!",
"MESSAGE": "You can now collaborate as a team on conversations. Happy supporting ",
"BUTTON_TEXT": "Finish"
},
"DELETE": {
"BUTTON_TEXT": "Slet",
"API": {
"SUCCESS_MESSAGE": "Team deleted successfully.",
"ERROR_MESSAGE": "Couldn't delete the team. Try again."
},
"CONFIRM": {
"TITLE": "Are you sure want to delete - %{teamName}",
"MESSAGE": "Deleting the team will remove the team assignment from the conversations assigned to this team.",
"YES": "Slet ",
"NO": "Annuller"
}
},
"SETTINGS": "Indstillinger",
"FORM": {
"UPDATE": "Update team",
"CREATE": "Create team",
"NAME": {
"LABEL": "Team name",
"PLACEHOLDER": "Example: Sales, Customer Support"
},
"DESCRIPTION": {
"LABEL": "Team Description",
"PLACEHOLDER": "Short description about this team."
},
"AUTO_ASSIGN": {
"LABEL": "Allow auto assign for this team."
},
"SUBMIT_CREATE": "Create team"
}
}
}

View file

@ -48,7 +48,7 @@
},
{
"TEXT": "Bot",
"VALUE": "bot"
"VALUE": "Bot"
}
],
"ATTACHMENTS": {

View file

@ -43,7 +43,14 @@
"EDIT_CONTACT": {
"BUTTON_LABEL": "Kontakt bearbeiten",
"TITLE": "Kontakt bearbeiten",
"DESC": "Kontaktdetails bearbeiten",
"DESC": "Kontaktdetails bearbeiten"
},
"CREATE_CONTACT": {
"BUTTON_LABEL": "New Contact",
"TITLE": "Create new contact",
"DESC": "Add basic information details about the contact."
},
"CONTACT_FORM": {
"FORM": {
"SUBMIT": "Einreichen",
"CANCEL": "Stornieren",
@ -93,9 +100,9 @@
}
}
},
"SUCCESS_MESSAGE": "Kontakt erfolgreich aktualisiert",
"SUCCESS_MESSAGE": "Contact saved successfully",
"CONTACT_ALREADY_EXIST": "Diese E-Mail-Adresse wird bereits für einen anderen Kontakt verwendet.",
"ERROR_MESSAGE": "Beim Aktualisieren des Kontakts ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut"
"ERROR_MESSAGE": "Es ist ein Fehler aufgetreten, bitte versuche es erneut"
},
"CONTACTS_PAGE": {
"HEADER": "Kontakte",
@ -104,12 +111,18 @@
"LIST": {
"LOADING_MESSAGE": "Kontakte werden geladen...",
"404": "Keine Kontakte entsprechend Deiner Suche gefunden 🔍",
"TABLE_HEADER": [
"Name",
"Telefonnummer",
"Gespräche",
"Letzter Kontakt"
]
"TABLE_HEADER": {
"NAME": "Name",
"PHONE_NUMBER": "Telefonnummer",
"CONVERSATIONS": "Gespräche",
"LAST_ACTIVITY": "Last Activity",
"COUNTRY": "Country",
"CITY": "City",
"SOCIAL_PROFILES": "Social Profiles",
"COMPANY": "Firma",
"EMAIL_ADDRESS": "E-Mail-Addresse"
},
"VIEW_DETAILS": "View details"
}
}
}

View file

@ -11,7 +11,7 @@
"TITLE": "Nachrichten durchsuchen",
"LOADING_MESSAGE": "Daten werden geladen...",
"PLACEHOLDER": "Geben Sie einen Text ein, um danach zu suchen",
"NO_MATCHING_RESULTS": "Keine passenden Nachrichten gefunden."
"NO_MATCHING_RESULTS": "No results found."
},
"UNREAD_MESSAGES": "Ungelesene Nachrichten",
"UNREAD_MESSAGE": "Ungelesene Nachricht",
@ -51,6 +51,7 @@
"VISIBLE_TO_AGENTS": "Privater Hinweis: Nur für Sie und Ihr Team sichtbar",
"CHANGE_STATUS": "Gesprächsstatus geändert",
"CHANGE_AGENT": "Konversationsempfänger geändert",
"CHANGE_TEAM": "Conversation team changed",
"SENT_BY": "Gesendet von:",
"ASSIGNMENT": {
"SELECT_AGENT": "Agent auswählen",
@ -74,5 +75,37 @@
"ERROR": "Bitte geben Sie eine gültige E-Mail-Adresse ein"
}
}
},
"ONBOARDING": {
"TITLE": "Hey 👋, Welcome to %{installationName}!",
"DESCRIPTION": "Thanks for signing up. We want you to get the most out of %{installationName}. Here are a few things you can do in %{installationName} to make the experience delightful.",
"READ_LATEST_UPDATES": "Read our latest updates",
"ALL_CONVERSATION": {
"TITLE": "All your conversations in one place",
"DESCRIPTION": "View all the conversations from your customers in one single dashboard. You can filter the conversations by the incoming channel, label and status."
},
"TEAM_MEMBERS": {
"TITLE": "Invite your team members",
"DESCRIPTION": "Since you are getting ready to talk to your customer, bring in your teammates to assist you. You can invite your teammates by adding their email address to the agent list.",
"NEW_LINK": "Click here to invite a team member"
},
"INBOXES": {
"TITLE": "Connect Inboxes",
"DESCRIPTION": "Connect various channels through which your customers would be talking to you. It can be a website live-chat, your Facebook or Twitter page or even your WhatsApp number.",
"NEW_LINK": "Click here to create an inbox"
},
"LABELS": {
"TITLE": "Organize conversations with labels",
"DESCRIPTION": "Labels provide an easier way to categorize your conversation. Create some labels like #support-enquiry, #billing-question etc., so that you can use them in a conversation later.",
"NEW_LINK": "Click here to create tags"
}
},
"CONVERSATION_SIDEBAR": {
"DETAILS_TITLE": "Conversations Details",
"ASSIGNEE_LABEL": "Assigned Agent",
"TEAM_LABEL": "Assigned Team",
"SELECT": {
"PLACEHOLDER": "None"
}
}
}

View file

@ -38,7 +38,8 @@
"PICK_A_VALUE": "Wähle einen Wert"
},
"TWITTER": {
"HELP": "Um Ihr Twitter-Profil als Kanal hinzuzufügen, müssen Sie Ihr Twitter-Profil authentifizieren, indem Sie auf 'Mit Twitter anmelden' klicken."
"HELP": "Um Ihr Twitter-Profil als Kanal hinzuzufügen, müssen Sie Ihr Twitter-Profil authentifizieren, indem Sie auf 'Mit Twitter anmelden' klicken.",
"ERROR_MESSAGE": "There was an error connecting to Twitter, please try again"
},
"WEBSITE_CHANNEL": {
"TITLE": "Website-Kanal",
@ -224,7 +225,9 @@
"TABS": {
"SETTINGS": "die Einstellungen",
"COLLABORATORS": "Mitarbeitende",
"CONFIGURATION": "Konfiguration"
"CONFIGURATION": "Konfiguration",
"PRE_CHAT_FORM": "Pre Chat Form",
"BUSINESS_HOURS": "Business Hours"
},
"SETTINGS": "die Einstellungen",
"FEATURES": {
@ -250,6 +253,41 @@
"SUBTITLE": "Ihre Facebook-Verbindung ist abgelaufen, bitte verbinden Sie sich neu, um die Dienste fortzuführen",
"MESSAGE_SUCCESS": "Wiederverbindung erfolgreich",
"MESSAGE_ERROR": "Es ist ein Fehler aufgetreten, bitte versuche es erneut"
},
"PRE_CHAT_FORM": {
"DESCRIPTION": "Pre chat forms enable you to capture user information before they start conversation with you.",
"ENABLE": {
"LABEL": "Enable pre chat form",
"OPTIONS": {
"ENABLED": "Yes",
"DISABLED": "No"
}
},
"PRE_CHAT_MESSAGE": {
"LABEL": "Pre Chat Message",
"PLACEHOLDER": "This message would be visible to the users along with the form"
},
"REQUIRE_EMAIL": {
"LABEL": "Visitors should provide their name and email address before starting the chat"
}
},
"BUSINESS_HOURS": {
"TITLE": "Set your availability",
"SUBTITLE": "Set your availability on your livechat widget",
"WEEKLY_TITLE": "Set your weekly hours",
"TIMEZONE_LABEL": "Select timezone",
"UPDATE": "Update business hours settings",
"TOGGLE_AVAILABILITY": "Enable business availability for this inbox",
"UNAVAILABLE_MESSAGE_LABEL": "Unavailable message for vistors",
"UNAVAILABLE_MESSAGE_DEFAULT": "We are unavailable at the moment. Leave a message we will respond once we are back.",
"TOGGLE_HELP": "Enabling business availability will show the available hours on live chat widget even if all the agents are offline. Outside available hours vistors can be warned with a message and a pre-chat form.",
"DAY": {
"ENABLE": "Enable availability for this day",
"UNAVAILABLE": "Unavailable",
"HOURS": "hours",
"VALIDATION_ERROR": "Starting time should be before closing time.",
"CHOOSE": "Choose"
}
}
}
}

View file

@ -0,0 +1,124 @@
{
"TEAMS_SETTINGS": {
"NEW_TEAM": "Create new team",
"HEADER": "Teams",
"SIDEBAR_TXT": "<p><b>Teams</b></p> <p>Teams let you organize your agents into groups based on their responsibilities. <br /> A user can be part of multiple teams. You can assign conversations to a team when you are working collaboratively. </p>",
"LIST": {
"404": "There are no teams created on this account.",
"EDIT_TEAM": "Edit team"
},
"CREATE_FLOW": {
"CREATE": {
"TITLE": "Create a new team",
"DESC": "Add a title and description to your new team."
},
"AGENTS": {
"BUTTON_TEXT": "Add agents to team",
"TITLE": "Add agents to team - %{teamName}",
"DESC": "Add Agents to your newly created team. This lets you collaborate as a team on conversations, get notified on new events in the same conversation."
},
"WIZARD": [
{
"title": "Create",
"route": "settings_teams_new",
"body": "Create a new team of agents."
},
{
"title": "Agenten hinzufügen",
"route": "settings_teams_add_agents",
"body": "Add agents to the team."
},
{
"title": "Finish",
"route": "settings_teams_finish",
"body": "Sie sind bereit zu gehen!"
}
]
},
"EDIT_FLOW": {
"CREATE": {
"TITLE": "Edit your team details",
"DESC": "Edit title and description to your team.",
"BUTTON_TEXT": "Update team"
},
"AGENTS": {
"BUTTON_TEXT": "Update agents in team",
"TITLE": "Add agents to team - %{teamName}",
"DESC": "Add Agents to your newly created team. All the added agents will be notified when a conversation is assigned to this team."
},
"WIZARD": [
{
"title": "Team details",
"route": "settings_teams_edit",
"body": "Change name, description and other details."
},
{
"title": "Edit Agents",
"route": "settings_teams_edit_members",
"body": "Edit agents in your team."
},
{
"title": "Finish",
"route": "settings_teams_edit_finish",
"body": "Sie sind bereit zu gehen!"
}
]
},
"TEAM_FORM": {
"ERROR_MESSAGE": "Couldn't save the team details. Try again."
},
"AGENTS": {
"AGENT": "AGENT",
"EMAIL": "E-Mail",
"BUTTON_TEXT": "Agenten hinzufügen",
"ADD_AGENTS": "Adding Agents to your Team...",
"SELECT": "select",
"SELECT_ALL": "select all agents",
"SELECTED_COUNT": "%{selected} out of %{total} agents selected."
},
"ADD": {
"TITLE": "Add agents to team - %{teamName}",
"DESC": "Add Agents to your newly created team. This lets you collaborate as a team on conversations, get notified on new events in the same conversation.",
"SELECT": "select",
"SELECT_ALL": "select all agents",
"SELECTED_COUNT": "%{selected} out of %{total} agents selected.",
"BUTTON_TEXT": "Agenten hinzufügen",
"AGENT_VALIDATION_ERROR": "Select atleaset one agent."
},
"FINISH": {
"TITLE": "Your team is ready!",
"MESSAGE": "You can now collaborate as a team on conversations. Happy supporting ",
"BUTTON_TEXT": "Finish"
},
"DELETE": {
"BUTTON_TEXT": "Löschen",
"API": {
"SUCCESS_MESSAGE": "Team deleted successfully.",
"ERROR_MESSAGE": "Couldn't delete the team. Try again."
},
"CONFIRM": {
"TITLE": "Are you sure want to delete - %{teamName}",
"MESSAGE": "Deleting the team will remove the team assignment from the conversations assigned to this team.",
"YES": "Löschen ",
"NO": "Stornieren"
}
},
"SETTINGS": "die Einstellungen",
"FORM": {
"UPDATE": "Update team",
"CREATE": "Create team",
"NAME": {
"LABEL": "Team name",
"PLACEHOLDER": "Example: Sales, Customer Support"
},
"DESCRIPTION": {
"LABEL": "Team Description",
"PLACEHOLDER": "Short description about this team."
},
"AUTO_ASSIGN": {
"LABEL": "Allow auto assign for this team."
},
"SUBMIT_CREATE": "Create team"
}
}
}

View file

@ -43,7 +43,14 @@
"EDIT_CONTACT": {
"BUTTON_LABEL": "Επεξεργασία Επαφής",
"TITLE": "Επεξεργασία επαφής",
"DESC": "Επεξεργασία λεπτομερειών επαφής",
"DESC": "Επεξεργασία λεπτομερειών επαφής"
},
"CREATE_CONTACT": {
"BUTTON_LABEL": "Νέα Επαφή",
"TITLE": "Δημιουργία νέας επαφής",
"DESC": "Προσθήκη βασικών πληροφοριών για την επαφή."
},
"CONTACT_FORM": {
"FORM": {
"SUBMIT": "Καταχώρηση",
"CANCEL": "Άκυρο",
@ -93,9 +100,9 @@
}
}
},
"SUCCESS_MESSAGE": "Η επαφή ενημερώθηκε επιτυχώς",
"SUCCESS_MESSAGE": "Η επαφή αποθηκεύτηκε με επιτυχία",
"CONTACT_ALREADY_EXIST": "Η διεύθυνση email είναι σε χρήση από άλλη επαφή.",
"ERROR_MESSAGE": "Παρουσιάστηκε σφάλμα κατά την ενημέρωση της επαφής, παρακαλώ προσπαθήστε ξανά"
"ERROR_MESSAGE": "Υπήρξε ένα σφάλμα, παρακαλώ προσπαθήστε ξανά"
},
"CONTACTS_PAGE": {
"HEADER": "Επαφές",
@ -104,12 +111,18 @@
"LIST": {
"LOADING_MESSAGE": "Φόρτωση επαφών...",
"404": "Δεν υπάρχουν επαφές που να αντιστοιχούν με την αναζήτησή σας 🔍",
"TABLE_HEADER": [
"Όνομα",
"Αριθμός Τηλεφώνου",
"Συζητήσεις",
"Τελευταία επικοινωνία"
]
"TABLE_HEADER": {
"NAME": "Όνομα",
"PHONE_NUMBER": "Αριθμός Τηλεφώνου",
"CONVERSATIONS": "Συζητήσεις",
"LAST_ACTIVITY": "Τελευταία Δραστηριότητα",
"COUNTRY": "Χώρα",
"CITY": "Πόλη",
"SOCIAL_PROFILES": "Social Profiles",
"COMPANY": "Εταιρία",
"EMAIL_ADDRESS": "Διεύθυνση Email"
},
"VIEW_DETAILS": "Προβολή λεπτομεριών"
}
}
}

View file

@ -11,7 +11,7 @@
"TITLE": "Αναζήτηση μηνυμάτων",
"LOADING_MESSAGE": "Σύμπτυξη δεδομένων...",
"PLACEHOLDER": "Εισάγετε κείμενο για αναζήτηση μηνυμάτων",
"NO_MATCHING_RESULTS": "Δεν βρέθηκαν μηνύματα που να ταιριάζουν με τους όρους αναζήτησης."
"NO_MATCHING_RESULTS": "No results found."
},
"UNREAD_MESSAGES": "Μη αναγνωσμένα μηνύματα",
"UNREAD_MESSAGE": "Μη αναγνωσμένο μήνυμα",
@ -51,6 +51,7 @@
"VISIBLE_TO_AGENTS": "Ιδιωτική Σημείωση: Ορατή μόνο σε σας και την ομάδα σας",
"CHANGE_STATUS": "Η κατάσταση της συνομιλίας άλλαξε",
"CHANGE_AGENT": "Η εκπροσώπηση για την συνομιλία άλλαξε",
"CHANGE_TEAM": "Conversation team changed",
"SENT_BY": "Αποστολή από:",
"ASSIGNMENT": {
"SELECT_AGENT": "Επιλογή πράκτορα",
@ -74,5 +75,37 @@
"ERROR": "Παρακαλώ εισάγετε μια έγκυρη διεύθυνση email"
}
}
},
"ONBOARDING": {
"TITLE": "Γεια σας 👋, Καλώς ήρθατε στο %{installationName}!",
"DESCRIPTION": "Ευχαριστούμε για την εγγραφή. Θέλουμε να αξιοποιήσετε στο έπακρο το %{installationName}. Εδώ είναι μερικά πράγματα που μπορείτε να κάνετε στο %{installationName} για να έχετε μια ευχάριστη εμπειρία.",
"READ_LATEST_UPDATES": "Διαβάστε τις πρόσφατες ενημερώσεις μας",
"ALL_CONVERSATION": {
"TITLE": "Όλες οι συνομιλίες σας σε ένα μέρος",
"DESCRIPTION": "Δείτε όλες τις συνομιλίες από τους πελάτες σας σε ένα μόνο ταμπλό. Μπορείτε να φιλτράρετε τις συνομιλίες κατά εισερχόμενο κανάλι, ετικέτα και κατάσταση."
},
"TEAM_MEMBERS": {
"TITLE": "Προσκαλέστε τα μέλη της ομάδας σας",
"DESCRIPTION": "Δεδομένου ότι ετοιμάζεστε να μιλήσετε με τον πελάτη σας, φέρτε τους συνάδελφους σας για να σας βοηθήσουν. Μπορείτε να προσκαλέσετε τους συνάδελφους σας προσθέτοντας τη διεύθυνση email τους στη λίστα αντιπροσώπων.",
"NEW_LINK": "Κάντε κλικ εδώ για να καλέσετε ένα μέλος της ομάδας"
},
"INBOXES": {
"TITLE": "Σύνδεση Εισερχομένων",
"DESCRIPTION": "Συνδέστε διάφορα κανάλια μέσω των οποίων οι πελάτες σας θα μιλούν μαζί σας. Μπορεί να είναι μια ιστοσελίδα live-chat, το Facebook ή το Twitter σελίδα σας ή ακόμα και ο αριθμός σας WhatsApp.",
"NEW_LINK": "Κάντε κλικ εδώ για δημιουργία εισερχόμενων"
},
"LABELS": {
"TITLE": "Οργάνωση συνομιλιών με ετικέτες",
"DESCRIPTION": "Οι ετικέτες παρέχουν έναν ευκολότερο τρόπο για να κατηγοριοποιήσετε τη συνομιλία σας. Δημιουργήστε μερικές ετικέτες όπως το #support-quiry, #billing-question κλπ., έτσι ώστε να μπορείτε να τις χρησιμοποιήσετε σε μια συζήτηση αργότερα.",
"NEW_LINK": "Κάντε κλικ εδώ για δημιουργία ετικετών (tags)"
}
},
"CONVERSATION_SIDEBAR": {
"DETAILS_TITLE": "Conversations Details",
"ASSIGNEE_LABEL": "Assigned Agent",
"TEAM_LABEL": "Assigned Team",
"SELECT": {
"PLACEHOLDER": "None"
}
}
}

View file

@ -38,7 +38,8 @@
"PICK_A_VALUE": "Επιλέξτε τιμή"
},
"TWITTER": {
"HELP": "Για να προσθέσετε το Προφίλ Twitter ως κανάλι, πρέπει να επικυρώστε το Προφίλ σας στο Twiter κάνοντας click στο 'Είσοδος με το Twitter' "
"HELP": "Για να προσθέσετε το Προφίλ Twitter ως κανάλι, πρέπει να επικυρώστε το Προφίλ σας στο Twiter κάνοντας click στο 'Είσοδος με το Twitter' ",
"ERROR_MESSAGE": "Παρουσιάστηκε σφάλμα σύνδεσης στο Twitter, παρακαλώ προσπαθήστε ξανά"
},
"WEBSITE_CHANNEL": {
"TITLE": "Κανάλι Ιστοσελίδας",
@ -224,7 +225,9 @@
"TABS": {
"SETTINGS": "Ρυθμίσεις",
"COLLABORATORS": "Συνεργάτες",
"CONFIGURATION": "Διαμόρφωση"
"CONFIGURATION": "Διαμόρφωση",
"PRE_CHAT_FORM": "Pre Chat Form",
"BUSINESS_HOURS": "Ώρες Εργασίας"
},
"SETTINGS": "Ρυθμίσεις",
"FEATURES": {
@ -250,6 +253,41 @@
"SUBTITLE": "Η σύνδεση Facebook έχει λήξει, παρακαλώ ξανασυνδεθείτε στο Facebook για να συνεχίσετε",
"MESSAGE_SUCCESS": "Επιτυχής επανασύνδεση",
"MESSAGE_ERROR": "Υπήρξε ένα σφάλμα, παρακαλώ προσπαθήστε ξανά"
},
"PRE_CHAT_FORM": {
"DESCRIPTION": "Pre chat forms enable you to capture user information before they start conversation with you.",
"ENABLE": {
"LABEL": "Enable pre chat form",
"OPTIONS": {
"ENABLED": "Yes",
"DISABLED": "No"
}
},
"PRE_CHAT_MESSAGE": {
"LABEL": "Pre Chat Message",
"PLACEHOLDER": "This message would be visible to the users along with the form"
},
"REQUIRE_EMAIL": {
"LABEL": "Visitors should provide their name and email address before starting the chat"
}
},
"BUSINESS_HOURS": {
"TITLE": "Ορίστε τη διαθεσιμότητά σας",
"SUBTITLE": "Ορίστε τη διαθεσιμότητα στο livechat widget σας",
"WEEKLY_TITLE": "Ορίστε τις εβδομαδιαίες ώρες σας",
"TIMEZONE_LABEL": "Επιλέξτε ζώνη ώρας",
"UPDATE": "Ενημέρωση ρυθμίσεων ωραρίου",
"TOGGLE_AVAILABILITY": "Ενεργοποίηση διαθεσιμότητας ωραρίου για αυτό το κιβώτιο εισερχομένων",
"UNAVAILABLE_MESSAGE_LABEL": "Μήνυμα μη διαθεσιμότητας για τους επισκέπτες",
"UNAVAILABLE_MESSAGE_DEFAULT": "Δεν είμαστε διαθέσιμοι αυτή τη στιγμή. Αφήστε ένα μήνυμα που θα απαντήσουμε όταν επιστρέψουμε.",
"TOGGLE_HELP": "Η ενεργοποίηση της διαθεσιμότητας ωραρίου θα δείξει τις διαθέσιμες ώρες στο widget συνομιλίας ακόμα και αν όλοι οι πράκτορες είναι εκτός σύνδεσης. Εκτός των διαθέσιμων ωρών οι επισκέπτες μπορούν να προειδοποιηθούν με ένα μήνυμα και μια φόρμα προ-συνομιλίας.",
"DAY": {
"ENABLE": "Ενεργοποιήσετε τη διαθεσιμότητα για αυτήν την ημέρα",
"UNAVAILABLE": "Μη διαθέσιμος",
"HOURS": "ώρες",
"VALIDATION_ERROR": "Ο χρόνος έναρξης πρέπει να είναι πριν το χρόνο λήξης.",
"CHOOSE": "Επιλέξτε"
}
}
}
}

View file

@ -125,7 +125,7 @@
"INTEGRATIONS": "Ενοποιήσεις",
"ACCOUNT_SETTINGS": "Ρυθμίσεις Λογαριασμού",
"LABELS": "Ετικέτες",
"TEAMS": "Teams"
"TEAMS": "Ομάδες"
},
"CREATE_ACCOUNT": {
"NEW_ACCOUNT": "Νέος Λογαριασμός",

View file

@ -0,0 +1,124 @@
{
"TEAMS_SETTINGS": {
"NEW_TEAM": "Create new team",
"HEADER": "Ομάδες",
"SIDEBAR_TXT": "<p><b>Teams</b></p> <p>Teams let you organize your agents into groups based on their responsibilities. <br /> A user can be part of multiple teams. You can assign conversations to a team when you are working collaboratively. </p>",
"LIST": {
"404": "There are no teams created on this account.",
"EDIT_TEAM": "Edit team"
},
"CREATE_FLOW": {
"CREATE": {
"TITLE": "Create a new team",
"DESC": "Add a title and description to your new team."
},
"AGENTS": {
"BUTTON_TEXT": "Add agents to team",
"TITLE": "Add agents to team - %{teamName}",
"DESC": "Add Agents to your newly created team. This lets you collaborate as a team on conversations, get notified on new events in the same conversation."
},
"WIZARD": [
{
"title": "Δημιουργία",
"route": "settings_teams_new",
"body": "Create a new team of agents."
},
{
"title": "Προσθήκη Πρακτόρων",
"route": "settings_teams_add_agents",
"body": "Add agents to the team."
},
{
"title": "Finish",
"route": "settings_teams_finish",
"body": "Είσαστε έτοιμοι να ξεκινήσετε!"
}
]
},
"EDIT_FLOW": {
"CREATE": {
"TITLE": "Edit your team details",
"DESC": "Edit title and description to your team.",
"BUTTON_TEXT": "Update team"
},
"AGENTS": {
"BUTTON_TEXT": "Update agents in team",
"TITLE": "Add agents to team - %{teamName}",
"DESC": "Add Agents to your newly created team. All the added agents will be notified when a conversation is assigned to this team."
},
"WIZARD": [
{
"title": "Team details",
"route": "settings_teams_edit",
"body": "Change name, description and other details."
},
{
"title": "Edit Agents",
"route": "settings_teams_edit_members",
"body": "Edit agents in your team."
},
{
"title": "Finish",
"route": "settings_teams_edit_finish",
"body": "Είσαστε έτοιμοι να ξεκινήσετε!"
}
]
},
"TEAM_FORM": {
"ERROR_MESSAGE": "Couldn't save the team details. Try again."
},
"AGENTS": {
"AGENT": "AGENT",
"EMAIL": "EMAIL",
"BUTTON_TEXT": "Προσθήκη πρακτόρων",
"ADD_AGENTS": "Adding Agents to your Team...",
"SELECT": "select",
"SELECT_ALL": "select all agents",
"SELECTED_COUNT": "%{selected} out of %{total} agents selected."
},
"ADD": {
"TITLE": "Add agents to team - %{teamName}",
"DESC": "Add Agents to your newly created team. This lets you collaborate as a team on conversations, get notified on new events in the same conversation.",
"SELECT": "select",
"SELECT_ALL": "select all agents",
"SELECTED_COUNT": "%{selected} out of %{total} agents selected.",
"BUTTON_TEXT": "Προσθήκη πρακτόρων",
"AGENT_VALIDATION_ERROR": "Select atleaset one agent."
},
"FINISH": {
"TITLE": "Your team is ready!",
"MESSAGE": "You can now collaborate as a team on conversations. Happy supporting ",
"BUTTON_TEXT": "Finish"
},
"DELETE": {
"BUTTON_TEXT": "Διαγραφή",
"API": {
"SUCCESS_MESSAGE": "Team deleted successfully.",
"ERROR_MESSAGE": "Couldn't delete the team. Try again."
},
"CONFIRM": {
"TITLE": "Are you sure want to delete - %{teamName}",
"MESSAGE": "Deleting the team will remove the team assignment from the conversations assigned to this team.",
"YES": "Διαγραφή ",
"NO": "Άκυρο"
}
},
"SETTINGS": "Ρυθμίσεις",
"FORM": {
"UPDATE": "Update team",
"CREATE": "Create team",
"NAME": {
"LABEL": "Team name",
"PLACEHOLDER": "Example: Sales, Customer Support"
},
"DESCRIPTION": {
"LABEL": "Team Description",
"PLACEHOLDER": "Short description about this team."
},
"AUTO_ASSIGN": {
"LABEL": "Allow auto assign for this team."
},
"SUBMIT_CREATE": "Create team"
}
}
}

View file

@ -11,7 +11,7 @@
"TITLE": "Search messages",
"LOADING_MESSAGE": "Crunching data...",
"PLACEHOLDER": "Type any text to search messages",
"NO_MATCHING_RESULTS": "There are no messages matching the search parameters."
"NO_MATCHING_RESULTS": "No results found."
},
"UNREAD_MESSAGES": "Unread Messages",
"UNREAD_MESSAGE": "Unread Message",
@ -51,6 +51,7 @@
"VISIBLE_TO_AGENTS": "Private Note: Only visible to you and your team",
"CHANGE_STATUS": "Conversation status changed",
"CHANGE_AGENT": "Conversation Assignee changed",
"CHANGE_TEAM": "Conversation team changed",
"SENT_BY": "Sent by:",
"ASSIGNMENT": {
"SELECT_AGENT": "Select Agent",
@ -98,5 +99,14 @@
"DESCRIPTION": "Labels provide an easier way to categorize your conversation. Create some labels like #support-enquiry, #billing-question etc., so that you can use them in a conversation later.",
"NEW_LINK": "Click here to create tags"
}
},
"CONVERSATION_SIDEBAR": {
"DETAILS_TITLE": "Conversations Details",
"ASSIGNEE_LABEL": "Assigned Agent",
"TEAM_LABEL": "Assigned Team",
"SELECT": {
"PLACEHOLDER": "None"
}
}
}

View file

@ -274,6 +274,12 @@
"TITLE": "Set your availability",
"SUBTITLE": "Set your availability on your livechat widget",
"WEEKLY_TITLE": "Set your weekly hours",
"TIMEZONE_LABEL": "Select timezone",
"UPDATE": "Update business hours settings",
"TOGGLE_AVAILABILITY": "Enable business availability for this inbox",
"UNAVAILABLE_MESSAGE_LABEL": "Unavailable message for vistors",
"UNAVAILABLE_MESSAGE_DEFAULT": "We are unavailable at the moment. Leave a message we will respond once we are back.",
"TOGGLE_HELP": "Enabling business availability will show the available hours on live chat widget even if all the agents are offline. Outside available hours vistors can be warned with a message and a pre-chat form.",
"DAY": {
"ENABLE": "Enable availability for this day",
"UNAVAILABLE": "Unavailable",

View file

@ -13,6 +13,7 @@ import { default as _settings } from './settings.json';
import { default as _signup } from './signup.json';
import { default as _integrations } from './integrations.json';
import { default as _generalSettings } from './generalSettings.json';
import { default as _teamsSettings } from './teamsSettings.json';
export default {
..._agentMgmt,
@ -30,4 +31,5 @@ export default {
..._signup,
..._integrations,
..._generalSettings,
..._teamsSettings,
};

View file

@ -0,0 +1,123 @@
{
"TEAMS_SETTINGS": {
"NEW_TEAM": "Create new team",
"HEADER": "Teams",
"SIDEBAR_TXT": "<p><b>Teams</b></p> <p>Teams let you organize your agents into groups based on their responsibilities. <br /> A user can be part of multiple teams. You can assign conversations to a team when you are working collaboratively. </p>",
"LIST": {
"404": "There are no teams created on this account.",
"EDIT_TEAM": "Edit team"
},
"CREATE_FLOW": {
"CREATE": {
"TITLE": "Create a new team",
"DESC": "Add a title and description to your new team."
},
"AGENTS": {
"BUTTON_TEXT": "Add agents to team",
"TITLE": "Add agents to team - %{teamName}",
"DESC": "Add Agents to your newly created team. This lets you collaborate as a team on conversations, get notified on new events in the same conversation."
},
"WIZARD": [{
"title": "Create",
"route": "settings_teams_new",
"body": "Create a new team of agents."
},
{
"title": "Add Agents",
"route": "settings_teams_add_agents",
"body": "Add agents to the team."
},
{
"title": "Finish",
"route": "settings_teams_finish",
"body": "You are all set to go!"
}
]
},
"EDIT_FLOW": {
"CREATE": {
"TITLE": "Edit your team details",
"DESC": "Edit title and description to your team.",
"BUTTON_TEXT": "Update team"
},
"AGENTS": {
"BUTTON_TEXT": "Update agents in team",
"TITLE": "Add agents to team - %{teamName}",
"DESC": "Add Agents to your newly created team. All the added agents will be notified when a conversation is assigned to this team."
},
"WIZARD": [{
"title": "Team details",
"route": "settings_teams_edit",
"body": "Change name, description and other details."
},
{
"title": "Edit Agents",
"route": "settings_teams_edit_members",
"body": "Edit agents in your team."
},
{
"title": "Finish",
"route": "settings_teams_edit_finish",
"body": "You are all set to go!"
}
]
},
"TEAM_FORM": {
"ERROR_MESSAGE": "Couldn't save the team details. Try again."
},
"AGENTS": {
"AGENT": "AGENT",
"EMAIL": "EMAIL",
"BUTTON_TEXT": "Add agents",
"ADD_AGENTS": "Adding Agents to your Team...",
"SELECT": "select",
"SELECT_ALL": "select all agents",
"SELECTED_COUNT": "%{selected} out of %{total} agents selected."
},
"ADD": {
"TITLE": "Add agents to team - %{teamName}",
"DESC": "Add Agents to your newly created team. This lets you collaborate as a team on conversations, get notified on new events in the same conversation.",
"SELECT": "select",
"SELECT_ALL": "select all agents",
"SELECTED_COUNT": "%{selected} out of %{total} agents selected.",
"BUTTON_TEXT": "Add agents",
"AGENT_VALIDATION_ERROR": "Select atleaset one agent."
},
"FINISH": {
"TITLE": "Your team is ready!",
"MESSAGE": "You can now collaborate as a team on conversations. Happy supporting ",
"BUTTON_TEXT": "Finish"
},
"DELETE": {
"BUTTON_TEXT": "Delete",
"API": {
"SUCCESS_MESSAGE": "Team deleted successfully.",
"ERROR_MESSAGE": "Couldn't delete the team. Try again."
},
"CONFIRM": {
"TITLE": "Are you sure want to delete - %{teamName}",
"MESSAGE": "Deleting the team will remove the team assignment from the conversations assigned to this team.",
"YES": "Delete ",
"NO": "Cancel"
}
},
"SETTINGS": "Settings",
"FORM": {
"UPDATE": "Update team",
"CREATE": "Create team",
"NAME": {
"LABEL": "Team name",
"PLACEHOLDER": "Example: Sales, Customer Support"
},
"DESCRIPTION": {
"LABEL": "Team Description",
"PLACEHOLDER": "Short description about this team."
},
"AUTO_ASSIGN": {
"LABEL": "Allow auto assign for this team."
},
"SUBMIT_CREATE": "Create team"
}
}
}

View file

@ -30,8 +30,8 @@
},
"AGENT_TYPE": {
"LABEL": "Tipo de agente",
"PLACEHOLDER": "Por favor, seleccione un rol",
"ERROR": "Rol es requerido"
"PLACEHOLDER": "Seleccione un tipo",
"ERROR": "El tipo de agente es obligatorio"
},
"EMAIL": {
"LABEL": "Dirección de correo",
@ -68,7 +68,7 @@
"AGENT_TYPE": {
"LABEL": "Tipo de agente",
"PLACEHOLDER": "Por favor, seleccione un rol",
"ERROR": "Rol es requerido"
"ERROR": "El tipo de agente es obligatorio"
},
"EMAIL": {
"LABEL": "Dirección de email",

View file

@ -77,9 +77,9 @@
"CONTENT": "ha compartido una url"
}
},
"RECEIVED_VIA_EMAIL": "Recibido por email",
"VIEW_TWEET_IN_TWITTER": "Ver tweet en Twitter",
"REPLY_TO_TWEET": "Responder a este tweet",
"NO_MESSAGES": "Sin Mensajes"
"RECEIVED_VIA_EMAIL": "Recibido por correo electrónico",
"VIEW_TWEET_IN_TWITTER": "Ver trino en Twitter",
"REPLY_TO_TWEET": "Responder a éste trino",
"NO_MESSAGES": "No hay mensajes"
}
}

View file

@ -43,7 +43,14 @@
"EDIT_CONTACT": {
"BUTTON_LABEL": "Editar Contacto",
"TITLE": "Editar Contacto",
"DESC": "Editar detalles del contacto",
"DESC": "Editar detalles del contacto"
},
"CREATE_CONTACT": {
"BUTTON_LABEL": "Nuevo contacto",
"TITLE": "Crear un contacto nuevo",
"DESC": "Añadir información básica sobre el contacto."
},
"CONTACT_FORM": {
"FORM": {
"SUBMIT": "Enviar",
"CANCEL": "Cancelar",
@ -93,9 +100,9 @@
}
}
},
"SUCCESS_MESSAGE": "El contacto se actualizó",
"SUCCESS_MESSAGE": "Contacto guardado correctamente",
"CONTACT_ALREADY_EXIST": "Ésta dirección de correo está siendo utilizada por otro contacto.",
"ERROR_MESSAGE": "Se presento un error actualizando el contacto. Por favor inténtelo nuevamente"
"ERROR_MESSAGE": "Hubo un error, por favor inténtelo de nuevo"
},
"CONTACTS_PAGE": {
"HEADER": "Contactos",
@ -103,13 +110,19 @@
"SEARCH_INPUT_PLACEHOLDER": "Buscar contactos",
"LIST": {
"LOADING_MESSAGE": "Cargando contactos...",
"404": "No hay contactos que coincidan con lo que búsca 🔍",
"TABLE_HEADER": [
"Nombre",
"Número telefónico",
"Conversaciones",
"Último Contacto"
]
"404": "No hay contactos que coincidan con tu búsqueda 🔍",
"TABLE_HEADER": {
"NAME": "Nombre",
"PHONE_NUMBER": "Número telefónico",
"CONVERSATIONS": "Conversaciones",
"LAST_ACTIVITY": "Última actividad",
"COUNTRY": "País",
"CITY": "Ciudad",
"SOCIAL_PROFILES": "Perfiles Sociales",
"COMPANY": "Empresa",
"EMAIL_ADDRESS": "Dirección de correo"
},
"VIEW_DETAILS": "Ver detalles"
}
}
}

View file

@ -11,11 +11,11 @@
"TITLE": "Buscar mensajes",
"LOADING_MESSAGE": "Cruzando datos...",
"PLACEHOLDER": "Escriba cualquier texto para buscar mensajes",
"NO_MATCHING_RESULTS": "No hay mensajes que coincidan con los parámetros de búsqueda."
"NO_MATCHING_RESULTS": "No results found."
},
"UNREAD_MESSAGES": "Mensajes sin leer",
"UNREAD_MESSAGES": "Mensajes no leídos",
"UNREAD_MESSAGE": "Mensaje sin leer",
"CLICK_HERE": "Haga clic aquí",
"CLICK_HERE": "Haz clic aquí",
"LOADING_INBOXES": "Cargando bandeja de entrada",
"LOADING_CONVERSATIONS": "Cargando conversaciones",
"CANNOT_REPLY": "No puede responder debido a",
@ -24,7 +24,7 @@
"REPLYING_TO": "Esta respondiendo a:",
"REMOVE_SELECTION": "Eliminar selección",
"DOWNLOAD": "Descargar",
"UPLOADING_ATTACHMENTS": "Subiendo adjuntos...",
"UPLOADING_ATTACHMENTS": "Subiendo archivos adjuntos...",
"NO_RESPONSE": "No hay respuesta",
"HEADER": {
"RESOLVE_ACTION": "Resolver",
@ -43,17 +43,18 @@
"SEND": "Enviar",
"CREATE": "Añadir nota",
"TWEET": "Tweet",
"TIP_FORMAT_ICON": "Mostrar Editor mejorado",
"TIP_EMOJI_ICON": "Mostrar selector de emojis",
"TIP_FORMAT_ICON": "Mostrar editor de textos",
"TIP_EMOJI_ICON": "Mostrar selector de emoji",
"TIP_ATTACH_ICON": "Adjuntar archivos",
"ENTER_TO_SEND": "Enter para enviar"
"ENTER_TO_SEND": "Ingresar para enviar"
},
"VISIBLE_TO_AGENTS": "Nota privada: solo visible para usted y su equipo",
"CHANGE_STATUS": "Estado de la conversación cambiado",
"CHANGE_AGENT": "Conversación cambiada de asignatario",
"CHANGE_TEAM": "Conversation team changed",
"SENT_BY": "Enviado por:",
"ASSIGNMENT": {
"SELECT_AGENT": "Selecione un agente",
"SELECT_AGENT": "Seleccionar agente",
"REMOVE": "Eliminar",
"ASSIGN": "Asignar"
}
@ -74,5 +75,37 @@
"ERROR": "Por favor, introduzca una dirección de correo válida"
}
}
},
"ONBOARDING": {
"TITLE": "Hola 👋, ¡Bienvenido a %{installationName}!",
"DESCRIPTION": "Gracias por registrarse. Queremos que saque el máximo provecho de %{installationName}. Aquí hay algunas cosas que puede hacer en %{installationName} para hacer que la experiencia sea agradable.",
"READ_LATEST_UPDATES": "Leer nuestras últimas actualizaciones",
"ALL_CONVERSATION": {
"TITLE": "Todas sus conversaciones en un solo lugar",
"DESCRIPTION": "Ver todas las conversaciones de sus clientes en un solo panel de control. Puede filtrar las conversaciones por el canal entrante, etiqueta y estado."
},
"TEAM_MEMBERS": {
"TITLE": "Invite a los miembros de su equipo",
"DESCRIPTION": "Ya que usted se está preparando para hablar con su cliente, traiga a sus compañeros para asistirle. Puedes invitar a sus compañeros de equipo añadiendo su dirección de correo electrónico a la lista de agentes.",
"NEW_LINK": "Haga clic aquí para invitar a un miembro del equipo"
},
"INBOXES": {
"TITLE": "Conectar bandejas de entrada",
"DESCRIPTION": "Conecte varios canales a través de los cuales sus clientes le hablarían. Puede ser un sitio web en vivo, su página de Facebook o Twitter o incluso su número de WhatsApp.",
"NEW_LINK": "Haga clic aquí para crear una bandeja de entrada"
},
"LABELS": {
"TITLE": "Organice las conversaciones con etiquetas",
"DESCRIPTION": "Las etiquetas proporcionan una forma fácil de clasificar su conversación. Cree algunas etiquetas como #pregunta-soporte, #pregunta-dacturación etc., para que pueda usarlas en una conversación más tarde.",
"NEW_LINK": "Haga clic aquí para crear etiquetas"
}
},
"CONVERSATION_SIDEBAR": {
"DETAILS_TITLE": "Conversations Details",
"ASSIGNEE_LABEL": "Assigned Agent",
"TEAM_LABEL": "Assigned Team",
"SELECT": {
"PLACEHOLDER": "None"
}
}
}

View file

@ -24,7 +24,7 @@
"ERROR": ""
},
"DOMAIN": {
"LABEL": "Dominio de email entrante",
"LABEL": "Dominio",
"PLACEHOLDER": "El dominio donde recibirá los emails",
"ERROR": ""
},
@ -43,32 +43,33 @@
"CUSTOM_EMAIL_DOMAIN_ENABLED": "Ahora puede recibir emails en su dominio personalizado."
}
},
"UPDATE_CHATWOOT": "Una actualización %{latestChatwootVersion} para Chatwoot está disponoble. Por favor actualizar."
"UPDATE_CHATWOOT": "Hay una actualización %{latestChatwootVersion} para Chatwoot disponible. Por favor, actualiza tu instancia."
},
"FORMS": {
"MULTISELECT": {
"ENTER_TO_SELECT": "Presione enter para seleccionar",
"ENTER_TO_REMOVE": "Presione enter para quitar",
"ENTER_TO_SELECT": "Pulse Enter para seleccionar",
"ENTER_TO_REMOVE": "Presione Enter para eliminar",
"SELECT_ONE": "Seleccione uno"
}
},
"NOTIFICATIONS_PAGE": {
"HEADER": "Notificaciones",
"MARK_ALL_DONE": "Marcar todas como hechas",
"MARK_ALL_DONE": "Marcar Todo Hecho",
"LIST": {
"LOADING_MESSAGE": "Cargando notificaciones...",
"404": "No hay notificaciones",
"404": "Aún no hay notificaciones",
"TABLE_HEADER": [
"Nombre",
"Número telefónico",
"Conversaciones",
"Última vez Contactado"
"Último Contactado"
]
},
"TYPE_LABEL": {
"conversation_creation": "Nueva conversación",
"conversation_assignment": "Conversación Asignada",
"assigned_conversation_new_message": "Nuevo Mensaje",
"conversation_assignment": "Conversación asignada",
"assigned_conversation_new_message": "Nuevo mensaje",
"conversation_mention": "Mención"
}
}

View file

@ -38,7 +38,8 @@
"PICK_A_VALUE": "Elija un valor"
},
"TWITTER": {
"HELP": "Para añadir su perfil de Twitter como un canal, necesita autenticar su perfil de Twitter haciendo clic en 'Iniciar sesión con Twitter' "
"HELP": "Para añadir tu perfil de Twitter como un canal, necesitas autenticar tu perfil de Twitter haciendo clic en 'Iniciar sesión con Twitter' ",
"ERROR_MESSAGE": "Se ha producido un error al conectar a Twitter, por favor inténtelo nuevamente"
},
"WEBSITE_CHANNEL": {
"TITLE": "Canal del sitio web",
@ -165,9 +166,9 @@
},
"AGENTS": {
"TITLE": "Agentes",
"DESC": "Aquí puede agregar agentes para administrar su recién creada bandeja de entrada. Sólo estos agentes seleccionados tendrán acceso a su bandeja de entrada. Los agentes que no forman parte de esta bandeja de entrada no podrán ver o responder a los mensajes de esta bandeja de entrada cuando inicien sesión. <br> <b>PS:</b> Como administrador, si necesita acceso a todas las bandejas, debes añadirte como agente a todas las bandejas de entrada que cree.",
"VALIDATION_ERROR": "Añada al menos un agente a su nueva Bandeja",
"PICK_AGENTS": "Escoja los agentes para la bandeja"
"DESC": "Aquí puede agregar agentes para administrar su recién creada bandeja de entrada. Sólo estos agentes seleccionados tendrán acceso a su bandeja de entrada. Los agentes que no forman parte de esta bandeja de entrada no podrán ver o responder a los mensajes de esta bandeja de entrada cuando inicien sesión. <br> <b>PS:</b> Como administrador, si necesita acceso a todas las bandejas, debes añadirte como agente a todas las bandejas de entrada que crees.",
"VALIDATION_ERROR": "Añadir al menos un agente a su nueva bandeja de entrada",
"PICK_AGENTS": "Elegir agentes para la bandeja de entrada"
},
"DETAILS": {
"TITLE": "Detalles de la bandeja de entrada",
@ -224,7 +225,9 @@
"TABS": {
"SETTINGS": "Ajustes",
"COLLABORATORS": "Colaboradores",
"CONFIGURATION": "Configuración"
"CONFIGURATION": "Configuración",
"PRE_CHAT_FORM": "Pre-formulario de chat",
"BUSINESS_HOURS": "Horarios"
},
"SETTINGS": "Ajustes",
"FEATURES": {
@ -242,14 +245,49 @@
"INBOX_UPDATE_TITLE": "Ajustes de la Bandeja de Entrada",
"INBOX_UPDATE_SUB_TEXT": "Actualizar la configuración de su bandeja de entrada",
"AUTO_ASSIGNMENT_SUB_TEXT": "Activar o desactivar la asignación automática de nuevas conversaciones a los agentes añadidos a esta bandeja de entrada.",
"HMAC_VERIFICATION": "Validación del la Identidad del Usuario",
"HMAC_DESCRIPTION": "Para validar la identidad de los usuarios, el SDK permite pasar un `identity_hash` para cada usuario. Usted puede generar HMAC usando 'sha256' con la llave mostrada aquí."
"HMAC_VERIFICATION": "Validación de identidad de usuario",
"HMAC_DESCRIPTION": "Con el fin de validar la identidad de los usuarios, el SDK le permite pasar un `identity_hash` por cada usuario. Puede generar HMAC usando 'sha256' con la clave que se muestra aquí."
},
"FACEBOOK_REAUTHORIZE": {
"TITLE": "Reautorizar",
"SUBTITLE": "Su conexión de Facebook expiró, por favor reconecte su página de Facebook para continuar con el servicio",
"MESSAGE_SUCCESS": "Reconección satisfactoria",
"MESSAGE_ERROR": "Se presento un error, por favor inténtelo de nuevo"
},
"PRE_CHAT_FORM": {
"DESCRIPTION": "Los formularios de Pre Chat le permiten capturar la información del usuario antes de que comiencen la conversación con usted.",
"ENABLE": {
"LABEL": "Activar formulario de pre-chat",
"OPTIONS": {
"ENABLED": "Si",
"DISABLED": "No"
}
},
"PRE_CHAT_MESSAGE": {
"LABEL": "Mensaje del Pre Chat",
"PLACEHOLDER": "Este mensaje sería visible para los usuarios junto con el formulario"
},
"REQUIRE_EMAIL": {
"LABEL": "Los visitantes deben proporcionar su nombre y dirección de correo electrónico antes de iniciar el chat"
}
},
"BUSINESS_HOURS": {
"TITLE": "Establecer su disponibilidad",
"SUBTITLE": "Establezca su disponibilidad en su widget de livechat",
"WEEKLY_TITLE": "Establecer sus horas semanales",
"TIMEZONE_LABEL": "Seleccione la zona horaria",
"UPDATE": "Actualice las horas de atención",
"TOGGLE_AVAILABILITY": "Habilite la disponibilidad de atención para esta bandeja de entrada",
"UNAVAILABLE_MESSAGE_LABEL": "Mensajes de no atención disponible para los visitantes",
"UNAVAILABLE_MESSAGE_DEFAULT": "No estamos disponibles en este momento. Déjenos un mensaje y le responderemos tan pronto estemos de regreso.",
"TOGGLE_HELP": "Al habilitar el horario de atención se mostraran las horas disponibles en el \"widget\" del chat en vivo si todos los agentes están fuera de línea. Fuera de las horas disponibles los visitantes pueden ser notificado con un mensaje y una forma PreChat.",
"DAY": {
"ENABLE": "Activar la disponibilidad para este día",
"UNAVAILABLE": "No disponible",
"HOURS": "horas",
"VALIDATION_ERROR": "La hora de inicio debe ser antes de la hora de cierre.",
"CHOOSE": "Elegir"
}
}
}
}

View file

@ -27,7 +27,7 @@
"NOTE": "Actualice sus preferencias de notificación por correo electrónico aquí",
"CONVERSATION_ASSIGNMENT": "Enviar notificaciones por correo electrónico cuando se me ha asignado una conversación",
"CONVERSATION_CREATION": "Enviar notificaciones por correo electrónico cuando se crea una nueva conversación",
"CONVERSATION_MENTION": "Enviar notificaciones cuando usted sea mencionado en una conversación",
"CONVERSATION_MENTION": "Enviar notificaciones por correo electrónico cuando sea mencionado en una conversación",
"ASSIGNED_CONVERSATION_NEW_MESSAGE": "Envirar notificaciones por correo electrónico cuando un nuevo mensaje es creado en una conversación asignada"
},
"API": {
@ -39,7 +39,7 @@
"NOTE": "Actualize sus preferencias de notificaciones push aquí",
"CONVERSATION_ASSIGNMENT": "Enviar notificaciones push cuando se me ha asignado una conversación",
"CONVERSATION_CREATION": "Enviar notificaciones push cuando se crea una nueva conversación",
"CONVERSATION_MENTION": "Enviar notificaciones cuando usted sea mencionado en una conversación",
"CONVERSATION_MENTION": "Enviar notificaciones push cuando sea mencionado en una conversación",
"ASSIGNED_CONVERSATION_NEW_MESSAGE": "Enviar notificaciones push cuando un nuevo mensaja es creadao en una conversación asignada",
"HAS_ENABLED_PUSH": "Has habilitado notificaciones push para este navegador.",
"REQUEST_PUSH": "Habilitar notificaciones push"

View file

@ -5,18 +5,18 @@
"TERMS_ACCEPT": "Al registrarse, acepta nuestra <a href=\"https://www.chatwoot.com/terms\">T & C</a> y nuestra <a href=\"https://www.chatwoot.com/privacy-policy\">política de privacidad</a>",
"ACCOUNT_NAME": {
"LABEL": "Nombre de cuenta",
"PLACEHOLDER": "Escriba un nombre para la cuenta: i.e. Wayne Enterprises",
"ERROR": "El nombre de cuenta es demasiado corto"
"PLACEHOLDER": "Empresas de Wayne",
"ERROR": "El nombre de la cuenta es demasiado corto"
},
"FULL_NAME": {
"LABEL": "Nombre completo",
"PLACEHOLDER": "Escriba su nombre completo: i.e. Bruce Wayne",
"ERROR": "El nombre es demasiado corto"
"PLACEHOLDER": "Introduce tu nombre completo, por ejemplo: Bruce Wayne",
"ERROR": "El nombre completo es demasiado corto"
},
"EMAIL": {
"LABEL": "Email de trabajo",
"PLACEHOLDER": "Introduzca su dirección de correo electrónico de trabajo. Ejemplo: bruce@wayne.enterprises",
"ERROR": "Dirección de correo no válida"
"LABEL": "E-mail",
"PLACEHOLDER": "bruce@wayne.empresas",
"ERROR": "El correo no es válido"
},
"PASSWORD": {
"LABEL": "Contraseña",

View file

@ -0,0 +1,124 @@
{
"TEAMS_SETTINGS": {
"NEW_TEAM": "Create new team",
"HEADER": "Equipos",
"SIDEBAR_TXT": "<p><b>Teams</b></p> <p>Teams let you organize your agents into groups based on their responsibilities. <br /> A user can be part of multiple teams. You can assign conversations to a team when you are working collaboratively. </p>",
"LIST": {
"404": "There are no teams created on this account.",
"EDIT_TEAM": "Edit team"
},
"CREATE_FLOW": {
"CREATE": {
"TITLE": "Create a new team",
"DESC": "Add a title and description to your new team."
},
"AGENTS": {
"BUTTON_TEXT": "Add agents to team",
"TITLE": "Add agents to team - %{teamName}",
"DESC": "Add Agents to your newly created team. This lets you collaborate as a team on conversations, get notified on new events in the same conversation."
},
"WIZARD": [
{
"title": "Crear",
"route": "settings_teams_new",
"body": "Create a new team of agents."
},
{
"title": "Añadir agentes",
"route": "settings_teams_add_agents",
"body": "Add agents to the team."
},
{
"title": "Finish",
"route": "settings_teams_finish",
"body": "¡Todo está listo!"
}
]
},
"EDIT_FLOW": {
"CREATE": {
"TITLE": "Edit your team details",
"DESC": "Edit title and description to your team.",
"BUTTON_TEXT": "Update team"
},
"AGENTS": {
"BUTTON_TEXT": "Update agents in team",
"TITLE": "Add agents to team - %{teamName}",
"DESC": "Add Agents to your newly created team. All the added agents will be notified when a conversation is assigned to this team."
},
"WIZARD": [
{
"title": "Team details",
"route": "settings_teams_edit",
"body": "Change name, description and other details."
},
{
"title": "Edit Agents",
"route": "settings_teams_edit_members",
"body": "Edit agents in your team."
},
{
"title": "Finish",
"route": "settings_teams_edit_finish",
"body": "¡Todo está listo!"
}
]
},
"TEAM_FORM": {
"ERROR_MESSAGE": "Couldn't save the team details. Try again."
},
"AGENTS": {
"AGENT": "AGENT",
"EMAIL": "Correo electrónico",
"BUTTON_TEXT": "Añadir agentes",
"ADD_AGENTS": "Adding Agents to your Team...",
"SELECT": "select",
"SELECT_ALL": "select all agents",
"SELECTED_COUNT": "%{selected} out of %{total} agents selected."
},
"ADD": {
"TITLE": "Add agents to team - %{teamName}",
"DESC": "Add Agents to your newly created team. This lets you collaborate as a team on conversations, get notified on new events in the same conversation.",
"SELECT": "select",
"SELECT_ALL": "select all agents",
"SELECTED_COUNT": "%{selected} out of %{total} agents selected.",
"BUTTON_TEXT": "Añadir agentes",
"AGENT_VALIDATION_ERROR": "Select atleaset one agent."
},
"FINISH": {
"TITLE": "Your team is ready!",
"MESSAGE": "You can now collaborate as a team on conversations. Happy supporting ",
"BUTTON_TEXT": "Finish"
},
"DELETE": {
"BUTTON_TEXT": "Eliminar",
"API": {
"SUCCESS_MESSAGE": "Team deleted successfully.",
"ERROR_MESSAGE": "Couldn't delete the team. Try again."
},
"CONFIRM": {
"TITLE": "Are you sure want to delete - %{teamName}",
"MESSAGE": "Deleting the team will remove the team assignment from the conversations assigned to this team.",
"YES": "Eliminar ",
"NO": "Cancelar"
}
},
"SETTINGS": "Ajustes",
"FORM": {
"UPDATE": "Update team",
"CREATE": "Create team",
"NAME": {
"LABEL": "Team name",
"PLACEHOLDER": "Example: Sales, Customer Support"
},
"DESCRIPTION": {
"LABEL": "Team Description",
"PLACEHOLDER": "Short description about this team."
},
"AUTO_ASSIGN": {
"LABEL": "Allow auto assign for this team."
},
"SUBMIT_CREATE": "Create team"
}
}
}

View file

@ -43,7 +43,14 @@
"EDIT_CONTACT": {
"BUTTON_LABEL": "ویرایش مخاطب",
"TITLE": "ویرایش مخاطب",
"DESC": "ویرایش اطلاعات مخاطب",
"DESC": "ویرایش اطلاعات مخاطب"
},
"CREATE_CONTACT": {
"BUTTON_LABEL": "New Contact",
"TITLE": "Create new contact",
"DESC": "Add basic information details about the contact."
},
"CONTACT_FORM": {
"FORM": {
"SUBMIT": "ثبت",
"CANCEL": "انصراف",
@ -93,9 +100,9 @@
}
}
},
"SUCCESS_MESSAGE": "مخاطب با موفقیت به روز شد",
"SUCCESS_MESSAGE": "Contact saved successfully",
"CONTACT_ALREADY_EXIST": "این آدرس ایمیل برای مخاطب دیگری در حال استفاده است.",
"ERROR_MESSAGE": "خطایی در به‌روزرسانی مخاطب رخ داده، لطفا دوباره امتحان کنید"
"ERROR_MESSAGE": "خطایی پیش آمد. لطفا دوباره امتحان کنید"
},
"CONTACTS_PAGE": {
"HEADER": "مخاطبین",
@ -104,12 +111,18 @@
"LIST": {
"LOADING_MESSAGE": "در حال بارگذاری مخاطبین...",
"404": "هیچ مخاطبی با جستجوی شما مطابقت ندارد 🔍",
"TABLE_HEADER": [
"نام",
"شماره تلفن",
"گفتگوها",
"آخرین تماس"
]
"TABLE_HEADER": {
"NAME": "نام",
"PHONE_NUMBER": "شماره تلفن",
"CONVERSATIONS": "گفتگوها",
"LAST_ACTIVITY": "آخرین فعالیت",
"COUNTRY": "کشور",
"CITY": "شهر",
"SOCIAL_PROFILES": "پروفایل‌های اجتماعی",
"COMPANY": "شرکت",
"EMAIL_ADDRESS": "ایمیل"
},
"VIEW_DETAILS": "مشاهده جزئیات"
}
}
}

View file

@ -11,7 +11,7 @@
"TITLE": "جستجو پیام‌ها",
"LOADING_MESSAGE": "درحال پردازش داده...",
"PLACEHOLDER": "متنی برای جستجو پیام تایپ کنید",
"NO_MATCHING_RESULTS": "گفتگویی با مشخصات ورودی یافت نشد."
"NO_MATCHING_RESULTS": "No results found."
},
"UNREAD_MESSAGES": "پیام‌های خوانده نشده",
"UNREAD_MESSAGE": "پیام خوانده نشده",
@ -51,6 +51,7 @@
"VISIBLE_TO_AGENTS": "یادداشت خصوصی: فقط برای شما و تیم شما قابل مشاهده است",
"CHANGE_STATUS": "وضعیت گفتگو تغییر کرد",
"CHANGE_AGENT": "مسول گفتگو تغییر کرد",
"CHANGE_TEAM": "Conversation team changed",
"SENT_BY": "ارسال شده توسط:",
"ASSIGNMENT": {
"SELECT_AGENT": "انتخاب ایجنت",
@ -74,5 +75,37 @@
"ERROR": "لطفا ایمیل خود را به شکل صحیح وارد کنید"
}
}
},
"ONBOARDING": {
"TITLE": "Hey 👋, Welcome to %{installationName}!",
"DESCRIPTION": "Thanks for signing up. We want you to get the most out of %{installationName}. Here are a few things you can do in %{installationName} to make the experience delightful.",
"READ_LATEST_UPDATES": "Read our latest updates",
"ALL_CONVERSATION": {
"TITLE": "All your conversations in one place",
"DESCRIPTION": "View all the conversations from your customers in one single dashboard. You can filter the conversations by the incoming channel, label and status."
},
"TEAM_MEMBERS": {
"TITLE": "Invite your team members",
"DESCRIPTION": "Since you are getting ready to talk to your customer, bring in your teammates to assist you. You can invite your teammates by adding their email address to the agent list.",
"NEW_LINK": "Click here to invite a team member"
},
"INBOXES": {
"TITLE": "Connect Inboxes",
"DESCRIPTION": "Connect various channels through which your customers would be talking to you. It can be a website live-chat, your Facebook or Twitter page or even your WhatsApp number.",
"NEW_LINK": "Click here to create an inbox"
},
"LABELS": {
"TITLE": "Organize conversations with labels",
"DESCRIPTION": "Labels provide an easier way to categorize your conversation. Create some labels like #support-enquiry, #billing-question etc., so that you can use them in a conversation later.",
"NEW_LINK": "Click here to create tags"
}
},
"CONVERSATION_SIDEBAR": {
"DETAILS_TITLE": "Conversations Details",
"ASSIGNEE_LABEL": "Assigned Agent",
"TEAM_LABEL": "Assigned Team",
"SELECT": {
"PLACEHOLDER": "None"
}
}
}

View file

@ -38,7 +38,8 @@
"PICK_A_VALUE": "یک مقدار انتخاب کنید"
},
"TWITTER": {
"HELP": "برای اضافه کردن امکان گفتگو از صفحه پروفایل توییترتان، لازم است با زدن دکمه `ورود با توییتر` پروفایل توییتر خود را شناسایی کنید' "
"HELP": "برای اضافه کردن امکان گفتگو از صفحه پروفایل توییترتان، لازم است با زدن دکمه `ورود با توییتر` پروفایل توییتر خود را شناسایی کنید' ",
"ERROR_MESSAGE": "There was an error connecting to Twitter, please try again"
},
"WEBSITE_CHANNEL": {
"TITLE": "کانال وب سایت",
@ -224,7 +225,9 @@
"TABS": {
"SETTINGS": "تنظیمات",
"COLLABORATORS": "همکاران",
"CONFIGURATION": "پیکربندی"
"CONFIGURATION": "پیکربندی",
"PRE_CHAT_FORM": "Pre Chat Form",
"BUSINESS_HOURS": "ساعت کاری"
},
"SETTINGS": "تنظیمات",
"FEATURES": {
@ -250,6 +253,41 @@
"SUBTITLE": "اتصال فیس بوک شما منقضی شده است ، لطفاً برای ادامه خدمات دوباره صفحه فیس بوک خود را متصل کنید",
"MESSAGE_SUCCESS": "اتصال مجدد موفقیت آمیز بود",
"MESSAGE_ERROR": "خطایی پیش آمد. لطفا دوباره امتحان کنید"
},
"PRE_CHAT_FORM": {
"DESCRIPTION": "Pre chat forms enable you to capture user information before they start conversation with you.",
"ENABLE": {
"LABEL": "Enable pre chat form",
"OPTIONS": {
"ENABLED": "Yes",
"DISABLED": "No"
}
},
"PRE_CHAT_MESSAGE": {
"LABEL": "Pre Chat Message",
"PLACEHOLDER": "This message would be visible to the users along with the form"
},
"REQUIRE_EMAIL": {
"LABEL": "Visitors should provide their name and email address before starting the chat"
}
},
"BUSINESS_HOURS": {
"TITLE": "Set your availability",
"SUBTITLE": "Set your availability on your livechat widget",
"WEEKLY_TITLE": "Set your weekly hours",
"TIMEZONE_LABEL": "Select timezone",
"UPDATE": "Update business hours settings",
"TOGGLE_AVAILABILITY": "Enable business availability for this inbox",
"UNAVAILABLE_MESSAGE_LABEL": "Unavailable message for vistors",
"UNAVAILABLE_MESSAGE_DEFAULT": "We are unavailable at the moment. Leave a message we will respond once we are back.",
"TOGGLE_HELP": "Enabling business availability will show the available hours on live chat widget even if all the agents are offline. Outside available hours vistors can be warned with a message and a pre-chat form.",
"DAY": {
"ENABLE": "Enable availability for this day",
"UNAVAILABLE": "Unavailable",
"HOURS": "ساعت",
"VALIDATION_ERROR": "Starting time should be before closing time.",
"CHOOSE": "انتخاب کنید"
}
}
}
}

View file

@ -125,7 +125,7 @@
"INTEGRATIONS": "برنامه‌های تلفیق شده",
"ACCOUNT_SETTINGS": "تنظیمات حساب",
"LABELS": "برچسب‌ها",
"TEAMS": "Teams"
"TEAMS": "تیم‌ها"
},
"CREATE_ACCOUNT": {
"NEW_ACCOUNT": "حساب‌کاربری جدید",

View file

@ -0,0 +1,124 @@
{
"TEAMS_SETTINGS": {
"NEW_TEAM": "Create new team",
"HEADER": "تیم‌ها",
"SIDEBAR_TXT": "<p><b>Teams</b></p> <p>Teams let you organize your agents into groups based on their responsibilities. <br /> A user can be part of multiple teams. You can assign conversations to a team when you are working collaboratively. </p>",
"LIST": {
"404": "There are no teams created on this account.",
"EDIT_TEAM": "Edit team"
},
"CREATE_FLOW": {
"CREATE": {
"TITLE": "Create a new team",
"DESC": "Add a title and description to your new team."
},
"AGENTS": {
"BUTTON_TEXT": "Add agents to team",
"TITLE": "Add agents to team - %{teamName}",
"DESC": "Add Agents to your newly created team. This lets you collaborate as a team on conversations, get notified on new events in the same conversation."
},
"WIZARD": [
{
"title": "ايجاد كردن",
"route": "settings_teams_new",
"body": "Create a new team of agents."
},
{
"title": "معرفی اپراتور",
"route": "settings_teams_add_agents",
"body": "Add agents to the team."
},
{
"title": "Finish",
"route": "settings_teams_finish",
"body": "دیگه می‌تونی بترکونی"
}
]
},
"EDIT_FLOW": {
"CREATE": {
"TITLE": "Edit your team details",
"DESC": "Edit title and description to your team.",
"BUTTON_TEXT": "Update team"
},
"AGENTS": {
"BUTTON_TEXT": "Update agents in team",
"TITLE": "Add agents to team - %{teamName}",
"DESC": "Add Agents to your newly created team. All the added agents will be notified when a conversation is assigned to this team."
},
"WIZARD": [
{
"title": "Team details",
"route": "settings_teams_edit",
"body": "Change name, description and other details."
},
{
"title": "Edit Agents",
"route": "settings_teams_edit_members",
"body": "Edit agents in your team."
},
{
"title": "Finish",
"route": "settings_teams_edit_finish",
"body": "دیگه می‌تونی بترکونی"
}
]
},
"TEAM_FORM": {
"ERROR_MESSAGE": "Couldn't save the team details. Try again."
},
"AGENTS": {
"AGENT": "AGENT",
"EMAIL": "ایمیل",
"BUTTON_TEXT": "اضافه کردن اپراتور",
"ADD_AGENTS": "Adding Agents to your Team...",
"SELECT": "select",
"SELECT_ALL": "select all agents",
"SELECTED_COUNT": "%{selected} out of %{total} agents selected."
},
"ADD": {
"TITLE": "Add agents to team - %{teamName}",
"DESC": "Add Agents to your newly created team. This lets you collaborate as a team on conversations, get notified on new events in the same conversation.",
"SELECT": "select",
"SELECT_ALL": "select all agents",
"SELECTED_COUNT": "%{selected} out of %{total} agents selected.",
"BUTTON_TEXT": "اضافه کردن اپراتور",
"AGENT_VALIDATION_ERROR": "Select atleaset one agent."
},
"FINISH": {
"TITLE": "Your team is ready!",
"MESSAGE": "You can now collaborate as a team on conversations. Happy supporting ",
"BUTTON_TEXT": "Finish"
},
"DELETE": {
"BUTTON_TEXT": "حذف",
"API": {
"SUCCESS_MESSAGE": "Team deleted successfully.",
"ERROR_MESSAGE": "Couldn't delete the team. Try again."
},
"CONFIRM": {
"TITLE": "Are you sure want to delete - %{teamName}",
"MESSAGE": "Deleting the team will remove the team assignment from the conversations assigned to this team.",
"YES": "حذف ",
"NO": "انصراف"
}
},
"SETTINGS": "تنظیمات",
"FORM": {
"UPDATE": "Update team",
"CREATE": "Create team",
"NAME": {
"LABEL": "Team name",
"PLACEHOLDER": "Example: Sales, Customer Support"
},
"DESCRIPTION": {
"LABEL": "Team Description",
"PLACEHOLDER": "Short description about this team."
},
"AUTO_ASSIGN": {
"LABEL": "Allow auto assign for this team."
},
"SUBMIT_CREATE": "Create team"
}
}
}

View file

@ -43,7 +43,14 @@
"EDIT_CONTACT": {
"BUTTON_LABEL": "Muokkaa yhteystietoa",
"TITLE": "Muokkaa yhteystietoa",
"DESC": "Muokkaa yhteystietoja",
"DESC": "Muokkaa yhteystietoja"
},
"CREATE_CONTACT": {
"BUTTON_LABEL": "New Contact",
"TITLE": "Create new contact",
"DESC": "Add basic information details about the contact."
},
"CONTACT_FORM": {
"FORM": {
"SUBMIT": "Lähetä",
"CANCEL": "Peruuta",
@ -93,9 +100,9 @@
}
}
},
"SUCCESS_MESSAGE": "Yhteystiedon päivitys onnistui",
"SUCCESS_MESSAGE": "Contact saved successfully",
"CONTACT_ALREADY_EXIST": "Tämä sähköpostiosoite on käytössä toiselle yhteyshenkilölle.",
"ERROR_MESSAGE": "Yhteystiedon päivityksessä tapahtui virhe. Ole hyvä ja yritä uudelleen"
"ERROR_MESSAGE": "Tapahtui virhe, yritä uudelleen"
},
"CONTACTS_PAGE": {
"HEADER": "Yhteystiedot",
@ -104,12 +111,18 @@
"LIST": {
"LOADING_MESSAGE": "Ladataan yhteystietoja...",
"404": "Ei hakua vastaavia yhteystietoja 🔍",
"TABLE_HEADER": [
"Nimi",
"Puhelinnumero",
"Keskustelut",
"Viimeksi otettu yhteyttä"
]
"TABLE_HEADER": {
"NAME": "Nimi",
"PHONE_NUMBER": "Puhelinnumero",
"CONVERSATIONS": "Keskustelut",
"LAST_ACTIVITY": "Last Activity",
"COUNTRY": "Country",
"CITY": "City",
"SOCIAL_PROFILES": "Social Profiles",
"COMPANY": "Yritys",
"EMAIL_ADDRESS": "Sähköpostiosoite"
},
"VIEW_DETAILS": "View details"
}
}
}

View file

@ -11,7 +11,7 @@
"TITLE": "Etsi viestejä",
"LOADING_MESSAGE": "Rouskutetaan dataa...",
"PLACEHOLDER": "Kirjoita mikä tahansa teksti etsiäksesi viestejä",
"NO_MATCHING_RESULTS": "Hakuparametreja vastaavia viestejä ei ole."
"NO_MATCHING_RESULTS": "No results found."
},
"UNREAD_MESSAGES": "Lukemattomat viestit",
"UNREAD_MESSAGE": "Lukematon viesti",
@ -51,6 +51,7 @@
"VISIBLE_TO_AGENTS": "Yksityinen huomautus: Näkyy vain sinulle ja tiimillesi",
"CHANGE_STATUS": "Keskustelun tila muutettu",
"CHANGE_AGENT": "Keskustelun vastaanottaja vaihdettu",
"CHANGE_TEAM": "Conversation team changed",
"SENT_BY": "Lähettäjä:",
"ASSIGNMENT": {
"SELECT_AGENT": "Valitse edustaja",
@ -74,5 +75,37 @@
"ERROR": "Ole hyvä ja syötä validi sähköposti"
}
}
},
"ONBOARDING": {
"TITLE": "Hey 👋, Welcome to %{installationName}!",
"DESCRIPTION": "Thanks for signing up. We want you to get the most out of %{installationName}. Here are a few things you can do in %{installationName} to make the experience delightful.",
"READ_LATEST_UPDATES": "Read our latest updates",
"ALL_CONVERSATION": {
"TITLE": "All your conversations in one place",
"DESCRIPTION": "View all the conversations from your customers in one single dashboard. You can filter the conversations by the incoming channel, label and status."
},
"TEAM_MEMBERS": {
"TITLE": "Invite your team members",
"DESCRIPTION": "Since you are getting ready to talk to your customer, bring in your teammates to assist you. You can invite your teammates by adding their email address to the agent list.",
"NEW_LINK": "Click here to invite a team member"
},
"INBOXES": {
"TITLE": "Connect Inboxes",
"DESCRIPTION": "Connect various channels through which your customers would be talking to you. It can be a website live-chat, your Facebook or Twitter page or even your WhatsApp number.",
"NEW_LINK": "Click here to create an inbox"
},
"LABELS": {
"TITLE": "Organize conversations with labels",
"DESCRIPTION": "Labels provide an easier way to categorize your conversation. Create some labels like #support-enquiry, #billing-question etc., so that you can use them in a conversation later.",
"NEW_LINK": "Click here to create tags"
}
},
"CONVERSATION_SIDEBAR": {
"DETAILS_TITLE": "Conversations Details",
"ASSIGNEE_LABEL": "Assigned Agent",
"TEAM_LABEL": "Assigned Team",
"SELECT": {
"PLACEHOLDER": "None"
}
}
}

View file

@ -38,7 +38,8 @@
"PICK_A_VALUE": "Valitse arvo"
},
"TWITTER": {
"HELP": "Lisätäksesi twitter-profiilin kanavaksesi, sinun tulee autentikoida twitter-tilisi klikkaamalla \"Kirjaudu sisään Twitterillä\" "
"HELP": "Lisätäksesi twitter-profiilin kanavaksesi, sinun tulee autentikoida twitter-tilisi klikkaamalla \"Kirjaudu sisään Twitterillä\" ",
"ERROR_MESSAGE": "There was an error connecting to Twitter, please try again"
},
"WEBSITE_CHANNEL": {
"TITLE": "Sivuston chat",
@ -224,7 +225,9 @@
"TABS": {
"SETTINGS": "Asetukset",
"COLLABORATORS": "Yhteistyökumppanit",
"CONFIGURATION": "Määritykset"
"CONFIGURATION": "Määritykset",
"PRE_CHAT_FORM": "Pre Chat Form",
"BUSINESS_HOURS": "Business Hours"
},
"SETTINGS": "Asetukset",
"FEATURES": {
@ -250,6 +253,41 @@
"SUBTITLE": "Facebook-yhteytesi on vanhentunut, ole hyvä ja yhdistä uudelleen Facebook-sivusi jatkaaksesi palveluita",
"MESSAGE_SUCCESS": "Uudelleenyhdistäminen onnistui",
"MESSAGE_ERROR": "Tapahtui virhe, yritä uudelleen"
},
"PRE_CHAT_FORM": {
"DESCRIPTION": "Pre chat forms enable you to capture user information before they start conversation with you.",
"ENABLE": {
"LABEL": "Enable pre chat form",
"OPTIONS": {
"ENABLED": "Yes",
"DISABLED": "No"
}
},
"PRE_CHAT_MESSAGE": {
"LABEL": "Pre Chat Message",
"PLACEHOLDER": "This message would be visible to the users along with the form"
},
"REQUIRE_EMAIL": {
"LABEL": "Visitors should provide their name and email address before starting the chat"
}
},
"BUSINESS_HOURS": {
"TITLE": "Set your availability",
"SUBTITLE": "Set your availability on your livechat widget",
"WEEKLY_TITLE": "Set your weekly hours",
"TIMEZONE_LABEL": "Select timezone",
"UPDATE": "Update business hours settings",
"TOGGLE_AVAILABILITY": "Enable business availability for this inbox",
"UNAVAILABLE_MESSAGE_LABEL": "Unavailable message for vistors",
"UNAVAILABLE_MESSAGE_DEFAULT": "We are unavailable at the moment. Leave a message we will respond once we are back.",
"TOGGLE_HELP": "Enabling business availability will show the available hours on live chat widget even if all the agents are offline. Outside available hours vistors can be warned with a message and a pre-chat form.",
"DAY": {
"ENABLE": "Enable availability for this day",
"UNAVAILABLE": "Unavailable",
"HOURS": "hours",
"VALIDATION_ERROR": "Starting time should be before closing time.",
"CHOOSE": "Choose"
}
}
}
}

View file

@ -0,0 +1,124 @@
{
"TEAMS_SETTINGS": {
"NEW_TEAM": "Create new team",
"HEADER": "Teams",
"SIDEBAR_TXT": "<p><b>Teams</b></p> <p>Teams let you organize your agents into groups based on their responsibilities. <br /> A user can be part of multiple teams. You can assign conversations to a team when you are working collaboratively. </p>",
"LIST": {
"404": "There are no teams created on this account.",
"EDIT_TEAM": "Edit team"
},
"CREATE_FLOW": {
"CREATE": {
"TITLE": "Create a new team",
"DESC": "Add a title and description to your new team."
},
"AGENTS": {
"BUTTON_TEXT": "Add agents to team",
"TITLE": "Add agents to team - %{teamName}",
"DESC": "Add Agents to your newly created team. This lets you collaborate as a team on conversations, get notified on new events in the same conversation."
},
"WIZARD": [
{
"title": "Luo",
"route": "settings_teams_new",
"body": "Create a new team of agents."
},
{
"title": "Lisää edustaja",
"route": "settings_teams_add_agents",
"body": "Add agents to the team."
},
{
"title": "Finish",
"route": "settings_teams_finish",
"body": "Kaikki valmiina!"
}
]
},
"EDIT_FLOW": {
"CREATE": {
"TITLE": "Edit your team details",
"DESC": "Edit title and description to your team.",
"BUTTON_TEXT": "Update team"
},
"AGENTS": {
"BUTTON_TEXT": "Update agents in team",
"TITLE": "Add agents to team - %{teamName}",
"DESC": "Add Agents to your newly created team. All the added agents will be notified when a conversation is assigned to this team."
},
"WIZARD": [
{
"title": "Team details",
"route": "settings_teams_edit",
"body": "Change name, description and other details."
},
{
"title": "Edit Agents",
"route": "settings_teams_edit_members",
"body": "Edit agents in your team."
},
{
"title": "Finish",
"route": "settings_teams_edit_finish",
"body": "Kaikki valmiina!"
}
]
},
"TEAM_FORM": {
"ERROR_MESSAGE": "Couldn't save the team details. Try again."
},
"AGENTS": {
"AGENT": "AGENT",
"EMAIL": "Sähköposti",
"BUTTON_TEXT": "Lisää edustaja",
"ADD_AGENTS": "Adding Agents to your Team...",
"SELECT": "select",
"SELECT_ALL": "select all agents",
"SELECTED_COUNT": "%{selected} out of %{total} agents selected."
},
"ADD": {
"TITLE": "Add agents to team - %{teamName}",
"DESC": "Add Agents to your newly created team. This lets you collaborate as a team on conversations, get notified on new events in the same conversation.",
"SELECT": "select",
"SELECT_ALL": "select all agents",
"SELECTED_COUNT": "%{selected} out of %{total} agents selected.",
"BUTTON_TEXT": "Lisää edustaja",
"AGENT_VALIDATION_ERROR": "Select atleaset one agent."
},
"FINISH": {
"TITLE": "Your team is ready!",
"MESSAGE": "You can now collaborate as a team on conversations. Happy supporting ",
"BUTTON_TEXT": "Finish"
},
"DELETE": {
"BUTTON_TEXT": "Poista",
"API": {
"SUCCESS_MESSAGE": "Team deleted successfully.",
"ERROR_MESSAGE": "Couldn't delete the team. Try again."
},
"CONFIRM": {
"TITLE": "Are you sure want to delete - %{teamName}",
"MESSAGE": "Deleting the team will remove the team assignment from the conversations assigned to this team.",
"YES": "Poista ",
"NO": "Peruuta"
}
},
"SETTINGS": "Asetukset",
"FORM": {
"UPDATE": "Update team",
"CREATE": "Create team",
"NAME": {
"LABEL": "Team name",
"PLACEHOLDER": "Example: Sales, Customer Support"
},
"DESCRIPTION": {
"LABEL": "Team Description",
"PLACEHOLDER": "Short description about this team."
},
"AUTO_ASSIGN": {
"LABEL": "Allow auto assign for this team."
},
"SUBMIT_CREATE": "Create team"
}
}
}

View file

@ -80,6 +80,6 @@
"RECEIVED_VIA_EMAIL": "Reçu par courriel",
"VIEW_TWEET_IN_TWITTER": "Voir le tweet sur Twitter",
"REPLY_TO_TWEET": "Répondre à ce tweet",
"NO_MESSAGES": "No Messages"
"NO_MESSAGES": "Pas de messages"
}
}

View file

@ -43,7 +43,14 @@
"EDIT_CONTACT": {
"BUTTON_LABEL": "Modifier le contact",
"TITLE": "Modifier le contact",
"DESC": "Modifier les informations de contact",
"DESC": "Modifier les informations de contact"
},
"CREATE_CONTACT": {
"BUTTON_LABEL": "Nouveau contact",
"TITLE": "Créer un nouveau contact",
"DESC": "Ajouter des informations de base à propos du contact."
},
"CONTACT_FORM": {
"FORM": {
"SUBMIT": "Envoyer",
"CANCEL": "Annuler",
@ -93,9 +100,9 @@
}
}
},
"SUCCESS_MESSAGE": "Contact mis à jour avec succès",
"SUCCESS_MESSAGE": "Contact enregistré avec succès",
"CONTACT_ALREADY_EXIST": "Cette adresse de courriel est déjà utilisée pour un autre contact.",
"ERROR_MESSAGE": "Une erreur s'est produite lors de la mise à jour du contact, veuillez réessayer"
"ERROR_MESSAGE": "Une erreur est survenue, veuillez réessayer"
},
"CONTACTS_PAGE": {
"HEADER": "Contacts",
@ -104,12 +111,18 @@
"LIST": {
"LOADING_MESSAGE": "Chargement des contacts...",
"404": "Aucun contact ne correspond à votre recherche 🔍",
"TABLE_HEADER": [
"Nom",
"Numéro de téléphone",
"Conversations",
"Dernièrement contacté"
]
"TABLE_HEADER": {
"NAME": "Nom",
"PHONE_NUMBER": "Numéro de téléphone",
"CONVERSATIONS": "Conversations",
"LAST_ACTIVITY": "Dernière activité",
"COUNTRY": "Pays",
"CITY": "Ville",
"SOCIAL_PROFILES": "Comptes réseaux sociaux",
"COMPANY": "Société",
"EMAIL_ADDRESS": "Adresse de courriel"
},
"VIEW_DETAILS": "Voir les détails"
}
}
}

View file

@ -11,7 +11,7 @@
"TITLE": "Rechercher des messages",
"LOADING_MESSAGE": "Traitement des données ...",
"PLACEHOLDER": "Saisissez n'importe quel texte pour rechercher des messages",
"NO_MATCHING_RESULTS": "Aucun message ne correspond aux paramètres de recherche."
"NO_MATCHING_RESULTS": "Aucun résultat trouvé."
},
"UNREAD_MESSAGES": "Messages non lus",
"UNREAD_MESSAGE": "Message non lu",
@ -25,7 +25,7 @@
"REMOVE_SELECTION": "Supprimer la sélection",
"DOWNLOAD": "Télécharger",
"UPLOADING_ATTACHMENTS": "Envoi des pièces jointes...",
"NO_RESPONSE": "No response",
"NO_RESPONSE": "Pas de réponse",
"HEADER": {
"RESOLVE_ACTION": "Résoudre",
"REOPEN_ACTION": "Ré-ouvrir",
@ -51,6 +51,7 @@
"VISIBLE_TO_AGENTS": "Note privée : uniquement visible par vous et votre équipe",
"CHANGE_STATUS": "Statut de la conversation modifié",
"CHANGE_AGENT": "Responsable de la conversation modifié",
"CHANGE_TEAM": "L'équipe de conversation a été modifiée",
"SENT_BY": "Envoyé par:",
"ASSIGNMENT": {
"SELECT_AGENT": "Sélectionner un agent",
@ -74,5 +75,37 @@
"ERROR": "Veuillez saisir une adresse de courriel valide"
}
}
},
"ONBOARDING": {
"TITLE": "Salut 👋, Bienvenue sur %{installationName}!",
"DESCRIPTION": "Merci pour votre inscription. Nous souhaitons que vous tiriez le meilleur parti de %{installationName}. Voici quelques actions que vous pouvez effectuer dans %{installationName} pour rendre votre expérience agréable.",
"READ_LATEST_UPDATES": "Consultez nos dernières mises à jour",
"ALL_CONVERSATION": {
"TITLE": "Toutes vos conversations en un seul lieu",
"DESCRIPTION": "Visualisez toutes les conversations de vos clients dans un seul tableau de bord. Vous pouvez filtrer les conversations par le canal entrant, l'étiquette et le statut."
},
"TEAM_MEMBERS": {
"TITLE": "Invitez les membres de votre équipe",
"DESCRIPTION": "Puisque vous vous apprêtez à parler à votre client, faites venir vos coéquipiers pour vous aider. Vous pouvez inviter vos coéquipiers en ajoutant leur adresse email à la liste des agents.",
"NEW_LINK": "Cliquez ici pour inviter un membre de l'équipe"
},
"INBOXES": {
"TITLE": "Connecter les boîtes de réception",
"DESCRIPTION": "Connectez différents canaux à travers lesquels vos clients vous parleraient. Il peut s'agir d'un chat de site internet, de votre page Facebook ou Twitter ou même de votre numéro WhatsApp.",
"NEW_LINK": "Cliquez ici pour créer une boîte de réception"
},
"LABELS": {
"TITLE": "Organiser les conversations avec des labels",
"DESCRIPTION": "Les labels fournissent un moyen plus facile de catégoriser votre conversation. Créez des étiquettes comme #demande-support, #question-facturation etc., afin que vous puissiez les utiliser dans une conversation plus tard.",
"NEW_LINK": "Cliquez ici pour créer des tags"
}
},
"CONVERSATION_SIDEBAR": {
"DETAILS_TITLE": "Détails de la conversation",
"ASSIGNEE_LABEL": "Agent Assigné",
"TEAM_LABEL": "Équipe assignée",
"SELECT": {
"PLACEHOLDER": "Aucun"
}
}
}

View file

@ -54,10 +54,10 @@
},
"NOTIFICATIONS_PAGE": {
"HEADER": "Notifications",
"MARK_ALL_DONE": "Mark All Done",
"MARK_ALL_DONE": "Tout marquer comme terminé",
"LIST": {
"LOADING_MESSAGE": "Loading notifications...",
"404": "No Notifications",
"LOADING_MESSAGE": "Chargement des notifications...",
"404": "Aucune notification",
"TABLE_HEADER": [
"Nom",
"Numéro de téléphone",
@ -66,9 +66,9 @@
]
},
"TYPE_LABEL": {
"conversation_creation": "New conversation",
"conversation_assignment": "Conversation Assigned",
"assigned_conversation_new_message": "New Message",
"conversation_creation": "Nouvelle conversation",
"conversation_assignment": "Conversation assignée",
"assigned_conversation_new_message": "Nouveau message",
"conversation_mention": "Mention"
}
}

View file

@ -38,7 +38,8 @@
"PICK_A_VALUE": "Choisir une valeur"
},
"TWITTER": {
"HELP": "Pour ajouter votre profil Twitter en tant que canal, vous devez lier votre profil Twitter en cliquant sur 'Se connecter avec Twitter' "
"HELP": "Pour ajouter votre profil Twitter en tant que canal, vous devez lier votre profil Twitter en cliquant sur 'Se connecter avec Twitter' ",
"ERROR_MESSAGE": "Une erreur s'est produite lors de la connexion à Twitter, veuillez réessayer"
},
"WEBSITE_CHANNEL": {
"TITLE": "Canal site Web",
@ -224,7 +225,9 @@
"TABS": {
"SETTINGS": "Paramètres",
"COLLABORATORS": "Collaborateurs",
"CONFIGURATION": "Configuration"
"CONFIGURATION": "Configuration",
"PRE_CHAT_FORM": "Formulaire avant chat",
"BUSINESS_HOURS": "Heures de bureau"
},
"SETTINGS": "Paramètres",
"FEATURES": {
@ -250,6 +253,41 @@
"SUBTITLE": "Votre connexion Facebook a expiré, veuillez reconnecter votre page Facebook pour continuer les services",
"MESSAGE_SUCCESS": "Reconnexion réussie",
"MESSAGE_ERROR": "Une erreur est survenue, veuillez réessayer"
},
"PRE_CHAT_FORM": {
"DESCRIPTION": "Les formulaires précédant le chat vous permettent de saisir les informations de l'utilisateur avant qu'ils ne commencent à discuter avec vous.",
"ENABLE": {
"LABEL": "Activer le formulaire précédant le chat",
"OPTIONS": {
"ENABLED": "Oui",
"DISABLED": "Non"
}
},
"PRE_CHAT_MESSAGE": {
"LABEL": "Message avant le chat",
"PLACEHOLDER": "Ce message serait visible pour les utilisateurs avec le formulaire"
},
"REQUIRE_EMAIL": {
"LABEL": "Les visiteurs doivent indiquer leur nom et leur courriel avant de commencer le chat"
}
},
"BUSINESS_HOURS": {
"TITLE": "Définissez votre disponibilité",
"SUBTITLE": "Définissez votre disponibilité sur votre widget livechat",
"WEEKLY_TITLE": "Définissez vos horaires de travail",
"TIMEZONE_LABEL": "Sélectionnez le fuseau horaire",
"UPDATE": "Mettre à jour les paramètres des heures de bureau",
"TOGGLE_AVAILABILITY": "Activer la disponibilité aux heures de bureau pour cette boîte de réception",
"UNAVAILABLE_MESSAGE_LABEL": "Message indisponible pour les visiteurs",
"UNAVAILABLE_MESSAGE_DEFAULT": "Nous ne sommes pas disponibles pour le moment. Laissez-nous un message, et nous répondrons dès notre retour.",
"TOGGLE_HELP": "Activer la disponibilité aux heures de bureau montrera les heures disponibles sur le widget chat en direct même si tous les agents sont hors ligne. En dehors des heures disponibles, les visiteurs peuvent être avertis avec un message et un formulaire de préconversation.",
"DAY": {
"ENABLE": "Activer la disponibilité pour ce jour",
"UNAVAILABLE": "Non disponible",
"HOURS": "heures",
"VALIDATION_ERROR": "L'heure de début doit être avant l'heure de fermeture.",
"CHOOSE": "Sélectionner"
}
}
}
}

View file

@ -27,7 +27,7 @@
"NOTE": "Mettez à jour vos préférences de notification par courriel ici",
"CONVERSATION_ASSIGNMENT": "Envoyer des notifications par courriel lorsqu'une conversation m'est assignée",
"CONVERSATION_CREATION": "Envoyer des notifications par courriel quand une nouvelle conversation est créée",
"CONVERSATION_MENTION": "Send email notifications when you are mentioned in a conversation",
"CONVERSATION_MENTION": "Envoyer des notifications par courriel lorsque vous êtes mentionné dans une conversation",
"ASSIGNED_CONVERSATION_NEW_MESSAGE": "Envoyer des notifications par courriel lorsqu'un nouveau message est créé dans une conversation assignée"
},
"API": {
@ -39,7 +39,7 @@
"NOTE": "Mettez à jour vos préférences de notification push ici",
"CONVERSATION_ASSIGNMENT": "Envoyer des notifications push lorsqu'une conversation m'est assignée",
"CONVERSATION_CREATION": "Envoyer des notifications push quand une nouvelle conversation est créée",
"CONVERSATION_MENTION": "Send push notifications when you are mentioned in a conversation",
"CONVERSATION_MENTION": "Envoyer des notifications push lorsque vous êtes mentionné dans une conversation",
"ASSIGNED_CONVERSATION_NEW_MESSAGE": "Envoyer des notifications push lorsqu'un nouveau message est créé dans une conversation assignée",
"HAS_ENABLED_PUSH": "Vous avez activé les notifications pour ce navigateur.",
"REQUEST_PUSH": "Activer les notifications push"
@ -125,7 +125,7 @@
"INTEGRATIONS": "Intégrations",
"ACCOUNT_SETTINGS": "Paramètres du compte",
"LABELS": "Étiquettes",
"TEAMS": "Teams"
"TEAMS": "Équipes"
},
"CREATE_ACCOUNT": {
"NEW_ACCOUNT": "Nouveau compte",

View file

@ -0,0 +1,124 @@
{
"TEAMS_SETTINGS": {
"NEW_TEAM": "Créer une nouvelle équipe",
"HEADER": "Équipes",
"SIDEBAR_TXT": "<p><b>Équipes</b></p> <p>Les équipes vous permettent d'organiser vos agents en groupes en fonction de leurs responsabilités. <br /> Un utilisateur peut faire partie de plusieurs équipes. Vous pouvez assigner des conversations à une équipe lorsque vous travaillez en collaboration. </p>",
"LIST": {
"404": "Il n'y a aucune équipe créée sur ce compte.",
"EDIT_TEAM": "Modifier l'équipe"
},
"CREATE_FLOW": {
"CREATE": {
"TITLE": "Créer une nouvelle équipe",
"DESC": "Ajoutez un titre et une description à votre nouvelle équipe."
},
"AGENTS": {
"BUTTON_TEXT": "Ajouter un agent à votre équipe",
"TITLE": "Ajouter des agents à l'équipe - %{teamName}",
"DESC": "Add Agents to your newly created team. This lets you collaborate as a team on conversations, get notified on new events in the same conversation."
},
"WIZARD": [
{
"title": "Créer",
"route": "settings_teams_new",
"body": "Create a new team of agents."
},
{
"title": "Ajouter des agents",
"route": "settings_teams_add_agents",
"body": "Add agents to the team."
},
{
"title": "Finish",
"route": "settings_teams_finish",
"body": "Vous êtes paré !"
}
]
},
"EDIT_FLOW": {
"CREATE": {
"TITLE": "Edit your team details",
"DESC": "Edit title and description to your team.",
"BUTTON_TEXT": "Update team"
},
"AGENTS": {
"BUTTON_TEXT": "Update agents in team",
"TITLE": "Ajouter des agents à l'équipe - %{teamName}",
"DESC": "Add Agents to your newly created team. All the added agents will be notified when a conversation is assigned to this team."
},
"WIZARD": [
{
"title": "Team details",
"route": "settings_teams_edit",
"body": "Change name, description and other details."
},
{
"title": "Edit Agents",
"route": "settings_teams_edit_members",
"body": "Edit agents in your team."
},
{
"title": "Finish",
"route": "settings_teams_edit_finish",
"body": "Vous êtes paré !"
}
]
},
"TEAM_FORM": {
"ERROR_MESSAGE": "Couldn't save the team details. Try again."
},
"AGENTS": {
"AGENT": "AGENT",
"EMAIL": "COURRIEL",
"BUTTON_TEXT": "Ajouter des agents",
"ADD_AGENTS": "Adding Agents to your Team...",
"SELECT": "select",
"SELECT_ALL": "select all agents",
"SELECTED_COUNT": "%{selected} out of %{total} agents selected."
},
"ADD": {
"TITLE": "Ajouter des agents à l'équipe - %{teamName}",
"DESC": "Add Agents to your newly created team. This lets you collaborate as a team on conversations, get notified on new events in the same conversation.",
"SELECT": "select",
"SELECT_ALL": "select all agents",
"SELECTED_COUNT": "%{selected} out of %{total} agents selected.",
"BUTTON_TEXT": "Ajouter des agents",
"AGENT_VALIDATION_ERROR": "Select atleaset one agent."
},
"FINISH": {
"TITLE": "Your team is ready!",
"MESSAGE": "You can now collaborate as a team on conversations. Happy supporting ",
"BUTTON_TEXT": "Finish"
},
"DELETE": {
"BUTTON_TEXT": "Supprimer",
"API": {
"SUCCESS_MESSAGE": "Team deleted successfully.",
"ERROR_MESSAGE": "Couldn't delete the team. Try again."
},
"CONFIRM": {
"TITLE": "Are you sure want to delete - %{teamName}",
"MESSAGE": "Deleting the team will remove the team assignment from the conversations assigned to this team.",
"YES": "Supprimer ",
"NO": "Annuler"
}
},
"SETTINGS": "Paramètres",
"FORM": {
"UPDATE": "Update team",
"CREATE": "Create team",
"NAME": {
"LABEL": "Team name",
"PLACEHOLDER": "Example: Sales, Customer Support"
},
"DESCRIPTION": {
"LABEL": "Team Description",
"PLACEHOLDER": "Short description about this team."
},
"AUTO_ASSIGN": {
"LABEL": "Allow auto assign for this team."
},
"SUBMIT_CREATE": "Create team"
}
}
}

View file

@ -43,7 +43,14 @@
"EDIT_CONTACT": {
"BUTTON_LABEL": "Edit Contact",
"TITLE": "Edit contact",
"DESC": "Edit contact details",
"DESC": "Edit contact details"
},
"CREATE_CONTACT": {
"BUTTON_LABEL": "New Contact",
"TITLE": "Create new contact",
"DESC": "Add basic information details about the contact."
},
"CONTACT_FORM": {
"FORM": {
"SUBMIT": "Submit",
"CANCEL": "Cancel",
@ -93,9 +100,9 @@
}
}
},
"SUCCESS_MESSAGE": "Updated contact successfully",
"SUCCESS_MESSAGE": "Contact saved successfully",
"CONTACT_ALREADY_EXIST": "This email address is in use for another contact.",
"ERROR_MESSAGE": "There was an error updating the contact, please try again"
"ERROR_MESSAGE": "There was an error, please try again"
},
"CONTACTS_PAGE": {
"HEADER": "Contacts",
@ -104,12 +111,18 @@
"LIST": {
"LOADING_MESSAGE": "Loading contacts...",
"404": "No contacts matches your search 🔍",
"TABLE_HEADER": [
"Name",
"Phone Number",
"Conversations",
"Last Contacted"
]
"TABLE_HEADER": {
"NAME": "Name",
"PHONE_NUMBER": "Phone Number",
"CONVERSATIONS": "Conversations",
"LAST_ACTIVITY": "Last Activity",
"COUNTRY": "Country",
"CITY": "City",
"SOCIAL_PROFILES": "Social Profiles",
"COMPANY": "Company",
"EMAIL_ADDRESS": "Email Address"
},
"VIEW_DETAILS": "View details"
}
}
}

View file

@ -11,7 +11,7 @@
"TITLE": "Search messages",
"LOADING_MESSAGE": "Crunching data...",
"PLACEHOLDER": "Type any text to search messages",
"NO_MATCHING_RESULTS": "There are no messages matching the search parameters."
"NO_MATCHING_RESULTS": "No results found."
},
"UNREAD_MESSAGES": "Unread Messages",
"UNREAD_MESSAGE": "Unread Message",
@ -51,6 +51,7 @@
"VISIBLE_TO_AGENTS": "Private Note: Only visible to you and your team",
"CHANGE_STATUS": "Conversation status changed",
"CHANGE_AGENT": "Conversation Assignee changed",
"CHANGE_TEAM": "Conversation team changed",
"SENT_BY": "Sent by:",
"ASSIGNMENT": {
"SELECT_AGENT": "Select Agent",
@ -74,5 +75,37 @@
"ERROR": "Please enter a valid email address"
}
}
},
"ONBOARDING": {
"TITLE": "Hey 👋, Welcome to %{installationName}!",
"DESCRIPTION": "Thanks for signing up. We want you to get the most out of %{installationName}. Here are a few things you can do in %{installationName} to make the experience delightful.",
"READ_LATEST_UPDATES": "Read our latest updates",
"ALL_CONVERSATION": {
"TITLE": "All your conversations in one place",
"DESCRIPTION": "View all the conversations from your customers in one single dashboard. You can filter the conversations by the incoming channel, label and status."
},
"TEAM_MEMBERS": {
"TITLE": "Invite your team members",
"DESCRIPTION": "Since you are getting ready to talk to your customer, bring in your teammates to assist you. You can invite your teammates by adding their email address to the agent list.",
"NEW_LINK": "Click here to invite a team member"
},
"INBOXES": {
"TITLE": "Connect Inboxes",
"DESCRIPTION": "Connect various channels through which your customers would be talking to you. It can be a website live-chat, your Facebook or Twitter page or even your WhatsApp number.",
"NEW_LINK": "Click here to create an inbox"
},
"LABELS": {
"TITLE": "Organize conversations with labels",
"DESCRIPTION": "Labels provide an easier way to categorize your conversation. Create some labels like #support-enquiry, #billing-question etc., so that you can use them in a conversation later.",
"NEW_LINK": "Click here to create tags"
}
},
"CONVERSATION_SIDEBAR": {
"DETAILS_TITLE": "Conversations Details",
"ASSIGNEE_LABEL": "Assigned Agent",
"TEAM_LABEL": "Assigned Team",
"SELECT": {
"PLACEHOLDER": "None"
}
}
}

View file

@ -38,7 +38,8 @@
"PICK_A_VALUE": "Pick a value"
},
"TWITTER": {
"HELP": "To add your Twitter profile as a channel, you need to authenticate your Twitter Profile by clicking on 'Sign in with Twitter' "
"HELP": "To add your Twitter profile as a channel, you need to authenticate your Twitter Profile by clicking on 'Sign in with Twitter' ",
"ERROR_MESSAGE": "There was an error connecting to Twitter, please try again"
},
"WEBSITE_CHANNEL": {
"TITLE": "Website channel",
@ -224,7 +225,9 @@
"TABS": {
"SETTINGS": "Settings",
"COLLABORATORS": "Collaborators",
"CONFIGURATION": "Configuration"
"CONFIGURATION": "Configuration",
"PRE_CHAT_FORM": "Pre Chat Form",
"BUSINESS_HOURS": "Business Hours"
},
"SETTINGS": "Settings",
"FEATURES": {
@ -250,6 +253,41 @@
"SUBTITLE": "Your Facebook connection has expired, please reconnect your Facebook page to continue services",
"MESSAGE_SUCCESS": "Reconnection successful",
"MESSAGE_ERROR": "There was an error, please try again"
},
"PRE_CHAT_FORM": {
"DESCRIPTION": "Pre chat forms enable you to capture user information before they start conversation with you.",
"ENABLE": {
"LABEL": "Enable pre chat form",
"OPTIONS": {
"ENABLED": "Yes",
"DISABLED": "No"
}
},
"PRE_CHAT_MESSAGE": {
"LABEL": "Pre Chat Message",
"PLACEHOLDER": "This message would be visible to the users along with the form"
},
"REQUIRE_EMAIL": {
"LABEL": "Visitors should provide their name and email address before starting the chat"
}
},
"BUSINESS_HOURS": {
"TITLE": "Set your availability",
"SUBTITLE": "Set your availability on your livechat widget",
"WEEKLY_TITLE": "Set your weekly hours",
"TIMEZONE_LABEL": "Select timezone",
"UPDATE": "Update business hours settings",
"TOGGLE_AVAILABILITY": "Enable business availability for this inbox",
"UNAVAILABLE_MESSAGE_LABEL": "Unavailable message for vistors",
"UNAVAILABLE_MESSAGE_DEFAULT": "We are unavailable at the moment. Leave a message we will respond once we are back.",
"TOGGLE_HELP": "Enabling business availability will show the available hours on live chat widget even if all the agents are offline. Outside available hours vistors can be warned with a message and a pre-chat form.",
"DAY": {
"ENABLE": "Enable availability for this day",
"UNAVAILABLE": "Unavailable",
"HOURS": "hours",
"VALIDATION_ERROR": "Starting time should be before closing time.",
"CHOOSE": "Choose"
}
}
}
}

View file

@ -0,0 +1,124 @@
{
"TEAMS_SETTINGS": {
"NEW_TEAM": "Create new team",
"HEADER": "Teams",
"SIDEBAR_TXT": "<p><b>Teams</b></p> <p>Teams let you organize your agents into groups based on their responsibilities. <br /> A user can be part of multiple teams. You can assign conversations to a team when you are working collaboratively. </p>",
"LIST": {
"404": "There are no teams created on this account.",
"EDIT_TEAM": "Edit team"
},
"CREATE_FLOW": {
"CREATE": {
"TITLE": "Create a new team",
"DESC": "Add a title and description to your new team."
},
"AGENTS": {
"BUTTON_TEXT": "Add agents to team",
"TITLE": "Add agents to team - %{teamName}",
"DESC": "Add Agents to your newly created team. This lets you collaborate as a team on conversations, get notified on new events in the same conversation."
},
"WIZARD": [
{
"title": "Create",
"route": "settings_teams_new",
"body": "Create a new team of agents."
},
{
"title": "Add Agents",
"route": "settings_teams_add_agents",
"body": "Add agents to the team."
},
{
"title": "Finish",
"route": "settings_teams_finish",
"body": "You are all set to go!"
}
]
},
"EDIT_FLOW": {
"CREATE": {
"TITLE": "Edit your team details",
"DESC": "Edit title and description to your team.",
"BUTTON_TEXT": "Update team"
},
"AGENTS": {
"BUTTON_TEXT": "Update agents in team",
"TITLE": "Add agents to team - %{teamName}",
"DESC": "Add Agents to your newly created team. All the added agents will be notified when a conversation is assigned to this team."
},
"WIZARD": [
{
"title": "Team details",
"route": "settings_teams_edit",
"body": "Change name, description and other details."
},
{
"title": "Edit Agents",
"route": "settings_teams_edit_members",
"body": "Edit agents in your team."
},
{
"title": "Finish",
"route": "settings_teams_edit_finish",
"body": "You are all set to go!"
}
]
},
"TEAM_FORM": {
"ERROR_MESSAGE": "Couldn't save the team details. Try again."
},
"AGENTS": {
"AGENT": "AGENT",
"EMAIL": "EMAIL",
"BUTTON_TEXT": "Add agents",
"ADD_AGENTS": "Adding Agents to your Team...",
"SELECT": "select",
"SELECT_ALL": "select all agents",
"SELECTED_COUNT": "%{selected} out of %{total} agents selected."
},
"ADD": {
"TITLE": "Add agents to team - %{teamName}",
"DESC": "Add Agents to your newly created team. This lets you collaborate as a team on conversations, get notified on new events in the same conversation.",
"SELECT": "select",
"SELECT_ALL": "select all agents",
"SELECTED_COUNT": "%{selected} out of %{total} agents selected.",
"BUTTON_TEXT": "Add agents",
"AGENT_VALIDATION_ERROR": "Select atleaset one agent."
},
"FINISH": {
"TITLE": "Your team is ready!",
"MESSAGE": "You can now collaborate as a team on conversations. Happy supporting ",
"BUTTON_TEXT": "Finish"
},
"DELETE": {
"BUTTON_TEXT": "Delete",
"API": {
"SUCCESS_MESSAGE": "Team deleted successfully.",
"ERROR_MESSAGE": "Couldn't delete the team. Try again."
},
"CONFIRM": {
"TITLE": "Are you sure want to delete - %{teamName}",
"MESSAGE": "Deleting the team will remove the team assignment from the conversations assigned to this team.",
"YES": "Delete ",
"NO": "Cancel"
}
},
"SETTINGS": "Settings",
"FORM": {
"UPDATE": "Update team",
"CREATE": "Create team",
"NAME": {
"LABEL": "Team name",
"PLACEHOLDER": "Example: Sales, Customer Support"
},
"DESCRIPTION": {
"LABEL": "Team Description",
"PLACEHOLDER": "Short description about this team."
},
"AUTO_ASSIGN": {
"LABEL": "Allow auto assign for this team."
},
"SUBMIT_CREATE": "Create team"
}
}
}

View file

@ -3,15 +3,15 @@
"HEADER": "Ügynökök",
"HEADER_BTN_TXT": "Ügynök Hozzádása",
"LOADING": "Ügynökök Listájának Lekérése",
"SIDEBAR_TXT": "<p><b>Agents</b></p> <p> An <b>Agent</b> is a member of your Customer Support team. </p><p> Agents will be able to view and reply to messages from your users. The list shows all agents currently in your account. </p><p> Click on <b>Add Agent</b> to add a new agent. Agent you add will receive an email with a confirmation link to activate their account, after which they can access Chatwoot and respond to messages. </p><p> Access to Chatwoot's features are based on following roles. </p><p> <b>Agent</b> - Agents with this role can only access inboxes, reports and conversations. They can assign conversations to other agents or themselves and resolve conversations.</p><p> <b>Administrator</b> - Administrator will have access to all Chatwoot features enabled for your account, including settings, along with all of a normal agents' privileges.</p>",
"SIDEBAR_TXT": "<p><b>Ügynökök</b></p> <p> Egy <b>Ügynök</b> tagja a terméktámogatási csapatodnak.</p> <p>Az ügynökök láthatják és válaszolhatnak a felhasználóid üzeneteire. A lista minden jelenleg a fiókodban található ügynököt mutatja.</p><p> Kattints az <b>Ügynök hozzáadásra</b> új ügynök hozzáadásához. Az ügynök amelyet hozzáadsz e-mailt fog kapni egy megerősítő linkkel, mellyel aktiválhatják a fiókjukat, mely után hozzáférést kapnak a Chatwoot-hoz és válaszolhatnak üzenetekre. </p><p>A Chatwoot lehetőségeihez a következő szerepkörök alapján férhet hozzá.</p><p><b>Ügynökök</b> - Ezzel a szerepkörrel rendelkező ügynökök hozzáférhetnek az inboxokhoz, jelentésekhez és beszélgetésekhez. Hozzárendelhetnek beszélgetéseket más ügynökökhöz vagy saját magukhoz és lezárhatnak beszélgetéseket.</p><p> <b>Adminisztrátor</b> - Az Adminisztrátor felhasználók hozzáférhetnek minden Chatwoot funkcióhoz mely a fiókhoz tartozik, beleértve a beállításokat, illetve a normális ügynöki felhasználói jogosultságokkal is bírnak.</p>",
"AGENT_TYPES": {
"ADMINISTRATOR": "Adminisztrátor",
"AGENT": "Ügynök"
},
"LIST": {
"404": "There are no agents associated to this account",
"TITLE": "Manage agents in your team",
"DESC": "You can add/remove agents to/in your team.",
"404": "Ehhez a fiókhoz nincs ügynök rendelve",
"TITLE": "A csapatod ügynökeinek kezelése",
"DESC": "Hozzáadhatsz és törölhetsz ügynököket a csapatodban.",
"NAME": "Név",
"EMAIL": "EMAIL",
"STATUS": "Státusz",
@ -42,24 +42,24 @@
"API": {
"SUCCESS_MESSAGE": "Ügynök sikeresen hozzáadva",
"EXIST_MESSAGE": "Az ügynök email cím már használatban van, kérjük próbálkozzon újra másik email címmel",
"ERROR_MESSAGE": "Could not connect to Woot Server, Please try again later"
"ERROR_MESSAGE": "Nem sikerült csatlakozni a Woot szerverhez, kérjük próbáld később"
}
},
"DELETE": {
"BUTTON_TEXT": "Delete",
"BUTTON_TEXT": "Törlés",
"API": {
"SUCCESS_MESSAGE": "Agent deleted successfully",
"ERROR_MESSAGE": "Could not connect to Woot Server, Please try again later"
"SUCCESS_MESSAGE": "Ügynök sikeresen hozzáadva",
"ERROR_MESSAGE": "Nem sikerült csatlakozni a Woot szerverhez, kérjük próbáld később"
},
"CONFIRM": {
"TITLE": "Confirm Deletion",
"MESSAGE": "Are you sure to delete ",
"YES": "Yes, Delete ",
"NO": "No, Keep "
"TITLE": "Törlés megerősítése",
"MESSAGE": "Biztos abban, hogy törli ",
"YES": "Igen, Törlés ",
"NO": "Nem, Mégse "
}
},
"EDIT": {
"TITLE": "Edit agent",
"TITLE": "Ügynök szerkesztése",
"FORM": {
"NAME": {
"LABEL": "Ügynök neve",
@ -74,23 +74,23 @@
"LABEL": "Email cím",
"PLACEHOLDER": "Kérjük adja meg az ügynök email címét"
},
"SUBMIT": "Edit Agent"
"SUBMIT": "Ügynök szerkesztése"
},
"BUTTON_TEXT": "Edit",
"CANCEL_BUTTON_TEXT": "Cancel",
"BUTTON_TEXT": "Szerkesztés",
"CANCEL_BUTTON_TEXT": "Mégse",
"API": {
"SUCCESS_MESSAGE": "Agent updated successfully",
"ERROR_MESSAGE": "Could not connect to Woot Server, Please try again later"
"SUCCESS_MESSAGE": "Ügynök sikeresen frissítve",
"ERROR_MESSAGE": "Nem sikerült csatlakozni a Woot szerverhez, kérjük próbáld később"
},
"PASSWORD_RESET": {
"ADMIN_RESET_BUTTON": "Reset Password",
"ADMIN_SUCCESS_MESSAGE": "An email with reset password instructions has been sent to the agent",
"SUCCESS_MESSAGE": "Agent password reset successfully",
"ERROR_MESSAGE": "Could not connect to Woot Server, Please try again later"
"ADMIN_RESET_BUTTON": "Új jelszó kérése",
"ADMIN_SUCCESS_MESSAGE": "Egy e-mail a jelszófrissítési utasításokkal sikeresen kiküldve az ügynöknek",
"SUCCESS_MESSAGE": "Ügynök jelszó sikeresen frissítve",
"ERROR_MESSAGE": "Nem sikerült csatlakozni a Woot szerverhez, kérjük próbáld később"
}
},
"SEARCH": {
"NO_RESULTS": "No agents found."
"NO_RESULTS": "Nem találunk ügynököt."
}
}
}

View file

@ -1,75 +1,75 @@
{
"CANNED_MGMT": {
"HEADER": "Canned Responses",
"HEADER_BTN_TXT": "Add Canned Response",
"LOADING": "Fetching Canned Responses",
"SEARCH_404": "There are no items matching this query",
"SIDEBAR_TXT": "<p><b>Canned Responses</b> </p><p> Canned Responses are saved reply templates which can be used to quickly send out a reply to a conversation . </p><p> For creating a Canned Response, just click on the <b>Add Canned Response</b>. You can also edit or delete an existing Canned Response by clicking on the Edit or Delete button </p><p> Canned responses are used with the help of <b>Short Codes</b>. Agents can access canned responses while on a chat by typing <b>'/'</b> followed by the short code. </p>",
"HEADER": "Mentett válaszok",
"HEADER_BTN_TXT": "Mentett válasz hozzáadása",
"LOADING": "Mentett válaszok letöltése",
"SEARCH_404": "Nincs megfelelő elem",
"SIDEBAR_TXT": "<p><b>Mentett válaszok</b> </p><p> A mentett válaszok sablonok, melyeket gyors válaszok kiküldésére használhatsz. </p><p> Mentett válasz létrehozásához kattints a <b>Mentett válasz létrehozása</b>-ra. Szerkesztheted vagy törölheted is a mentett válaszokat a Szerkesztés és Törlés gombokkal. A mentett válaszokat <b>rövidkódok</b> segítéségével használhatod. Az ügynökök a <b>'/'</b> jel begépelésével és a megfelelő rövidkód begépelésével férhetnek hozzá a válaszokhoz.</p>",
"LIST": {
"404": "There are no canned responses available in this account.",
"TITLE": "Manage canned responses",
"DESC": "Canned Responses are predefined reply templates which can be used to quickly send out replies to tickets.",
"404": "Nincs megfelelő mentett válasz ebben a fiókban.",
"TITLE": "Mentett válaszok kezelése",
"DESC": "A mentett válaszok előre meghatározott sablonok, melyeket gyors válaszok kiküldésére használhatsz.",
"TABLE_HEADER": [
"Short Code",
"Content",
"Rövidkód",
"Tartalom",
"Műveletek"
]
},
"ADD": {
"TITLE": "Add Canned Response",
"DESC": "Canned Responses are saved reply templates which can be used to quickly send out reply to conversation .",
"CANCEL_BUTTON_TEXT": "Cancel",
"TITLE": "Mentett válasz hozzáadása",
"DESC": "A mentett válaszok előre meghatározott sablonok, melyeket gyors válaszok kiküldésére használhatsz .",
"CANCEL_BUTTON_TEXT": "Mégse",
"FORM": {
"SHORT_CODE": {
"LABEL": "Short Code",
"PLACEHOLDER": "Please enter a shortcode",
"ERROR": "Short Code is required"
"LABEL": "Rövidkód",
"PLACEHOLDER": "Kérjük adj meg egy Rövidkódot",
"ERROR": "Rövidkód szükséges"
},
"CONTENT": {
"LABEL": "Content",
"PLACEHOLDER": "Please enter a content",
"ERROR": "Content is required"
"LABEL": "Tartalom",
"PLACEHOLDER": "Kérjük adj meg tartalmat",
"ERROR": "Tartalom szükséges"
},
"SUBMIT": "Submit"
"SUBMIT": "Elküldés"
},
"API": {
"SUCCESS_MESSAGE": "Canned Response added successfully",
"ERROR_MESSAGE": "Could not connect to Woot Server, Please try again later"
"SUCCESS_MESSAGE": "A mentett válasz sikeresen hozzáadva",
"ERROR_MESSAGE": "Nem sikerült csatlakozni a Woot szerverhez, kérjük próbáld később"
}
},
"EDIT": {
"TITLE": "Edit Canned Response",
"CANCEL_BUTTON_TEXT": "Cancel",
"TITLE": "Mentett válasz szerkesztése",
"CANCEL_BUTTON_TEXT": "Mégse",
"FORM": {
"SHORT_CODE": {
"LABEL": "Short Code",
"PLACEHOLDER": "Please enter a shortcode",
"ERROR": "Short Code is required"
"LABEL": "Rövidkód",
"PLACEHOLDER": "Kérjük adj meg egy Rövidkódot",
"ERROR": "Rövidkód szükséges"
},
"CONTENT": {
"LABEL": "Content",
"PLACEHOLDER": "Please enter a content",
"ERROR": "Content is required"
"LABEL": "Tartalom",
"PLACEHOLDER": "Kérjük adj meg tartalmat",
"ERROR": "Tartalom szükséges"
},
"SUBMIT": "Submit"
"SUBMIT": "Elküldés"
},
"BUTTON_TEXT": "Edit",
"BUTTON_TEXT": "Szerkesztés",
"API": {
"SUCCESS_MESSAGE": "Canned Response updated successfully",
"ERROR_MESSAGE": "Could not connect to Woot Server, Please try again later"
"SUCCESS_MESSAGE": "A mentett válasz sikeresen frissítve",
"ERROR_MESSAGE": "Nem sikerült csatlakozni a Woot szerverhez, kérjük próbáld később"
}
},
"DELETE": {
"BUTTON_TEXT": "Delete",
"BUTTON_TEXT": "Törlés",
"API": {
"SUCCESS_MESSAGE": "Canned response deleted successfully",
"ERROR_MESSAGE": "Could not connect to Woot Server, Please try again later"
"SUCCESS_MESSAGE": "A mentett válasz sikeresen törölve",
"ERROR_MESSAGE": "Nem sikerült csatlakozni a Woot szerverhez, kérjük próbáld később"
},
"CONFIRM": {
"TITLE": "Confirm Deletion",
"MESSAGE": "Are you sure to delete ",
"YES": "Yes, Delete ",
"NO": "No, Keep "
"TITLE": "Törlés megerősítése",
"MESSAGE": "Biztos abban, hogy törli ",
"YES": "Igen, Törlés ",
"NO": "Nem, Mégse "
}
}
}

View file

@ -1,49 +1,49 @@
{
"CHAT_LIST": {
"LOADING": "Fetching conversations",
"LOAD_MORE_CONVERSATIONS": "Load more conversations",
"EOF": "All conversations loaded 🎉",
"LOADING": "Beszélgetések betöltése",
"LOAD_MORE_CONVERSATIONS": "További beszélgetések betöltése",
"EOF": "Minden beszélgetés betöltve 🎉",
"LIST": {
"404": "There are no active conversations in this group."
"404": "Nincs aktív üzenetváltás ebben a csoportban."
},
"TAB_HEADING": "Conversations",
"TAB_HEADING": "Beszélgetések",
"SEARCH": {
"INPUT": "Search for People, Chats, Saved Replies .."
"INPUT": "Keresés: emberek, beszélgetése, mentett válaszok .."
},
"STATUS_TABS": [
{
"NAME": "Open",
"NAME": "Megnyitás",
"KEY": "openCount"
},
{
"NAME": "Resolved",
"NAME": "Megoldva",
"KEY": "allConvCount"
}
],
"ASSIGNEE_TYPE_TABS": [
{
"NAME": "Mine",
"NAME": "Enyém",
"KEY": "me",
"COUNT_KEY": "mineCount"
},
{
"NAME": "Unassigned",
"NAME": "Gazdátlan",
"KEY": "unassigned",
"COUNT_KEY": "unAssignedCount"
},
{
"NAME": "All",
"NAME": "Mind",
"KEY": "all",
"COUNT_KEY": "allCount"
}
],
"CHAT_STATUS_ITEMS": [
{
"TEXT": "Open",
"TEXT": "Megnyitás",
"VALUE": "open"
},
{
"TEXT": "Resolved",
"TEXT": "Megoldva",
"VALUE": "resolved"
},
{
@ -54,32 +54,32 @@
"ATTACHMENTS": {
"image": {
"ICON": "ion-image",
"CONTENT": "Picture message"
"CONTENT": "Képüzenet"
},
"audio": {
"ICON": "ion-volume-high",
"CONTENT": "Audio message"
"CONTENT": "Hangüzenet"
},
"video": {
"ICON": "ion-ios-videocam",
"CONTENT": "Video message"
"CONTENT": "Videoüzenet"
},
"file": {
"ICON": "ion-document",
"CONTENT": "File Attachment"
"CONTENT": "Csatolt file"
},
"location": {
"ICON": "ion-ios-location",
"CONTENT": "Location"
"CONTENT": "Hely"
},
"fallback": {
"ICON": "ion-link",
"CONTENT": "has shared a url"
"CONTENT": "megosztott URL-t tartalmaz"
}
},
"RECEIVED_VIA_EMAIL": "Received via email",
"VIEW_TWEET_IN_TWITTER": "View tweet in Twitter",
"REPLY_TO_TWEET": "Reply to this tweet",
"NO_MESSAGES": "No Messages"
"RECEIVED_VIA_EMAIL": "E-mailen keresztül érkezett",
"VIEW_TWEET_IN_TWITTER": "Üzenet megtekintése Twitteren",
"REPLY_TO_TWEET": "Válasz",
"NO_MESSAGES": "Nincs üzenet"
}
}

View file

@ -1,115 +1,128 @@
{
"CONTACT_PANEL": {
"NOT_AVAILABLE": "Not Available",
"NOT_AVAILABLE": "Nem elérhető",
"EMAIL_ADDRESS": "Email cím",
"PHONE_NUMBER": "Phone number",
"COPY_SUCCESSFUL": "Copied to clipboard successfully",
"COMPANY": "Company",
"LOCATION": "Location",
"CONVERSATION_TITLE": "Conversation Details",
"BROWSER": "Browser",
"OS": "Operating System",
"INITIATED_FROM": "Initiated from",
"INITIATED_AT": "Initiated at",
"IP_ADDRESS": "IP Address",
"PHONE_NUMBER": "Telefonszám",
"COPY_SUCCESSFUL": "Vágólapra másolva",
"COMPANY": "Cég",
"LOCATION": "Hely",
"CONVERSATION_TITLE": "Beszélgetés részletei",
"BROWSER": "Böngésző",
"OS": "Operációs rendszer",
"INITIATED_FROM": "Kezdeményezve",
"INITIATED_AT": "Kezdeményezve",
"IP_ADDRESS": "IP cím",
"CONVERSATIONS": {
"NO_RECORDS_FOUND": "There are no previous conversations associated to this contact.",
"TITLE": "Previous Conversations"
"NO_RECORDS_FOUND": "Nincs megelőző beszélgetés ezzel a kontakttal.",
"TITLE": "Korábbi beszélgetések"
},
"CUSTOM_ATTRIBUTES": {
"TITLE": "Custom Attributes"
"TITLE": "Egyedi atribútumok"
},
"LABELS": {
"TITLE": "Conversation Labels",
"TITLE": "Beszélgetés cimkék",
"MODAL": {
"TITLE": "Labels for",
"ACTIVE_LABELS": "Labels added to the conversation",
"INACTIVE_LABELS": "Labels available in the account",
"REMOVE": "Click on X icon to remove the label",
"ADD": "Click on + icon to add the label",
"UPDATE_BUTTON": "Update labels",
"UPDATE_ERROR": "Couldn't update labels, try again."
"TITLE": "Kapcsolódó cimkék",
"ACTIVE_LABELS": "A beszélgetéshez hozzáadott cimkék",
"INACTIVE_LABELS": "A fiókhoz tartozó cimkék",
"REMOVE": "Kattints az X ikonra a cimke eltávolításához",
"ADD": "Kattints a + ikonra a cimke hozzáadásához",
"UPDATE_BUTTON": "Cimkék frissítése",
"UPDATE_ERROR": "Cimke frissítés sikertelen, kérjük próbáld később."
},
"NO_LABELS_TO_ADD": "There are no more labels defined in the account.",
"NO_AVAILABLE_LABELS": "There are no labels added to this conversation."
"NO_LABELS_TO_ADD": "Ebben a fiókban már nincsenek további cimkék.",
"NO_AVAILABLE_LABELS": "Nincs több cimke ehhez a beszélgetéshez."
},
"MUTE_CONTACT": "Mute Conversation",
"UNMUTE_CONTACT": "Unmute Conversation",
"MUTED_SUCCESS": "This conversation is muted for 6 hours",
"UNMUTED_SUCCESS": "This conversation is unmuted",
"SEND_TRANSCRIPT": "Send Transcript",
"EDIT_LABEL": "Edit"
"MUTE_CONTACT": "Beszélgetés elnémítása",
"UNMUTE_CONTACT": "Beszélgetés elnémításának feloldása",
"MUTED_SUCCESS": "A beszélgetés 6 órára elnémítva",
"UNMUTED_SUCCESS": "A beszélgetés elnémítása megszűntetve",
"SEND_TRANSCRIPT": "Jegyzetek elküldése",
"EDIT_LABEL": "Szerkesztés"
},
"EDIT_CONTACT": {
"BUTTON_LABEL": "Edit Contact",
"TITLE": "Edit contact",
"DESC": "Edit contact details",
"BUTTON_LABEL": "Jegyzetek szerkesztése",
"TITLE": "Kontakt szerkesztése",
"DESC": "Kontakt részletek szerkesztése"
},
"CREATE_CONTACT": {
"BUTTON_LABEL": "Új kontakt",
"TITLE": "Új kontakt létrehozása",
"DESC": "Alapvető információ a kontaktról."
},
"CONTACT_FORM": {
"FORM": {
"SUBMIT": "Submit",
"CANCEL": "Cancel",
"SUBMIT": "Elküldés",
"CANCEL": "Mégse",
"AVATAR": {
"LABEL": "Contact Avatar"
"LABEL": "Kontakt avatarja"
},
"NAME": {
"PLACEHOLDER": "Enter the full name of the contact",
"LABEL": "Full Name"
"PLACEHOLDER": "A kontakt teljes nevének megadása",
"LABEL": "Teljes név"
},
"BIO": {
"PLACEHOLDER": "Enter the bio of the contact",
"LABEL": "Bio"
"PLACEHOLDER": "A kontakt önéletrajzának megadása",
"LABEL": "Önéletrajz"
},
"EMAIL_ADDRESS": {
"PLACEHOLDER": "Enter the email address of the contact",
"PLACEHOLDER": "A kontakt e-mailjének megadása",
"LABEL": "Email cím"
},
"PHONE_NUMBER": {
"PLACEHOLDER": "Enter the phone number of the contact",
"LABEL": "Phone Number"
"PLACEHOLDER": "A kontakt telefonszámának megadása",
"LABEL": "Telefonszám"
},
"LOCATION": {
"PLACEHOLDER": "Enter the location of the contact",
"LABEL": "Location"
"PLACEHOLDER": "A kontakt helyének megadása",
"LABEL": "Hely"
},
"COMPANY_NAME": {
"PLACEHOLDER": "Enter the company name",
"LABEL": "Company Name"
"PLACEHOLDER": "Cégnév megadása",
"LABEL": "Cégnév"
},
"SOCIAL_PROFILES": {
"FACEBOOK": {
"PLACEHOLDER": "Enter the Facebook username",
"PLACEHOLDER": "Facebook felhasználó megadása",
"LABEL": "Facebook"
},
"TWITTER": {
"PLACEHOLDER": "Enter the Twitter username",
"PLACEHOLDER": "Twitter felhasználó megadása",
"LABEL": "Twitter"
},
"LINKEDIN": {
"PLACEHOLDER": "Enter the LinkedIn username",
"PLACEHOLDER": "Linkedin usernév hozzáadása",
"LABEL": "LinkedIn"
},
"GITHUB": {
"PLACEHOLDER": "Enter the Github username",
"PLACEHOLDER": "Github felhasználó megadása",
"LABEL": "Github"
}
}
},
"SUCCESS_MESSAGE": "Updated contact successfully",
"CONTACT_ALREADY_EXIST": "This email address is in use for another contact.",
"ERROR_MESSAGE": "There was an error updating the contact, please try again"
"SUCCESS_MESSAGE": "Kontakt mentés sikeres",
"CONTACT_ALREADY_EXIST": "Az e-mailcím már egy másik kontakthoz tartozik.",
"ERROR_MESSAGE": "Hiba történt, kérjük próbáld újra"
},
"CONTACTS_PAGE": {
"HEADER": "Contacts",
"SEARCH_BUTTON": "Search",
"SEARCH_INPUT_PLACEHOLDER": "Search for contacts",
"HEADER": "Kontaktok",
"SEARCH_BUTTON": "Keresés",
"SEARCH_INPUT_PLACEHOLDER": "Kontaktok keresése",
"LIST": {
"LOADING_MESSAGE": "Loading contacts...",
"404": "No contacts matches your search 🔍",
"TABLE_HEADER": [
"Név",
"Phone Number",
"Conversations",
"Last Contacted"
]
"LOADING_MESSAGE": "Kontaktok betöltése...",
"404": "Nincs a keresésnek megfelelő kontakt 🔍",
"TABLE_HEADER": {
"NAME": "Név",
"PHONE_NUMBER": "Telefonszám",
"CONVERSATIONS": "Beszélgetések",
"LAST_ACTIVITY": "Utolsó aktivitás",
"COUNTRY": "Ország",
"CITY": "Város",
"SOCIAL_PROFILES": "Social media profilok",
"COMPANY": "Cég",
"EMAIL_ADDRESS": "Email cím"
},
"VIEW_DETAILS": "Részletek megtekintése"
}
}
}

View file

@ -1,78 +1,111 @@
{
"CONVERSATION": {
"404": "Please select a conversation from left pane",
"NO_MESSAGE_1": "Uh oh! Looks like there are no messages from customers in your inbox.",
"NO_MESSAGE_2": " to send a message to your page!",
"NO_INBOX_1": "Hola! Looks like you haven't added any inboxes yet.",
"NO_INBOX_2": " to get started",
"NO_INBOX_AGENT": "Uh Oh! Looks like you are not part of any inbox. Please contact your administrator",
"SEARCH_MESSAGES": "Search for messages in conversations",
"404": "Kérjük válassz egy beszélgetést a bal sávból",
"NO_MESSAGE_1": "Jajj ne! Úgy tűnik, hogy nincs több ügyfélbeszélgetés az inboxodban.",
"NO_MESSAGE_2": "egy üzenet küldéséhez az oldaladra!",
"NO_INBOX_1": "Hola! Úgy tűnik, hogy még nem adtál hozzá fiókokat.",
"NO_INBOX_2": " Első lépések",
"NO_INBOX_AGENT": "O-Ó! Úgy tűnik, hogy egyetlen fióknak sem vagy tagja. Kérjük lépj kapcsolatba az adminisztrátoroddal",
"SEARCH_MESSAGES": "Üzenetek keresése a beszélgetésekben",
"SEARCH": {
"TITLE": "Search messages",
"LOADING_MESSAGE": "Crunching data...",
"PLACEHOLDER": "Type any text to search messages",
"NO_MATCHING_RESULTS": "There are no messages matching the search parameters."
"TITLE": "Üzenetekben keresés",
"LOADING_MESSAGE": "Adatelemzés...",
"PLACEHOLDER": "Írj be szöveget hogy keress az üzenetek közt",
"NO_MATCHING_RESULTS": "No results found."
},
"UNREAD_MESSAGES": "Unread Messages",
"UNREAD_MESSAGE": "Unread Message",
"CLICK_HERE": "Click here",
"LOADING_INBOXES": "Loading inboxes",
"LOADING_CONVERSATIONS": "Loading Conversations",
"CANNOT_REPLY": "You cannot reply due to",
"24_HOURS_WINDOW": "24 hour message window restriction",
"LAST_INCOMING_TWEET": "You are replying to the last incoming tweet",
"REPLYING_TO": "You are replying to:",
"REMOVE_SELECTION": "Remove Selection",
"DOWNLOAD": "Download",
"UPLOADING_ATTACHMENTS": "Uploading attachments...",
"NO_RESPONSE": "No response",
"UNREAD_MESSAGES": "Olvasatlan üzenetek",
"UNREAD_MESSAGE": "Olvasatlan üzenet",
"CLICK_HERE": "Kattints ide",
"LOADING_INBOXES": "Postaládák betöltése",
"LOADING_CONVERSATIONS": "Beszélgetések betöltése",
"CANNOT_REPLY": "Nem tudunk válaszolni, mivel",
"24_HOURS_WINDOW": "24 órás üzeneti ablak megkötés",
"LAST_INCOMING_TWEET": "Az utolsó beérkező tweetre válaszolsz",
"REPLYING_TO": "Neki válaszolsz:",
"REMOVE_SELECTION": "Kijelölés törlése",
"DOWNLOAD": "Letöltés",
"UPLOADING_ATTACHMENTS": "Csatolt fileok feltöltése...",
"NO_RESPONSE": "Nincs válasz",
"HEADER": {
"RESOLVE_ACTION": "Resolve",
"REOPEN_ACTION": "Reopen",
"OPEN": "More",
"CLOSE": "Close",
"DETAILS": "details"
"RESOLVE_ACTION": "Megoldva",
"REOPEN_ACTION": "Újranyitás",
"OPEN": "Tovább",
"CLOSE": "Bezárás",
"DETAILS": "részletek"
},
"FOOTER": {
"MSG_INPUT": "Shift + enter for new line. Start with '/' to select a Canned Response.",
"PRIVATE_MSG_INPUT": "Shift + enter for new line. This will be visible only to Agents"
"MSG_INPUT": "Shift + enter új sorért. Kezdj a '/'-el mentett válasz kiválasztásához.",
"PRIVATE_MSG_INPUT": "Shift + enter új sorért. Ezt csak ügynökök láthatják"
},
"REPLYBOX": {
"REPLY": "Reply",
"PRIVATE_NOTE": "Private Note",
"SEND": "Send",
"CREATE": "Add Note",
"REPLY": "Válasz",
"PRIVATE_NOTE": "Privát üzenet",
"SEND": "Elküldés",
"CREATE": "Megjegyzés hozzáadása",
"TWEET": "Tweet",
"TIP_FORMAT_ICON": "Show rich text editor",
"TIP_EMOJI_ICON": "Show emoji selector",
"TIP_ATTACH_ICON": "Attach files",
"ENTER_TO_SEND": "Enter to send"
"TIP_FORMAT_ICON": "Rich szövegszerkesztő mutatása",
"TIP_EMOJI_ICON": "Emoji választó mutatása",
"TIP_ATTACH_ICON": "Fileok csatolása",
"ENTER_TO_SEND": "Enter-rel elküld"
},
"VISIBLE_TO_AGENTS": "Private Note: Only visible to you and your team",
"CHANGE_STATUS": "Conversation status changed",
"CHANGE_AGENT": "Conversation Assignee changed",
"SENT_BY": "Sent by:",
"VISIBLE_TO_AGENTS": "Privát megjegyzés: csak Neked és a csapat tagjainak látható",
"CHANGE_STATUS": "A beszélgetés státusza megváltozott",
"CHANGE_AGENT": "Hozzárendelt ügynök megváltoztatva",
"CHANGE_TEAM": "Conversation team changed",
"SENT_BY": "Küldő:",
"ASSIGNMENT": {
"SELECT_AGENT": "Select Agent",
"REMOVE": "Remove",
"ASSIGN": "Assign"
"SELECT_AGENT": "Ügynök kiválasztása",
"REMOVE": "Eltávolítás",
"ASSIGN": "Hozzárendelés"
}
},
"EMAIL_TRANSCRIPT": {
"TITLE": "Send conversation transcript",
"DESC": "Send a copy of the conversation transcript to the specified email address",
"SUBMIT": "Submit",
"CANCEL": "Cancel",
"SEND_EMAIL_SUCCESS": "The chat transcript was sent successfully",
"SEND_EMAIL_ERROR": "There was an error, please try again",
"TITLE": "Beszélgetés kivonat elküldése",
"DESC": "A beszélgetés másolatának elküldése egy megadott e-mailcímre",
"SUBMIT": "Elküldés",
"CANCEL": "Mégse",
"SEND_EMAIL_SUCCESS": "A beszélgetés jegyzet sikeresen elküldve",
"SEND_EMAIL_ERROR": "Hiba történt, kérjük próbáld újra",
"FORM": {
"SEND_TO_CONTACT": "Send the transcript to the customer",
"SEND_TO_AGENT": "Send the transcript to the assigned agent",
"SEND_TO_OTHER_EMAIL_ADDRESS": "Send the transcript to another email address",
"SEND_TO_CONTACT": "A beszélgetés jegyzet elküldése az ügyfélnek",
"SEND_TO_AGENT": "A beszélgetés jegyzet elküldése a hozzárendelt ügynöknek",
"SEND_TO_OTHER_EMAIL_ADDRESS": "Küldj jegyzetet egy másik e-mailcímre",
"EMAIL": {
"PLACEHOLDER": "Enter an email address",
"ERROR": "Please enter a valid email address"
"PLACEHOLDER": "E-mailcím megadása",
"ERROR": "Kérjük helyes e-mailcímet adj meg"
}
}
},
"ONBOARDING": {
"TITLE": "Hello 👋, köszöntünk a %{installationName}!",
"DESCRIPTION": "Köszönjük, hogy feliratkoztál. Segíteni akarunk, hogy a legtöbbet hozd ki a %{installationName}. Itt találsz egy pár dolgot, amit a %{installationName} lehetővé tesz.",
"READ_LATEST_UPDATES": "Olvasd el legfrissebbeket",
"ALL_CONVERSATION": {
"TITLE": "Minden beszélgetésed egy helyen",
"DESCRIPTION": "Kövesd az összes ügyfélbeszélgetésedet egy felületről. Szűrheted a beszélgetéseket csatorna, cimke vagy státusz alapján."
},
"TEAM_MEMBERS": {
"TITLE": "Hívd meg csapattagjaidat",
"DESCRIPTION": "Mivel éppen ügyféllel készülsz beszélni, hívd meg a csapattagjaidat, hogy segítségül legyenek. Az e-mailcímük ügynöklistába való megadásával tudod meghívni őket.",
"NEW_LINK": "Kattints ide csapattag meghívásához"
},
"INBOXES": {
"TITLE": "Inboxok összekötése",
"DESCRIPTION": "Különböző csatornákat használva kapcsolódj az ügyfeleidhez. Weboldal chateden, a Facebook vagy Twitter fiókodon, vagy akár WhatsApp számodon keresztül.",
"NEW_LINK": "Kattints ide postaláda létrehozásához"
},
"LABELS": {
"TITLE": "Rendezd a beszélgetéseket cimkékkel",
"DESCRIPTION": "A cimkék egyszerű módot biztosítanak hogy kategorizáld a beszélgetést. Hozz létre cimkéket, mint például a #támogatás vagy a #számlázás, stb... későbbi használatra.",
"NEW_LINK": "Kattints ide cimkék létrehozásához"
}
},
"CONVERSATION_SIDEBAR": {
"DETAILS_TITLE": "Conversations Details",
"ASSIGNEE_LABEL": "Assigned Agent",
"TEAM_LABEL": "Assigned Team",
"SELECT": {
"PLACEHOLDER": "None"
}
}
}

View file

@ -1,75 +1,75 @@
{
"GENERAL_SETTINGS": {
"TITLE": "Account settings",
"SUBMIT": "Update settings",
"BACK": "Back",
"TITLE": "Fiókbeállítások",
"SUBMIT": "Beállítások frissítése",
"BACK": "Vissza",
"UPDATE": {
"ERROR": "Could not update settings, try again!",
"SUCCESS": "Successfully updated account settings"
"ERROR": "Beállítás frissítés sikertelen, kérjük próbáld később!",
"SUCCESS": "Fiókbeállítások frissítve"
},
"FORM": {
"ERROR": "Please fix form errors",
"ERROR": "Kérjük javítsd ki az űrlaphibákat",
"GENERAL_SECTION": {
"TITLE": "General settings",
"TITLE": "Általános beállítások",
"NOTE": ""
},
"NAME": {
"LABEL": "Account name",
"PLACEHOLDER": "Your account name",
"ERROR": "Please enter a valid account name"
"LABEL": "Fióknév",
"PLACEHOLDER": "A fiókneved",
"ERROR": "Kérjük helyes fióknevet adj meg"
},
"LANGUAGE": {
"LABEL": "Site language (Beta)",
"PLACEHOLDER": "Your account name",
"LABEL": "Oldal nyelve (Béta)",
"PLACEHOLDER": "A fiókneved",
"ERROR": ""
},
"DOMAIN": {
"LABEL": "Incoming Email Domain",
"PLACEHOLDER": "The domain where you will receive the emails",
"LABEL": "Beérkező e-mail domain",
"PLACEHOLDER": "A domain melyen az e-maileket fogadod",
"ERROR": ""
},
"SUPPORT_EMAIL": {
"LABEL": "Support Email",
"PLACEHOLDER": "Your company's support email",
"LABEL": "Támogatási e-mail",
"PLACEHOLDER": "A vállalati támogatási e-mailcímed",
"ERROR": ""
},
"AUTO_RESOLVE_DURATION": {
"LABEL": "Number of days after a ticket should auto resolve if there is no activity",
"LABEL": "A napok száma, mely után a ticketek automatikusan megoldódnak, ha nincs aktivitás",
"PLACEHOLDER": "30",
"ERROR": "Please enter a valid auto resolve duration (minimum 1 day)"
"ERROR": "Kérjük helyes auto megoldási időszakot adj meg (minimum 1 nap)"
},
"FEATURES": {
"INBOUND_EMAIL_ENABLED": "Conversation continuity with emails is enabled for your account.",
"CUSTOM_EMAIL_DOMAIN_ENABLED": "You can receive emails in your custom domain now."
"INBOUND_EMAIL_ENABLED": "A beszélgetésfolytonosság e-maillel már elérhető a fiókodban.",
"CUSTOM_EMAIL_DOMAIN_ENABLED": "Most már goadhatsz e-maileket az egyedi domaineden."
}
},
"UPDATE_CHATWOOT": "An update %{latestChatwootVersion} for Chatwoot is available. Please update your instance."
"UPDATE_CHATWOOT": "Egy frissítés elérhető a Chatwoothoz %{latestChatwootVersion}. Kérjük frissítsd a telepítésed."
},
"FORMS": {
"MULTISELECT": {
"ENTER_TO_SELECT": "Press enter to select",
"ENTER_TO_REMOVE": "Press enter to remove",
"SELECT_ONE": "Select one"
"ENTER_TO_SELECT": "Enter-rel válaszd ki",
"ENTER_TO_REMOVE": "Enter-rel távolítsd el",
"SELECT_ONE": "Válassz egyet"
}
},
"NOTIFICATIONS_PAGE": {
"HEADER": "Notifications",
"MARK_ALL_DONE": "Mark All Done",
"HEADER": "Értesítések",
"MARK_ALL_DONE": "Mind kész",
"LIST": {
"LOADING_MESSAGE": "Loading notifications...",
"404": "No Notifications",
"LOADING_MESSAGE": "Értesítések betöltése...",
"404": "Nincs értesítés",
"TABLE_HEADER": [
"Név",
"Phone Number",
"Conversations",
"Last Contacted"
"Telefonszám",
"Beszélgetések",
"Utoljára kapcsolatban"
]
},
"TYPE_LABEL": {
"conversation_creation": "New conversation",
"conversation_assignment": "Conversation Assigned",
"assigned_conversation_new_message": "New Message",
"conversation_mention": "Mention"
"conversation_creation": "Új beszélgetés",
"conversation_assignment": "Beszélgetés hozzárendelve",
"assigned_conversation_new_message": "Új üzenet",
"conversation_mention": "Megemlítés"
}
}
}

View file

@ -1,255 +1,293 @@
{
"INBOX_MGMT": {
"HEADER": "Inboxes",
"SIDEBAR_TXT": "<p><b>Inbox</b></p> <p> When you connect a website or a facebook Page to Chatwoot, it is called an <b>Inbox</b>. You can have unlimited inboxes in your Chatwoot account. </p><p> Click on <b>Add Inbox</b> to connect a website or a Facebook Page. </p><p> In the Dashboard, you can see all the conversations from all your inboxes in a single place and respond to them under the `Conversations` tab. </p><p> You can also see conversations specific to an inbox by clicking on the inbox name on the left pane of the dashboard. </p>",
"HEADER": "Fiókok",
"SIDEBAR_TXT": "<p><b>Inbox</b></p><p>Amikor egy weboldalt vagy facebook oldalt összekötsz a Chatwoottal, <b>inbox</b>-nak vagy fióknak hívjuk. Korlátlan inboxod lehet a Chatwoot fiókodban. </p><p>Kattints a <b>Inbox hozzáadása</b> gombra hogy összekapcsold a weboldaladdal vagy Facebook oldaladdal.</p><p>A műszerfaladon láthatod az összes beszélgetésedet az összes fiókodból egy helyen és válszolhatsz a 'Beszélgetések' fülön.</p><p>Láthatsz továbbá fiókhoz kapcsolódó beszélgetéseket a fiók nevére kattintva a műszerfal bal sávjában.</p>",
"LIST": {
"404": "There are no inboxes attached to this account."
"404": "Nincs Inbox kapcsolva ehhez a fiókhoz."
},
"CREATE_FLOW": [
{
"title": "Choose Channel",
"title": "Csatorna kiválasztása",
"route": "settings_inbox_new",
"body": "Choose the provider you want to integrate with Chatwoot."
"body": "Válasz egy szolgáltatót, melyet össze akarsz integrálni a Chatwoottal."
},
{
"title": "Create Inbox",
"title": "Fiók létrehozása",
"route": "settings_inboxes_page_channel",
"body": "Authenticate your account and create an inbox."
"body": "Hitelesítsd a fiókod és hozz létre egy inboxot."
},
{
"title": "Add Agents",
"title": "Ügynök Hozzádása",
"route": "settings_inboxes_add_agents",
"body": "Add agents to the created inbox."
"body": "Adj hozzá ügynököket a létrehozott inboxhoz."
},
{
"title": "Voila!",
"title": "Tadaaam!",
"route": "settings_inbox_finish",
"body": "You are all set to go!"
"body": "Mindennel készen állsz!"
}
],
"ADD": {
"FB": {
"HELP": "PS: By signing in, we only get access to your Page's messages. Your private messages can never be accessed by Chatwoot.",
"CHOOSE_PAGE": "Choose Page",
"CHOOSE_PLACEHOLDER": "Select a page from the list",
"INBOX_NAME": "Inbox Name",
"ADD_NAME": "Add a name for your inbox",
"PICK_NAME": "Pick A Name Your Inbox",
"PICK_A_VALUE": "Pick a value"
"HELP": "UI: A bejelentkezéseddel csak az oldalad üzeneteihez kapunk hozzáférést. Privát üzeneteidhez sosem férhet hozzá a Chatwoot.",
"CHOOSE_PAGE": "Oldal kiválasztása",
"CHOOSE_PLACEHOLDER": "Válaszd ki az oldalt a listából",
"INBOX_NAME": "Fiók név",
"ADD_NAME": "Adj nevet a fiókodnak",
"PICK_NAME": "Válassz nevet az inboxodnak",
"PICK_A_VALUE": "Válassz értéket"
},
"TWITTER": {
"HELP": "To add your Twitter profile as a channel, you need to authenticate your Twitter Profile by clicking on 'Sign in with Twitter' "
"HELP": "Ahhoz hogy hozzáadd a twitter profilodat egy csatornaként, azonosítanod kell a Twitter fiókodat a 'Belépés Twitterrel' gomb megnyomásával ",
"ERROR_MESSAGE": "Hiba történt a Twitterrel való csatlakozáskor, kérjük próbáld később"
},
"WEBSITE_CHANNEL": {
"TITLE": "Website channel",
"DESC": "Create a channel for your website and start supporting your customers via our website widget.",
"LOADING_MESSAGE": "Creating Website Support Channel",
"TITLE": "Website csatorna",
"DESC": "Hozz létre egy csatornát a websiteodnak és kezdd el az ügyfeleid támogatását a website widgeten keresztül.",
"LOADING_MESSAGE": "Website támogatási csatorna létrehozása",
"CHANNEL_AVATAR": {
"LABEL": "Channel Avatar"
"LABEL": "Csatorna avatar"
},
"CHANNEL_NAME": {
"LABEL": "Website Name",
"PLACEHOLDER": "Enter your website name (eg: Acme Inc)"
"LABEL": "Website név",
"PLACEHOLDER": "Add meg weboldalad nevét (pl.: Példa Kft.)"
},
"CHANNEL_DOMAIN": {
"LABEL": "Website Domain",
"PLACEHOLDER": "Enter your website domain (eg: acme.com)"
"LABEL": "Website domain",
"PLACEHOLDER": "Add meg weboldalad domainjét (pl.: példa.hu)"
},
"CHANNEL_WELCOME_TITLE": {
"LABEL": "Welcome Heading",
"PLACEHOLDER": "Hi there !"
"LABEL": "Köszöntő fejléc üzenet",
"PLACEHOLDER": "Szia!"
},
"CHANNEL_WELCOME_TAGLINE": {
"LABEL": "Welcome Tagline",
"PLACEHOLDER": "We make it simple to connect with us. Ask us anything, or share your feedback."
"LABEL": "Köszöntő üzenet",
"PLACEHOLDER": "Könnyűvé tesszük, hogy kapcsolatba kerülj velünk. Kérdezz bármit, vagy oszd meg véleményed."
},
"CHANNEL_GREETING_MESSAGE": {
"LABEL": "Channel greeting message",
"PLACEHOLDER": "Acme Inc typically replies in a few hours."
"LABEL": "Csatorna köszöntő üzenet",
"PLACEHOLDER": "Példa Kft. általában néhány órán belül válaszol."
},
"CHANNEL_GREETING_TOGGLE": {
"LABEL": "Enable channel greeting",
"HELP_TEXT": "Send a greeting message to the user when he starts the conversation.",
"ENABLED": "Enabled",
"DISABLED": "Disabled"
"LABEL": "Csatorna köszöntés engedélyezése",
"HELP_TEXT": "Üdvözlő üzenet küldése a felhasználónak, amikor beszélgetést indít.",
"ENABLED": "Engedélyezve",
"DISABLED": "Letiltva"
},
"REPLY_TIME": {
"TITLE": "Set Reply time",
"IN_A_FEW_MINUTES": "In a few minutes",
"IN_A_FEW_HOURS": "In a few hours",
"IN_A_DAY": "In a day",
"HELP_TEXT": "This reply time will be displayed on the live chat widget"
"TITLE": "Válaszadási idő megadása",
"IN_A_FEW_MINUTES": "Néhány percen belül",
"IN_A_FEW_HOURS": "Néhány órán belül",
"IN_A_DAY": "Egy napon belül",
"HELP_TEXT": "Ezen válaszidő ki lesz írva az élő chat widgeten"
},
"WIDGET_COLOR": {
"LABEL": "Widget Color",
"PLACEHOLDER": "Update the widget color used in widget"
"LABEL": "Widget szín",
"PLACEHOLDER": "Frissítsd a widget színét"
},
"SUBMIT_BUTTON": "Create inbox"
"SUBMIT_BUTTON": "Fiók létrehozása"
},
"TWILIO": {
"TITLE": "Twilio SMS/Whatsapp Channel",
"DESC": "Integrate Twilio and start supporting your customers via SMS or Whatsapp.",
"TITLE": "Twilio SMS/Whatsapp csatorna",
"DESC": "Integráld a Twiliot és kezdd el támogatni az ügyfeleidet SMS-en vagy Whatsappon.",
"ACCOUNT_SID": {
"LABEL": "Account SID",
"PLACEHOLDER": "Please enter your Twilio Account SID",
"ERROR": "This field is required"
"LABEL": "Fiók SID",
"PLACEHOLDER": "Kérjük add meg a Twilio fiók SID-t",
"ERROR": "Ez a mező kötelező"
},
"CHANNEL_TYPE": {
"LABEL": "Channel Type",
"ERROR": "Please select your Channel Type"
"LABEL": "Csatorna típusa",
"ERROR": "Kérjük válaszd ki a csatorna típusát"
},
"AUTH_TOKEN": {
"LABEL": "Auth Token",
"PLACEHOLDER": "Please enter your Twilio Auth Token",
"ERROR": "This field is required"
"LABEL": "Auth token",
"PLACEHOLDER": "Kérjük add meg a Twilio auth tokened",
"ERROR": "Ez a mező kötelező"
},
"CHANNEL_NAME": {
"LABEL": "Channel Name",
"PLACEHOLDER": "Please enter a channel name",
"ERROR": "This field is required"
"LABEL": "Csatorna neve",
"PLACEHOLDER": "Kérjük adj meg csatorna nevet",
"ERROR": "Ez a mező kötelező"
},
"PHONE_NUMBER": {
"LABEL": "Phone number",
"PLACEHOLDER": "Please enter the phone number from which message will be sent.",
"ERROR": "Please enter a valid value. Phone number should start with `+` sign."
"LABEL": "Telefonszám",
"PLACEHOLDER": "Kérjük add meg a telefonszámot, amire az üzeneteket küldjük.",
"ERROR": "Kérjük helyes értéket adj meg. A telefonszám a '+' jellel kezdődjön."
},
"API_CALLBACK": {
"TITLE": "Callback URL",
"SUBTITLE": "You have to configure the message callback URL in Twilio with the URL mentioned here."
"TITLE": "Visszahívás URL",
"SUBTITLE": "Be kell állítanod az üzenet visszahívás URL-t a Twilion az itt megadott URL alapján."
},
"SUBMIT_BUTTON": "Create Twilio Channel",
"SUBMIT_BUTTON": "Twilio csatorna létrehozása",
"API": {
"ERROR_MESSAGE": "We were not able to authenticate Twilio credentials, please try again"
"ERROR_MESSAGE": "Nem tudtuk hitelesíteni a Twilio fiókodat, kérjük próbáld később"
}
},
"API_CHANNEL": {
"TITLE": "API Channel",
"DESC": "Integrate with API channel and start supporting your customers.",
"TITLE": "API csatorna",
"DESC": "API-val integrálj és láss neki az ügyfeleid támogatásának.",
"CHANNEL_NAME": {
"LABEL": "Channel Name",
"PLACEHOLDER": "Please enter a channel name",
"ERROR": "This field is required"
"LABEL": "Csatorna neve",
"PLACEHOLDER": "Kérjük adj meg csatorna nevet",
"ERROR": "Ez a mező kötelező"
},
"WEBHOOK_URL": {
"LABEL": "Webhook URL",
"SUBTITLE": "Configure the URL where you want to recieve callbacks on events.",
"SUBTITLE": "Állítsd be az URL-t melyről fogadni szeretnéd a visszahívásokat az eseményekről.",
"PLACEHOLDER": "Webhook URL"
},
"SUBMIT_BUTTON": "Create API Channel",
"SUBMIT_BUTTON": "API csatorna létrehozása",
"API": {
"ERROR_MESSAGE": "We were not able to save the api channel"
"ERROR_MESSAGE": "Nem tudtuk elmenteni az API csatornát"
}
},
"EMAIL_CHANNEL": {
"TITLE": "Email Channel",
"DESC": "Integrate you email inbox.",
"TITLE": "E-mail csatorna",
"DESC": "Inbox-al való integrálás.",
"CHANNEL_NAME": {
"LABEL": "Channel Name",
"PLACEHOLDER": "Please enter a channel name",
"ERROR": "This field is required"
"LABEL": "Csatorna neve",
"PLACEHOLDER": "Kérjük adj meg csatorna nevet",
"ERROR": "Ez a mező kötelező"
},
"EMAIL": {
"LABEL": "Email",
"SUBTITLE": "Email where your customers sends you support tickets",
"PLACEHOLDER": "Email"
"LABEL": "E-mail",
"SUBTITLE": "Az e-mail ahova az ügyfeled a támogatási kérelmeit küldi",
"PLACEHOLDER": "E-mail"
},
"SUBMIT_BUTTON": "Create Email Channel",
"SUBMIT_BUTTON": "E-mail csatorna létrehozása",
"API": {
"ERROR_MESSAGE": "We were not able to save the email channel"
"ERROR_MESSAGE": "Nem tudtuk elmenteni az e-mail csatornát"
},
"FINISH_MESSAGE": "Start forwarding your emails to the following email address."
"FINISH_MESSAGE": "Kezdd el továbbítani az e-maileket a következő e-mail címekre."
},
"AUTH": {
"TITLE": "Channels",
"TITLE": "Csatornák",
"DESC": "Currently we support Website live chat widgets, Facebook Pages and Twitter profiles as platforms. We have more platforms like Whatsapp, Email, Telegram and Line in the works, which will be out soon."
},
"AGENTS": {
"TITLE": "Ügynökök",
"DESC": "Here you can add agents to manage your newly created inbox. Only these selected agents will have access to your inbox. Agents which are not part of this inbox will not be able to see or respond to messages in this inbox when they login. <br> <b>PS:</b> As an administrator, if you need access to all inboxes, you should add yourself as agent to all inboxes that you create.",
"VALIDATION_ERROR": "Add atleast one agent to your new Inbox",
"PICK_AGENTS": "Pick agents for the inbox"
"DESC": "Itt hozzáadhatsz ügynököket az újonan létrehooztt inboxodhoz. Csak ezek a kiválasztott ügynökök fognak hozzáférni az inboxodhoz. Az ügynökök akik nem részei az inboxnak, nem látják és nem tudnak válaszolni az üzenetekre belépésük után. <br><b>UI:</b>Adminisztrátorként hozzáférésed van az összes inboxhoz, add hozzá magad az összes inboxhoz ügynökként.",
"VALIDATION_ERROR": "Adj legalább egy ügynököt az új inboxodhoz",
"PICK_AGENTS": "Válaszd ki az inboxhoz hozzárendelt ügynököket"
},
"DETAILS": {
"TITLE": "Inbox Details",
"DESC": "From the dropdown below, select the Facebook Page you want to connect to Chatwoot. You can also give a custom name to your inbox for better identification."
"TITLE": "Fiók részletek",
"DESC": "A legördülő listából kérjük válaszd ki hogy melyik Facebook oldalt szeretnéd a Chatwoothoz kötni. Egyedi nevet is adhatsz az Inboxnak a jobb azonosíthatóság érdekében."
},
"FINISH": {
"TITLE": "Nailed It!",
"DESC": "You have successfully finished integrating your Facebook Page with Chatwoot. Next time a customer messages your Page, the conversation will automatically appear on your inbox.<br>We are also providing you with a widget script that you can easily add to your website. Once this is live on your website, customers can message you right from your website without the help of any external tool and the conversation will appear right here, on Chatwoot.<br>Cool, huh? Well, we sure try to be :)"
"TITLE": "Sikerült!",
"DESC": "Sikeresen integráltad a Facebook oldaladat a Chatwoottal. Legközelebb amikor egy ügyfél üzenetet ír az oldaladra, a beszélgetés automatiksuan megjelenik az inboxodban.<br> Ezen kívül egy widget kódot biztosítunk számodra, amelyet könnyen hozzáadhatsz a weboldaladhoz. Amint ez kiélesítésre kerül, az ügyfelek üzenetet küldhetnek Neked a weboldaladról bármilyen külső eszköz igénybevétele nélkül és ez a beszélgetés itt a Chatwootban fog megjelenni. <br>Menő, nem? Hát megpróbáljuk :)"
}
},
"DETAILS": {
"LOADING_FB": "Authenticating you with Facebook...",
"ERROR_FB_AUTH": "Something went wrong, Please refresh page...",
"CREATING_CHANNEL": "Creating your Inbox...",
"TITLE": "Configure Inbox Details",
"LOADING_FB": "Facebookkal azonosítunk...",
"ERROR_FB_AUTH": "Valami elromlott, kérjük töltsd újra az oldalt...",
"CREATING_CHANNEL": "Inbox létrehozása...",
"TITLE": "Inbox részletek beállítása",
"DESC": ""
},
"AGENTS": {
"BUTTON_TEXT": "Add agents",
"ADD_AGENTS": "Adding Agents to your Inbox..."
"BUTTON_TEXT": "Ügynök Hozzádása",
"ADD_AGENTS": "Ügynökök hozzáadása a fiókhoz..."
},
"FINISH": {
"TITLE": "Your Inbox is ready!",
"MESSAGE": "You can now engage with your customers through your new Channel. Happy supporting ",
"BUTTON_TEXT": "Take me there",
"WEBSITE_SUCCESS": "You have successfully finished creating a website channel. Copy the code shown below and paste it on your website. Next time a customer use the live chat, the conversation will automatically appear on your inbox."
"TITLE": "A fiókod elkészült!",
"MESSAGE": "Most már tudsz egyeztetni az ügyfeleiddel az új csatornán. Boldog támgoatást ",
"BUTTON_TEXT": "Vigyél oda",
"WEBSITE_SUCCESS": "Sikeresen létrehoztad a website csatornát. Másold az itt látható kódot és helyezd el a weboldaladon. Legközelebb, mikor egy ügyfél az élő chatben van, a beszélgetés automatikusan megjelenik az inboxodban."
},
"REAUTH": "Reauthorize",
"VIEW": "View",
"REAUTH": "Újraengedélyezés",
"VIEW": "Megtekintés",
"EDIT": {
"API": {
"SUCCESS_MESSAGE": "Inbox settings updated successfully",
"AUTO_ASSIGNMENT_SUCCESS_MESSAGE": "Auto assignment updated successfully",
"ERROR_MESSAGE": "Could not update widget color. Please try again later."
"SUCCESS_MESSAGE": "Inbox beállítások sikeresen frissítve",
"AUTO_ASSIGNMENT_SUCCESS_MESSAGE": "Automatikus hozzárendelés sikeresen frissítve",
"ERROR_MESSAGE": "Nem sikerült a widget szín változtatása. Kérjük próbáld később."
},
"AUTO_ASSIGNMENT": {
"ENABLED": "Enabled",
"DISABLED": "Disabled"
"ENABLED": "Engedélyezve",
"DISABLED": "Letiltva"
}
},
"DELETE": {
"BUTTON_TEXT": "Delete",
"BUTTON_TEXT": "Törlés",
"CONFIRM": {
"TITLE": "Confirm Deletion",
"MESSAGE": "Are you sure to delete ",
"YES": "Yes, Delete ",
"NO": "No, Keep "
"TITLE": "Törlés megerősítése",
"MESSAGE": "Biztos abban, hogy törli ",
"YES": "Igen, Törlés ",
"NO": "Nem, Mégse "
},
"API": {
"SUCCESS_MESSAGE": "Inbox deleted successfully",
"ERROR_MESSAGE": "Could not delete inbox. Please try again later."
"SUCCESS_MESSAGE": "Inbox sikeresen törölve",
"ERROR_MESSAGE": "Nem sikerült a fiók törlése. Kérjük próbáld később."
}
},
"TABS": {
"SETTINGS": "Settings",
"COLLABORATORS": "Collaborators",
"CONFIGURATION": "Configuration"
"SETTINGS": "Beállítások",
"COLLABORATORS": "Csapattagok",
"CONFIGURATION": "Beállítások",
"PRE_CHAT_FORM": "Chat előtti űrlap",
"BUSINESS_HOURS": "Nyitvatartás"
},
"SETTINGS": "Settings",
"SETTINGS": "Beállítások",
"FEATURES": {
"LABEL": "Features",
"DISPLAY_FILE_PICKER": "Display file picker on the widget",
"DISPLAY_EMOJI_PICKER": "Display emoji picker on the widget"
"LABEL": "Lehetőségek",
"DISPLAY_FILE_PICKER": "File választó megjelenítése a widgeten",
"DISPLAY_EMOJI_PICKER": "Emoji választó megjelenítése a widgeten"
},
"SETTINGS_POPUP": {
"MESSENGER_HEADING": "Messenger Script",
"MESSENGER_SUB_HEAD": "Place this button inside your body tag",
"MESSENGER_HEADING": "Messenger szkript",
"MESSENGER_SUB_HEAD": "Ezt a gombot a body tag-en belül helyezd el",
"INBOX_AGENTS": "Ügynökök",
"INBOX_AGENTS_SUB_TEXT": "Add or remove agents from this inbox",
"UPDATE": "Update",
"AUTO_ASSIGNMENT": "Enable auto assignment",
"INBOX_UPDATE_TITLE": "Inbox Settings",
"INBOX_UPDATE_SUB_TEXT": "Update your inbox settings",
"AUTO_ASSIGNMENT_SUB_TEXT": "Enable or disable the automatic assignment of new conversations to the agents added to this inbox.",
"HMAC_VERIFICATION": "User Identity Validation",
"HMAC_DESCRIPTION": "Inorder validate the users identity, the SDK allows you to pass an `identity_hash` for each user. You can generate HMAC using 'sha256' with the key shown here."
"INBOX_AGENTS_SUB_TEXT": "Ügynökök hosszáadása vagy eltávolítása az inboxból",
"UPDATE": "Frissítés",
"AUTO_ASSIGNMENT": "Automata hozzárendelés engedélyezése",
"INBOX_UPDATE_TITLE": "Fiókbeállítások",
"INBOX_UPDATE_SUB_TEXT": "Frissítsd az inbox beállításaidat",
"AUTO_ASSIGNMENT_SUB_TEXT": "Bekapcsolása vagy kikapcsolása az inboxhoz kapcsolódó automatikus ügynökhozzárendelésnek új beszélgetések esetén.",
"HMAC_VERIFICATION": "Felhasználói fiók validálás",
"HMAC_DESCRIPTION": "A felhasználói fiók ellenőrzése céljából az SDK lehetőséget ad egy 'identity_hash' kódra minden felhasználónak. Ezt HMAC-al tudod generálni 'sha256'-t használva, az itt látható kóddal."
},
"FACEBOOK_REAUTHORIZE": {
"TITLE": "Reauthorize",
"SUBTITLE": "Your Facebook connection has expired, please reconnect your Facebook page to continue services",
"MESSAGE_SUCCESS": "Reconnection successful",
"MESSAGE_ERROR": "There was an error, please try again"
"TITLE": "Újraengedélyezés",
"SUBTITLE": "A Facebook kapcsolatod lejárt, kérjük kapcsold össze oldalad újra a szolgáltatás folytatásához",
"MESSAGE_SUCCESS": "Újrakapcsolódás sikeres",
"MESSAGE_ERROR": "Hiba történt, kérjük próbáld újra"
},
"PRE_CHAT_FORM": {
"DESCRIPTION": "A chat előtti űrlapok lehetővé teszik hogy felhasználói adatokat gyűjts mielőtt a beszélgetés megkezdődik.",
"ENABLE": {
"LABEL": "Chat előtti űrlap engedélyezése",
"OPTIONS": {
"ENABLED": "Igen",
"DISABLED": "Nem"
}
},
"PRE_CHAT_MESSAGE": {
"LABEL": "Chat előtti üzenet",
"PLACEHOLDER": "Ez az üzenet látható lesz a felhasználók számára az űrlappal együtt"
},
"REQUIRE_EMAIL": {
"LABEL": "A látogatóknak nevük és e-mailcímük megadása szükséges a beszélgetés megkezdése előtt"
}
},
"BUSINESS_HOURS": {
"TITLE": "Elérhetőség beállítása",
"SUBTITLE": "Állításd be az elérhetőséged idejét a chat widgeten",
"WEEKLY_TITLE": "Heti órák beállítása",
"TIMEZONE_LABEL": "Select timezone",
"UPDATE": "Update business hours settings",
"TOGGLE_AVAILABILITY": "Enable business availability for this inbox",
"UNAVAILABLE_MESSAGE_LABEL": "Unavailable message for vistors",
"UNAVAILABLE_MESSAGE_DEFAULT": "We are unavailable at the moment. Leave a message we will respond once we are back.",
"TOGGLE_HELP": "Enabling business availability will show the available hours on live chat widget even if all the agents are offline. Outside available hours vistors can be warned with a message and a pre-chat form.",
"DAY": {
"ENABLE": "Elérhetőség bekapcsolása erre a napra",
"UNAVAILABLE": "Nem elérhető",
"HOURS": "óra",
"VALIDATION_ERROR": "A kezés idejének a zárás ideje előttinek kell lennie.",
"CHOOSE": "Kiválasztás"
}
}
}
}

View file

@ -1,61 +1,61 @@
{
"INTEGRATION_SETTINGS": {
"HEADER": "Integrations",
"HEADER": "Integrációk",
"WEBHOOK": {
"TITLE": "Webhook",
"CONFIGURE": "Configure",
"HEADER": "Webhook settings",
"HEADER_BTN_TXT": "Add new webhook",
"LOADING": "Fetching attached webhooks",
"SEARCH_404": "There are no items matching this query",
"SIDEBAR_TXT": "<p><b>Webhooks</b> </p> <p>Webhooks are HTTP callbacks which can be defined for every account. They are triggered by events like message creation in Chatwoot. You can create more than one webhook for this account. <br /><br /> For creating a <b>webhook</b>, click on the <b>Add new webhook</b> button. You can also remove any existing webhook by clicking on the Delete button.</p>",
"CONFIGURE": "Beállítások",
"HEADER": "Webhook beállítások",
"HEADER_BTN_TXT": "Új webhook hozzáadása",
"LOADING": "Kapcsolódó Webhookok betöltése",
"SEARCH_404": "Nincs megfelelő elem",
"SIDEBAR_TXT": "<p><b>Webhook</b>-ok</p><p>A Webhook-ok HTTP visszahívások, melyek minden fiókhoz bállíthatóak. Chatwoot események, például beérkező üzenetek aktiválhatják a webhookokat. Több webhookot is beállíthatsz a fiókodhoz. <br /><br /> Egy <b>webhook</b> létrehozásához kattints a <b>Webhook hozzáadása</b> gombra. Le is törölheted a létrejött webhookokat a Törlés gombra kattintva.</p>",
"LIST": {
"404": "There are no webhooks configured for this account.",
"TITLE": "Manage webhooks",
"404": "Nincs a fiókhoz rendelt Webhook.",
"TITLE": "Webhook kezelés",
"TABLE_HEADER": [
"Webhook endpoint",
"Webhook végpont",
"Műveletek"
]
},
"ADD": {
"CANCEL": "Cancel",
"TITLE": "Add new webhook",
"DESC": "Webhook events provide you the realtime information about what's happening in your Chatwoot account. Please enter a valid URL to configure a callback.",
"CANCEL": "Mégse",
"TITLE": "Új webhook hozzáadása",
"DESC": "Webhook események valós idejű információt adnak arról, hogy mi történik a Chatwoot fiókodban. Kérünk a visszahívás beállításánál egy helyes URL-t adj meg.",
"FORM": {
"END_POINT": {
"LABEL": "Webhook URL",
"PLACEHOLDER": "Example: https://example/api/webhook",
"ERROR": "Please enter a valid URL"
"PLACEHOLDER": "Például: https://példa.com/api/webhook",
"ERROR": "Kérjük helyes URL-t adj meg"
},
"SUBMIT": "Create webhook"
"SUBMIT": "Webhook létrehozása"
},
"API": {
"SUCCESS_MESSAGE": "Webhook added successfully",
"ERROR_MESSAGE": "Could not connect to Woot Server, Please try again later"
"SUCCESS_MESSAGE": "Webhook sikeresen hozzáadva",
"ERROR_MESSAGE": "Nem sikerült csatlakozni a Woot szerverhez, kérjük próbáld később"
}
},
"DELETE": {
"BUTTON_TEXT": "Delete",
"BUTTON_TEXT": "Törlés",
"API": {
"SUCCESS_MESSAGE": "Webhook deleted successfully",
"ERROR_MESSAGE": "Could not connect to Woot Server, Please try again later"
"SUCCESS_MESSAGE": "Webhook sikeresen törölve",
"ERROR_MESSAGE": "Nem sikerült csatlakozni a Woot szerverhez, kérjük próbáld később"
},
"CONFIRM": {
"TITLE": "Confirm Deletion",
"MESSAGE": "Are you sure to delete ",
"YES": "Yes, Delete ",
"NO": "No, Keep it"
"TITLE": "Törlés megerősítése",
"MESSAGE": "Biztos abban, hogy törli ",
"YES": "Igen, Törlés ",
"NO": "Nem, tartsa meg"
}
}
},
"DELETE": {
"BUTTON_TEXT": "Delete",
"BUTTON_TEXT": "Törlés",
"API": {
"SUCCESS_MESSAGE": "Integration deleted successfully"
"SUCCESS_MESSAGE": "Integráció sikeresen törölve"
}
},
"CONNECT": {
"BUTTON_TEXT": "Connect"
"BUTTON_TEXT": "Kapcsolódás"
}
}
}

View file

@ -1,61 +1,61 @@
{
"LABEL_MGMT": {
"HEADER": "Labels",
"HEADER_BTN_TXT": "Add label",
"LOADING": "Fetching labels",
"SEARCH_404": "There are no items matching this query",
"SIDEBAR_TXT": "<p><b>Labels</b> <p>Labels help you to categorize conversations and prioritize them. You can assign label to a conversation from the sidepanel. <br /><br />Labels are tied to the account and can be used to create custom workflows in your organization. You can assign custom color to a label, it makes it easier to identify the label. You will be able to display the label on the sidebar to filter the conversations easily.</p>",
"HEADER": "Cimkék",
"HEADER_BTN_TXT": "Cimke hozzáadása",
"LOADING": "Cimkék letöltése",
"SEARCH_404": "Nincs megfelelő elem",
"SIDEBAR_TXT": "<p><b>Cimkék</b><p>A cimkék segítenek kategorizálni és priorizálni a beszélgetéseket. A beszélgetésekhez cimkét rendelhetsz az oldalpanelben <br /><br />A cimkék a fiókodhoz vannak kötve. A cimkékkel egyedi munkameneteket hozhatsz létre a szervezetedben. Egyedi színt adhatsz a cimkéknek a könnyű azonosíthatóság érdekében. Az oldalsávban meg tudod majd jeleníteni a cimkéket hogy könnyen szűrhesd a beszélgetéseket</p>",
"LIST": {
"404": "There are no labels available in this account.",
"TITLE": "Manage labels",
"DESC": "Labels let you group the conversations together.",
"404": "Nincs megfelelő cimke ebben a fiókban.",
"TITLE": "Cimkék kezelése",
"DESC": "A cimkék a beszélgetések csoportokba rendezését segítik.",
"TABLE_HEADER": [
"Név",
"Description",
"Color"
"Leírás",
"Szín"
]
},
"FORM": {
"NAME": {
"LABEL": "Label Name",
"PLACEHOLDER": "Label name",
"ERROR": "Label Name is required"
"LABEL": "Cimke neve",
"PLACEHOLDER": "Cimke neve",
"ERROR": "A cimke nevének megadása kötelező"
},
"DESCRIPTION": {
"LABEL": "Description",
"PLACEHOLDER": "Label Description"
"LABEL": "Leírás",
"PLACEHOLDER": "Cimke leírás"
},
"COLOR": {
"LABEL": "Color"
"LABEL": "Szín"
},
"SHOW_ON_SIDEBAR": {
"LABEL": "Show label on sidebar"
"LABEL": "Cimke megjelenítése az oldalsávban"
},
"EDIT": "Edit",
"CREATE": "Create",
"DELETE": "Delete",
"CANCEL": "Cancel"
"EDIT": "Szerkesztés",
"CREATE": "Létrehozás",
"DELETE": "Törlés",
"CANCEL": "Mégse"
},
"ADD": {
"TITLE": "Add label",
"DESC": "Labels let you group the conversations together.",
"TITLE": "Cimke hozzáadása",
"DESC": "A cimkék a beszélgetések csoportokba rendezését segítik.",
"API": {
"SUCCESS_MESSAGE": "Label added successfully",
"ERROR_MESSAGE": "There was an error, please try again"
"SUCCESS_MESSAGE": "Cimke sikeresen hozzáadva",
"ERROR_MESSAGE": "Hiba történt, kérjük próbáld újra"
}
},
"EDIT": {
"TITLE": "Edit label",
"TITLE": "Cimke szerkesztése",
"API": {
"SUCCESS_MESSAGE": "Label updated successfully",
"ERROR_MESSAGE": "There was an error, please try again"
"SUCCESS_MESSAGE": "Cimke sikeresen frissítve",
"ERROR_MESSAGE": "Hiba történt, kérjük próbáld újra"
}
},
"DELETE": {
"BUTTON_TEXT": "Törlés",
"API": {
"SUCCESS_MESSAGE": "Label deleted successfully",
"ERROR_MESSAGE": "There was an error, please try again"
"SUCCESS_MESSAGE": "Cimke sikeresen törölve",
"ERROR_MESSAGE": "Hiba történt, kérjük próbáld újra"
},
"CONFIRM": {
"TITLE": "Törlés Megerősítése",

View file

@ -1,21 +1,21 @@
{
"LOGIN": {
"TITLE": "Login to Chatwoot",
"TITLE": "Chatwoot belépés",
"EMAIL": {
"LABEL": "Email",
"PLACEHOLDER": "Email eg: someone@example.com"
"LABEL": "E-mail",
"PLACEHOLDER": "E-mail pl.: valaki@példa.hu"
},
"PASSWORD": {
"LABEL": "Password",
"PLACEHOLDER": "Password"
"LABEL": "Jelszó",
"PLACEHOLDER": "Jelszó"
},
"API": {
"SUCCESS_MESSAGE": "Login Successful",
"ERROR_MESSAGE": "Could not connect to Woot Server, Please try again later",
"UNAUTH": "Username / Password Incorrect. Please try again"
"SUCCESS_MESSAGE": "Bejelentkezés sikeres",
"ERROR_MESSAGE": "Nem sikerült csatlakozni a Woot szerverhez, kérjük próbáld később",
"UNAUTH": "A felhasználó / jelszó helytelen. Kérjük próbálja újra"
},
"FORGOT_PASSWORD": "Forgot your password?",
"CREATE_NEW_ACCOUNT": "Create new account",
"SUBMIT": "Login"
"FORGOT_PASSWORD": "Elfelejtetted a jelszavad?",
"CREATE_NEW_ACCOUNT": "Új fiók létrehozása",
"SUBMIT": "Bejelentkezés"
}
}

View file

@ -1,43 +1,43 @@
{
"REPORT": {
"HEADER": "Reports",
"LOADING_CHART": "Loading chart data...",
"NO_ENOUGH_DATA": "We've not received enough data points to generate report, Please try again later.",
"DOWNLOAD_AGENT_REPORTS": "Download agent reports",
"HEADER": "Jelentések",
"LOADING_CHART": "Táblázat adatok betöltése...",
"NO_ENOUGH_DATA": "Nem érkezett elég adat hogy jelentést generáljunk, kérjük próbáld később.",
"DOWNLOAD_AGENT_REPORTS": "Ügynök jelentések letöltése",
"METRICS": {
"CONVERSATIONS": {
"NAME": "Conversations",
"DESC": "( Total )"
"NAME": "Beszélgetések",
"DESC": "( Teljes )"
},
"INCOMING_MESSAGES": {
"NAME": "Incoming Messages",
"DESC": "( Total )"
"NAME": "Beérkező üznetek",
"DESC": "( Teljes )"
},
"OUTGOING_MESSAGES": {
"NAME": "Outgoing Messages",
"DESC": "( Total )"
"NAME": "Kimenő üzenetek",
"DESC": "( Teljes )"
},
"FIRST_RESPONSE_TIME": {
"NAME": "First response time",
"DESC": "( Avg )"
"NAME": "Első reakció idő",
"DESC": "( Átlag )"
},
"RESOLUTION_TIME": {
"NAME": "Resolution Time",
"DESC": "( Avg )"
"NAME": "Megoldási idő",
"DESC": "( Átlag )"
},
"RESOLUTION_COUNT": {
"NAME": "Resolution Count",
"DESC": "( Total )"
"NAME": "Megoldások száma",
"DESC": "( Teljes )"
}
},
"DATE_RANGE": [
{
"id": 0,
"name": "Last 7 days"
"name": "Utolsó 7 nap"
},
{
"id": 1,
"name": "Last 30 days"
"name": "Utolsó 30 nap"
}
]
}

View file

@ -1,15 +1,15 @@
{
"RESET_PASSWORD": {
"TITLE": "Reset Password",
"TITLE": "Új jelszó kérése",
"EMAIL": {
"LABEL": "Email",
"PLACEHOLDER": "Please enter your email",
"ERROR": "Please enter a valid email"
"LABEL": "E-mail",
"PLACEHOLDER": "Add meg az e-mailed",
"ERROR": "Kérjük helyes e-mailcímet adj meg"
},
"API": {
"SUCCESS_MESSAGE": "Password reset link has been sent to your email",
"ERROR_MESSAGE": "Could not connect to Woot Server, Please try again later"
"SUCCESS_MESSAGE": "A jelszó helyreállító linket e-mailben elküldtük",
"ERROR_MESSAGE": "Nem sikerült csatlakozni a Woot szerverhez, kérjük próbáld később"
},
"SUBMIT": "Submit"
"SUBMIT": "Elküldés"
}
}

View file

@ -1,20 +1,20 @@
{
"SET_NEW_PASSWORD": {
"TITLE": "Set New Password",
"TITLE": "Új jelszó megadása",
"PASSWORD": {
"LABEL": "Password",
"PLACEHOLDER": "Password",
"ERROR": "Password is too short"
"LABEL": "Jelszó",
"PLACEHOLDER": "Jelszó",
"ERROR": "A jelszó túl rövid"
},
"CONFIRM_PASSWORD": {
"LABEL": "Confirm Password",
"PLACEHOLDER": "Confirm Password",
"ERROR": "Passwords do not match"
"LABEL": "Jelszó megerősítése",
"PLACEHOLDER": "Jelszó megerősítése",
"ERROR": "A jelszavak nem egyeznek"
},
"API": {
"SUCCESS_MESSAGE": "Successfully changed the password",
"ERROR_MESSAGE": "Could not connect to Woot Server, Please try again later"
"SUCCESS_MESSAGE": "Jelszó sikeresen megváltoztatva",
"ERROR_MESSAGE": "Nem sikerült csatlakozni a Woot szerverhez, kérjük próbáld később"
},
"SUBMIT": "Submit"
"SUBMIT": "Elküldés"
}
}

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