diff --git a/.changeset/loud-chairs-accept.md b/.changeset/loud-chairs-accept.md new file mode 100644 index 0000000000000..85d4dff56bb34 --- /dev/null +++ b/.changeset/loud-chairs-accept.md @@ -0,0 +1,6 @@ +--- +'@rocket.chat/i18n': patch +'@rocket.chat/meteor': patch +--- + +Fixes some warnings on delete user modal when deleting a user who has owner role in some rooms. diff --git a/apps/meteor/client/components/ConfirmOwnerChangeModal.tsx b/apps/meteor/client/components/ConfirmOwnerChangeModal.tsx index 8a69dd8b31e47..1acb8c3f108bb 100644 --- a/apps/meteor/client/components/ConfirmOwnerChangeModal.tsx +++ b/apps/meteor/client/components/ConfirmOwnerChangeModal.tsx @@ -1,9 +1,9 @@ import { Box } from '@rocket.chat/fuselage'; +import { useEffectEvent } from '@rocket.chat/fuselage-hooks'; import type { ComponentPropsWithoutRef } from 'react'; -import { useTranslation } from 'react-i18next'; +import { Trans } from 'react-i18next'; import GenericModal from './GenericModal'; -import RawText from './RawText'; type ConfirmOwnerChangeModalProps = { shouldChangeOwner: string[]; @@ -19,58 +19,70 @@ const ConfirmOwnerChangeModal = ({ onConfirm, onCancel, }: ConfirmOwnerChangeModalProps) => { - const { t } = useTranslation(); + const getChangeOwnerRooms = useEffectEvent(() => { + if (shouldChangeOwner.length === 0) { + return ''; + } - let changeOwnerRooms = ''; - if (shouldChangeOwner.length > 0) { if (shouldChangeOwner.length === 1) { - changeOwnerRooms = t('A_new_owner_will_be_assigned_automatically_to_the__roomName__room', { - roomName: shouldChangeOwner.pop(), - }); - } else if (shouldChangeOwner.length <= 5) { - changeOwnerRooms = t('A_new_owner_will_be_assigned_automatically_to_those__count__rooms__rooms__', { - count: shouldChangeOwner.length, - rooms: shouldChangeOwner.join(', '), - }); - } else { - changeOwnerRooms = t('A_new_owner_will_be_assigned_automatically_to__count__rooms', { - count: shouldChangeOwner.length, - }); + return ( + }} + /> + ); + } + if (shouldChangeOwner.length <= 5) { + return ( + , bold: }} + /> + ); + } + return ( + }} + /> + ); + }); + + const getRemovedRooms = useEffectEvent(() => { + if (shouldBeRemoved.length === 0) { + return ''; } - } - let removedRooms = ''; - if (shouldBeRemoved.length > 0) { if (shouldBeRemoved.length === 1) { - removedRooms = t('The_empty_room__roomName__will_be_removed_automatically', { - roomName: shouldBeRemoved.pop(), - }); - } else if (shouldBeRemoved.length <= 5) { - removedRooms = t('__count__empty_rooms_will_be_removed_automatically__rooms__', { - count: shouldBeRemoved.length, - rooms: shouldBeRemoved.join(', '), - }); - } else { - removedRooms = t('__count__empty_rooms_will_be_removed_automatically', { - count: shouldBeRemoved.length, - }); + return ( + }} + /> + ); + } + if (shouldBeRemoved.length <= 5) { + return ( + , bold: }} + /> + ); } - } + return ; + }); return ( {contentTitle} - {changeOwnerRooms && ( - - {changeOwnerRooms} - - )} - {removedRooms && ( - - {removedRooms} - - )} + {shouldChangeOwner && {getChangeOwnerRooms()}} + {shouldBeRemoved && {getRemovedRooms()}} ); }; diff --git a/apps/meteor/tests/e2e/administration.spec.ts b/apps/meteor/tests/e2e/administration.spec.ts index 69fd87d0c02cf..c0aa19e79a2d7 100644 --- a/apps/meteor/tests/e2e/administration.spec.ts +++ b/apps/meteor/tests/e2e/administration.spec.ts @@ -1,4 +1,5 @@ import { faker } from '@faker-js/faker'; +import type { IUser } from '@rocket.chat/apps-engine/definition/users'; import { IS_EE } from './config/constants'; import { Users } from './fixtures/userStates'; @@ -111,6 +112,85 @@ test.describe.parallel('administration', () => { await expect(poAdmin.tabs.users.inputUserName).toHaveValue(username); await expect(poAdmin.tabs.users.joinDefaultChannels).not.toBeVisible(); }); + + test.describe('Delete user', () => { + const nonEmptyChannelName = faker.string.uuid(); + const emptyChannelName = faker.string.uuid(); + let ownerUser: IUser; + let user: IUser; + + test.beforeAll(async ({ api }) => { + const createUserResponse = await api.post('/users.create', { + email: faker.internet.email(), + name: faker.person.fullName(), + password: faker.internet.password(), + username: faker.internet.userName(), + }); + + user = (await createUserResponse.json()).user; + + const createOwnerUserResponse = await api.post('/users.create', { + email: faker.internet.email(), + name: faker.person.fullName(), + password: faker.internet.password(), + username: faker.internet.userName(), + }); + + ownerUser = (await createOwnerUserResponse.json()).user; + + // TODO: refactor createChannel utility in order to get channel data when creating + const response = await api.post('/channels.create', { name: nonEmptyChannelName, members: [ownerUser.username] }); + const { channel: nonEmptyChannel } = await response.json(); + + await api.post('/channels.addOwner', { roomId: nonEmptyChannel._id, username: ownerUser.username }); + await api.post('/channels.removeOwner', { roomId: nonEmptyChannel._id, userId: Users.admin.data._id }); + + // TODO: refactor createChannel utility in order to get channel data when creating + const res = await api.post('/groups.create', { name: emptyChannelName, members: [ownerUser.username] }); + const { group: emptyRoom } = await res.json(); + + await api.post('/groups.addOwner', { roomId: emptyRoom._id, username: ownerUser.username }); + await api.post('/groups.leave', { roomId: emptyRoom._id }); + }); + + test('expect to show owner change modal, when deleting last owner of any room', async ({ page }) => { + await poAdmin.inputSearchUsers.type(ownerUser.username); + await poAdmin.getUserRow(ownerUser.username).click(); + await poAdmin.tabs.users.btnMoreActions.click(); + await poAdmin.tabs.users.btnDeleteUser.click(); + + await expect(page.getByRole('dialog', { name: 'Are you sure?' })).toBeVisible(); + + await page.getByRole('dialog').getByRole('button', { name: 'Delete' }).click(); + + await expect(page.getByRole('dialog', { name: 'Are you sure?' })).toContainText( + `A new owner will be assigned automatically to the ${nonEmptyChannelName} room.`, + ); + await expect(page.getByRole('dialog', { name: 'Are you sure?' })).toContainText( + `The empty room ${emptyChannelName} will be removed automatically.`, + ); + await expect(page.getByRole('dialog').getByRole('button', { name: 'Delete' })).toBeVisible(); + + await page.getByRole('dialog').getByRole('button', { name: 'Delete' }).click(); + + await expect(poUtils.toastBarSuccess).toBeVisible(); + await expect(page.getByRole('heading', { name: 'No users' })).toBeVisible(); + }); + + test('expect to delete user', async ({ page }) => { + await poAdmin.inputSearchUsers.type(user.username); + await poAdmin.getUserRow(user.username).click(); + await poAdmin.tabs.users.btnMoreActions.click(); + await poAdmin.tabs.users.btnDeleteUser.click(); + + await expect(page.getByRole('dialog', { name: 'Are you sure?' })).toBeVisible(); + + await page.getByRole('dialog').getByRole('button', { name: 'Delete' }).click(); + + await expect(poUtils.toastBarSuccess).toBeVisible(); + await expect(page.getByRole('heading', { name: 'No users' })).toBeVisible(); + }); + }); }); test.describe('Rooms', () => { diff --git a/apps/meteor/tests/e2e/page-objects/fragments/admin-flextab-users.ts b/apps/meteor/tests/e2e/page-objects/fragments/admin-flextab-users.ts index 0a9ccd3547c2a..3bb110bceccd6 100644 --- a/apps/meteor/tests/e2e/page-objects/fragments/admin-flextab-users.ts +++ b/apps/meteor/tests/e2e/page-objects/fragments/admin-flextab-users.ts @@ -15,6 +15,14 @@ export class AdminFlextabUsers { return this.page.locator('role=button[name="Add user"]'); } + get btnMoreActions(): Locator { + return this.page.locator('role=button[name="More"]'); + } + + get btnDeleteUser(): Locator { + return this.page.locator('role=menuitem[name="Delete"]'); + } + get btnInvite(): Locator { return this.page.locator('role=button[name="Invite"]'); } diff --git a/packages/i18n/src/locales/ar.i18n.json b/packages/i18n/src/locales/ar.i18n.json index 8ff2e8203da67..0af0ce3d1ae09 100644 --- a/packages/i18n/src/locales/ar.i18n.json +++ b/packages/i18n/src/locales/ar.i18n.json @@ -67,9 +67,9 @@ "API_User_Limit": "حد المستخدم لإضافة جميع المستخدمين إلى Channel", "API_Wordpress_URL": "عنوان URL لـ WordPress", "APIs": "واجهات برمجة التطبيقات", - "A_new_owner_will_be_assigned_automatically_to__count__rooms": "سيتم تعيين مالك جديد تلقائيًا إلى {{count}} من الغرف.", - "A_new_owner_will_be_assigned_automatically_to_the__roomName__room": "سيتم تعيين مالك جديد تلقائيًا إلى الغرفة {{roomName}} .", - "A_new_owner_will_be_assigned_automatically_to_those__count__rooms__rooms__": "سيتم تعيين مالك جديد تلقائيًا إلى هذه الغرف البالغ عددها {{count}} :
{{rooms}}.", + "A_new_owner_will_be_assigned_automatically_to__count__rooms": "سيتم تعيين مالك جديد تلقائيًا إلى {{count}} من الغرف.", + "A_new_owner_will_be_assigned_automatically_to_the__roomName__room": "سيتم تعيين مالك جديد تلقائيًا إلى الغرفة {{roomName}}.", + "A_new_owner_will_be_assigned_automatically_to_those__count__rooms__rooms__": "سيتم تعيين مالك جديد تلقائيًا إلى هذه الغرف البالغ عددها {{count}} :
{{rooms}}.", "Accept": "قبول", "Accept_Call": "قبول المكالمة", "Accept_incoming_livechat_requests_even_if_there_are_no_online_agents": "قبول طلبات الدردشة الواردة عبر القناة متعددة الاتجاهات وإن لم يكن هناك وكلاء على الإنترنت", @@ -3641,7 +3641,7 @@ "The_application_name_is_required": "اسم التطبيق مطلوب", "The_channel_name_is_required": "اسم القناة مطلوب", "The_emails_are_being_sent": "يتم إرسال رسائل البريد الإلكتروني.", - "The_empty_room__roomName__will_be_removed_automatically": "ستتم إزالة الغرفة الفارغة {{roomName}} will be تلقائيًا.", + "The_empty_room__roomName__will_be_removed_automatically": "ستتم إزالة الغرفة الفارغة {{roomName}} will be تلقائيًا.", "The_image_resize_will_not_work_because_we_can_not_detect_ImageMagick_or_GraphicsMagick_installed_in_your_server": "لن يعمل تغيير حجم الصورة لأننا لا نستطيع اكتشاف تثبيت ImageMagick أو GraphicsMagick على الخادم الخاص بك.", "The_message_is_a_discussion_you_will_not_be_able_to_recover": "الرسالة عبارة عن مناقشة أنك لن تتمكن من استعادة الرسائل!", "The_mobile_notifications_were_disabled_to_all_users_go_to_Admin_Push_to_enable_the_Push_Gateway_again": "تم تعطيل إشعارات الهاتف المحمول لجميع المستخدمين، انتقل إلى \"المسؤول > منبثق\" لتمكين البوابة المنبثقة مرة أخرى", @@ -4873,7 +4873,7 @@ "your_message": "رسالتك", "your_message_optional": "رسالتك (اختياري)", "__count__empty_rooms_will_be_removed_automatically": "ستتم إزالة {{count}} من الغرف الفارغة تلقائيًا.", - "__count__empty_rooms_will_be_removed_automatically__rooms__": "ستتم إزالة {{count}} من الغرف الفارغة تلقائيًا:
{{rooms}}", + "__count__empty_rooms_will_be_removed_automatically__rooms__": "ستتم إزالة {{count}} من الغرف الفارغة تلقائيًا:
{{rooms}}", "__username__is_no_longer__role__defined_by__user_by_": "لم يعد {{username}} في دور {{role}} من قِبل {{user_by}}", "__username__was_set__role__by__user_by_": "تم تعيين {{username}} في دور {{role}} من قِبل {{user_by}}" } \ No newline at end of file diff --git a/packages/i18n/src/locales/bn-IN.i18n.json b/packages/i18n/src/locales/bn-IN.i18n.json index a1cb27cc898bf..8099b2e2af045 100644 --- a/packages/i18n/src/locales/bn-IN.i18n.json +++ b/packages/i18n/src/locales/bn-IN.i18n.json @@ -8,9 +8,9 @@ "2_Erros_Information_and_Debug": "2 - ত্রুটি, তথ্য এবং ডিবাগ", "@username": "@ব্যবহারকারীর নাম", "@username_message": "@ ব্যবহারকারী নাম ", - "A_new_owner_will_be_assigned_automatically_to__count__rooms": "একজন নতুন মালিককে {{count}} কক্ষে স্বয়ংক্রিয়ভাবে নিয়োগ দেওয়া হবে।", - "A_new_owner_will_be_assigned_automatically_to_the__roomName__room": "একজন নতুন মালিককে {{roomName}} ঘরে স্বয়ংক্রিয়ভাবে নিয়োগ দেওয়া হবে।", - "A_new_owner_will_be_assigned_automatically_to_those__count__rooms__rooms__": "একজন নতুন মালিককে সেই {{count}} কক্ষে স্বয়ংক্রিয়ভাবে নিয়োগ দেওয়া হবে:
{{rooms}}।", + "A_new_owner_will_be_assigned_automatically_to__count__rooms": "একজন নতুন মালিককে {{count}} কক্ষে স্বয়ংক্রিয়ভাবে নিয়োগ দেওয়া হবে।", + "A_new_owner_will_be_assigned_automatically_to_the__roomName__room": "একজন নতুন মালিককে {{roomName}} ঘরে স্বয়ংক্রিয়ভাবে নিয়োগ দেওয়া হবে।", + "A_new_owner_will_be_assigned_automatically_to_those__count__rooms__rooms__": "একজন নতুন মালিককে সেই {{count}} কক্ষে স্বয়ংক্রিয়ভাবে নিয়োগ দেওয়া হবে:
{{rooms}}।", "Accept": "গ্রহণ", "Accept_Call": "কল গ্রহণ করুন", "Accept_incoming_livechat_requests_even_if_there_are_no_online_agents": "কোনও এজেন্ট online এ না থাকলেও ইনকামিং ওমনিচ্যানেল অনুরোধগুলি গ্রহণ করুন", @@ -42,5 +42,5 @@ "access-setting-permissions_description": "সেটিং-ভিত্তিক অনুমতিগুলি সংশোধন করার অনুমতি", "add-user": "ব্যবহারকারী যুক্ত করুন", "__count__empty_rooms_will_be_removed_automatically": "{{count}} খালি ঘরগুলি স্বয়ংক্রিয়ভাবে সরানো হবে।", - "__count__empty_rooms_will_be_removed_automatically__rooms__": "{{count}} খালি ঘরগুলি স্বয়ংক্রিয়ভাবে সরানো হবে:
{{rooms}}।" + "__count__empty_rooms_will_be_removed_automatically__rooms__": "{{count}} খালি ঘরগুলি স্বয়ংক্রিয়ভাবে সরানো হবে:
{{rooms}}।" } \ No newline at end of file diff --git a/packages/i18n/src/locales/ca.i18n.json b/packages/i18n/src/locales/ca.i18n.json index 4d4e6ea8bde91..9d18da88f3cfe 100644 --- a/packages/i18n/src/locales/ca.i18n.json +++ b/packages/i18n/src/locales/ca.i18n.json @@ -67,9 +67,9 @@ "API_User_Limit": "Límit d'usuari per afegir tots els usuaris a Channel", "API_Wordpress_URL": "URL de WordPress", "APIs": "APIs", - "A_new_owner_will_be_assigned_automatically_to__count__rooms": "Un nou propietari serà assignat automàticament a les {{count}} sales.", - "A_new_owner_will_be_assigned_automatically_to_the__roomName__room": "Un nou propietari s'assignarà automàticament a la sala {{roomName}}.", - "A_new_owner_will_be_assigned_automatically_to_those__count__rooms__rooms__": "S'assignarà automàticament un nou propietari a les {{count}} sales:
{{rooms}}.", + "A_new_owner_will_be_assigned_automatically_to__count__rooms": "Un nou propietari serà assignat automàticament a les {{count}} sales.", + "A_new_owner_will_be_assigned_automatically_to_the__roomName__room": "Un nou propietari s'assignarà automàticament a la sala {{roomName}}.", + "A_new_owner_will_be_assigned_automatically_to_those__count__rooms__rooms__": "S'assignarà automàticament un nou propietari a les {{count}} sales:
{{rooms}}.", "Accept": "Accepta", "Accept_Call": "Accepta Trucada", "Accept_incoming_livechat_requests_even_if_there_are_no_online_agents": "Acceptar sol·licituds entrants de LiveChat encara que no hagi agents en línia", @@ -3583,7 +3583,7 @@ "The_application_name_is_required": "El nom de laplicació és obligatori.", "The_channel_name_is_required": "Es requereix el nom del canal", "The_emails_are_being_sent": "Els missatges de correu-e s'estan enviant.", - "The_empty_room__roomName__will_be_removed_automatically": "La sala buida {{roomName}} s'eliminarà automàticament.", + "The_empty_room__roomName__will_be_removed_automatically": "La sala buida {{roomName}} s'eliminarà automàticament.", "The_image_resize_will_not_work_because_we_can_not_detect_ImageMagick_or_GraphicsMagick_installed_in_your_server": "L'ajust de mida de les imatges no funcionarà perquè no podem detectar ni ImageMagick ni GraphicsMagick al servidor.", "The_message_is_a_discussion_you_will_not_be_able_to_recover": "El missatge és una discussió, no podrà recuperar els missatges!", "The_mobile_notifications_were_disabled_to_all_users_go_to_Admin_Push_to_enable_the_Push_Gateway_again": "Les notificacions mòbils es deshabilitaron per a tots els usuaris, aneu a \"Admin> Push\" per habilitar Push inici novament", @@ -4681,7 +4681,7 @@ "your_message": "El seu missatge", "your_message_optional": "el seu missatge (opcional)", "__count__empty_rooms_will_be_removed_automatically": "{{count}} sales buides seran eliminades automàticament.", - "__count__empty_rooms_will_be_removed_automatically__rooms__": "{{count}} sales buides seran eliminades automàticament:
{{rooms}}.", + "__count__empty_rooms_will_be_removed_automatically__rooms__": "{{count}} sales buides seran eliminades automàticament:
{{rooms}}.", "__username__is_no_longer__role__defined_by__user_by_": "{{username}} ja no és {{role}} (per {{user_by}})", "__username__was_set__role__by__user_by_": "Ara {{username}} és {{role}} (per {{user_by}})" } \ No newline at end of file diff --git a/packages/i18n/src/locales/cs.i18n.json b/packages/i18n/src/locales/cs.i18n.json index 926cdb2f244c4..9baa16bddcb00 100644 --- a/packages/i18n/src/locales/cs.i18n.json +++ b/packages/i18n/src/locales/cs.i18n.json @@ -66,9 +66,9 @@ "API_User_Limit": "Maximální počet uživatelů přidaných do místnosti", "API_Wordpress_URL": "WordPress URL", "APIs": "API", - "A_new_owner_will_be_assigned_automatically_to__count__rooms": "Nový vlastník bude přiřazen pro {{count}}místností.", - "A_new_owner_will_be_assigned_automatically_to_the__roomName__room": "Nový vlastník bude přiřazen pro {{roomName}}.", - "A_new_owner_will_be_assigned_automatically_to_those__count__rooms__rooms__": "Nový vlastník bude přiřazen pro {{count}} místností:
{{rooms}}.", + "A_new_owner_will_be_assigned_automatically_to__count__rooms": "Nový vlastník bude přiřazen pro {{count}}místností.", + "A_new_owner_will_be_assigned_automatically_to_the__roomName__room": "Nový vlastník bude přiřazen pro {{roomName}}.", + "A_new_owner_will_be_assigned_automatically_to_those__count__rooms__rooms__": "Nový vlastník bude přiřazen pro {{count}} místností:
{{rooms}}.", "Accept": "Přijmout", "Accept_incoming_livechat_requests_even_if_there_are_no_online_agents": "Přijímat příchozí požadavky omnichannel, i když není online žádný operátor", "Accept_new_livechats_when_agent_is_idle": "Přijímat nové požadavky omnichannel, i když je operátor nečinný", @@ -3022,7 +3022,7 @@ "The_application_name_is_required": "Název aplikace je vyžadován", "The_channel_name_is_required": "Název místnosti je vyžadován", "The_emails_are_being_sent": "Tyto e-maily jsou odesílány.", - "The_empty_room__roomName__will_be_removed_automatically": "Prázdná místnost {{roomName}} bude automaticky odstraněna.", + "The_empty_room__roomName__will_be_removed_automatically": "Prázdná místnost {{roomName}} bude automaticky odstraněna.", "The_image_resize_will_not_work_because_we_can_not_detect_ImageMagick_or_GraphicsMagick_installed_in_your_server": "Nelze změnit velikost obrázku, protože na serveru nebyl nalezen ImageMagick ani GraphicsMagick.", "The_message_is_a_discussion_you_will_not_be_able_to_recover": "Zpráva je diskuse, ze které nebudete moci obnovit zprávy!", "The_mobile_notifications_were_disabled_to_all_users_go_to_Admin_Push_to_enable_the_Push_Gateway_again": "Mobilní oznámení byla deaktivována všem uživatelům, v admin sekci \"Notifikace\" znovu aktivujte Push Gateway", @@ -3966,7 +3966,7 @@ "your_message": "vaše zpráva", "your_message_optional": "vaše zpráva (nepovinná)", "__count__empty_rooms_will_be_removed_automatically": "{{count}} prázdných místností bude automaticky odstraněno", - "__count__empty_rooms_will_be_removed_automatically__rooms__": "{{count}} prázdných místností bude automaticky odstraněno:
{{rooms}}.", + "__count__empty_rooms_will_be_removed_automatically__rooms__": "{{count}} prázdných místností bude automaticky odstraněno:
{{rooms}}.", "__username__is_no_longer__role__defined_by__user_by_": "{{username}} již není {{role}} (odebral/a {{user_by}} )", "__username__was_set__role__by__user_by_": "{{username}} je nyní {{role}} (nastavil/a {{user_by}})" } \ No newline at end of file diff --git a/packages/i18n/src/locales/da.i18n.json b/packages/i18n/src/locales/da.i18n.json index 79b80805098e0..7bafc1f4d9409 100644 --- a/packages/i18n/src/locales/da.i18n.json +++ b/packages/i18n/src/locales/da.i18n.json @@ -67,9 +67,9 @@ "API_Wordpress_URL": "WordPress-url", "APIs": "API'er", "A_cloud-based_platform_for_those_needing_a_plug-and-play_app": "En cloud-baseret platform til dem, der har brug for en plug-and-play-app.", - "A_new_owner_will_be_assigned_automatically_to__count__rooms": "En ny ejer tildeles automatisk til {{count}} rum.", - "A_new_owner_will_be_assigned_automatically_to_the__roomName__room": "En ny ejer tildeles automatisk til {{roomName}} rum.", - "A_new_owner_will_be_assigned_automatically_to_those__count__rooms__rooms__": "En ny ejer tildeles automatisk til disse {{count}} rum:
{{rooms}}.", + "A_new_owner_will_be_assigned_automatically_to__count__rooms": "En ny ejer tildeles automatisk til {{count}} rum.", + "A_new_owner_will_be_assigned_automatically_to_the__roomName__room": "En ny ejer tildeles automatisk til {{roomName}} rum.", + "A_new_owner_will_be_assigned_automatically_to_those__count__rooms__rooms__": "En ny ejer tildeles automatisk til disse {{count}} rum:
{{rooms}}.", "A_secure_and_highly_private_self-managed_solution_for_conference_calls": "En sikker og meget privat selvadministreret løsning til konferenceopkald.", "A_workspace_admin_needs_to_install_and_configure_a_conference_call_app": "En workspace-administrator skal installere og konfigurere en konferenceopkalds-app.", "Accept": "Acceptér", @@ -3117,7 +3117,7 @@ "The_application_name_is_required": "Ansøgningsnavnet er påkrævet", "The_channel_name_is_required": "Kanalnavnet er påkrævet", "The_emails_are_being_sent": "E-mailsne bliver sendt.", - "The_empty_room__roomName__will_be_removed_automatically": "Det tomme rum {{roomName}} fjernes automatisk.", + "The_empty_room__roomName__will_be_removed_automatically": "Det tomme rum {{roomName}} fjernes automatisk.", "The_image_resize_will_not_work_because_we_can_not_detect_ImageMagick_or_GraphicsMagick_installed_in_your_server": "Billedforstørrelsen fungerer ikke, fordi vi ikke kan opdage ImageMagick eller GraphicsMagick installeret på din server.", "The_message_is_a_discussion_you_will_not_be_able_to_recover": "Meddelelsen er en diskussion og du vil derfor ikke kunne gendanne meddelelserne!", "The_mobile_notifications_were_disabled_to_all_users_go_to_Admin_Push_to_enable_the_Push_Gateway_again": "Mobilmeddelelser blev deaktiveret for alle brugere. Tilgå \"Admin > Push\" for at aktivere Push Gateway igen", @@ -4076,7 +4076,7 @@ "__agents__agents_and__count__conversations__period__": "{{agents}} agenter og {{count}} samtaler, {{period}} ", "__count__conversations__period__": "{{count}} samtaler, {{period}}", "__count__empty_rooms_will_be_removed_automatically": "{{count}} tomme rum fjernes automatisk.", - "__count__empty_rooms_will_be_removed_automatically__rooms__": "{{count}} tomme rum vil blive fjernet automatisk:
{{rooms}}.", + "__count__empty_rooms_will_be_removed_automatically__rooms__": "{{count}} tomme rum vil blive fjernet automatisk:
{{rooms}}.", "__count__message_pruned_one": "{{count}} besked er beskåret", "__count__message_pruned_other": "{{count}} beskeder er beskåret", "__username__is_no_longer__role__defined_by__user_by_": "{{username}} is no longer {{role}} by {{user_by}}", diff --git a/packages/i18n/src/locales/de.i18n.json b/packages/i18n/src/locales/de.i18n.json index 3b21cffe411b2..761a6eac1040e 100644 --- a/packages/i18n/src/locales/de.i18n.json +++ b/packages/i18n/src/locales/de.i18n.json @@ -68,9 +68,9 @@ "API_User_Limit": "Limit für das Hinzufügen aller Benutzer zu einem Channel", "API_Wordpress_URL": "WordPress-URL", "APIs": "APIs", - "A_new_owner_will_be_assigned_automatically_to__count__rooms": "Ein neuer Eigentümer wird automatisch {{count}} Räumen zugewiesen.", - "A_new_owner_will_be_assigned_automatically_to_the__roomName__room": "Dem Raum {{roomName}} wird automatisch ein neuer Eigentümer zugewiesen.", - "A_new_owner_will_be_assigned_automatically_to_those__count__rooms__rooms__": "Folgenden {{count}} Räumen wird automatisch ein neuer Eigentümer zugewiesen:
{{rooms}}", + "A_new_owner_will_be_assigned_automatically_to__count__rooms": "Ein neuer Eigentümer wird automatisch {{count}} Räumen zugewiesen.", + "A_new_owner_will_be_assigned_automatically_to_the__roomName__room": "Dem Raum {{roomName}} wird automatisch ein neuer Eigentümer zugewiesen.", + "A_new_owner_will_be_assigned_automatically_to_those__count__rooms__rooms__": "Folgenden {{count}} Räumen wird automatisch ein neuer Eigentümer zugewiesen:
{{rooms}}", "A_secure_and_highly_private_self-managed_solution_for_conference_calls": "Eine sichere und private, selbstverwaltete Lösung für Telefonkonferenzen.", "A_workspace_admin_needs_to_install_and_configure_a_conference_call_app": "Ein Arbeitsbereich-Administrator muss eine Telefonkonferenz-App installieren und konfigurieren.", "Accept": "Akzeptieren", @@ -4045,7 +4045,7 @@ "The_application_name_is_required": "Es muss ein Name für diese Anwendung angegeben werden", "The_channel_name_is_required": "Ein Name für den Channel muss angegeben werden", "The_emails_are_being_sent": "E-Mails werden gesendet", - "The_empty_room__roomName__will_be_removed_automatically": "Der leere Raum {{roomName}} wird automatisch entfernt.", + "The_empty_room__roomName__will_be_removed_automatically": "Der leere Raum {{roomName}} wird automatisch entfernt.", "The_image_resize_will_not_work_because_we_can_not_detect_ImageMagick_or_GraphicsMagick_installed_in_your_server": "Die automatische Skalierung der Bilder funktioniert nicht, da ImageMagick oder GraphicsMagick nicht auf dem Server installiert sind.", "The_message_is_a_discussion_you_will_not_be_able_to_recover": "Diese Nachricht ist eine Diskussion. Wenn Sie diese löschen, werden Sie die Nachrichten der Diskussion nicht mehr auffinden können.", "The_mobile_notifications_were_disabled_to_all_users_go_to_Admin_Push_to_enable_the_Push_Gateway_again": "Die mobilen Benachrichtigungen wurden für alle Benutzer deaktiviert, wechseln Sie zu \"Admin > Push\", um das Push-Gateway erneut zu aktivieren", @@ -5501,7 +5501,7 @@ "your_message": "Ihre Nachricht", "your_message_optional": "Ihre optionale Nachricht", "__count__empty_rooms_will_be_removed_automatically": "{{count}} leere Räume werden automatisch entfernt.", - "__count__empty_rooms_will_be_removed_automatically__rooms__": "{{count}} leere Räume werden automatisch entfernt:
{{rooms}}.", + "__count__empty_rooms_will_be_removed_automatically__rooms__": "{{count}} leere Räume werden automatisch entfernt:
{{rooms}}.", "__count__message_pruned_one": "{{count}} Nachricht gelöscht", "__count__message_pruned_other": "{{count}} Nachrichten gelöscht", "__username__is_no_longer__role__defined_by__user_by_": "{{username}} ist nicht länger {{role}}, geändert durch {{user_by}}", diff --git a/packages/i18n/src/locales/en.i18n.json b/packages/i18n/src/locales/en.i18n.json index 24b0fc2214c03..144bf1b9b2b05 100644 --- a/packages/i18n/src/locales/en.i18n.json +++ b/packages/i18n/src/locales/en.i18n.json @@ -72,9 +72,9 @@ "API_Wordpress_URL": "WordPress URL", "APIs": "APIs", "A_cloud-based_platform_for_those_needing_a_plug-and-play_app": "A cloud-based platform for those needing a plug-and-play app.", - "A_new_owner_will_be_assigned_automatically_to__count__rooms": "A new owner will be assigned automatically to {{count}} rooms.", - "A_new_owner_will_be_assigned_automatically_to_the__roomName__room": "A new owner will be assigned automatically to the {{roomName}} room.", - "A_new_owner_will_be_assigned_automatically_to_those__count__rooms__rooms__": "A new owner will be assigned automatically to those {{count}} rooms:
{{rooms}}.", + "A_new_owner_will_be_assigned_automatically_to__count__rooms": "A new owner will be assigned automatically to {{count}} rooms.", + "A_new_owner_will_be_assigned_automatically_to_the__roomName__room": "A new owner will be assigned automatically to the {{roomName}} room.", + "A_new_owner_will_be_assigned_automatically_to_those__count__rooms__rooms__": "A new owner will be assigned automatically to those {{count}} rooms:
{{rooms}}.", "A_secure_and_highly_private_self-managed_solution_for_conference_calls": "A secure and highly private self-managed solution for conference calls.", "A_workspace_admin_needs_to_install_and_configure_a_conference_call_app": "A workspace admin needs to install and configure a conference call app.", "Accept": "Accept", @@ -4983,7 +4983,7 @@ "The_application_will_be_able_to": "<1>{{appName}} will be able to:", "The_channel_name_is_required": "The channel name is required", "The_emails_are_being_sent": "The emails are being sent.", - "The_empty_room__roomName__will_be_removed_automatically": "The empty room {{roomName}} will be removed automatically.", + "The_empty_room__roomName__will_be_removed_automatically": "The empty room {{roomName}} will be removed automatically.", "The_image_resize_will_not_work_because_we_can_not_detect_ImageMagick_or_GraphicsMagick_installed_in_your_server": "The image resize will not work because we can not detect ImageMagick or GraphicsMagick installed on your server.", "The_message_is_a_discussion_you_will_not_be_able_to_recover": "The message is a discussion you will not be able to recover the messages!", "The_mobile_notifications_were_disabled_to_all_users_go_to_Admin_Push_to_enable_the_Push_Gateway_again": "The mobile notifications were disabled to all users, go to \"Admin > Push\" to enable the Push Gateway again", @@ -6809,7 +6809,7 @@ "__agents__agents_and__count__conversations__period__": "{{agents}} agents and {{count}} conversations, {{period}}", "__count__conversations__period__": "{{count}} conversations, {{period}}", "__count__empty_rooms_will_be_removed_automatically": "{{count}} empty rooms will be removed automatically.", - "__count__empty_rooms_will_be_removed_automatically__rooms__": "{{count}} empty rooms will be removed automatically:
{{rooms}}.", + "__count__empty_rooms_will_be_removed_automatically__rooms__": "{{count}} empty rooms will be removed automatically:
{{rooms}}.", "__count__follower_one": "+{{count}} follower", "__count__follower_other": "+{{count}} followers", "__count__message_pruned_one": "{{count}} message pruned", diff --git a/packages/i18n/src/locales/es.i18n.json b/packages/i18n/src/locales/es.i18n.json index 05f228aa82961..ba9fcb91a3375 100644 --- a/packages/i18n/src/locales/es.i18n.json +++ b/packages/i18n/src/locales/es.i18n.json @@ -67,9 +67,9 @@ "API_User_Limit": "Límite de usuarios al añadir todos los usuarios a Channel", "API_Wordpress_URL": "URL de WordPress", "APIs": "APIs", - "A_new_owner_will_be_assigned_automatically_to__count__rooms": "Un nuevo propietario se asignará automáticamente a {{count}} salas.", - "A_new_owner_will_be_assigned_automatically_to_the__roomName__room": "Un nuevo propietario se asignará automáticamente a la sala {{roomName}}.", - "A_new_owner_will_be_assigned_automatically_to_those__count__rooms__rooms__": "Un nuevo propietario se asignará automáticamente a esas {{count}} salas.
{{rooms}}.", + "A_new_owner_will_be_assigned_automatically_to__count__rooms": "Un nuevo propietario se asignará automáticamente a {{count}} salas.", + "A_new_owner_will_be_assigned_automatically_to_the__roomName__room": "Un nuevo propietario se asignará automáticamente a la sala {{roomName}}.", + "A_new_owner_will_be_assigned_automatically_to_those__count__rooms__rooms__": "Un nuevo propietario se asignará automáticamente a esas {{count}} salas.
{{rooms}}.", "Accept": "Aceptar", "Accept_Call": "Aceptar la llamada", "Accept_incoming_livechat_requests_even_if_there_are_no_online_agents": "Aceptar solicitudes de Omnichannel entrantes aunque no haya agentes en línea", @@ -3736,7 +3736,7 @@ "The_application_name_is_required": "El nombre de la aplicación es obligatorio", "The_channel_name_is_required": "El nombre del canal es obligatorio", "The_emails_are_being_sent": "Los correos electrónicos se están enviando.", - "The_empty_room__roomName__will_be_removed_automatically": "La sala vacía {{roomName}} se eliminará automáticamente.", + "The_empty_room__roomName__will_be_removed_automatically": "La sala vacía {{roomName}} se eliminará automáticamente.", "The_image_resize_will_not_work_because_we_can_not_detect_ImageMagick_or_GraphicsMagick_installed_in_your_server": "El ajuste de tamaño de las imágenes no funcionará porque no detectamos ImageMagick o GraphicsMagick instalados en tu servidor.", "The_message_is_a_discussion_you_will_not_be_able_to_recover": "El mensaje es una discusión, así que no podrás recuperar los mensajes", "The_mobile_notifications_were_disabled_to_all_users_go_to_Admin_Push_to_enable_the_Push_Gateway_again": "Las notificaciones móviles se han deshabilitado para todos los usuarios. Ve a \"Administración\" > \"Push\" para habilitar puerta de enlace push nuevamente", @@ -5064,7 +5064,7 @@ "__agents__agents_and__count__conversations__period__": "{{agents}} agentes y {{count}} conversaciones, {{period}}", "__count__conversations__period__": "{{count}} conversaciones, {{period}}", "__count__empty_rooms_will_be_removed_automatically": "{{count}} salas vacías se eliminarán automáticamente.", - "__count__empty_rooms_will_be_removed_automatically__rooms__": "{{count}} salas vacías se eliminarán automáticamente.
{{rooms}}.", + "__count__empty_rooms_will_be_removed_automatically__rooms__": "{{count}} salas vacías se eliminarán automáticamente.
{{rooms}}.", "__count__message_pruned_one": "{{count}} mensaje borrado", "__count__message_pruned_other": "{{count}} mensajes borrados", "__count__message_pruned_many": "{{count}} mensajes borrados", diff --git a/packages/i18n/src/locales/fi.i18n.json b/packages/i18n/src/locales/fi.i18n.json index 4da67cf10210d..d4469401a10f2 100644 --- a/packages/i18n/src/locales/fi.i18n.json +++ b/packages/i18n/src/locales/fi.i18n.json @@ -71,9 +71,9 @@ "API_Wordpress_URL": "WordPress-URL-osoite", "APIs": "APIt", "A_cloud-based_platform_for_those_needing_a_plug-and-play_app": "Pilviympäristö niille, jotka tarvitsevat plug-and-play-sovelluksen.", - "A_new_owner_will_be_assigned_automatically_to__count__rooms": "Uusi omistaja liitetään automaattisesti {{count}} huoneeseen.", - "A_new_owner_will_be_assigned_automatically_to_the__roomName__room": "Uusi omistaja liitetään automaattisesti huoneeseen {{roomName}}.", - "A_new_owner_will_be_assigned_automatically_to_those__count__rooms__rooms__": "Uusi omistaja liitetään automaattisesti {{count}} huoneeseen:
{{rooms}}.", + "A_new_owner_will_be_assigned_automatically_to__count__rooms": "Uusi omistaja liitetään automaattisesti {{count}} huoneeseen.", + "A_new_owner_will_be_assigned_automatically_to_the__roomName__room": "Uusi omistaja liitetään automaattisesti huoneeseen {{roomName}}.", + "A_new_owner_will_be_assigned_automatically_to_those__count__rooms__rooms__": "Uusi omistaja liitetään automaattisesti {{count}} huoneeseen:
{{rooms}}.", "A_secure_and_highly_private_self-managed_solution_for_conference_calls": "Suojattu ja vahvasti yksityinen itsepalveluratkaisu neuvottelupuheluille.", "A_workspace_admin_needs_to_install_and_configure_a_conference_call_app": "Työtilan järjestelmänvalvojan on asennettava ja määritettävä neuvottelupuhelusovellus.", "Accept": "Hyväksy", @@ -4185,7 +4185,7 @@ "The_application_will_be_able_to": "<1>{{appName}} voi:", "The_channel_name_is_required": "Kanavan nimi on pakollinen", "The_emails_are_being_sent": "Sähköpostiviestejä lähetetään.", - "The_empty_room__roomName__will_be_removed_automatically": "Tyhjä huone {{roomName}} poistetaan automaattisesti.", + "The_empty_room__roomName__will_be_removed_automatically": "Tyhjä huone {{roomName}} poistetaan automaattisesti.", "The_image_resize_will_not_work_because_we_can_not_detect_ImageMagick_or_GraphicsMagick_installed_in_your_server": "Kuvien koon muuttaminen ei toimi, koska ImageMagickia tai GraphicsMagickia ei havaittu asennettuna palvelimessa.", "The_message_is_a_discussion_you_will_not_be_able_to_recover": "Viesti on keskustelu, et voi palauttaa näitä viestejä!", "The_mobile_notifications_were_disabled_to_all_users_go_to_Admin_Push_to_enable_the_Push_Gateway_again": "Mobiili-ilmoitukset oli poistettu käytöstä kaikilta käyttäjiltä. Ota Push Gateway uudelleen käyttöön kohdassa \"Admin > Push\"", @@ -5718,7 +5718,7 @@ "your_message": "viestisi", "your_message_optional": "viestisi (valinnainen)", "__count__empty_rooms_will_be_removed_automatically": "{{count}} tyhjää huonetta poistetaan automaattisesti.", - "__count__empty_rooms_will_be_removed_automatically__rooms__": "{{count}} tyhjää huonetta poistetaan automaattisesti:
{{rooms}}.", + "__count__empty_rooms_will_be_removed_automatically__rooms__": "{{count}} tyhjää huonetta poistetaan automaattisesti:
{{rooms}}.", "__count__message_pruned_one": "{{count}} viesti karsittu", "__count__message_pruned_other": "{{count}} viestiä karsittu", "__username__is_no_longer__role__defined_by__user_by_": "{{username}} ei ole enää {{role}} (muutoksen teki {{user_by}})", diff --git a/packages/i18n/src/locales/fr.i18n.json b/packages/i18n/src/locales/fr.i18n.json index 7b459f7db8384..92693ca899ab1 100644 --- a/packages/i18n/src/locales/fr.i18n.json +++ b/packages/i18n/src/locales/fr.i18n.json @@ -67,9 +67,9 @@ "API_User_Limit": "Limite d'utilisateurs pour ajouter tous les utilisateurs au canal", "API_Wordpress_URL": "URL WordPress", "APIs": "API", - "A_new_owner_will_be_assigned_automatically_to__count__rooms": "Un nouveau propriétaire sera automatiquement attribué à {{count}} salons.", - "A_new_owner_will_be_assigned_automatically_to_the__roomName__room": "Un nouveau propriétaire sera automatiquement assigné au salon {{roomName}}.", - "A_new_owner_will_be_assigned_automatically_to_those__count__rooms__rooms__": "Un nouveau propriétaire sera automatiquement assigné à ces {{count}} salons :
{{rooms}}.", + "A_new_owner_will_be_assigned_automatically_to__count__rooms": "Un nouveau propriétaire sera automatiquement attribué à {{count}} salons.", + "A_new_owner_will_be_assigned_automatically_to_the__roomName__room": "Un nouveau propriétaire sera automatiquement assigné au salon {{roomName}}.", + "A_new_owner_will_be_assigned_automatically_to_those__count__rooms__rooms__": "Un nouveau propriétaire sera automatiquement assigné à ces {{count}} salons :
{{rooms}}.", "Accept": "Accepter", "Accept_Call": "Accepter l'appel", "Accept_incoming_livechat_requests_even_if_there_are_no_online_agents": "Accepter les demandes omnicanales entrantes même si il n'y a pas d'agent en ligne", @@ -3645,7 +3645,7 @@ "The_application_name_is_required": "Le nom de l'application est requis", "The_channel_name_is_required": "Le nom du canal est obligatoire", "The_emails_are_being_sent": "Les e-mails sont en cours d'envoi.", - "The_empty_room__roomName__will_be_removed_automatically": "Le salon vide {{roomName}} sera supprimé automatiquement.", + "The_empty_room__roomName__will_be_removed_automatically": "Le salon vide {{roomName}} sera supprimé automatiquement.", "The_image_resize_will_not_work_because_we_can_not_detect_ImageMagick_or_GraphicsMagick_installed_in_your_server": "Le redimensionnement de l'image ne fonctionnera pas car nous n'avons pas trouvé ImageMagick ou GraphicsMagick installé sur votre serveur.", "The_message_is_a_discussion_you_will_not_be_able_to_recover": "Le message est une discussion, vous ne pourrez pas récupérer les messages.", "The_mobile_notifications_were_disabled_to_all_users_go_to_Admin_Push_to_enable_the_Push_Gateway_again": "Les notifications mobiles ont été désactivées pour tous les utilisateurs, accédez à \"Admin > Push\" pour réactiver la passerelle Push", @@ -4872,7 +4872,7 @@ "your_message": "votre message", "your_message_optional": "votre message (optionnel)", "__count__empty_rooms_will_be_removed_automatically": "{{count}} salons vides seront supprimés automatiquement.", - "__count__empty_rooms_will_be_removed_automatically__rooms__": "{{count}} salons vides seront supprimés automatiquement :
{{rooms}}.", + "__count__empty_rooms_will_be_removed_automatically__rooms__": "{{count}} salons vides seront supprimés automatiquement :
{{rooms}}.", "__username__is_no_longer__role__defined_by__user_by_": "{{user_by}} a retiré le rôle {{role}} à {{username}}", "__username__was_set__role__by__user_by_": "{{user_by}} a donné le rôle {{role}} à {{username}}" } \ No newline at end of file diff --git a/packages/i18n/src/locales/gl.i18n.json b/packages/i18n/src/locales/gl.i18n.json index 64a0eea72973b..2cb97b0a02acd 100644 --- a/packages/i18n/src/locales/gl.i18n.json +++ b/packages/i18n/src/locales/gl.i18n.json @@ -10,9 +10,9 @@ "2_Erros_Information_and_Debug": "2 - Erros, información e depuración", "@username": "@usuario", "@username_message": "@usuario ", - "A_new_owner_will_be_assigned_automatically_to__count__rooms": "Vaise asignar automaticamente un novo propietario a{{count}} salas.", - "A_new_owner_will_be_assigned_automatically_to_the__roomName__room": "Vaise asignar automaticamente un novo propietario á sala {{roomName}}.", - "A_new_owner_will_be_assigned_automatically_to_those__count__rooms__rooms__": "Vaise asignar automaticamente un novo propietario a{{count}} salas:
{{rooms}}.", + "A_new_owner_will_be_assigned_automatically_to__count__rooms": "Vaise asignar automaticamente un novo propietario a {{count}} salas.", + "A_new_owner_will_be_assigned_automatically_to_the__roomName__room": "Vaise asignar automaticamente un novo propietario á sala {{roomName}}.", + "A_new_owner_will_be_assigned_automatically_to_those__count__rooms__rooms__": "Vaise asignar automaticamente un novo propietario a {{count}} salas:
{{rooms}}.", "Accept": "Aceptar", "Access_Token_URL": "URL de token de acceso", "Access_not_authorized": "Acceso non autorizado", @@ -394,7 +394,7 @@ "your_message": "a túa mensaxe", "your_message_optional": "a túa mensaxe (opcional)", "__count__empty_rooms_will_be_removed_automatically": "{{count}} salas vacías serán eliminadas automaticamente.", - "__count__empty_rooms_will_be_removed_automatically__rooms__": "Vanse eliminar automaticamente {{count}} salas vacías:
{{rooms}}.", + "__count__empty_rooms_will_be_removed_automatically__rooms__": "Vanse eliminar automaticamente {{count}} salas vacías:
{{rooms}}.", "__username__is_no_longer__role__defined_by__user_by_": "{{username}} xa non é {{role}} (por {{user_by}})", "__username__was_set__role__by__user_by_": "{{user_by}} asignou {{role}} a {{username}}" } \ No newline at end of file diff --git a/packages/i18n/src/locales/hi-IN.i18n.json b/packages/i18n/src/locales/hi-IN.i18n.json index ee1eef7ecf66c..1512f05887efc 100644 --- a/packages/i18n/src/locales/hi-IN.i18n.json +++ b/packages/i18n/src/locales/hi-IN.i18n.json @@ -71,9 +71,9 @@ "API_Wordpress_URL": "वर्डप्रेस यूआरएल", "APIs": "शहद की मक्खी", "A_cloud-based_platform_for_those_needing_a_plug-and-play_app": "प्लग-एंड-प्ले ऐप की आवश्यकता वाले लोगों के लिए एक क्लाउड-आधारित प्लेटफ़ॉर्म।", - "A_new_owner_will_be_assigned_automatically_to__count__rooms": "एक नए मालिक को स्वचालित रूप से {{count}} कमरों को सौंपा जाएगा।", - "A_new_owner_will_be_assigned_automatically_to_the__roomName__room": "एक नए मालिक को स्वचालित रूप से {{roomName}} कमरे का कार्यभार सौंपा जाएगा।", - "A_new_owner_will_be_assigned_automatically_to_those__count__rooms__rooms__": "एक नए मालिक को स्वचालित रूप से उन {{count}} कमरों को सौंपा जाएगा:
{{rooms}}।", + "A_new_owner_will_be_assigned_automatically_to__count__rooms": "एक नए मालिक को स्वचालित रूप से {{count}} कमरों को सौंपा जाएगा।", + "A_new_owner_will_be_assigned_automatically_to_the__roomName__room": "एक नए मालिक को स्वचालित रूप से {{roomName}} कमरे का कार्यभार सौंपा जाएगा।", + "A_new_owner_will_be_assigned_automatically_to_those__count__rooms__rooms__": "एक नए मालिक को स्वचालित रूप से उन {{count}} कमरों को सौंपा जाएगा:
{{rooms}}।", "A_secure_and_highly_private_self-managed_solution_for_conference_calls": "कॉन्फ़्रेंस कॉल के लिए एक सुरक्षित और अत्यधिक निजी स्व-प्रबंधित समाधान।", "A_workspace_admin_needs_to_install_and_configure_a_conference_call_app": "एक कार्यस्थान व्यवस्थापक को एक कॉन्फ़्रेंस कॉल ऐप इंस्टॉल और कॉन्फ़िगर करने की आवश्यकता होती है।", "Accept": "स्वीकार करें", @@ -4464,7 +4464,7 @@ "The_application_will_be_able_to": "<1>{{appName}} यह करने में सक्षम होगा:", "The_channel_name_is_required": "चैनल का नाम आवश्यक है", "The_emails_are_being_sent": "ईमेल भेजे जा रहे हैं.", - "The_empty_room__roomName__will_be_removed_automatically": "खाली कमरा {{roomName}} स्वचालित रूप से हटा दिया जाएगा।", + "The_empty_room__roomName__will_be_removed_automatically": "खाली कमरा {{roomName}} स्वचालित रूप से हटा दिया जाएगा।", "The_image_resize_will_not_work_because_we_can_not_detect_ImageMagick_or_GraphicsMagick_installed_in_your_server": "छवि का आकार बदलना काम नहीं करेगा क्योंकि हम आपके सर्वर पर स्थापित ImageMagick या ग्राफ़िक्सMagick का पता नहीं लगा सकते हैं।", "The_message_is_a_discussion_you_will_not_be_able_to_recover": "संदेश एक चर्चा है आप संदेशों को पुनर्प्राप्त नहीं कर पाएंगे!", "The_mobile_notifications_were_disabled_to_all_users_go_to_Admin_Push_to_enable_the_Push_Gateway_again": "मोबाइल सूचनाएं सभी उपयोगकर्ताओं के लिए अक्षम कर दी गई थीं, पुश गेटवे को फिर से सक्षम करने के लिए \"एडमिन > पुश\" पर जाएं", @@ -6088,7 +6088,7 @@ "__agents__agents_and__count__conversations__period__": "{{agents}} एजेंट और {{count}} बातचीत, {{period}}", "__count__conversations__period__": "{{count}} बातचीत, {{period}}", "__count__empty_rooms_will_be_removed_automatically": "{{count}} खाली कमरे स्वचालित रूप से हटा दिए जाएंगे।", - "__count__empty_rooms_will_be_removed_automatically__rooms__": "{{count}} खाली कमरे स्वचालित रूप से हटा दिए जाएंगे:
{{rooms}}।", + "__count__empty_rooms_will_be_removed_automatically__rooms__": "{{count}} खाली कमरे स्वचालित रूप से हटा दिए जाएंगे:
{{rooms}}।", "__count__tags__and__count__conversations__period__": "{{count}} टैग और {{conversations}} बातचीत, {{period}}", "__count__without__assignee__": "{{count}} बिना असाइनी के", "__count__without__department__": "बिना विभाग के {{count}}", diff --git a/packages/i18n/src/locales/hu.i18n.json b/packages/i18n/src/locales/hu.i18n.json index a087b0b50cc3e..29aa66536be40 100644 --- a/packages/i18n/src/locales/hu.i18n.json +++ b/packages/i18n/src/locales/hu.i18n.json @@ -69,9 +69,9 @@ "API_Wordpress_URL": "WordPress URL", "APIs": "API-k", "A_cloud-based_platform_for_those_needing_a_plug-and-play_app": "Felhőalapú platform azok számára, akiknek magától működő alkalmazásra van szükségük.", - "A_new_owner_will_be_assigned_automatically_to__count__rooms": "Új tulajdonos lesz {{count}} szobához automatikusan hozzárendelve.", - "A_new_owner_will_be_assigned_automatically_to_the__roomName__room": "Új tulajdonos lesz a(z) {{roomName}} szobához automatikusan hozzárendelve.", - "A_new_owner_will_be_assigned_automatically_to_those__count__rooms__rooms__": "Új tulajdonos lesz automatikusan hozzárendelve a következő {{count}} szobához:
{{rooms}}.", + "A_new_owner_will_be_assigned_automatically_to__count__rooms": "Új tulajdonos lesz {{count}} szobához automatikusan hozzárendelve.", + "A_new_owner_will_be_assigned_automatically_to_the__roomName__room": "Új tulajdonos lesz a(z) {{roomName}} szobához automatikusan hozzárendelve.", + "A_new_owner_will_be_assigned_automatically_to_those__count__rooms__rooms__": "Új tulajdonos lesz automatikusan hozzárendelve a következő {{count}} szobához:
{{rooms}}.", "A_secure_and_highly_private_self-managed_solution_for_conference_calls": "Biztonságos és rendkívül személyes, önmenedzselt megoldás a konferenciahívásokhoz.", "A_workspace_admin_needs_to_install_and_configure_a_conference_call_app": "A munkaterület adminisztrátorának telepítenie kell és be kell állítania egy konferenciahívás-alkalmazást.", "Accept": "Elfogadás", @@ -3946,7 +3946,7 @@ "The_application_name_is_required": "Az alkalmazás neve kötelező", "The_channel_name_is_required": "A csatorna neve kötelező", "The_emails_are_being_sent": "Az e-mailek elküldésre kerültek.", - "The_empty_room__roomName__will_be_removed_automatically": "Az üres {{roomName}} szoba automatikusan el lesz távolítva.", + "The_empty_room__roomName__will_be_removed_automatically": "Az üres {{roomName}} szoba automatikusan el lesz távolítva.", "The_image_resize_will_not_work_because_we_can_not_detect_ImageMagick_or_GraphicsMagick_installed_in_your_server": "A kép átméretezése nem fog működni, mert nem észlelhető a kiszolgálóra telepített ImageMagick vagy GraphicsMagick program.", "The_message_is_a_discussion_you_will_not_be_able_to_recover": "Az üzenet egy megbeszélés, nem lesz képes helyreállítani az üzeneteket!", "The_mobile_notifications_were_disabled_to_all_users_go_to_Admin_Push_to_enable_the_Push_Gateway_again": "A mobil értesítések le lettek tiltva az összes felhasználó számára. Menjen az „Adminisztráció → Leküldés” menüponthoz a leküldéses átjáró újbóli engedélyezéséhez.", @@ -5400,7 +5400,7 @@ "your_message": "az üzenete", "your_message_optional": "az üzenete (elhagyható)", "__count__empty_rooms_will_be_removed_automatically": "{{count}} üres szoba automatikusan eltávolításra kerül.", - "__count__empty_rooms_will_be_removed_automatically__rooms__": "{{count}} üres szoba automatikusan eltávolításra kerül:
{{rooms}}.", + "__count__empty_rooms_will_be_removed_automatically__rooms__": "{{count}} üres szoba automatikusan eltávolításra kerül:
{{rooms}}.", "__count__message_pruned_one": "{{count}} üzenet törölve", "__count__message_pruned_other": "{{count}} üzenet törölve", "__username__is_no_longer__role__defined_by__user_by_": "{{username}} többé már nem {{role}} {{user_by}} által", diff --git a/packages/i18n/src/locales/it.i18n.json b/packages/i18n/src/locales/it.i18n.json index 3355a33a950c9..832dc71e80b16 100644 --- a/packages/i18n/src/locales/it.i18n.json +++ b/packages/i18n/src/locales/it.i18n.json @@ -47,9 +47,9 @@ "API_User_Limit": "Limite utente per aggiungere tutti gli utenti al canale", "API_Wordpress_URL": "WordPress URL", "A_cloud-based_platform_for_those_needing_a_plug-and-play_app": "Una piattaforma basata sul cloud per chi ha bisogno di un'applicazione plug-and-play.", - "A_new_owner_will_be_assigned_automatically_to__count__rooms": "Un nuovo proprietario verrà assegnato automaticamente a{{count}}stanze.", - "A_new_owner_will_be_assigned_automatically_to_the__roomName__room": "Un nuovo proprietario verrà assegnato automaticamente alla stanza {{roomName}}.", - "A_new_owner_will_be_assigned_automatically_to_those__count__rooms__rooms__": "Un nuovo proprietario verrà assegnato automaticamente a queste_count__stanze:
{{rooms}}.", + "A_new_owner_will_be_assigned_automatically_to__count__rooms": "Un nuovo proprietario verrà assegnato automaticamente a {{count}} stanze.", + "A_new_owner_will_be_assigned_automatically_to_the__roomName__room": "Un nuovo proprietario verrà assegnato automaticamente alla stanza {{roomName}}.", + "A_new_owner_will_be_assigned_automatically_to_those__count__rooms__rooms__": "Un nuovo proprietario verrà assegnato automaticamente a queste _count__ stanze:
{{rooms}}.", "A_secure_and_highly_private_self-managed_solution_for_conference_calls": "Una soluzione autogestita sicura e altamente privata per le chiamate in teleconferenza.", "A_workspace_admin_needs_to_install_and_configure_a_conference_call_app": "L'amministratore di uno spazio di lavoro deve installare e configurare un'applicazione per le chiamate in teleconferenza.", "Accept": "Accetta", @@ -3387,7 +3387,7 @@ "__agents__agents_and__count__conversations__period__": "{{agents}} agenti e {{count}} conversazioni, {{period}}", "__count__conversations__period__": "{{count}} conversazioni, {{period}}", "__count__empty_rooms_will_be_removed_automatically": "{{count}} stanze vuote verranno automaticamente rimosse.", - "__count__empty_rooms_will_be_removed_automatically__rooms__": "{{count}} stanze vuote saranno rimosse automaticamente:
{{rooms}}.", + "__count__empty_rooms_will_be_removed_automatically__rooms__": "{{count}} stanze vuote saranno rimosse automaticamente:
{{rooms}}.", "__count__message_pruned_one": "{{count}} messaggio eliminato", "__count__message_pruned_other": "{{count}} messaggi eliminati", "__count__message_pruned_many": "{{count}} messaggi eliminati", diff --git a/packages/i18n/src/locales/ja.i18n.json b/packages/i18n/src/locales/ja.i18n.json index 932eca44b5a98..1f75ee3e048b0 100644 --- a/packages/i18n/src/locales/ja.i18n.json +++ b/packages/i18n/src/locales/ja.i18n.json @@ -67,9 +67,9 @@ "API_User_Limit": "Channelに全ユーザーを追加するためのユーザー制限", "API_Wordpress_URL": "WordPress URL", "APIs": "API", - "A_new_owner_will_be_assigned_automatically_to__count__rooms": "新しい所有者が{{count}}個のルームに自動的に割り当てられます。", - "A_new_owner_will_be_assigned_automatically_to_the__roomName__room": "新しい所有者が{{roomName}}のルームに自動的に割り当てられます。", - "A_new_owner_will_be_assigned_automatically_to_those__count__rooms__rooms__": "新しい所有者がそれらの{{count}}個のルームに自動的に割り当てられます:
{{rooms}} 。", + "A_new_owner_will_be_assigned_automatically_to__count__rooms": "新しい所有者が{{count}}個のルームに自動的に割り当てられます。", + "A_new_owner_will_be_assigned_automatically_to_the__roomName__room": "新しい所有者が{{roomName}}のルームに自動的に割り当てられます。", + "A_new_owner_will_be_assigned_automatically_to_those__count__rooms__rooms__": "新しい所有者がそれらの{{count}}個のルームに自動的に割り当てられます:
{{rooms}} 。", "Accept": "同意", "Accept_Call": "電話に出る", "Accept_incoming_livechat_requests_even_if_there_are_no_online_agents": "オンラインエージェントが存在しない場合でも、受信オムニチャネル要求を受け付ける", @@ -3613,7 +3613,7 @@ "The_application_name_is_required": "アプリケーション名は必須です", "The_channel_name_is_required": "チャネル名は必須です", "The_emails_are_being_sent": "メールを送信中です。", - "The_empty_room__roomName__will_be_removed_automatically": "空のルーム{{roomName}}は自動的に削除されます。", + "The_empty_room__roomName__will_be_removed_automatically": "空のルーム{{roomName}}は自動的に削除されます。", "The_image_resize_will_not_work_because_we_can_not_detect_ImageMagick_or_GraphicsMagick_installed_in_your_server": "サーバーにインストールされたImageMagickまたはGraphicsMagickを検出できないため、画像のサイズ変更が機能しません。", "The_message_is_a_discussion_you_will_not_be_able_to_recover": "このメッセージはメッセージを復元できないディスカッションです!", "The_mobile_notifications_were_disabled_to_all_users_go_to_Admin_Push_to_enable_the_Push_Gateway_again": "すべてのユーザーに対してモバイル通知が無効になりました。[管理]>[プッシュ]に移動して、プッシュゲートウェイを再度有効にしてください", @@ -4816,7 +4816,7 @@ "your_message": "あなたのメッセージ", "your_message_optional": "メッセージ(オプション)", "__count__empty_rooms_will_be_removed_automatically": "{{count}}個の空のルームが自動的に削除されます。", - "__count__empty_rooms_will_be_removed_automatically__rooms__": "{{count}}個の空のルームが自動的に削除されます:
{{rooms}}。", + "__count__empty_rooms_will_be_removed_automatically__rooms__": "{{count}}個の空のルームが自動的に削除されます:
{{rooms}}。", "__username__is_no_longer__role__defined_by__user_by_": "{{username}}は{{user_by}}によって{{role}}ではなくなりました", "__username__was_set__role__by__user_by_": "{{user_by}}によって{{role}}が{{username}}に設定されました" } \ No newline at end of file diff --git a/packages/i18n/src/locales/ka-GE.i18n.json b/packages/i18n/src/locales/ka-GE.i18n.json index fbf357a061718..3a0d80020a6ae 100644 --- a/packages/i18n/src/locales/ka-GE.i18n.json +++ b/packages/i18n/src/locales/ka-GE.i18n.json @@ -65,9 +65,9 @@ "API_Use_REST_For_DDP_Calls": "Meteor calls-სთვის გამოიყენეთ REST ვებ სოკეტის ნაცვლად", "API_User_Limit": "მომხმარებლების რაოდენობის ლიმიტი არხზე დამატებისას", "API_Wordpress_URL": "Word Press-ის URL", - "A_new_owner_will_be_assigned_automatically_to__count__rooms": "ახალ მფლობელს ავტომატურად მიენიჭება {{count}} ოთახებში.", - "A_new_owner_will_be_assigned_automatically_to_the__roomName__room": "ცარიელი ოთახი {{roomName}} ავტომატურად მოიხსნება.", - "A_new_owner_will_be_assigned_automatically_to_those__count__rooms__rooms__": "ახალი მფლობელი ავტომატურად მიენიჭება იმ {{count}} ოთახებს:
{{rooms}}.", + "A_new_owner_will_be_assigned_automatically_to__count__rooms": "ახალ მფლობელს ავტომატურად მიენიჭება {{count}} ოთახებში.", + "A_new_owner_will_be_assigned_automatically_to_the__roomName__room": "ცარიელი ოთახი {{roomName}} ავტომატურად მოიხსნება.", + "A_new_owner_will_be_assigned_automatically_to_those__count__rooms__rooms__": "ახალი მფლობელი ავტომატურად მიენიჭება იმ {{count}} ოთახებს:
{{rooms}}.", "Accept": "თანხმობა", "Accept_incoming_livechat_requests_even_if_there_are_no_online_agents": "მრავალარხიანი ჩატის მოთხოვნის მიღება იმ შემთხვევაშიც, თუ ხაზზე აგენტი არაა", "Accept_new_livechats_when_agent_is_idle": "მრავალარხიანი ახალი ჩატის მიღება როდესაც აგენტი უმოქმედოა", @@ -2800,7 +2800,7 @@ "The_application_name_is_required": "აუცილებელია აპლიკაციის სახელი", "The_channel_name_is_required": "საჭიროა არხის სახელი", "The_emails_are_being_sent": "ელ.ფოსტა იგზავნება.", - "The_empty_room__roomName__will_be_removed_automatically": "ცარიელი ოთახი {{roomName}} ავტომატურად მოიხსნება.", + "The_empty_room__roomName__will_be_removed_automatically": "ცარიელი ოთახი {{roomName}} ავტომატურად მოიხსნება.", "The_image_resize_will_not_work_because_we_can_not_detect_ImageMagick_or_GraphicsMagick_installed_in_your_server": "სურათის ზომის შეცვლა არ იმუშავებს, რადგან ჩვენ ვერ ვპოულობთ თქვენს სერვერზე დაყენებულ ImageMagick ან GraphicsMagick-ს.", "The_message_is_a_discussion_you_will_not_be_able_to_recover": "შეტყობინება არის განხილვა და თქვენ ვერ შეძლებთ შეტყობინებების აღდგენას", "The_redirectUri_is_required": "გადამისამართების ლინკია საჭირო", @@ -3667,7 +3667,7 @@ "your_message": "თქვენი შეტყობინება", "your_message_optional": "თქვენი შეტყობინება (დამატებით)", "__count__empty_rooms_will_be_removed_automatically": "{{count}} ცარიელი ოთახი ავტომატურად მოიხსნება.", - "__count__empty_rooms_will_be_removed_automatically__rooms__": "{{count}} ცარიელი ოთახები ავტომატურად წაიშლება:
{{rooms}}.", + "__count__empty_rooms_will_be_removed_automatically__rooms__": "{{count}} ცარიელი ოთახები ავტომატურად წაიშლება:
{{rooms}}.", "__username__is_no_longer__role__defined_by__user_by_": "{{username}}ჩამეორთვა {{role}} {{user_by}}მიერ", "__username__was_set__role__by__user_by_": "{{username}} -ს მისცა {{role}} უფლება მომხმარებელმა: {{user_by}}" } \ No newline at end of file diff --git a/packages/i18n/src/locales/km.i18n.json b/packages/i18n/src/locales/km.i18n.json index 80d37ed3e33a7..46a200190138a 100644 --- a/packages/i18n/src/locales/km.i18n.json +++ b/packages/i18n/src/locales/km.i18n.json @@ -62,9 +62,9 @@ "API_Upper_Count_Limit_Description": "តើចំនួនអតិបរមានៃការកត់ត្រា API REST គួរតែត្រឡប់មកវិញ (នៅពេលមិនកំណត់គ្មានដែនកំណត់)?", "API_User_Limit": "កំណត់អ្នកប្រើអ្នកប្រើទាំងអស់សម្រាប់ការដែលលោកបានបន្ថែមទៅឆានែល", "API_Wordpress_URL": "តំណភ្ជាប់ URL របស់ WordPress", - "A_new_owner_will_be_assigned_automatically_to__count__rooms": "ម្ចាស់ថ្មីនឹងត្រូវបានចាត់តាំងដោយស្វ័យប្រវត្តិទៅបន្ទប់ {{count}} ។", - "A_new_owner_will_be_assigned_automatically_to_the__roomName__room": "ម្ចាស់ថ្មីនឹងត្រូវបានចាត់តាំងដោយស្វ័យប្រវត្តិទៅក្នុងបន្ទប់ {{roomName}} ។", - "A_new_owner_will_be_assigned_automatically_to_those__count__rooms__rooms__": "ម្ចាស់ថ្មីនឹងត្រូវបានចាត់ចែងដោយស្វ័យប្រវត្តិទៅបន្ទប់ទាំងនោះ {{count}} បន្ទប់៖
{{rooms}} ។", + "A_new_owner_will_be_assigned_automatically_to__count__rooms": "ម្ចាស់ថ្មីនឹងត្រូវបានចាត់តាំងដោយស្វ័យប្រវត្តិទៅបន្ទប់ {{count}} ។", + "A_new_owner_will_be_assigned_automatically_to_the__roomName__room": "ម្ចាស់ថ្មីនឹងត្រូវបានចាត់តាំងដោយស្វ័យប្រវត្តិទៅក្នុងបន្ទប់ {{roomName}} ។", + "A_new_owner_will_be_assigned_automatically_to_those__count__rooms__rooms__": "ម្ចាស់ថ្មីនឹងត្រូវបានចាត់ចែងដោយស្វ័យប្រវត្តិទៅបន្ទប់ទាំងនោះ {{count}} បន្ទប់៖
{{rooms}} ។", "Accept": "ទទួលយក", "Accept_incoming_livechat_requests_even_if_there_are_no_online_agents": "ទទួលយកសំណើ livechat មកដល់ទោះបីជាគ្មានភ្នាក់ងារអនឡាញក៏ដោយ", "Accept_new_livechats_when_agent_is_idle": "ទទួលយកការស្នើសុំ Livechat ថ្មីនៅពេលភ្នាក់ងារទំនេរ", @@ -3114,7 +3114,7 @@ "your_message": "សារ​របស់​អ្នក", "your_message_optional": "សាររបស់អ្នក (ស្រេចចិត្ត)", "__count__empty_rooms_will_be_removed_automatically": "ចំនួនបន្ទប់ដែលនៅសល់នឹងត្រូវលុបចោលដោយស្វ័យប្រវត្តិ។", - "__count__empty_rooms_will_be_removed_automatically__rooms__": "{{count}} នឹងត្រូវលុបចោលដោយស្វ័យប្រវត្តិ៖
{{rooms}} ។", + "__count__empty_rooms_will_be_removed_automatically__rooms__": "{{count}} នឹងត្រូវលុបចោលដោយស្វ័យប្រវត្តិ៖
{{rooms}} ។", "__username__is_no_longer__role__defined_by__user_by_": "{{username}} មិនមាន {{role}}by {{user_by}}", "__username__was_set__role__by__user_by_": "{{username}} ត្រូវបានកំណត់តួនាទីជា {{role}} ដោយ {{user_by}}" } \ No newline at end of file diff --git a/packages/i18n/src/locales/ko.i18n.json b/packages/i18n/src/locales/ko.i18n.json index c8b86249f6773..d56140a07862f 100644 --- a/packages/i18n/src/locales/ko.i18n.json +++ b/packages/i18n/src/locales/ko.i18n.json @@ -67,9 +67,9 @@ "API_Wordpress_URL": "워드프레스 URL", "APIs": "APIs", "A_cloud-based_platform_for_those_needing_a_plug-and-play_app": "플러그 앤 플레이 앱이 필요한 사용자를 위한 클라우드 기반 플랫폼입니다.", - "A_new_owner_will_be_assigned_automatically_to__count__rooms": "새 소유자는 {{count}} 개의 대화방에 자동으로 할당됩니다.", - "A_new_owner_will_be_assigned_automatically_to_the__roomName__room": "새 소유자는 {{roomName}} 대화방에 자동으로 할당됩니다.", - "A_new_owner_will_be_assigned_automatically_to_those__count__rooms__rooms__": "새 소유자는 {{count}} 개의 대화방 :
{{rooms}}에 자동으로 할당됩니다.", + "A_new_owner_will_be_assigned_automatically_to__count__rooms": "새 소유자는 {{count}} 개의 대화방에 자동으로 할당됩니다.", + "A_new_owner_will_be_assigned_automatically_to_the__roomName__room": "새 소유자는 {{roomName}} 대화방에 자동으로 할당됩니다.", + "A_new_owner_will_be_assigned_automatically_to_those__count__rooms__rooms__": "새 소유자는 {{count}} 개의 대화방 :
{{rooms}}에 자동으로 할당됩니다.", "Accept": "수락", "Accept_incoming_livechat_requests_even_if_there_are_no_online_agents": "온라인 상담사가 없는 경우에도 수신된 실시간상담 요청 수락", "Accept_new_livechats_when_agent_is_idle": "상담사가 유휴 상태 일 때 새로운 실시간상담 요청 수락", @@ -3085,7 +3085,7 @@ "The_application_name_is_required": "응용프로그램명이 필요합니다.", "The_channel_name_is_required": "채널명이 필요합니다.", "The_emails_are_being_sent": "이메일을 전송 중입니다.", - "The_empty_room__roomName__will_be_removed_automatically": "사용하지 않는 대화방 {{roomName}}은 자동으로 제거됩니다.", + "The_empty_room__roomName__will_be_removed_automatically": "사용하지 않는 대화방 {{roomName}}은 자동으로 제거됩니다.", "The_image_resize_will_not_work_because_we_can_not_detect_ImageMagick_or_GraphicsMagick_installed_in_your_server": "서버에 ImageMagick 또는 GraphicMagick이 설치되어 있지 않아 이미지 크기를 재조정할 수 없습니다.", "The_message_is_a_discussion_you_will_not_be_able_to_recover": "그 메시지는 메시지 복구가 불가능한 토론입니다.", "The_mobile_notifications_were_disabled_to_all_users_go_to_Admin_Push_to_enable_the_Push_Gateway_again": "모바일 알림이 모든 사용자에게 사용 중지되었습니다. \"관리자> 푸시\"로 이동하여 푸시 게이트웨이를 다시 사용으로 변경하십시오.", @@ -4040,7 +4040,7 @@ "__agents__agents_and__count__conversations__period__": "{{agents}} 에이전트와 {{count}} 대화, {{period}}", "__count__conversations__period__": "{{count}} 대화, {{period}}", "__count__empty_rooms_will_be_removed_automatically": "{{count}} 빈 대화방은 자동으로 제거됩니다.", - "__count__empty_rooms_will_be_removed_automatically__rooms__": "{{count}} 빈 대화방은 자동으로 제거됩니다 :
{{rooms}}.", + "__count__empty_rooms_will_be_removed_automatically__rooms__": "{{count}} 빈 대화방은 자동으로 제거됩니다 :
{{rooms}}.", "__count__follower_other": "+{{count}} 팔로워", "__count__message_pruned_other": "{{count}} 메시지 삭제", "__count__replies": "{{count}} 답글", diff --git a/packages/i18n/src/locales/lo.i18n.json b/packages/i18n/src/locales/lo.i18n.json index 003733aa99bf5..3d5e115188b6c 100644 --- a/packages/i18n/src/locales/lo.i18n.json +++ b/packages/i18n/src/locales/lo.i18n.json @@ -46,9 +46,9 @@ "API_Upper_Count_Limit_Description": "ຈໍານວນການບັນທຶກທີ່ສູງສຸດຂອງ API REST ຄວນຈະກັບຄືນມາ (ເມື່ອບໍ່ຈໍາກັດ)?", "API_User_Limit": "ຈໍາກັດຜູ້ໃຊ້ສໍາລັບການເພີ່ມຜູ້ຊົມໃຊ້ທັງຫມົດເພື່ອໃຫ້ເປັນຊ່ອງ", "API_Wordpress_URL": "URL WordPress", - "A_new_owner_will_be_assigned_automatically_to__count__rooms": "ເຈົ້າຂອງຫ້ອງໃໝ່ຈະຖືກກໍານົດໂດຍອັດຕະໂນມັດໃຫ້ກັບ {{count}} rooms.", - "A_new_owner_will_be_assigned_automatically_to_the__roomName__room": "ເຈົ້າຂອງຫ້ອງໃໝ່ຈະຖືກກໍານົດໂດຍອັດຕະໂນມັດໃນ {{roomName}} room.", - "A_new_owner_will_be_assigned_automatically_to_those__count__rooms__rooms__": "ເຈົ້າຂອງຫ້ອງໃໝ່ຈະຖືກກໍານົດໂດຍອັດຕະໂນມັດໃນ {{count}} rooms:
{{rooms}}.", + "A_new_owner_will_be_assigned_automatically_to__count__rooms": "ເຈົ້າຂອງຫ້ອງໃໝ່ຈະຖືກກໍານົດໂດຍອັດຕະໂນມັດໃຫ້ກັບ {{count}} rooms.", + "A_new_owner_will_be_assigned_automatically_to_the__roomName__room": "ເຈົ້າຂອງຫ້ອງໃໝ່ຈະຖືກກໍານົດໂດຍອັດຕະໂນມັດໃນ {{roomName}} room.", + "A_new_owner_will_be_assigned_automatically_to_those__count__rooms__rooms__": "ເຈົ້າຂອງຫ້ອງໃໝ່ຈະຖືກກໍານົດໂດຍອັດຕະໂນມັດໃນ {{count}} rooms:
{{rooms}}.", "Accept": "ຍອມຮັບ", "Accept_incoming_livechat_requests_even_if_there_are_no_online_agents": "ຍອມຮັບຄຳຂໍ omnichannel ຂາເຂົ້າ ເຖິງແມ່ນວ່າຈະບໍ່ມີຕົວແທນອອນໄລ", "Accept_new_livechats_when_agent_is_idle": "ຍອມຮັບຄໍາຂໍ omnichannel ໃໝ່ເມື່ອຕົວແທນບໍ່ໄດ້ເຮັດວຽກ", @@ -2792,7 +2792,7 @@ "your_message": "ຂໍ້​ຄວາມ​ຂອງ​ເຈົ້າ", "your_message_optional": "ຂໍ້ຄວາມຂອງທ່ານ (ທາງເລືອກ)", "__count__empty_rooms_will_be_removed_automatically": "{{count}} ຫ້ອງທີ່ຫວ່າງຈະຖືກລືບອອກໂດຍອັດຕະໂນມັດ.", - "__count__empty_rooms_will_be_removed_automatically__rooms__": "{{count}} ຫ້ອງທີ່ຫວ່າງຈະຖືກລືບອອກໂດຍອັດຕະໂນມັດ:
{{rooms}}.", + "__count__empty_rooms_will_be_removed_automatically__rooms__": "{{count}} ຫ້ອງທີ່ຫວ່າງຈະຖືກລືບອອກໂດຍອັດຕະໂນມັດ:
{{rooms}}.", "__username__is_no_longer__role__defined_by__user_by_": "{{username}} ບໍ່ມີອີກຕໍ່ໄປ {{role}} by {{user_by}}", "__username__was_set__role__by__user_by_": "{{username}} ໄດ້ກຳນົດໄວ້ {{role}} by {{user_by}}" } \ No newline at end of file diff --git a/packages/i18n/src/locales/lt.i18n.json b/packages/i18n/src/locales/lt.i18n.json index 4d7fc0b38623d..80603165636d8 100644 --- a/packages/i18n/src/locales/lt.i18n.json +++ b/packages/i18n/src/locales/lt.i18n.json @@ -46,9 +46,9 @@ "API_Upper_Count_Limit_Description": "Koks yra didžiausias įrašų skaičius, kurį turėtų grąžinti REST API (kai neribojamas)?", "API_User_Limit": "Naudotojo limitas visiems vartotojams pridėti prie kanalo", "API_Wordpress_URL": "WordPress URL", - "A_new_owner_will_be_assigned_automatically_to__count__rooms": "Naujas savininkas bus automatiškai priskirtas {{count}} kambariams.", - "A_new_owner_will_be_assigned_automatically_to_the__roomName__room": "Naujas savininkas bus automatiškai priskirtas {{roomName}} kambariui.", - "A_new_owner_will_be_assigned_automatically_to_those__count__rooms__rooms__": "Naujas savininkas bus automatiškai priskirtas šiems {{count}} kambariams:
{{rooms}}.", + "A_new_owner_will_be_assigned_automatically_to__count__rooms": "Naujas savininkas bus automatiškai priskirtas {{count}} kambariams.", + "A_new_owner_will_be_assigned_automatically_to_the__roomName__room": "Naujas savininkas bus automatiškai priskirtas {{roomName}} kambariui.", + "A_new_owner_will_be_assigned_automatically_to_those__count__rooms__rooms__": "Naujas savininkas bus automatiškai priskirtas šiems {{count}} kambariams:
{{rooms}}.", "Accept": "Priimti", "Accept_incoming_livechat_requests_even_if_there_are_no_online_agents": "Priimkite gaunamus livechat prašymus, net jei nėra interneto agentų", "Accept_with_no_online_agents": "Priimkite be interneto agentų", @@ -2809,7 +2809,7 @@ "your_message": "tavo žinutė", "your_message_optional": "jūsų pranešimas (neprivaloma)", "__count__empty_rooms_will_be_removed_automatically": "{{count}} tušti kambariai bus pašalinti automatiškai.", - "__count__empty_rooms_will_be_removed_automatically__rooms__": "{{count}} tušti kambariai bus pašalinti automatiškai:
{{rooms}}.", + "__count__empty_rooms_will_be_removed_automatically__rooms__": "{{count}} tušti kambariai bus pašalinti automatiškai:
{{rooms}}.", "__username__is_no_longer__role__defined_by__user_by_": "{{username}} nebėra {{role}} pagal {{user_by}}", "__username__was_set__role__by__user_by_": "{{username}} buvo nustatytas {{role}} pagal {{user_by}}" } \ No newline at end of file diff --git a/packages/i18n/src/locales/nb.i18n.json b/packages/i18n/src/locales/nb.i18n.json index c2d33c8a02136..bffcbcd6e979a 100644 --- a/packages/i18n/src/locales/nb.i18n.json +++ b/packages/i18n/src/locales/nb.i18n.json @@ -72,9 +72,9 @@ "API_Wordpress_URL": "WordPress URL", "APIs": "APIer", "A_cloud-based_platform_for_those_needing_a_plug-and-play_app": "En skybasert plattform for de som trenger en plug-and-play-app.", - "A_new_owner_will_be_assigned_automatically_to__count__rooms": "En ny eier vil automatisk bli tildelt {{count}} rom.", - "A_new_owner_will_be_assigned_automatically_to_the__roomName__room": "En ny eier vil automatisk bli tildelt {{roomName}}-rommet.", - "A_new_owner_will_be_assigned_automatically_to_those__count__rooms__rooms__": "En ny eier vil automatisk bli tildelt disse {{count}}-rommene:
{{rooms}}.", + "A_new_owner_will_be_assigned_automatically_to__count__rooms": "En ny eier vil automatisk bli tildelt {{count}} rom.", + "A_new_owner_will_be_assigned_automatically_to_the__roomName__room": "En ny eier vil automatisk bli tildelt {{roomName}}-rommet.", + "A_new_owner_will_be_assigned_automatically_to_those__count__rooms__rooms__": "En ny eier vil automatisk bli tildelt disse {{count}}-rommene:
{{rooms}}.", "A_secure_and_highly_private_self-managed_solution_for_conference_calls": "En sikker og privat selvstyrt løsning for konferansesamtaler.", "A_workspace_admin_needs_to_install_and_configure_a_conference_call_app": "En arbeidsområdeadministrator må installere og konfigurere en konferansesamtale-app.", "Accept": "Aksepter", @@ -4736,7 +4736,7 @@ "The_application_will_be_able_to": "<1>{{appName}} vil kunne:", "The_channel_name_is_required": "Kanalnavnet er påkrevd", "The_emails_are_being_sent": "E-postene blir sendt.", - "The_empty_room__roomName__will_be_removed_automatically": "Det tomme rommet {{roomName}} vil bli fjernet automatisk.", + "The_empty_room__roomName__will_be_removed_automatically": "Det tomme rommet {{roomName}} vil bli fjernet automatisk.", "The_image_resize_will_not_work_because_we_can_not_detect_ImageMagick_or_GraphicsMagick_installed_in_your_server": "Endring av bildestørrelse vil ikke fungere fordi vi ikke kan oppdage ImageMagick eller GraphicsMagick installert på serveren din.", "The_message_is_a_discussion_you_will_not_be_able_to_recover": "Meldingen er en diskusjon, du vil ikke kunne gjenopprette meldingene!", "The_necessary_browser_permissions_for_location_sharing_are_not_granted": "De nødvendige nettlesertillatelsene for posisjonsdeling ble ikke gitt", @@ -6170,7 +6170,7 @@ "__agents__agents_and__count__conversations__period__": "{{agents}} agenter og {{count}} samtaler, {{period}}", "__count__conversations__period__": "{{count}} samtaler, {{period}}", "__count__empty_rooms_will_be_removed_automatically": "{{count}} tomme rom vil bli fjernet automatisk.", - "__count__empty_rooms_will_be_removed_automatically__rooms__": "{{count}} tomme rom vil bli fjernet automatisk:
{{rooms}}.", + "__count__empty_rooms_will_be_removed_automatically__rooms__": "{{count}} tomme rom vil bli fjernet automatisk:
{{rooms}}.", "__count__follower_one": "+{{count}} følger", "__count__follower_other": "+{{count}} følgere", "__count__message_pruned_one": "{{count}} melding fjernet", diff --git a/packages/i18n/src/locales/nl.i18n.json b/packages/i18n/src/locales/nl.i18n.json index f33f803f262bf..752ff3c899fd9 100644 --- a/packages/i18n/src/locales/nl.i18n.json +++ b/packages/i18n/src/locales/nl.i18n.json @@ -67,9 +67,9 @@ "API_User_Limit": "Gebruikerslimiet voor het toevoegen van alle gebruikers aan kanaal", "API_Wordpress_URL": "WordPress URL", "APIs": "API's", - "A_new_owner_will_be_assigned_automatically_to__count__rooms": "Een nieuwe eigenaar wordt automatisch toegewezen aan {{count}} kamers.", - "A_new_owner_will_be_assigned_automatically_to_the__roomName__room": "Een nieuwe eigenaar wordt automatisch toegewezen aan de {{roomName}} kamer.", - "A_new_owner_will_be_assigned_automatically_to_those__count__rooms__rooms__": "Een nieuwe eigenaar wordt automatisch toegewezen aan de {{count}} kamers:
{{rooms}}.", + "A_new_owner_will_be_assigned_automatically_to__count__rooms": "Een nieuwe eigenaar wordt automatisch toegewezen aan {{count}} kamers.", + "A_new_owner_will_be_assigned_automatically_to_the__roomName__room": "Een nieuwe eigenaar wordt automatisch toegewezen aan de {{roomName}} kamer.", + "A_new_owner_will_be_assigned_automatically_to_those__count__rooms__rooms__": "Een nieuwe eigenaar wordt automatisch toegewezen aan de {{count}} kamers:
{{rooms}}.", "Accept": "Accepteren", "Accept_Call": "Oproep accepteren", "Accept_incoming_livechat_requests_even_if_there_are_no_online_agents": "Accepteer inkomende omnichannel-verzoeken, zelfs als er geen online agenten zijn", @@ -3637,7 +3637,7 @@ "The_application_name_is_required": "De naam van de applicatie is vereist", "The_channel_name_is_required": "De naam van het kanaal is vereist", "The_emails_are_being_sent": "De e-mails worden verzonden.", - "The_empty_room__roomName__will_be_removed_automatically": "De lege kamer {{roomName}} wordt automatisch verwijderd.", + "The_empty_room__roomName__will_be_removed_automatically": "De lege kamer {{roomName}} wordt automatisch verwijderd.", "The_image_resize_will_not_work_because_we_can_not_detect_ImageMagick_or_GraphicsMagick_installed_in_your_server": "Het wijzigen van de grootte van de afbeelding zal niet werken omdat we ImageMagick of GraphicsMagick niet kunnen detecteren die op uw server zijn geïnstalleerd.", "The_message_is_a_discussion_you_will_not_be_able_to_recover": "Het bericht is een discussie, u kunt de berichten niet herstellen!", "The_mobile_notifications_were_disabled_to_all_users_go_to_Admin_Push_to_enable_the_Push_Gateway_again": "De mobiele meldingen werden voor alle gebruikers uitgeschakeld, ga naar \"Admin > Push\" om de Push Gateway weer in te schakelen", @@ -4858,7 +4858,7 @@ "your_message": "jouw bericht", "your_message_optional": "uw bericht (optioneel)", "__count__empty_rooms_will_be_removed_automatically": "{{count}} lege kamers worden automatisch verwijderd.", - "__count__empty_rooms_will_be_removed_automatically__rooms__": "{{count}} lege kamers worden automatisch verwijderd:
{{rooms}}", + "__count__empty_rooms_will_be_removed_automatically__rooms__": "{{count}} lege kamers worden automatisch verwijderd:
{{rooms}}", "__username__is_no_longer__role__defined_by__user_by_": "{{username}} is niet langer {{role}} door {{user_by}}", "__username__was_set__role__by__user_by_": "{{username}} werd ingesteld op {{role}} door {{user_by}}" } \ No newline at end of file diff --git a/packages/i18n/src/locales/nn.i18n.json b/packages/i18n/src/locales/nn.i18n.json index 269826fc96c31..bad38e93beafe 100644 --- a/packages/i18n/src/locales/nn.i18n.json +++ b/packages/i18n/src/locales/nn.i18n.json @@ -72,9 +72,9 @@ "API_Wordpress_URL": "WordPress URL", "APIs": "APIer", "A_cloud-based_platform_for_those_needing_a_plug-and-play_app": "En skybasert plattform for de som trenger en plug-and-play-app.", - "A_new_owner_will_be_assigned_automatically_to__count__rooms": "En ny eier vil automatisk bli tildelt {{count}} rom.", - "A_new_owner_will_be_assigned_automatically_to_the__roomName__room": "En ny eier vil automatisk bli tildelt {{roomName}}-rommet.", - "A_new_owner_will_be_assigned_automatically_to_those__count__rooms__rooms__": "En ny eier vil automatisk bli tildelt disse {{count}}-rommene:
{{rooms}}.", + "A_new_owner_will_be_assigned_automatically_to__count__rooms": "En ny eier vil automatisk bli tildelt {{count}} rom.", + "A_new_owner_will_be_assigned_automatically_to_the__roomName__room": "En ny eier vil automatisk bli tildelt {{roomName}}-rommet.", + "A_new_owner_will_be_assigned_automatically_to_those__count__rooms__rooms__": "En ny eier vil automatisk bli tildelt disse {{count}}-rommene:
{{rooms}}.", "A_secure_and_highly_private_self-managed_solution_for_conference_calls": "En sikker og privat selvstyrt løsning for konferansesamtaler.", "A_workspace_admin_needs_to_install_and_configure_a_conference_call_app": "En arbeidsområdeadministrator må installere og konfigurere en konferansesamtale-app.", "Accept": "Aksepter", @@ -4736,7 +4736,7 @@ "The_application_will_be_able_to": "<1>{{appName}} vil kunne:", "The_channel_name_is_required": "Kanalnavnet er påkrevd", "The_emails_are_being_sent": "E-postene blir sendt.", - "The_empty_room__roomName__will_be_removed_automatically": "Det tomme rommet {{roomName}} vil bli fjernet automatisk.", + "The_empty_room__roomName__will_be_removed_automatically": "Det tomme rommet {{roomName}} vil bli fjernet automatisk.", "The_image_resize_will_not_work_because_we_can_not_detect_ImageMagick_or_GraphicsMagick_installed_in_your_server": "Bildestørrelsen fungerer ikke fordi vi ikke kan oppdage ImageMagick eller GraphicsMagick installert på serveren din.", "The_message_is_a_discussion_you_will_not_be_able_to_recover": "Meldingen er en diskusjon, du vil ikke kunne gjenopprette meldingene!", "The_necessary_browser_permissions_for_location_sharing_are_not_granted": "De nødvendige nettlesertillatelsene for posisjonsdeling ble ikke gitt", @@ -6170,7 +6170,7 @@ "__agents__agents_and__count__conversations__period__": "{{agents}} agenter og {{count}} samtaler, {{period}}", "__count__conversations__period__": "{{count}} samtaler, {{period}}", "__count__empty_rooms_will_be_removed_automatically": "{{count}} tomme rom vil bli fjernet automatisk.", - "__count__empty_rooms_will_be_removed_automatically__rooms__": "{{count}} tomme rom vil bli fjernet automatisk:
{{rooms}}.", + "__count__empty_rooms_will_be_removed_automatically__rooms__": "{{count}} tomme rom vil bli fjernet automatisk:
{{rooms}}.", "__count__follower_one": "+{{count}} følger", "__count__follower_other": "+{{count}} følgere", "__count__message_pruned_one": "{{count}} melding beskjært", diff --git a/packages/i18n/src/locales/pa-IN.i18n.json b/packages/i18n/src/locales/pa-IN.i18n.json index a3fed00e14935..60f106f91da2d 100644 --- a/packages/i18n/src/locales/pa-IN.i18n.json +++ b/packages/i18n/src/locales/pa-IN.i18n.json @@ -19,5 +19,5 @@ "offline": "ਗੈਰ-ਹਾਜ਼ਰ", "online": "ਹਾਜ਼ਰ", "set__username__as__role_": "set {{username}} ਨੂੰ {{role}}", - "__count__empty_rooms_will_be_removed_automatically__rooms__": "{{count}} empty rooms will be removed automatically:
{{rooms}}." + "__count__empty_rooms_will_be_removed_automatically__rooms__": "{{count}} empty rooms will be removed automatically:
{{rooms}}." } \ No newline at end of file diff --git a/packages/i18n/src/locales/pl.i18n.json b/packages/i18n/src/locales/pl.i18n.json index ee7a0ee5a746b..874821cce4c20 100644 --- a/packages/i18n/src/locales/pl.i18n.json +++ b/packages/i18n/src/locales/pl.i18n.json @@ -68,9 +68,9 @@ "API_Wordpress_URL": "Adres URL WordPress", "APIs": "Interfejsy API", "A_cloud-based_platform_for_those_needing_a_plug-and-play_app": "Oparta na chmurze platforma dla tych, którzy potrzebują aplikacji typu plug-and-play.", - "A_new_owner_will_be_assigned_automatically_to__count__rooms": "Nowy właściciel zostanie automatycznie przypisany do {{count}} pokoi.", - "A_new_owner_will_be_assigned_automatically_to_the__roomName__room": "Nowy właściciel zostanie automatycznie przypisany do pokoju o nazwie {{roomName}}", - "A_new_owner_will_be_assigned_automatically_to_those__count__rooms__rooms__": "Nowy właściciel zostanie automatyczne przypisany do tych {{count}} pokoi:
{{rooms}}.", + "A_new_owner_will_be_assigned_automatically_to__count__rooms": "Nowy właściciel zostanie automatycznie przypisany do {{count}} pokoi.", + "A_new_owner_will_be_assigned_automatically_to_the__roomName__room": "Nowy właściciel zostanie automatycznie przypisany do pokoju o nazwie {{roomName}}", + "A_new_owner_will_be_assigned_automatically_to_those__count__rooms__rooms__": "Nowy właściciel zostanie automatyczne przypisany do tych {{count}} pokoi:
{{rooms}}.", "A_secure_and_highly_private_self-managed_solution_for_conference_calls": "Bezpieczne i wysoce prywatne rozwiązanie do samodzielnego zarządzania połączeniami konferencyjnymi.", "A_workspace_admin_needs_to_install_and_configure_a_conference_call_app": "Administrator obszaru roboczego musi zainstalować i skonfigurować aplikację do połączeń konferencyjnych.", "Accept": "Akceptuj", @@ -3952,7 +3952,7 @@ "The_application_name_is_required": "Wymagana jest nazwa aplikacji", "The_channel_name_is_required": "Wymagana jest nazwa pokoju", "The_emails_are_being_sent": "Wiadomości e-mail są wysyłane.", - "The_empty_room__roomName__will_be_removed_automatically": "Pusty pokój {{roomName}} zostanie automatycznie usunięty.", + "The_empty_room__roomName__will_be_removed_automatically": "Pusty pokój {{roomName}} zostanie automatycznie usunięty.", "The_image_resize_will_not_work_because_we_can_not_detect_ImageMagick_or_GraphicsMagick_installed_in_your_server": "Zmiana rozmiaru obrazu nie będzie działać, ponieważ nie możemy wykryć zainstalowanego ImageMagick lub GraphicsMagick na serwerze.", "The_message_is_a_discussion_you_will_not_be_able_to_recover": "Wiadomość jest dyskusją, której nie będziesz w stanie odzyskać!", "The_mobile_notifications_were_disabled_to_all_users_go_to_Admin_Push_to_enable_the_Push_Gateway_again": "Powiadomienia mobilne zostały wyłączone dla wszystkich użytkowników, idź do \"Admin>Push\" aby uruchomić ponownie bramę push", @@ -5388,7 +5388,7 @@ "__agents__agents_and__count__conversations__period__": "{{agents}} agentów i {{count}} rozmów, {{period}}", "__count__conversations__period__": "{{count}} rozmowy, {{period}}", "__count__empty_rooms_will_be_removed_automatically": "Liczba pokojów do automatycznego usunięcia: {{count}}.", - "__count__empty_rooms_will_be_removed_automatically__rooms__": "Puste pokoje ({{count}}) zostaną automatycznie usunięte:
{{rooms}}.", + "__count__empty_rooms_will_be_removed_automatically__rooms__": "Puste pokoje ({{count}}) zostaną automatycznie usunięte:
{{rooms}}.", "__count__message_pruned_one": "{{count}} wiadomość(i) usuniętych", "__count__message_pruned_other": "{{count}} wiadomość(i) usuniętych", "__count__message_pruned_many": "{{count}} wiadomość(i) usuniętych", diff --git a/packages/i18n/src/locales/pt-BR.i18n.json b/packages/i18n/src/locales/pt-BR.i18n.json index 95f31d8fa1b95..49def626fe66c 100644 --- a/packages/i18n/src/locales/pt-BR.i18n.json +++ b/packages/i18n/src/locales/pt-BR.i18n.json @@ -72,9 +72,9 @@ "API_Wordpress_URL": "URL do WordPress", "APIs": "APIs", "A_cloud-based_platform_for_those_needing_a_plug-and-play_app": "Uma plataforma baseada em nuvem para aqueles que precisam de um aplicativo plug-and-play.", - "A_new_owner_will_be_assigned_automatically_to__count__rooms": "Um novo proprietário será atribuído automaticamente a {{count}} salas.", - "A_new_owner_will_be_assigned_automatically_to_the__roomName__room": "Um novo proprietário será atribuído à sala {{roomName}}.", - "A_new_owner_will_be_assigned_automatically_to_those__count__rooms__rooms__": "Um novo proprietário será atribuído automaticamente a estas {{count}} salas:
{{rooms}}.", + "A_new_owner_will_be_assigned_automatically_to__count__rooms": "Um novo proprietário será atribuído automaticamente a {{count}} salas.", + "A_new_owner_will_be_assigned_automatically_to_the__roomName__room": "Um novo proprietário será atribuído à sala {{roomName}}.", + "A_new_owner_will_be_assigned_automatically_to_those__count__rooms__rooms__": "Um novo proprietário será atribuído automaticamente a estas {{count}} salas:
{{rooms}}.", "A_secure_and_highly_private_self-managed_solution_for_conference_calls": "Uma solução autogerenciada segura e altamente privada para chamadas em conferência.", "A_workspace_admin_needs_to_install_and_configure_a_conference_call_app": "Um administrador do workspace precisa instalar e configurar um aplicativo de chamada de vídeo.", "Accept": "Aceitar", @@ -4983,7 +4983,7 @@ "The_application_will_be_able_to": "<1>{{appName}} será capaz de:", "The_channel_name_is_required": "O nome do canal é obrigatório", "The_emails_are_being_sent": "Os e-mails estão sendo enviados.", - "The_empty_room__roomName__will_be_removed_automatically": "A sala vazia {{roomName}} será removida automaticamente.", + "The_empty_room__roomName__will_be_removed_automatically": "A sala vazia {{roomName}} será removida automaticamente.", "The_image_resize_will_not_work_because_we_can_not_detect_ImageMagick_or_GraphicsMagick_installed_in_your_server": "O redimensionamento da imagem não vai funcionar porque não conseguimos detectar se o ImageMagick ou GraphicsMagick está instalado no seu servidor.", "The_message_is_a_discussion_you_will_not_be_able_to_recover": "A mensagem é uma discussão, você não poderá recuperar as mensagens!", "The_mobile_notifications_were_disabled_to_all_users_go_to_Admin_Push_to_enable_the_Push_Gateway_again": "As notificações móveis foram desativadas para todos os usuários, vá para \"Admin > Push\" para ativar o Push Gateway novamente", @@ -6815,7 +6815,7 @@ "__agents__agents_and__count__conversations__period__": "{{agents}} agentes e {{count}} conversas, {{period}}", "__count__conversations__period__": "{{count}} conversas, {{period}}", "__count__empty_rooms_will_be_removed_automatically": "{{count}} salas vazias serão removidas automaticamente.", - "__count__empty_rooms_will_be_removed_automatically__rooms__": "{{count}} salas vazias serão removidas automaticamente:
{{rooms}}.", + "__count__empty_rooms_will_be_removed_automatically__rooms__": "{{count}} salas vazias serão removidas automaticamente:
{{rooms}}.", "__count__follower_one": "+{{count}} seguidores", "__count__follower_other": "+{{count}} seguidores", "__count__follower_many": "+{{count}} seguidores", diff --git a/packages/i18n/src/locales/pt.i18n.json b/packages/i18n/src/locales/pt.i18n.json index cf858c5d07aba..141c3473ad52d 100644 --- a/packages/i18n/src/locales/pt.i18n.json +++ b/packages/i18n/src/locales/pt.i18n.json @@ -63,9 +63,9 @@ "API_Upper_Count_Limit_Description": "Qual é o número máximo de registos que a REST API deve retornar (quando não ilimitada)?", "API_User_Limit": "Limite de utilizadores para adicionar todos os utilizadores ao canal", "API_Wordpress_URL": "URL do WordPress", - "A_new_owner_will_be_assigned_automatically_to__count__rooms": "Um novo dono será atribuído automaticamente a {{count}} salas.", - "A_new_owner_will_be_assigned_automatically_to_the__roomName__room": "Um novo dono será atribuído automaticamente à sala {{roomName}}.", - "A_new_owner_will_be_assigned_automatically_to_those__count__rooms__rooms__": "Um novo dono será atribuído automaticamente a estas {{count}} salas:
{{rooms}}.", + "A_new_owner_will_be_assigned_automatically_to__count__rooms": "Um novo dono será atribuído automaticamente a {{count}} salas.", + "A_new_owner_will_be_assigned_automatically_to_the__roomName__room": "Um novo dono será atribuído automaticamente à sala {{roomName}}.", + "A_new_owner_will_be_assigned_automatically_to_those__count__rooms__rooms__": "Um novo dono será atribuído automaticamente a estas {{count}} salas:
{{rooms}}.", "Accept": "Aceitar", "Accept_incoming_livechat_requests_even_if_there_are_no_online_agents": "Aceitar pedidos de livechat mesmo se não houverem agentes online", "Accept_new_livechats_when_agent_is_idle": "Aceitar novas solicitações de chat ao vivo quando o agente estiver desocupado", @@ -3173,7 +3173,7 @@ "your_message": "sua mensagem", "your_message_optional": "sua mensagem (opcional)", "__count__empty_rooms_will_be_removed_automatically": "{{count}} salas vazias serão removidas automáticamente.", - "__count__empty_rooms_will_be_removed_automatically__rooms__": "{{count}} salas vazias serão removidas automáticamente:
{{rooms}}.", + "__count__empty_rooms_will_be_removed_automatically__rooms__": "{{count}} salas vazias serão removidas automáticamente:
{{rooms}}.", "__username__is_no_longer__role__defined_by__user_by_": "{{username}} já não pertence a {{role}}, por {{user_by}}", "__username__was_set__role__by__user_by_": "{{username}} foi definido como {{role}} por {{user_by}}" } \ No newline at end of file diff --git a/packages/i18n/src/locales/ru.i18n.json b/packages/i18n/src/locales/ru.i18n.json index 2bdd70617c49b..ecfabb6a6b562 100644 --- a/packages/i18n/src/locales/ru.i18n.json +++ b/packages/i18n/src/locales/ru.i18n.json @@ -70,9 +70,9 @@ "API_Wordpress_URL": "WordPress URL", "APIs": "APIs", "A_cloud-based_platform_for_those_needing_a_plug-and-play_app": "Облачная платформа для тех, кому нужно приложение plug-and-play.", - "A_new_owner_will_be_assigned_automatically_to__count__rooms": "Новый владелец будет автоматически назначен на {{count}} чатов.", - "A_new_owner_will_be_assigned_automatically_to_the__roomName__room": "Новый владелец будет автоматически назначен для чата {{roomName}}.", - "A_new_owner_will_be_assigned_automatically_to_those__count__rooms__rooms__": "Новый владелец будет автоматически назначен этим {{count}} чатам:
{{rooms}}.", + "A_new_owner_will_be_assigned_automatically_to__count__rooms": "Новый владелец будет автоматически назначен на {{count}} чатов.", + "A_new_owner_will_be_assigned_automatically_to_the__roomName__room": "Новый владелец будет автоматически назначен для чата {{roomName}}.", + "A_new_owner_will_be_assigned_automatically_to_those__count__rooms__rooms__": "Новый владелец будет автоматически назначен этим {{count}} чатам:
{{rooms}}.", "A_workspace_admin_needs_to_install_and_configure_a_conference_call_app": "Администратору рабочего пространства необходимо установить и настроить приложение для конференц-связи.", "Accept": "Принять", "Accept_Call": "Принять вызов", @@ -3782,7 +3782,7 @@ "The_application_name_is_required": "Требуется название приложения", "The_channel_name_is_required": "Требуется название канала", "The_emails_are_being_sent": "Письма отправляются.", - "The_empty_room__roomName__will_be_removed_automatically": "Пустой чат {{roomName}} будет удален автоматически.", + "The_empty_room__roomName__will_be_removed_automatically": "Пустой чат {{roomName}} будет удален автоматически.", "The_image_resize_will_not_work_because_we_can_not_detect_ImageMagick_or_GraphicsMagick_installed_in_your_server": "Изменить размер изображения не получится, потому что мы не можем обнаружить установленные на вашем сервере ImageMagick или GraphicsMagick.", "The_message_is_a_discussion_you_will_not_be_able_to_recover": "Сообщение обсуждения, вы не сможете восстановить сообщения!", "The_mobile_notifications_were_disabled_to_all_users_go_to_Admin_Push_to_enable_the_Push_Gateway_again": "Мобильные уведомления были отключены для всех пользователей, перейдите в \"Admin > Push\", чтобы снова включить Push Gateway", @@ -5068,7 +5068,7 @@ "your_message": "ваше сообщение", "your_message_optional": "ваше сообщение (опционально)", "__count__empty_rooms_will_be_removed_automatically": "{{count}}пустые комнаты будут удалены автоматически.", - "__count__empty_rooms_will_be_removed_automatically__rooms__": "{{count}} пустых чатов будет удалено автоматически:
{{rooms}}.", + "__count__empty_rooms_will_be_removed_automatically__rooms__": "{{count}} пустых чатов будет удалено автоматически:
{{rooms}}.", "__count__message_pruned_one": "{{count}} сообщение удалено", "__count__message_pruned_other": "{{count}} сообщений удалено", "__count__message_pruned_many": "{{count}} сообщений удалено", diff --git a/packages/i18n/src/locales/sv.i18n.json b/packages/i18n/src/locales/sv.i18n.json index 75d066b7ad7fb..a49ab8241245a 100644 --- a/packages/i18n/src/locales/sv.i18n.json +++ b/packages/i18n/src/locales/sv.i18n.json @@ -72,9 +72,9 @@ "API_Wordpress_URL": "WordPress URL", "APIs": "API:er", "A_cloud-based_platform_for_those_needing_a_plug-and-play_app": "En molnbaserad plattform för dig som behöver en app det bara är att ansluta till och börja använda", - "A_new_owner_will_be_assigned_automatically_to__count__rooms": "En ny ägare tilldelas automatiskt till {{count}} rum.", - "A_new_owner_will_be_assigned_automatically_to_the__roomName__room": "En ny ägare tilldelas automatiskt till rummet {{roomName}}.", - "A_new_owner_will_be_assigned_automatically_to_those__count__rooms__rooms__": "En ny ägare tilldelas automatiskt till de {{count}} rummen:
{{rooms}}.", + "A_new_owner_will_be_assigned_automatically_to__count__rooms": "En ny ägare tilldelas automatiskt till {{count}} rum.", + "A_new_owner_will_be_assigned_automatically_to_the__roomName__room": "En ny ägare tilldelas automatiskt till rummet {{roomName}}.", + "A_new_owner_will_be_assigned_automatically_to_those__count__rooms__rooms__": "En ny ägare tilldelas automatiskt till de {{count}} rummen:
{{rooms}}.", "A_secure_and_highly_private_self-managed_solution_for_conference_calls": "En säker och mycket privat lösning för konferenssamtal som du hanterar själv.", "A_workspace_admin_needs_to_install_and_configure_a_conference_call_app": "En arbetsyteadministratör måste installera och konfigurera en app för konferenssamtal.", "Accept": "Acceptera", @@ -4782,7 +4782,7 @@ "The_application_will_be_able_to": "<1>{{appName}} kommer att kunna:", "The_channel_name_is_required": "Kanalnamnet krävs ", "The_emails_are_being_sent": "E-postmeddelandena skickas.", - "The_empty_room__roomName__will_be_removed_automatically": "Det tomma rummet {{roomName}} tas bort automatiskt.", + "The_empty_room__roomName__will_be_removed_automatically": "Det tomma rummet {{roomName}} tas bort automatiskt.", "The_image_resize_will_not_work_because_we_can_not_detect_ImageMagick_or_GraphicsMagick_installed_in_your_server": "Det kommer inte att gå att ändra storlek på bilden, eftersom vi inte kan hitta ImageMagick eller GraphicsMagick på din server.", "The_message_is_a_discussion_you_will_not_be_able_to_recover": "Meddelandet är en diskussion. Du kan inte återskapa meddelandena.", "The_mobile_notifications_were_disabled_to_all_users_go_to_Admin_Push_to_enable_the_Push_Gateway_again": "Mobilaviseringar inaktiverades för alla användare. Gå till \"Administration > Push\" om du vill aktivera en gateway för pushmeddelanden igen", @@ -6312,7 +6312,7 @@ "your_message_optional": "ditt meddelande (valfri)", "__agents__agents_and__count__conversations__period__": "{{agents}} agenter och {{count}} konversationer, {{period}}", "__count__empty_rooms_will_be_removed_automatically": "{{count}} tomma rum tas bort automatiskt.", - "__count__empty_rooms_will_be_removed_automatically__rooms__": "{{count}} tomma rum tas bort automatiskt:
{{rooms}}.", + "__count__empty_rooms_will_be_removed_automatically__rooms__": "{{count}} tomma rum tas bort automatiskt:
{{rooms}}.", "__count__message_pruned_one": "{{count}} meddelande rensat", "__count__message_pruned_other": "{{count}} meddelanden rensade", "__username__is_no_longer__role__defined_by__user_by_": "{{username}} är inte längre {{role}}, av {{user_by}}", diff --git a/packages/i18n/src/locales/uk.i18n.json b/packages/i18n/src/locales/uk.i18n.json index 5392401a2c7ef..e6873e6340819 100644 --- a/packages/i18n/src/locales/uk.i18n.json +++ b/packages/i18n/src/locales/uk.i18n.json @@ -63,9 +63,9 @@ "API_Upper_Count_Limit_Description": "Яка максимальна кількість записів, які повинен повернути REST API (якщо без обмежень)?", "API_User_Limit": "Ліміт користувача для додавання всіх користувачів до каналу", "API_Wordpress_URL": "WordPress URL", - "A_new_owner_will_be_assigned_automatically_to__count__rooms": "Новий власник буде призначений автоматично до {{count}} кімнат.", - "A_new_owner_will_be_assigned_automatically_to_the__roomName__room": "Новий власник буде призначений автоматично до кімнати {{roomName}}.", - "A_new_owner_will_be_assigned_automatically_to_those__count__rooms__rooms__": "Для наступних кімнат кількістю {{count}} буде автоматично призначено нового власника:
{{rooms}}.", + "A_new_owner_will_be_assigned_automatically_to__count__rooms": "Новий власник буде призначений автоматично до {{count}} кімнат.", + "A_new_owner_will_be_assigned_automatically_to_the__roomName__room": "Новий власник буде призначений автоматично до кімнати {{roomName}}.", + "A_new_owner_will_be_assigned_automatically_to_those__count__rooms__rooms__": "Для наступних кімнат кількістю {{count}} буде автоматично призначено нового власника:
{{rooms}}.", "Accept": "Погоджуюсь", "Accept_incoming_livechat_requests_even_if_there_are_no_online_agents": "Приймати запити із livechat, навіть коли немає підключених співробітників", "Accept_new_livechats_when_agent_is_idle": "Приймати нові запити livechat, коли представник не активний ", @@ -3356,7 +3356,7 @@ "your_message": "Ваше повідомлення", "your_message_optional": "ваше повідомлення (необов'язково)", "__count__empty_rooms_will_be_removed_automatically": "{{count}} порожні кімнати буде видалено автоматично.", - "__count__empty_rooms_will_be_removed_automatically__rooms__": "{{count}} порожні кімнати будуть видалені автоматично:
{{rooms}}.", + "__count__empty_rooms_will_be_removed_automatically__rooms__": "{{count}} порожні кімнати будуть видалені автоматично:
{{rooms}}.", "__username__is_no_longer__role__defined_by__user_by_": "{{username}} більше не {{role}}, за рішенням {{user_by}}", "__username__was_set__role__by__user_by_": "{{username}} був встановлений {{role}} за рішенням {{user_by}}" } \ No newline at end of file diff --git a/packages/i18n/src/locales/vi-VN.i18n.json b/packages/i18n/src/locales/vi-VN.i18n.json index 8f8cb0a54b1cd..836664692783d 100644 --- a/packages/i18n/src/locales/vi-VN.i18n.json +++ b/packages/i18n/src/locales/vi-VN.i18n.json @@ -46,9 +46,9 @@ "API_Upper_Count_Limit_Description": "Số lượng record tối đa mà API REST sẽ trả về (khi có giới hạn)?", "API_User_Limit": "Giới hạn người dùng khi thêm tất cả người dùng vào Kênh", "API_Wordpress_URL": "URL WordPress", - "A_new_owner_will_be_assigned_automatically_to__count__rooms": "Một chủ sở hữu mới sẽ được gán tự động cho {{count}} phòng.", - "A_new_owner_will_be_assigned_automatically_to_the__roomName__room": "Một chủ sở hữu mới sẽ được gán tự động cho phòng {{roomName}} .", - "A_new_owner_will_be_assigned_automatically_to_those__count__rooms__rooms__": "Một chủ sở hữu mới sẽ được gán tự động cho các phòng {{count}} :
{{rooms}}.", + "A_new_owner_will_be_assigned_automatically_to__count__rooms": "Một chủ sở hữu mới sẽ được gán tự động cho {{count}} phòng.", + "A_new_owner_will_be_assigned_automatically_to_the__roomName__room": "Một chủ sở hữu mới sẽ được gán tự động cho phòng {{roomName}} .", + "A_new_owner_will_be_assigned_automatically_to_those__count__rooms__rooms__": "Một chủ sở hữu mới sẽ được gán tự động cho các phòng {{count}} :
{{rooms}}.", "Accept": "Đồng ý", "Accept_incoming_livechat_requests_even_if_there_are_no_online_agents": "Cho phép gửi yêu cầu livechat ngay cả khi không có nhân viên nào online", "Accept_with_no_online_agents": "Chấp nhận khi không có nhân viên online", @@ -2852,6 +2852,6 @@ "your_message": "tin nhắn của bạn", "your_message_optional": "tin nhắn của bạn (tùy chọn)", "__count__empty_rooms_will_be_removed_automatically": "{{count}} phòng trống sẽ được gỡ bỏ tự động.", - "__count__empty_rooms_will_be_removed_automatically__rooms__": "{{count}} phòng trống sẽ được gỡ bỏ tự động:
{{rooms}}.", + "__count__empty_rooms_will_be_removed_automatically__rooms__": "{{count}} phòng trống sẽ được gỡ bỏ tự động:
{{rooms}}.", "__username__was_set__role__by__user_by_": "{{username}} đã được đặt {{role}} bởi {{user_by}}" } \ No newline at end of file diff --git a/packages/i18n/src/locales/zh-TW.i18n.json b/packages/i18n/src/locales/zh-TW.i18n.json index e37aa7c1ba3d6..858b1b27d47c4 100644 --- a/packages/i18n/src/locales/zh-TW.i18n.json +++ b/packages/i18n/src/locales/zh-TW.i18n.json @@ -67,9 +67,9 @@ "API_User_Limit": "添加所有使用者到Channel的數量上限", "API_Wordpress_URL": "WordPress網址", "APIs": "APIs", - "A_new_owner_will_be_assigned_automatically_to__count__rooms": "新的所有者將自動分配給 {{count}} 個房間。", - "A_new_owner_will_be_assigned_automatically_to_the__roomName__room": "新所有者將自動分配給 {{roomName}} 房間。", - "A_new_owner_will_be_assigned_automatically_to_those__count__rooms__rooms__": "新所有者將自動分配給這些{{count}}個房間:
{{rooms}}。", + "A_new_owner_will_be_assigned_automatically_to__count__rooms": "新的所有者將自動分配給 {{count}} 個房間。", + "A_new_owner_will_be_assigned_automatically_to_the__roomName__room": "新所有者將自動分配給 {{roomName}} 房間。", + "A_new_owner_will_be_assigned_automatically_to_those__count__rooms__rooms__": "新所有者將自動分配給這些{{count}}個房間:
{{rooms}}。", "Accept": "接受", "Accept_Call": "接受通話", "Accept_incoming_livechat_requests_even_if_there_are_no_online_agents": "在沒有線上客服時,仍接受線上即時聊天的請求", @@ -3471,7 +3471,7 @@ "The_application_name_is_required": "應用程式名稱是必需的", "The_channel_name_is_required": "頻道名稱是必需的", "The_emails_are_being_sent": "電子郵件傳送中", - "The_empty_room__roomName__will_be_removed_automatically": "空房間 {{roomName}} 將自動刪除。", + "The_empty_room__roomName__will_be_removed_automatically": "空房間 {{roomName}} 將自動刪除。", "The_image_resize_will_not_work_because_we_can_not_detect_ImageMagick_or_GraphicsMagick_installed_in_your_server": "圖片大小調整不會起作用,因為在我們偵測不到伺服器上安裝的 ImageMagick 或 GraphicsMagick 工具", "The_message_is_a_discussion_you_will_not_be_able_to_recover": "此訊息是在論壇中您不可以復原訊息!", "The_mobile_notifications_were_disabled_to_all_users_go_to_Admin_Push_to_enable_the_Push_Gateway_again": "所有使用者都停用了手機通知,請到“管理>推送”以再次啟用推送閘道", @@ -4576,7 +4576,7 @@ "your_message": "您的訊息", "your_message_optional": "您的訊息(選填)", "__count__empty_rooms_will_be_removed_automatically": "{{count}} 空的房間將會自動移除。", - "__count__empty_rooms_will_be_removed_automatically__rooms__": "{{count}} 空的房間將會自動移除:
{{rooms}}。", + "__count__empty_rooms_will_be_removed_automatically__rooms__": "{{count}} 空的房間將會自動移除:
{{rooms}}。", "__username__is_no_longer__role__defined_by__user_by_": "{{username}}不再是{{role}},由{{user_by}}", "__username__was_set__role__by__user_by_": "{{user_by}}設定{{username}}為{{role}}的身份" } \ No newline at end of file diff --git a/packages/i18n/src/locales/zh.i18n.json b/packages/i18n/src/locales/zh.i18n.json index e1886c86411ed..85a91841640cb 100644 --- a/packages/i18n/src/locales/zh.i18n.json +++ b/packages/i18n/src/locales/zh.i18n.json @@ -66,9 +66,9 @@ "API_User_Limit": "添加所有用户到频道的用户限制", "API_Wordpress_URL": "WordPress URL", "APIs": "API", - "A_new_owner_will_be_assigned_automatically_to__count__rooms": "新的所有者将被自动分配至 {{count}} 个聊天室。", - "A_new_owner_will_be_assigned_automatically_to_the__roomName__room": "新的所有者将被自动分配至聊天室 {{roomName}} /span0> 。", - "A_new_owner_will_be_assigned_automatically_to_those__count__rooms__rooms__": "新的所有者将被自动分配至以下 {{count}} 个聊天室:
{{rooms}}。", + "A_new_owner_will_be_assigned_automatically_to__count__rooms": "新的所有者将被自动分配至 {{count}} 个聊天室。", + "A_new_owner_will_be_assigned_automatically_to_the__roomName__room": "新的所有者将被自动分配至聊天室 {{roomName}} 。", + "A_new_owner_will_be_assigned_automatically_to_those__count__rooms__rooms__": "新的所有者将被自动分配至以下 {{count}} 个聊天室:
{{rooms}}。", "Accept": "接受", "Accept_incoming_livechat_requests_even_if_there_are_no_online_agents": "没有客服在线时也接受入站 omnichannel 请求", "Accept_new_livechats_when_agent_is_idle": "客服空闲时接受新的 omnichannel 请求", @@ -3162,7 +3162,7 @@ "The_application_name_is_required": "应用名称必填", "The_channel_name_is_required": "频道名称为必填", "The_emails_are_being_sent": "邮件已发送。", - "The_empty_room__roomName__will_be_removed_automatically": "空房间 {{roomName}} 将被自动移除。", + "The_empty_room__roomName__will_be_removed_automatically": "空房间 {{roomName}} 将被自动移除。", "The_image_resize_will_not_work_because_we_can_not_detect_ImageMagick_or_GraphicsMagick_installed_in_your_server": "无法调整图片尺寸,因为我们无法在服务器上找到已安装的 ImageMagick 或 GraphicsMagick 。", "The_message_is_a_discussion_you_will_not_be_able_to_recover": "此消息是一个讨论你将无法恢复此消息!", "The_mobile_notifications_were_disabled_to_all_users_go_to_Admin_Push_to_enable_the_Push_Gateway_again": "所有用户的移动端通知都已禁用。前往 “管理 > 推送” 再次启用推送网关", @@ -4141,7 +4141,7 @@ "your_message": "你的消息", "your_message_optional": "你的消息(可选)", "__count__empty_rooms_will_be_removed_automatically": "将会自动移除 {{count}} 个空聊天室。", - "__count__empty_rooms_will_be_removed_automatically__rooms__": "将会自动移除以下 {{count}} 个空聊天室:
{{rooms}}", + "__count__empty_rooms_will_be_removed_automatically__rooms__": "将会自动移除以下 {{count}} 个空聊天室:
{{rooms}}", "__username__is_no_longer__role__defined_by__user_by_": "{{user_by}} 移除了 {{username}} 的 {{role}} 角色", "__username__was_set__role__by__user_by_": "{{user_by}} 设置 {{username}} 为 {{role}} 角色" } \ No newline at end of file