[IMPROVE] Rename client-side term "Livechat" to "Omnichannel" (#16752)

pull/16775/head
Renato Becker 6 years ago committed by GitHub
parent b743e157f3
commit 17b1535a16
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      app/livechat/client/route.js
  2. 6
      app/livechat/client/ui.js
  3. 2
      app/livechat/client/views/app/livechatAgents.html
  4. 2
      app/livechat/client/views/sideNav/livechat.html
  5. 2
      app/livechat/client/views/sideNav/livechatFlex.html
  6. 6
      app/livechat/client/views/sideNav/livechatSideNavItems.js
  7. 189
      app/livechat/server/config.js
  8. 2
      app/ui-admin/client/rooms/adminRooms.html
  9. 108
      packages/rocketchat-i18n/i18n/en.i18n.json
  10. 106
      packages/rocketchat-i18n/i18n/pt-BR.i18n.json
  11. 2
      private/public/icons.svg
  12. 4
      public/public/icons.html
  13. 1
      server/startup/migrations/index.js
  14. 14
      server/startup/migrations/v176.js

@ -45,7 +45,7 @@ AccountBox.addRoute({
name: 'livechat-managers',
path: '/managers',
sideNav: 'livechatFlex',
i18nPageTitle: 'Livechat_managers',
i18nPageTitle: 'Livechat_Managers',
pageTemplate: 'livechatManagers',
}, livechatManagerRoutes, load);

@ -5,7 +5,7 @@ import { hasAllPermission } from '../../authorization';
import { AccountBox, TabBar, MessageTypes } from '../../ui-utils';
Tracker.autorun((c) => {
// import livechat tabbar templates right away if livechat enabled
// import omnichannel tabbar templates right away if omnichannel enabled
if (!settings.get('Livechat_enabled')) {
return;
}
@ -14,8 +14,8 @@ Tracker.autorun((c) => {
});
AccountBox.addItem({
name: 'Livechat',
icon: 'livechat',
name: 'Omnichannel',
icon: 'omnichannel',
href: 'livechat-current-chats',
sideNav: 'livechatFlex',
condition: () => settings.get('Livechat_enabled') && hasAllPermission('view-livechat-manager'),

@ -2,7 +2,7 @@
{{#requiresPermission 'manage-livechat-agents'}}
<div class="main-content-flex">
<section class="page-container page-list flex-tab-main-content">
{{> header sectionName="Livechat_agents"}}
{{> header sectionName="Livechat_Agents"}}
<div class="content">
<form id="form-agent" class="form-inline">
<div class="form-group">

@ -1,7 +1,7 @@
<template name="livechat">
<div class="livechat-section">
<h3 class="rooms-list__type {{isActive}}">
<span class="rooms-list__type-text--livechat">{{_ "Livechat"}}</span>
<span class="rooms-list__type-text--livechat">{{_ "Omnichannel"}}</span>
{{#with available}}
<i class="livechat-status {{status}} {{icon}}" title="{{hint}}"></i>
{{/with}}

@ -1,7 +1,7 @@
<template name="livechatFlex">
<aside class="sidebar-light sidebar--medium" role="navigation">
<header class="sidebar-flex__header">
<h1 class="sidebar-flex__title">{{_ "Livechat"}}</h1>
<h1 class="sidebar-flex__title">{{_ "Omnichannel"}}</h1>
{{#unless embeddedVersion}}
<button class="sidebar-flex__close-button" data-action="close">
{{> icon block="sidebar-flex__close-icon" icon="cross"}}

@ -18,10 +18,10 @@ addSidebarItem('Real_Time_Monitoring', 'livechat-real-time-monitoring', 'view-li
addSidebarItem('Managers', 'livechat-managers', 'manage-livechat-managers');
addSidebarItem('Agents', 'livechat-agents', 'manage-livechat-agents');
addSidebarItem('Departments', 'livechat-departments', 'view-livechat-departments');
addSidebarItem('Triggers', 'livechat-triggers', 'view-livechat-triggers');
addSidebarItem('Custom_Fields', 'livechat-customfields', 'view-livechat-customfields');
addSidebarItem('Installation', 'livechat-installation', 'view-livechat-installation');
addSidebarItem('Appearance', 'livechat-appearance', 'view-livechat-appearance');
addSidebarItem('Livechat_Triggers', 'livechat-triggers', 'view-livechat-triggers');
addSidebarItem('Livechat_Installation', 'livechat-installation', 'view-livechat-installation');
addSidebarItem('Livechat_Appearance', 'livechat-appearance', 'view-livechat-appearance');
addSidebarItem('Webhooks', 'livechat-webhooks', 'view-livechat-webhooks');
addSidebarItem('Facebook Messenger', 'livechat-facebook', 'view-livechat-facebook');
addSidebarItem('Office_Hours', 'livechat-officeHours', 'view-livechat-officeHours');

@ -3,87 +3,112 @@ import { Meteor } from 'meteor/meteor';
import { settings } from '../../settings';
Meteor.startup(function() {
settings.addGroup('Livechat');
settings.addGroup('Omnichannel');
settings.add('Livechat_enabled', false, { type: 'boolean', group: 'Livechat', public: true });
settings.add('Livechat_enabled', false, {
type: 'boolean',
group: 'Omnichannel',
public: true,
});
settings.add('Livechat_title', 'Rocket.Chat', {
type: 'string',
group: 'Omnichannel',
section: 'Livechat',
public: true,
});
settings.add('Livechat_title', 'Rocket.Chat', { type: 'string', group: 'Livechat', public: true });
settings.add('Livechat_title_color', '#C1272D', {
type: 'color',
editor: 'color',
allowedTypes: ['color', 'expression'],
group: 'Livechat',
group: 'Omnichannel',
section: 'Livechat',
public: true,
});
settings.add('Livechat_display_offline_form', true, {
type: 'boolean',
group: 'Livechat',
group: 'Omnichannel',
public: true,
section: 'Offline',
section: 'Livechat',
i18nLabel: 'Display_offline_form',
});
settings.add('Livechat_validate_offline_email', true, {
type: 'boolean',
group: 'Livechat',
group: 'Omnichannel',
public: true,
section: 'Offline',
section: 'Livechat',
i18nLabel: 'Validate_email_address',
});
settings.add('Livechat_offline_form_unavailable', '', {
type: 'string',
group: 'Livechat',
group: 'Omnichannel',
public: true,
section: 'Offline',
section: 'Livechat',
i18nLabel: 'Offline_form_unavailable_message',
});
settings.add('Livechat_offline_title', 'Leave a message', {
type: 'string',
group: 'Livechat',
group: 'Omnichannel',
public: true,
section: 'Offline',
section: 'Livechat',
i18nLabel: 'Title',
});
settings.add('Livechat_offline_title_color', '#666666', {
type: 'color',
editor: 'color',
allowedTypes: ['color', 'expression'],
group: 'Livechat',
group: 'Omnichannel',
public: true,
section: 'Offline',
section: 'Livechat',
i18nLabel: 'Color',
});
settings.add('Livechat_offline_message', '', {
type: 'string',
group: 'Livechat',
group: 'Omnichannel',
public: true,
section: 'Offline',
section: 'Livechat',
i18nLabel: 'Instructions',
i18nDescription: 'Instructions_to_your_visitor_fill_the_form_to_send_a_message',
});
settings.add('Livechat_offline_email', '', {
type: 'string',
group: 'Livechat',
group: 'Omnichannel',
i18nLabel: 'Email_address_to_send_offline_messages',
section: 'Offline',
section: 'Livechat',
});
settings.add('Livechat_offline_success_message', '', {
type: 'string',
group: 'Livechat',
group: 'Omnichannel',
public: true,
section: 'Offline',
section: 'Livechat',
i18nLabel: 'Offline_success_message',
});
settings.add('Livechat_allow_switching_departments', true, { type: 'boolean', group: 'Livechat', public: true, i18nLabel: 'Allow_switching_departments' });
settings.add('Livechat_allow_switching_departments', true, {
type: 'boolean',
group: 'Omnichannel',
public: true,
section: 'Livechat',
i18nLabel: 'Allow_switching_departments',
});
settings.add('Livechat_show_agent_info', true, {
type: 'boolean', group: 'Livechat', public: true, i18nLabel: 'Show_agent_info' });
type: 'boolean',
group: 'Omnichannel',
section: 'Livechat',
public: true,
i18nLabel: 'Show_agent_info',
});
settings.add('Livechat_show_agent_email', true, {
type: 'boolean',
group: 'Livechat',
group: 'Omnichannel',
section: 'Livechat',
public: true,
enableQuery: { _id: 'Livechat_show_agent_info', value: true },
i18nLabel: 'Show_agent_email',
@ -91,14 +116,16 @@ Meteor.startup(function() {
settings.add('Livechat_request_comment_when_closing_conversation', true, {
type: 'boolean',
group: 'Livechat',
group: 'Omnichannel',
public: true,
i18nLabel: 'Request_comment_when_closing_conversation',
i18nDescription: 'Request_comment_when_closing_conversation_description',
});
settings.add('Livechat_conversation_finished_message', '', {
type: 'string',
group: 'Livechat',
group: 'Omnichannel',
section: 'Livechat',
public: true,
i18nLabel: 'Conversation_finished_message',
});
@ -106,56 +133,60 @@ Meteor.startup(function() {
settings.add('Livechat_conversation_finished_text', '', {
type: 'string',
multiline: true,
group: 'Livechat',
group: 'Omnichannel',
section: 'Livechat',
public: true,
i18nLabel: 'Conversation_finished_text',
});
settings.add('Livechat_registration_form', true, {
type: 'boolean',
group: 'Livechat',
group: 'Omnichannel',
section: 'Livechat',
public: true,
i18nLabel: 'Show_preregistration_form',
});
settings.add('Livechat_name_field_registration_form', true, {
type: 'boolean',
group: 'Livechat',
group: 'Omnichannel',
section: 'Livechat',
public: true,
i18nLabel: 'Show_name_field',
});
settings.add('Livechat_email_field_registration_form', true, {
type: 'boolean',
group: 'Livechat',
group: 'Omnichannel',
section: 'Livechat',
public: true,
i18nLabel: 'Show_email_field',
});
settings.add('Livechat_guest_count', 1, { type: 'int', group: 'Livechat' });
settings.add('Livechat_guest_count', 1, { type: 'int', group: 'Omnichannel' });
settings.add('Livechat_Room_Count', 1, {
type: 'int',
group: 'Livechat',
group: 'Omnichannel',
i18nLabel: 'Livechat_room_count',
});
settings.add('Livechat_enabled_when_agent_idle', true, {
type: 'boolean',
group: 'Livechat',
group: 'Omnichannel',
i18nLabel: 'Accept_new_livechats_when_agent_is_idle',
});
settings.add('Livechat_webhookUrl', '', {
type: 'string',
group: 'Livechat',
group: 'Omnichannel',
section: 'CRM_Integration',
i18nLabel: 'Webhook_URL',
});
settings.add('Livechat_secret_token', '', {
type: 'string',
group: 'Livechat',
group: 'Omnichannel',
section: 'CRM_Integration',
i18nLabel: 'Secret_token',
secret: true,
@ -163,35 +194,35 @@ Meteor.startup(function() {
settings.add('Livechat_webhook_on_close', false, {
type: 'boolean',
group: 'Livechat',
group: 'Omnichannel',
section: 'CRM_Integration',
i18nLabel: 'Send_request_on_chat_close',
});
settings.add('Livechat_webhook_on_offline_msg', false, {
type: 'boolean',
group: 'Livechat',
group: 'Omnichannel',
section: 'CRM_Integration',
i18nLabel: 'Send_request_on_offline_messages',
});
settings.add('Livechat_webhook_on_visitor_message', false, {
type: 'boolean',
group: 'Livechat',
group: 'Omnichannel',
section: 'CRM_Integration',
i18nLabel: 'Send_request_on_visitor_message',
});
settings.add('Livechat_webhook_on_agent_message', false, {
type: 'boolean',
group: 'Livechat',
group: 'Omnichannel',
section: 'CRM_Integration',
i18nLabel: 'Send_request_on_agent_message',
});
settings.add('Send_visitor_navigation_history_livechat_webhook_request', false, {
type: 'boolean',
group: 'Livechat',
group: 'Omnichannel',
section: 'CRM_Integration',
i18nLabel: 'Send_visitor_navigation_history_on_request',
i18nDescription: 'Feature_Depends_on_Livechat_Visitor_navigation_as_a_message_to_be_enabled',
@ -200,28 +231,28 @@ Meteor.startup(function() {
settings.add('Livechat_webhook_on_capture', false, {
type: 'boolean',
group: 'Livechat',
group: 'Omnichannel',
section: 'CRM_Integration',
i18nLabel: 'Send_request_on_lead_capture',
});
settings.add('Livechat_lead_email_regex', '\\b[A-Z0-9._%+-]+@(?:[A-Z0-9-]+\\.)+[A-Z]{2,4}\\b', {
type: 'string',
group: 'Livechat',
group: 'Omnichannel',
section: 'CRM_Integration',
i18nLabel: 'Lead_capture_email_regex',
});
settings.add('Livechat_lead_phone_regex', '((?:\\([0-9]{1,3}\\)|[0-9]{2})[ \\-]*?[0-9]{4,5}(?:[\\-\\s\\_]{1,2})?[0-9]{4}(?:(?=[^0-9])|$)|[0-9]{4,5}(?:[\\-\\s\\_]{1,2})?[0-9]{4}(?:(?=[^0-9])|$))', {
type: 'string',
group: 'Livechat',
group: 'Omnichannel',
section: 'CRM_Integration',
i18nLabel: 'Lead_capture_phone_regex',
});
settings.add('Livechat_Knowledge_Enabled', false, {
type: 'boolean',
group: 'Livechat',
group: 'Omnichannel',
section: 'Knowledge_Base',
public: true,
i18nLabel: 'Enabled',
@ -229,7 +260,7 @@ Meteor.startup(function() {
settings.add('Livechat_Knowledge_Apiai_Key', '', {
type: 'string',
group: 'Livechat',
group: 'Omnichannel',
section: 'Knowledge_Base',
public: true,
i18nLabel: 'Apiai_Key',
@ -238,7 +269,7 @@ Meteor.startup(function() {
settings.add('Livechat_Knowledge_Apiai_Language', 'en', {
type: 'string',
group: 'Livechat',
group: 'Omnichannel',
section: 'Knowledge_Base',
public: true,
i18nLabel: 'Apiai_Language',
@ -246,7 +277,8 @@ Meteor.startup(function() {
settings.add('Livechat_history_monitor_type', 'url', {
type: 'select',
group: 'Livechat',
group: 'Omnichannel',
section: 'Livechat',
i18nLabel: 'Monitor_history_for_changes_on',
values: [
{ key: 'url', i18nLabel: 'Page_URL' },
@ -256,21 +288,22 @@ Meteor.startup(function() {
settings.add('Livechat_Visitor_navigation_as_a_message', false, {
type: 'boolean',
group: 'Livechat',
group: 'Omnichannel',
section: 'Livechat',
public: true,
i18nLabel: 'Send_Visitor_navigation_history_as_a_message',
});
settings.add('Livechat_enable_office_hours', false, {
type: 'boolean',
group: 'Livechat',
group: 'Omnichannel',
public: true,
i18nLabel: 'Office_hours_enabled',
});
settings.add('Livechat_allow_online_agents_outside_office_hours', true, {
type: 'boolean',
group: 'Livechat',
group: 'Omnichannel',
public: true,
i18nLabel: 'Allow_Online_Agents_Outside_Office_Hours',
enableQuery: { _id: 'Livechat_enable_office_hours', value: true },
@ -278,14 +311,15 @@ Meteor.startup(function() {
settings.add('Livechat_continuous_sound_notification_new_livechat_room', false, {
type: 'boolean',
group: 'Livechat',
group: 'Omnichannel',
public: true,
i18nLabel: 'Continuous_sound_notifications_for_new_livechat_room',
});
settings.add('Livechat_videocall_enabled', false, {
type: 'boolean',
group: 'Livechat',
group: 'Omnichannel',
section: 'Livechat',
public: true,
i18nLabel: 'Videocall_enabled',
i18nDescription: 'Beta_feature_Depends_on_Video_Conference_to_be_enabled',
@ -294,7 +328,7 @@ Meteor.startup(function() {
settings.add('Livechat_fileupload_enabled', true, {
type: 'boolean',
group: 'Livechat',
group: 'Omnichannel',
public: true,
i18nLabel: 'FileUpload_Enabled',
enableQuery: { _id: 'FileUpload_Enabled', value: true },
@ -302,14 +336,14 @@ Meteor.startup(function() {
settings.add('Livechat_enable_transcript', false, {
type: 'boolean',
group: 'Livechat',
group: 'Omnichannel',
public: true,
i18nLabel: 'Transcript_Enabled',
});
settings.add('Livechat_transcript_message', '', {
type: 'string',
group: 'Livechat',
group: 'Omnichannel',
public: true,
i18nLabel: 'Transcript_message',
enableQuery: { _id: 'Livechat_enable_transcript', value: true },
@ -317,14 +351,16 @@ Meteor.startup(function() {
settings.add('Livechat_registration_form_message', '', {
type: 'string',
group: 'Livechat',
group: 'Omnichannel',
section: 'Livechat',
public: true,
i18nLabel: 'Livechat_registration_form_message',
});
settings.add('Livechat_AllowedDomainsList', '', {
type: 'string',
group: 'Livechat',
group: 'Omnichannel',
section: 'Livechat',
public: true,
i18nLabel: 'Livechat_AllowedDomainsList',
i18nDescription: 'Domains_allowed_to_embed_the_livechat_widget',
@ -332,27 +368,27 @@ Meteor.startup(function() {
settings.add('Livechat_Facebook_Enabled', false, {
type: 'boolean',
group: 'Livechat',
group: 'Omnichannel',
section: 'Facebook',
});
settings.add('Livechat_Facebook_API_Key', '', {
type: 'string',
group: 'Livechat',
group: 'Omnichannel',
section: 'Facebook',
i18nDescription: 'If_you_dont_have_one_send_an_email_to_omni_rocketchat_to_get_yours',
});
settings.add('Livechat_Facebook_API_Secret', '', {
type: 'string',
group: 'Livechat',
group: 'Omnichannel',
section: 'Facebook',
i18nDescription: 'If_you_dont_have_one_send_an_email_to_omni_rocketchat_to_get_yours',
});
settings.add('Livechat_RDStation_Token', '', {
type: 'string',
group: 'Livechat',
group: 'Omnichannel',
public: false,
section: 'RD Station',
i18nLabel: 'RDStation_Token',
@ -360,7 +396,7 @@ Meteor.startup(function() {
settings.add('Livechat_Routing_Method', 'Auto_Selection', {
type: 'select',
group: 'Livechat',
group: 'Omnichannel',
public: true,
section: 'Routing',
values: [
@ -372,7 +408,7 @@ Meteor.startup(function() {
settings.add('Livechat_accept_chats_with_no_agents', false, {
type: 'boolean',
group: 'Livechat',
group: 'Omnichannel',
section: 'Routing',
i18nLabel: 'Accept_with_no_online_agents',
i18nDescription: 'Accept_incoming_livechat_requests_even_if_there_are_no_online_agents',
@ -380,7 +416,7 @@ Meteor.startup(function() {
settings.add('Livechat_assign_new_conversation_to_bot', false, {
type: 'boolean',
group: 'Livechat',
group: 'Omnichannel',
section: 'Routing',
i18nLabel: 'Assign_new_conversations_to_bot_agent',
i18nDescription: 'Assign_new_conversations_to_bot_agent_description',
@ -388,7 +424,7 @@ Meteor.startup(function() {
settings.add('Livechat_guest_pool_max_number_incoming_livechats_displayed', 0, {
type: 'int',
group: 'Livechat',
group: 'Omnichannel',
section: 'Routing',
public: true,
i18nLabel: 'Max_number_incoming_livechats_displayed',
@ -398,7 +434,7 @@ Meteor.startup(function() {
settings.add('Livechat_show_queue_list_link', false, {
type: 'boolean',
group: 'Livechat',
group: 'Omnichannel',
public: true,
section: 'Routing',
i18nLabel: 'Show_queue_list_to_all_agents',
@ -407,7 +443,7 @@ Meteor.startup(function() {
settings.add('Livechat_External_Queue_URL', '', {
type: 'string',
group: 'Livechat',
group: 'Omnichannel',
public: false,
section: 'Routing',
i18nLabel: 'External_Queue_Service_URL',
@ -417,7 +453,7 @@ Meteor.startup(function() {
settings.add('Livechat_External_Queue_Token', '', {
type: 'string',
group: 'Livechat',
group: 'Omnichannel',
public: false,
section: 'Routing',
i18nLabel: 'Secret_token',
@ -426,7 +462,8 @@ Meteor.startup(function() {
settings.add('Livechat_Allow_collect_and_store_HTTP_header_informations', false, {
type: 'boolean',
group: 'Livechat',
group: 'Omnichannel',
section: 'GDPR',
public: true,
i18nLabel: 'Allow_collect_and_store_HTTP_header_informations',
i18nDescription: 'Allow_collect_and_store_HTTP_header_informations_description',
@ -434,7 +471,8 @@ Meteor.startup(function() {
settings.add('Livechat_force_accept_data_processing_consent', false, {
type: 'boolean',
group: 'Livechat',
group: 'Omnichannel',
section: 'GDPR',
public: true,
alert: 'Force_visitor_to_accept_data_processing_consent_enabled_alert',
i18nLabel: 'Force_visitor_to_accept_data_processing_consent',
@ -444,7 +482,8 @@ Meteor.startup(function() {
settings.add('Livechat_data_processing_consent_text', '', {
type: 'string',
multiline: true,
group: 'Livechat',
group: 'Omnichannel',
section: 'GDPR',
public: true,
i18nLabel: 'Data_processing_consent_text',
i18nDescription: 'Data_processing_consent_text_description',
@ -453,7 +492,7 @@ Meteor.startup(function() {
settings.add('Livechat_agent_leave_action', 'none', {
type: 'select',
group: 'Livechat',
group: 'Omnichannel',
section: 'Sessions',
values: [
{ key: 'none', i18nLabel: 'None' },
@ -465,7 +504,7 @@ Meteor.startup(function() {
settings.add('Livechat_agent_leave_action_timeout', 60, {
type: 'int',
group: 'Livechat',
group: 'Omnichannel',
section: 'Sessions',
enableQuery: { _id: 'Livechat_agent_leave_action', value: { $ne: 'none' } },
i18nLabel: 'How_long_to_wait_after_agent_goes_offline',
@ -474,7 +513,7 @@ Meteor.startup(function() {
settings.add('Livechat_agent_leave_comment', '', {
type: 'string',
group: 'Livechat',
group: 'Omnichannel',
section: 'Sessions',
enableQuery: { _id: 'Livechat_agent_leave_action', value: 'close' },
i18nLabel: 'Comment_to_leave_on_closing_session',
@ -482,7 +521,7 @@ Meteor.startup(function() {
settings.add('Livechat_visitor_inactivity_timeout', 3600, {
type: 'int',
group: 'Livechat',
group: 'Omnichannel',
section: 'Sessions',
i18nLabel: 'How_long_to_wait_to_consider_visitor_abandonment',
i18nDescription: 'Time_in_seconds',
@ -490,7 +529,7 @@ Meteor.startup(function() {
settings.add('Livechat_enable_inquiry_fetch_by_stream', true, {
type: 'boolean',
group: 'Livechat',
group: 'Omnichannel',
section: 'Routing',
public: true,
i18nLabel: 'Enable_inquiry_fetch_by_stream',

@ -21,7 +21,7 @@
<label><input type="checkbox" name="room-type" value="c"> {{_ "Channels"}}</label>
<label><input type="checkbox" name="room-type" value="d"> {{_ "Direct_Messages"}}</label>
<label><input type="checkbox" name="room-type" value="p"> {{_ "Private_Groups"}}</label>
<label><input type="checkbox" name="room-type" value="l"> {{_ "Livechat"}}</label>
<label><input type="checkbox" name="room-type" value="l"> {{_ "Omnichannel"}}</label>
<label><input type="checkbox" name="room-type" value="discussions"> {{_ "Discussions"}}</label>
</form>
<div class="results">

@ -13,8 +13,8 @@
"__username__was_set__role__by__user_by_": "__username__ was set __role__ by __user_by__",
"%_of_conversations": "% of Conversations",
"Accept": "Accept",
"Accept_incoming_livechat_requests_even_if_there_are_no_online_agents": "Accept incoming livechat requests even if there are no online agents",
"Accept_new_livechats_when_agent_is_idle": "Accept new livechat requests when the agent is idle",
"Accept_incoming_livechat_requests_even_if_there_are_no_online_agents": "Accept incoming omnichannel requests even if there are no online agents",
"Accept_new_livechats_when_agent_is_idle": "Accept new omnichannel requests when the agent is idle",
"Accept_with_no_online_agents": "Accept with No Online Agents",
"access-mailer": "Access Mailer Screen",
"access-mailer_description": "Permission to send mass email to all users.",
@ -229,7 +229,7 @@
"Add_custom_oauth": "Add custom oauth",
"Add_Domain": "Add Domain",
"Add_files_from": "Add files from",
"add-livechat-department-agents": "Add Livechat Agents to Departments",
"add-livechat-department-agents": "Add Omnichannel Agents to Departments",
"Add_manager": "Add manager",
"Add_Role": "Add Role",
"Add_user": "Add user",
@ -651,12 +651,12 @@
"Clients_will_refresh_in_a_few_seconds": "Clients will refresh in a few seconds",
"close": "close",
"Close": "Close",
"close-livechat-room": "Close Livechat Room",
"close-livechat-room": "Close Omnichannel Room",
"Cloud_workspace_connected_plus_account": "Your workspace is now connected to the Rocket.Chat Cloud and an account is associated.",
"close-livechat-room_description": "Permission to close the current LiveChat channel",
"close-others-livechat-room": "Close Livechat Room",
"close-livechat-room_description": "Permission to close the current Omnichannel room",
"close-others-livechat-room": "Close other Omnichannel Room",
"Cloud_workspace_connected_without_account": "Your workspace is now connected to the Rocket.Chat Cloud. If you would like, you can login to the Rocket.Chat Cloud and associate your workspace with your Cloud account.",
"close-others-livechat-room_description": "Permission to close other LiveChat channels",
"close-others-livechat-room_description": "Permission to close other Omnichannel rooms",
"Closed": "Closed",
"Closed_At": "Closed at",
"Closed_by_visitor": "Closed by visitor",
@ -718,7 +718,7 @@
"Contact": "Contact",
"Content": "Content",
"Continue": "Continue",
"Continuous_sound_notifications_for_new_livechat_room": "Continuous sound notifications for new livechat room",
"Continuous_sound_notifications_for_new_livechat_room": "Continuous sound notifications for new omnichannel room",
"Conversation": "Conversation",
"Conversations": "Conversations",
"Conversation_closed": "Conversation closed: __comment__.",
@ -1369,14 +1369,14 @@
"Error_Site_URL": "Invalid Site_Url",
"Error_Site_URL_description": "Please, update your \"Site_Url\" setting find more information <a target=\"_blank\" href=\"https://go.rocket.chat/i/invalid-site-url\">here</>",
"error-the-field-is-required": "The field __field__ is required.",
"error-this-is-not-a-livechat-room": "This is not a Livechat room",
"error-this-is-not-a-livechat-room": "This is not a Omnichannel room",
"error-personal-access-tokens-are-current-disabled": "Personal Access Tokens are currently disabled",
"error-token-already-exists": "A token with this name already exists",
"error-token-does-not-exists": "Token does not exists",
"error-too-many-requests": "Error, too many requests. Please slow down. You must wait __seconds__ seconds before trying again.",
"error-user-has-no-roles": "User has no roles",
"error-user-is-not-activated": "User is not activated",
"error-user-is-not-agent": "User is not a Livechat Agent",
"error-user-is-not-agent": "User is not a Omnichannel Agent",
"error-user-is-offline": "User if offline",
"error-user-limit-exceeded": "The number of users you are trying to invite to #channel_name exceeds the limit set by the administrator",
"error-user-not-in-room": "User is not in this room",
@ -1389,8 +1389,8 @@
"Error_loading_pages": "Error loading pages",
"Error_RocketChat_requires_oplog_tailing_when_running_in_multiple_instances": "Error: Rocket.Chat requires oplog tailing when running in multiple instances",
"Error_RocketChat_requires_oplog_tailing_when_running_in_multiple_instances_details": "Please make sure your MongoDB is on ReplicaSet mode and MONGO_OPLOG_URL environment variable is defined correctly on the application server",
"Error_sending_livechat_transcript": "Error sending Livechat transcript",
"Error_sending_livechat_offline_message": "Error sending Livechat offline message",
"Error_sending_livechat_transcript": "Error sending Omnichannel transcript",
"Error_sending_livechat_offline_message": "Error sending Omnichannel offline message",
"Errors_and_Warnings": "Errors and Warnings",
"Esc_to": "Esc to",
"Event_Trigger": "Event Trigger",
@ -1628,7 +1628,7 @@
"Hide_counter": "Hide counter",
"Hide_flextab": "Hide Right Sidebar with Click",
"Hide_Group_Warning": "Are you sure you want to hide the group \"%s\"?",
"Hide_Livechat_Warning": "Are you sure you want to hide the livechat with \"%s\"?",
"Hide_Livechat_Warning": "Are you sure you want to hide the chat with \"%s\"?",
"Hide_Private_Warning": "Are you sure you want to hide the discussion with \"%s\"?",
"Hide_roles": "Hide Roles",
"Hide_room": "Hide Room",
@ -1735,7 +1735,7 @@
"Importing_users": "Importing users",
"Inclusive": "Inclusive",
"In_progress": "In progress",
"Incoming_Livechats": "Incoming Livechats",
"Incoming_Livechats": "Queued Chats",
"Incoming_WebHook": "Incoming WebHook",
"Include_Offline_Agents": "Include offline agents",
"Industry": "Industry",
@ -2049,7 +2049,7 @@
"leave-p": "Leave Private Groups",
"Leave": "Leave",
"Leave_Group_Warning": "Are you sure you want to leave the group \"%s\"?",
"Leave_Livechat_Warning": "Are you sure you want to leave the livechat with \"%s\"?",
"Leave_Livechat_Warning": "Are you sure you want to leave the omnichannel with \"%s\"?",
"Leave_Private_Warning": "Are you sure you want to leave the discussion with \"%s\"?",
"Leave_room": "Leave room",
"Leave_Room_Warning": "Are you sure you want to leave the room \"%s\"?",
@ -2059,36 +2059,39 @@
"List_of_Channels": "List of Channels",
"List_of_Direct_Messages": "List of Direct Messages",
"Livechat": "Livechat",
"Livechat_agents": "Livechat agents",
"Livechat_agents": "Omnichannel agents",
"Livechat_Agents": "Agents",
"Livechat_AllowedDomainsList": "Livechat Allowed Domains",
"Livechat_Dashboard": "Livechat Dashboard",
"Livechat_enabled": "Livechat enabled",
"Livechat_Appearance": "Livechat Appearance",
"Livechat_Dashboard": "Omnichannel Dashboard",
"Livechat_enabled": "Omnichannel enabled",
"Livechat_Facebook_API_Key": "OmniChannel API Key",
"Livechat_Facebook_API_Secret": "OmniChannel API Secret",
"Livechat_Facebook_Enabled": "Facebook integration enabled",
"Livechat_forward_open_chats": "Forward open chats",
"Livechat_forward_open_chats_timeout": "Timeout (in seconds) to forward chats",
"Livechat_guest_count": "Guest Counter",
"Livechat_Inquiry_Already_Taken": "Livechat inquiry already taken",
"Livechat_managers": "Livechat managers",
"Livechat_Inquiry_Already_Taken": "Omnichannel inquiry already taken",
"Livechat_Installation": "Livechat Installation",
"Livechat_managers": "Omnichannel managers",
"Livechat_Managers": "Managers",
"Livechat_offline": "Livechat offline",
"Livechat_online": "Livechat online",
"Livechat_offline_message_sent": "Livechat offline message sent",
"Livechat_Queue": "Livechat Queue",
"Livechat_offline": "Omnichannel offline",
"Livechat_online": "Omnichannel on-line",
"Livechat_offline_message_sent": "Omnichannel offline message sent",
"Livechat_Queue": "Omnichannel Queue",
"Livechat_registration_form": "Registration Form",
"Livechat_registration_form_message": "Registration Form Message",
"Livechat_room_count": "Livechat Room Count",
"Livechat_Routing_Method": "Livechat Routing Method",
"Livechat_room_count": "Omnichannel Room Count",
"Livechat_Routing_Method": "Omnichannel Routing Method",
"Livechat_Take_Confirm": "Do you want to take this client?",
"Livechat_title": "Livechat Title",
"Livechat_title_color": "Livechat Title Background Color",
"Livechat_transcript_sent": "Livechat transcript sent",
"Livechat_transcript_sent": "Omnichannel transcript sent",
"Livechat_transfer_to_agent": "__from__ transferred the chat to __to__",
"Livechat_transfer_to_department": "__from__ transferred the chat to the department __to__",
"Livechat_transfer_return_to_the_queue": "__from__ returned the chat to the queue",
"Livechat_Users": "Livechat Users",
"Livechat_Triggers": "Livechat Triggers",
"Livechat_Users": "Omnichannel Users",
"LiveStream & Broadcasting": "LiveStream & Broadcasting",
"Livestream_close": "Close Livestream",
"Livestream_enabled": "Livestream Enabled",
@ -2152,9 +2155,9 @@
"manage-incoming-integrations": "Manage Incoming Integrations",
"manage-outgoing-integrations_description": "Permission to manage the server outgoing integrations",
"manage-incoming-integrations_description": "Permission to manage the server incoming integrations",
"manage-livechat-agents": "Manage Livechat Agents",
"manage-livechat-departments": "Manage Livechat Departments",
"manage-livechat-managers": "Manage Livechat Managers",
"manage-livechat-agents": "Manage Omnichannel Agents",
"manage-livechat-departments": "Manage Omnichannel Departments",
"manage-livechat-managers": "Manage Omnichannel Managers",
"manage-oauth-apps": "Manage Oauth Apps",
"manage-oauth-apps_description": "Permission to manage the server Oauth apps",
"manage-own-outgoing-integrations": "Manage Own Outgoing Integrations",
@ -2197,7 +2200,7 @@
"Markdown_SupportSchemesForLink_Description": "Comma-separated list of allowed schemes",
"Max_length_is": "Max length is %s",
"Max_number_incoming_livechats_displayed": "Max number of items displayed in the queue",
"Max_number_incoming_livechats_displayed_description": "(Optional) Max number of items displayed in the incoming Livechats queue.",
"Max_number_incoming_livechats_displayed_description": "(Optional) Max number of items displayed in the incoming Omnichannel queue.",
"Max_number_of_uses": "Max number of uses",
"Maximum": "Maximum",
"Media": "Media",
@ -2480,7 +2483,7 @@
"Open_channel_user_search": "`%s` - Open Channel / User search",
"Open_conversations": "Open Conversations",
"Open_days_of_the_week": "Open Days of the Week",
"Open_Livechats": "Open Livechats",
"Open_Livechats": "Chats in Progress",
"Open_your_authentication_app_and_enter_the_code": "Open your authentication app and enter the code. You can also use one of your backup codes.",
"Opened": "Opened",
"Opened_in_a_new_window": "Opened in a new window.",
@ -2562,7 +2565,7 @@
"Please_fill_all_the_information": "Please fill all the information",
"Please_fill_name_and_email": "Please fill name and email",
"Please_fill_a_token_name": "Please fill a valid token name",
"Please_go_to_the_Administration_page_then_Livechat_Facebook": "Please go to the Administration page then Livechat > Facebook",
"Please_go_to_the_Administration_page_then_Livechat_Facebook": "Please go to the Administration page then Omnichannel > Facebook",
"Please_select_an_user": "Please select an user",
"Please_select_enabled_yes_or_no": "Please select an option for Enabled",
"Please_wait": "Please wait",
@ -2702,7 +2705,7 @@
"Reload": "Reload",
"Reload_Pages": "Reload Pages",
"Remove": "Remove",
"remove-closed-livechat-rooms": "Remove Closed Livechat Rooms",
"remove-closed-livechat-rooms": "Remove Closed Omnichannel Rooms",
"remove-user": "Remove User",
"remove-user_description": "Permission to remove a user from a room",
"Remove_Admin": "Remove Admin",
@ -2731,6 +2734,7 @@
"Report_this_message_question_mark": "Report this message?",
"Reporting": "Reporting",
"Request_comment_when_closing_conversation": "Request comment when closing conversation",
"Request_comment_when_closing_conversation_description": "If enabled, the agent will need to set a comment before the conversation is closed.",
"Request_tag_before_closing_chat": "Request tag(s) before closing conversation",
"Require_all_tokens": "Require all tokens",
"Require_any_token": "Require any token",
@ -2855,8 +2859,8 @@
"SAML_Role_Attribute_Name_Description": "If this attribute is found on the SAML response, it's values will be used as role names for new users.",
"Saturday": "Saturday",
"Save": "Save",
"save-others-livechat-room-info": "Save Others Livechat Room Info",
"save-others-livechat-room-info_description": "Permission to save information from other livechat channels",
"save-others-livechat-room-info": "Save Others Omnichannel Room Info",
"save-others-livechat-room-info_description": "Permission to save information from other omnichannel rooms",
"Save_changes": "Save changes",
"Save_Mobile_Bandwidth": "Save Mobile Bandwidth",
"Save_to_enable_this_action": "Save to enable this action",
@ -3069,11 +3073,11 @@
"Stats_Total_Installed_Apps": "Total Installed Apps",
"Stats_Total_Integrations": "Total Integrations",
"Stats_Total_Integrations_With_Script_Enabled": "Total Integrations With Script Enabled",
"Stats_Total_Livechat_Rooms": "Total Livechat Rooms",
"Stats_Total_Livechat_Rooms": "Total Omnichannel Rooms",
"Stats_Total_Messages": "Total Messages",
"Stats_Total_Messages_Channel": "Total Messages in Channels",
"Stats_Total_Messages_Direct": "Total Messages in Direct Messages",
"Stats_Total_Messages_Livechat": "Total Messages in Livechats",
"Stats_Total_Messages_Livechat": "Total Messages in Omnichannel",
"Stats_Total_Messages_PrivateGroup": "Total Messages in Private Groups",
"Stats_Total_Outgoing_Integrations": "Total Outgoing Integrations",
"Stats_Total_Private_Groups": "Total Private Groups",
@ -3256,7 +3260,7 @@
"Tourism": "Tourism",
"Transcript_Enabled": "Ask Visitor if They Would Like a Transcript After Chat Closed",
"Transcript_message": "Message to Show When Asking About Transcript",
"Transcript_of_your_livechat_conversation": "Transcript of your livechat conversation.",
"Transcript_of_your_livechat_conversation": "Transcript of your omnichannel conversation.",
"transfer-livechat-guest": "Transfer Livechat Guests",
"Translate": "Translate",
"Translated": "Translated",
@ -3476,15 +3480,15 @@
"view-join-code_description": "Permission to view the channel join code",
"view-joined-room": "View Joined Room",
"view-joined-room_description": "Permission to view the currently joined channels",
"view-l-room": "View Livechat Rooms",
"view-l-room_description": "Permission to view livechat channels",
"view-livechat-analytics": "View Livechat Analytics",
"view-livechat-departments": "View Livechat Departments",
"view-livechat-manager": "View Livechat Manager",
"view-livechat-manager_description": "Permission to view other livechat managers",
"view-livechat-queue": "View Livechat Queue",
"view-livechat-rooms": "View Livechat Rooms",
"view-livechat-rooms_description": "Permission to view other livechat channels",
"view-l-room": "View Omnichannel Rooms",
"view-l-room_description": "Permission to view Omnichannel rooms",
"view-livechat-analytics": "View Omnichannel Analytics",
"view-livechat-departments": "View Omnichannel Departments",
"view-livechat-manager": "View Omnichannel Manager",
"view-livechat-manager_description": "Permission to view other Omnichannel managers",
"view-livechat-queue": "View Omnichannel Queue",
"view-livechat-rooms": "View Omnichannel Rooms",
"view-livechat-rooms_description": "Permission to view other Omnichannel rooms",
"view-logs": "View Logs",
"view-logs_description": "Permission to view the server logs ",
"view-other-user-channels": "View Other User Channels",
@ -3565,15 +3569,15 @@
"yesterday": "yesterday",
"You": "You",
"you_are_in_preview_mode_of": "You are in preview mode of channel #<strong>__room_name__</strong>",
"you_are_in_preview_mode_of_incoming_livechat": "You are in preview mode of this incoming livechat",
"you_are_in_preview_mode_of_incoming_livechat": "You are in preview mode of this chat",
"You_are_logged_in_as": "You are logged in as",
"You_are_not_authorized_to_view_this_page": "You are not authorized to view this page.",
"You_can_change_a_different_avatar_too": "You can override the avatar used to post from this integration.",
"You_can_close_this_window_now": "You can close this window now.",
"You_can_search_using_RegExp_eg": "You can search using <a href=\"https://en.wikipedia.org/wiki/Regular_expression\" target=\"_blank\">Regular Expression</a>. e.g. <code class='code-colors inline'>/^text$/i</code>",
"You_can_use_an_emoji_as_avatar": "You can also use an emoji as an avatar.",
"You_can_use_webhooks_to_easily_integrate_livechat_with_your_CRM": "You can use webhooks to easily integrate livechat with your CRM.",
"You_cant_leave_a_livechat_room_Please_use_the_close_button": "You can't leave a livechat room. Please, use the close button.",
"You_can_use_webhooks_to_easily_integrate_livechat_with_your_CRM": "You can use webhooks to easily integrate Omnichannel with your CRM.",
"You_cant_leave_a_livechat_room_Please_use_the_close_button": "You can't leave a omnichannel room. Please, use the close button.",
"You_have_been_muted": "You have been muted and cannot speak in this room",
"You_have_n_codes_remaining": "You have __number__ codes remaining.",
"You_have_not_verified_your_email": "You have not verified your email.",

@ -13,8 +13,8 @@
"__username__was_set__role__by__user_by_": "__username__ foi definido como __role__ por __user_by__",
"%_of_conversations": "% de conversas",
"Accept": "Aceitar",
"Accept_incoming_livechat_requests_even_if_there_are_no_online_agents": "Aceitar requisições de livechat mesmo que não tenham agentes online",
"Accept_new_livechats_when_agent_is_idle": "Aceitar novas requisições de livechat quando o agente estiver inativo",
"Accept_incoming_livechat_requests_even_if_there_are_no_online_agents": "Aceitar requisições de omnichannel mesmo que não tenham agentes online",
"Accept_new_livechats_when_agent_is_idle": "Aceitar novas requisições de omnichannel quando o agente estiver inativo",
"Accept_with_no_online_agents": "Aceitar Sem Agentes Online",
"access-mailer": "Acessar Tela do Mailer",
"access-mailer_description": "Permissão para enviar e-mails em massa para todos os usuários.",
@ -221,6 +221,7 @@
"Add_custom_oauth": "Adicionar oauth customizado",
"Add_Domain": "Adicionar Domínio",
"Add_files_from": "Adicionar arquivos de",
"add-livechat-department-agents": "Adicionar agentes Omnichannel aos departamentos",
"Add_manager": "Adicionar gerente",
"Add_Role": "Adicionar Role",
"Add_user": "Adicionar usuário",
@ -614,12 +615,12 @@
"Clients_will_refresh_in_a_few_seconds": "Os clientes irão atualizar em poucos segundos",
"close": "fechar",
"Close": "Fechar",
"close-livechat-room": "Sala de Livechat fechada",
"close-livechat-room": "Sala de Omnichannel fechada",
"Cloud_workspace_connected_plus_account": "Seu workspace está agora conectado ao Rocket.Chat Cloud e uma conta está associada.",
"close-livechat-room_description": "Permissão para fechar o canal LiveChat atual",
"close-others-livechat-room": "Sala de Livechat fechada",
"close-livechat-room_description": "Permissão para fechar a sala de Omnichannel atual",
"close-others-livechat-room": "Sala de Omnichannel fechada",
"Cloud_workspace_connected_without_account": "Seu workspace está agora conectado ao Rocket.Chat Cloud. Se desejar, você pode fazer o login no Rocket.Chat Cloud e associar seu workspace à sua conta do Cloud.",
"close-others-livechat-room_description": "Permissão para fechar outros canais LiveChat",
"close-others-livechat-room_description": "Permissão para fechar outras salas de Omnichannel",
"Closed": "Fechado",
"Closed_At": "Encerrado em",
"Closed_by_visitor": "Encerrado pelo visitante",
@ -663,7 +664,7 @@
"Contact": "Contacto",
"Content": "Conteúdo",
"Continue": "Continuar",
"Continuous_sound_notifications_for_new_livechat_room": "Notificações sonoras contínuas, para nova sala de livechat",
"Continuous_sound_notifications_for_new_livechat_room": "Notificações sonoras contínuas, para nova sala de omnichannel",
"Conversation": "Conversa",
"Conversations": "Conversas",
"Conversation_closed": "Chat encerrado: __comment__.",
@ -1162,7 +1163,7 @@
"Enable": "Habilitar",
"Enable_Auto_Away": "Habilitar Auto Ausência",
"Enable_Desktop_Notifications": "Habilitar Notificações Desktop",
"Enable_inquiry_fetch_by_stream": "Habilitar carga de dados de novos inquéritos de Livechat utilizando stream",
"Enable_inquiry_fetch_by_stream": "Habilitar carga de dados de novos inquéritos de omnichannel utilizando stream",
"Enable_Svg_Favicon": "Ativar SVG favicon",
"Enable_two-factor_authentication": "Ativar autenticação de dois fatores",
"Enabled": "Ativado",
@ -1232,7 +1233,7 @@
"error-invalid-file-type": "Tipo de arquivo inválido",
"error-invalid-file-width": "Altura de arquivo inválida",
"error-invalid-from-address": "Você informou um e-mail DE inválido.",
"error-invalid-inquiry": "Inquérito Livechat é inválido",
"error-invalid-inquiry": "Inquérito Omnichannel é inválido",
"error-invalid-integration": "Integração inválida",
"error-invalid-message": "Mensagem inválida",
"error-invalid-method": "Método inválido",
@ -1276,7 +1277,7 @@
"error-room-is-not-closed": "Sala não está fechada",
"error-selected-agent-room-agent-are-same": "O agente selecionado e o agente da sala são iguais",
"error-the-field-is-required": "O campo __field__ é obrigatório.",
"error-this-is-not-a-livechat-room": "Esta não é uma sala de Livechat",
"error-this-is-not-a-livechat-room": "Esta não é uma sala de Omnichannel",
"error-personal-access-tokens-are-current-disabled": "Os tokens de acesso pessoal estão desactivados neste momento",
"error-token-already-exists": "Já existe um token com este nome",
"error-token-does-not-exists": "Token não existe",
@ -1295,8 +1296,8 @@
"Error_loading_pages": "Erro ao carregar páginas",
"Error_RocketChat_requires_oplog_tailing_when_running_in_multiple_instances": "Erro: Rocket.Chat requer oplog tailing quando executado em várias instâncias",
"Error_RocketChat_requires_oplog_tailing_when_running_in_multiple_instances_details": "Certifique-se de que seu MongoDB esteja no modo ReplicaSet e a variável de ambiente MONGO_OPLOG_URL esteja definida corretamente no servidor de aplicativos",
"Error_sending_livechat_transcript": "Erro ao enviar transcript do Livechat",
"Error_sending_livechat_offline_message": "Erro ao enviar mensagem offline do Livechat",
"Error_sending_livechat_transcript": "Erro ao enviar transcript do Omnichannel",
"Error_sending_livechat_offline_message": "Erro ao enviar mensagem offline do Omnichannel",
"Errors_and_Warnings": "Erros e Avisos",
"Esc_to": "Esc para",
"Event_Trigger": "Disparador de eventos",
@ -1509,7 +1510,7 @@
"Hide_counter": "Ocultar contador",
"Hide_flextab": "Esconder barra da direita com clique",
"Hide_Group_Warning": "Tem certeza de que deseja ocultar o grupo \"%s\"?",
"Hide_Livechat_Warning": "Tem certeza de que deseja esconder o livechat com \"%s\"?",
"Hide_Livechat_Warning": "Tem certeza de que deseja esconder o chat com \"%s\"?",
"Hide_Private_Warning": "Tem certeza de que deseja ocultar a conversa com \"%s\"?",
"Hide_roles": "Ocultar funções",
"Hide_room": "Esconder Sala",
@ -1595,7 +1596,7 @@
"Importing_messages": "Importando mensagens",
"Importing_users": "Importando usuários",
"Inclusive": "Inclusive",
"Incoming_Livechats": "Livechats entrantes",
"Incoming_Livechats": "Bate-papos na Fila",
"Incoming_WebHook": "WebHook entrante",
"Include_Offline_Agents": "Incluir agentes offline",
"Industry": "Indústria",
@ -1870,7 +1871,7 @@
"leave-p": "Deixar grupos privados",
"Leave": "Sair",
"Leave_Group_Warning": "Tem certeza de que quer sair do grupo \"%s\"?",
"Leave_Livechat_Warning": "Tem certeza de que deseja deixar o Livechat com \"%s\"?",
"Leave_Livechat_Warning": "Tem certeza de que deseja deixar o chat com \"%s\"?",
"Leave_Private_Warning": "Tem certeza de que quer sair da conversa com \"%s\"?",
"Leave_room": "Sair da sala",
"Leave_Room_Warning": "Tem certeza de que deseja sair da sala \"%s\"?",
@ -1880,34 +1881,37 @@
"List_of_Channels": "Lista de Canais",
"List_of_Direct_Messages": "Lista de Mensagens Diretas",
"Livechat": "Livechat",
"Livechat_agents": "Agentes do Livechat",
"Livechat_agents": "Agentes do Omnichannel",
"Livechat_AllowedDomainsList": "Domínios permitidos em Livechat",
"Livechat_Dashboard": "Painel Livechat",
"Livechat_enabled": "Livechat habilitado",
"Livechat_Appearance": "Aparência do Livechat",
"Livechat_Dashboard": "Painel Omnichannel",
"Livechat_enabled": "Omnichannel habilitado",
"Livechat_Facebook_API_Key": "Chave da API OmniChannel",
"Livechat_Facebook_API_Secret": "Secret da API OmniChannel",
"Livechat_Facebook_Enabled": "Integração do Facebook ativada",
"Livechat_forward_open_chats": "Encaminhar chats abertos",
"Livechat_forward_open_chats_timeout": "Tempo de espera (em segundos) para encaminhas chats",
"Livechat_guest_count": "Contador de visitantes",
"Livechat_Inquiry_Already_Taken": "Inquérito Livechat já realizado",
"Livechat_managers": "Gerentes do Livechat",
"Livechat_offline": "Livechat offline",
"Livechat_online": "Livechat on-line",
"Livechat_offline_message_sent": "Mensagem offline de Livechat enviada",
"Livechat_Queue": "Roleta Livechat",
"Livechat_Inquiry_Already_Taken": "Inquérito Omnichannel já realizado",
"Livechat_Installation": "Instalação do Livechat",
"Livechat_managers": "Gerentes do Omnichannel",
"Livechat_offline": "Omnichannel offline",
"Livechat_online": "Omnichannel on-line",
"Livechat_offline_message_sent": "Mensagem offline de Omnichannel enviada",
"Livechat_Queue": "Fila Omnichannel",
"Livechat_registration_form": "Formulário de Registro",
"Livechat_registration_form_message": "Mensagem do Formulário de Registro",
"Livechat_room_count": "Contador de salas de Livechat",
"Livechat_Routing_Method": "Método de roteamento Livechat",
"Livechat_room_count": "Contador de salas de Omnichannel",
"Livechat_Routing_Method": "Método de roteamento Omnichannel",
"Livechat_Take_Confirm": "Você quer levar esse cliente?",
"Livechat_title": "Título Livechat",
"Livechat_title_color": "Cor de fundo do título do Livechat",
"Livechat_transcript_sent": "Transcrição de Livechat enviada",
"Livechat_transcript_sent": "Transcrição de Omnichannel enviada",
"Livechat_transfer_to_agent": "__from__ transferiu a conversa para __to__",
"Livechat_transfer_to_department": "__from__ transferiu a conversa para o departamento __to__",
"Livechat_transfer_return_to_the_queue": "__from__ retornou a conversa para a fila",
"Livechat_Users": "Usuários Livechat",
"Livechat_Triggers": "Gatilhos de Livechat",
"Livechat_Users": "Usuários Omnichannel",
"LiveStream & Broadcasting": "LiveStream e Broadcasting",
"Livestream_close": "Fechar Livestream",
"Livestream_enabled": "LiveStream Habilitado",
@ -1966,6 +1970,9 @@
"manage-assets_description": "Permissão para gerenciar os recursos do servidor",
"manage-emoji": "Gerenciar Emoji",
"manage-emoji_description": "Permissão para gerenciar o servidor emojis",
"manage-livechat-agents": "Permissão para gerenciar Agentes de Omnichannel",
"manage-livechat-departments": "Permissão para gerenciar Departamentos de Omnichannel",
"manage-livechat-managers": "Permissão para gerenciar Gerentes gents de Omnichannel",
"manage-oauth-apps": "Gerencie aplicativos Oauth",
"manage-oauth-apps_description": "Permissão para gerenciar o servidor Oauth apps",
"manage-sounds": "Gerenciar sons",
@ -2000,7 +2007,7 @@
"Markdown_SupportSchemesForLink_Description": "Lista de protocolos separados por vírgulas",
"Max_length_is": "Tamanho máximo é %s",
"Max_number_incoming_livechats_displayed": "Número máximo de itens exibidos na fila",
"Max_number_incoming_livechats_displayed_description": "(Opcional) Define o número máximo de items exibidos na fila de entrada de Livechats.",
"Max_number_incoming_livechats_displayed_description": "(Opcional) Define o número máximo de items exibidos na fila de espera do Omnichannel.",
"Max_number_of_uses": "Número máximo de usos",
"Media": "meios de comunicação",
"Medium": "Médio",
@ -2258,7 +2265,7 @@
"Open_channel_user_search": "`%s` - Abrir Canal / Pesquisa de usuário",
"Open_conversations": "Conversas Abertas",
"Open_days_of_the_week": "Dias abertos da semana",
"Open_Livechats": "Open Livechats",
"Open_Livechats": "Bate-papos em Andamento",
"Open_your_authentication_app_and_enter_the_code": "Abra seu aplicativo de autenticação e insira o código. Você também pode usar um de seus códigos de backup.",
"Opened": "Aberto",
"Opened_in_a_new_window": "Aberto em nova janela.",
@ -2336,7 +2343,7 @@
"Please_fill_all_the_information": "Por favor, preencha todas as informações",
"Please_fill_name_and_email": "Por favor, preencha nome e e-mail",
"Please_fill_a_token_name": "Por favor, preencha um nome de token válido",
"Please_go_to_the_Administration_page_then_Livechat_Facebook": "Por favor, vá para a página Administração, em seguida, Livechat> Facebook",
"Please_go_to_the_Administration_page_then_Livechat_Facebook": "Por favor, vá para a página Administração, em seguida, Omnichannel > Facebook",
"Please_select_an_user": "Por favor selecione um usuário",
"Please_select_enabled_yes_or_no": "Por favor, selecione uma opção para Ativado",
"Please_wait": "Aguarde",
@ -2415,7 +2422,7 @@
"Purchase_for_free": "Compre de GRAÇA",
"Query": "Query",
"Query_description": "Condições adicionais para determinar para quais usuários enviar e-mail. Usuários não inscritos são automaticamente removidos a partir da consulta. Deve ser um JSON válido. Exemplo: `{\"createdAt\": {\"$gt\": {\"$date\": \"2015-01-01T00: 00: 00.000Z\"}}}`",
"Queue": "Roleta",
"Queue": "Fila",
"quote": "citação",
"Quote": "Citar",
"Random": "Aleatória",
@ -2449,7 +2456,7 @@
"Register_Server_Info": "Use os gateways e proxies pré-configurados fornecidos pela Rocket.Chat Technologies Corp.",
"Register_Server_Registered": "Registre-se para acessar",
"Register_Server_Registered_Push_Notifications": "Gateway de notificações push",
"Register_Server_Registered_Livechat": "Proxy do omnichannel do Livechat",
"Register_Server_Registered_Livechat": "Proxy do omnichannel",
"Register_Server_Registered_OAuth": "Proxy OAuth para rede social",
"Register_Server_Registered_Marketplace": "Apps Marketplace",
"Register_Server_Standalone": "Mantenha-se autônomo, você precisará",
@ -2465,7 +2472,7 @@
"Reload": "Recarregar",
"Reload_Pages": "Atualizar Páginas",
"Remove": "Remover",
"remove-closed-livechat-rooms": "Remover salas fechadas de Livechat",
"remove-closed-livechat-rooms": "Remover salas de Omnichannel fechadas",
"remove-user": "Remover usuário",
"remove-user_description": "Permissão para remover um usuário de uma sala",
"Remove_Admin": "Remover Administrador",
@ -2494,6 +2501,7 @@
"Report_this_message_question_mark": "Denunciar esta mensagem?",
"Reporting": "Relatórios",
"Request_comment_when_closing_conversation": "Solicitar comentário ao encerrar a conversa",
"Request_comment_when_closing_conversation_description": "Se ativado, o agente precisará informar um comentário antes que a conversa seja encerrada.",
"Request_tag_before_closing_chat": "Solicitar tag(s) antes de encerrar a conversa",
"Require_all_tokens": "Exigir todos os tokens",
"Require_any_token": "Exigir qualquer token",
@ -2602,8 +2610,8 @@
"SAML_Custom_Public_Cert": "Conteúdo do Círculo Público",
"Saturday": "sábado",
"Save": "Salvar",
"save-others-livechat-room-info": "Salve outras informações de Sala de Livechat",
"save-others-livechat-room-info_description": "Permissão para salvar informações de outros canais de Livechat",
"save-others-livechat-room-info": "Salve outras informações de sala de Omnichannel",
"save-others-livechat-room-info_description": "Permissão para salvar informações de outros salas de Omnichannel",
"Save_changes": "Salvar alterações",
"Save_Mobile_Bandwidth": "Economizar Banda Móvel",
"Save_to_enable_this_action": "Salvar para habilitar esta ação",
@ -2798,11 +2806,11 @@
"Stats_Total_Connected_Users": "Total de usuários conectados",
"Stats_Total_Channels": "Quantidade de Canais",
"Stats_Total_Direct_Messages": "Total de Salas de Mensagem Direta",
"Stats_Total_Livechat_Rooms": "Total de Salas Livechat",
"Stats_Total_Livechat_Rooms": "Total de Salas Omnichannel",
"Stats_Total_Messages": "Quantidade de Mensagens",
"Stats_Total_Messages_Channel": "Total de mensagens nos canais",
"Stats_Total_Messages_Direct": "Total de mensagens em mensagens diretas",
"Stats_Total_Messages_Livechat": "Mensagens totais em Livechats",
"Stats_Total_Messages_Livechat": "Total de mensagens Omnichannel",
"Stats_Total_Messages_PrivateGroup": "Total de mensagens em grupos privados",
"Stats_Total_Private_Groups": "Quantidade de Grupos Privados",
"Stats_Total_Rooms": "Quantidade de Salas",
@ -2972,7 +2980,7 @@
"Tourism": "Turismo",
"Transcript_Enabled": "Pergunte ao visitante se eles gostariam de uma transcrição após o bate-papo fechado",
"Transcript_message": "Mensagem para mostrar ao perguntar sobre Transcrição",
"Transcript_of_your_livechat_conversation": "Transcrição da sua conversa Livechat.",
"Transcript_of_your_livechat_conversation": "Transcrição da sua conversa Omnichannel.",
"Translate": "Traduzir",
"Translated": "Traduzido",
"Translations": "Traduções",
@ -3186,13 +3194,13 @@
"view-join-code_description": "Permissão para visualizar o código de associação do canal",
"view-joined-room": "Ver sala incorporada",
"view-joined-room_description": "Permissão para ver os canais atualmente associados",
"view-l-room": "Ver salas de Livechat",
"view-l-room_description": "Permissão para ver canais de Livechat",
"view-livechat-analytics": "Ver o Livechat Analytics",
"view-livechat-manager": "Ver o Gerente Livechat",
"view-livechat-manager_description": "Permissão para ver outros gerentes de Livechat",
"view-livechat-rooms": "Ver Salas Livechat",
"view-livechat-rooms_description": "Permissão para ver outros canais de Livechat",
"view-l-room": "Ver salas de Omnichannel",
"view-l-room_description": "Permissão para ver salas de Omnichannel",
"view-livechat-analytics": "Ver o Omnichannel Analytics",
"view-livechat-manager": "Ver o Gerente Omnichannel",
"view-livechat-manager_description": "Permissão para ver outros gerentes de Omnichannel",
"view-livechat-rooms": "Ver Salas de Omnichannel",
"view-livechat-rooms_description": "Permissão para ver outras salas de Omnichannel",
"view-logs": "Ver registros",
"view-logs_description": "Permissão para visualizar os logs do servidor",
"view-other-user-channels": "Ver outros canais do usuário",
@ -3270,15 +3278,15 @@
"yesterday": "ontem",
"You": "Você",
"you_are_in_preview_mode_of": "Esta é uma prévia do canal #<strong>__room_name__</strong>",
"you_are_in_preview_mode_of_incoming_livechat": "Esta é uma pré-visualização desta requisição de Livechat",
"you_are_in_preview_mode_of_incoming_livechat": "Esta é uma pré-visualização desta requisição de bate-papo",
"You_are_logged_in_as": "Vocês está logado como",
"You_are_not_authorized_to_view_this_page": "Você não possui permissão para visualizar esta página.",
"You_can_change_a_different_avatar_too": "Você pode substituir o avatar usado para enviar a partir desta integração.",
"You_can_close_this_window_now": "Você pode fechar esta janela agora.",
"You_can_search_using_RegExp_eg": "Você pode pesquisar usando expressões regulares, por exemplo: <code class='code-colors inline'>/^text$/i</code>",
"You_can_use_an_emoji_as_avatar": "Você também pode usar um emoji como um avatar.",
"You_can_use_webhooks_to_easily_integrate_livechat_with_your_CRM": "Você pode usar webhooks para integrar facilmente o livechat com seu CRM.",
"You_cant_leave_a_livechat_room_Please_use_the_close_button": "Você não pode sair de uma sala de livechat. Por favor, use o botão de fechar sala.",
"You_can_use_webhooks_to_easily_integrate_livechat_with_your_CRM": "Você pode usar webhooks para integrar facilmente o Omnichannel com seu CRM.",
"You_cant_leave_a_livechat_room_Please_use_the_close_button": "Você não pode sair de uma sala de omnichannel. Por favor, use o botão de fechar sala.",
"You_have_been_muted": "Você foi silenciado e não pode falar nesta sala",
"You_have_n_codes_remaining": "Você tem __number__ codes restantes.",
"You_have_not_verified_your_email": "Você ainda não verificou o seu e-mail.",

@ -197,7 +197,7 @@
<symbol id="icon-list" viewBox="0 0 20 20" fill="currentColor">
<path d="M6.7826087,5.75 C6.35038585,5.75 6,5.41421356 6,5 C6,4.58578644 6.35038585,4.25 6.7826087,4.25 L17.2173913,4.25 C17.6496142,4.25 18,4.58578644 18,5 C18,5.41421356 17.6496142,5.75 17.2173913,5.75 L6.7826087,5.75 Z M6.7826087,10.75 C6.35038585,10.75 6,10.4142136 6,10 C6,9.58578644 6.35038585,9.25 6.7826087,9.25 L17.2173913,9.25 C17.6496142,9.25 18,9.58578644 18,10 C18,10.4142136 17.6496142,10.75 17.2173913,10.75 L6.7826087,10.75 Z M6.7826087,15.75 C6.35038585,15.75 6,15.4142136 6,15 C6,14.5857864 6.35038585,14.25 6.7826087,14.25 L17.2173913,14.25 C17.6496142,14.25 18,14.5857864 18,15 C18,15.4142136 17.6496142,15.75 17.2173913,15.75 L6.7826087,15.75 Z M1.995652,15 L1.995652,15 C1.995652,14.5857864 2.33143844,14.25 2.745652,14.25 L3.85434765,14.25 C4.26856121,14.25 4.60434765,14.5857864 4.60434765,15 L4.60434765,15 C4.60434765,15.4142136 4.26856121,15.75 3.85434765,15.75 L2.745652,15.75 C2.33143844,15.75 1.995652,15.4142136 1.995652,15 Z M1.995652,10 L1.995652,10 C1.995652,9.58578644 2.33143844,9.25 2.745652,9.25 L3.85434765,9.25 C4.26856121,9.25 4.60434765,9.58578644 4.60434765,10 L4.60434765,10 C4.60434765,10.4142136 4.26856121,10.75 3.85434765,10.75 L2.745652,10.75 C2.33143844,10.75 1.995652,10.4142136 1.995652,10 Z M1.995652,5 L1.995652,5 C1.995652,4.58578644 2.33143844,4.25 2.745652,4.25 L3.85434765,4.25 C4.26856121,4.25 4.60434765,4.58578644 4.60434765,5 L4.60434765,5 C4.60434765,5.41421356 4.26856121,5.75 3.85434765,5.75 L2.745652,5.75 C2.33143844,5.75 1.995652,5.41421356 1.995652,5 Z"/>
</symbol>
<symbol id="icon-livechat" viewBox="0 0 20 20" fill="currentColor">
<symbol id="icon-omnichannel" viewBox="0 0 20 20" fill="currentColor">
<path d="M16.628,10.954 C16.628,11.33 16.32,11.637 15.942,11.637 C15.565,11.637 15.257,11.33 15.257,10.954 L15.257,9.137 C15.257,8.761 15.565,8.454 15.942,8.454 C16.32,8.454 16.628,8.761 16.628,9.137 L16.628,10.954 Z M10.228,16.637 L9.771,16.637 C9.393,16.637 9.086,16.33 9.086,15.954 C9.086,15.578 9.393,15.272 9.771,15.272 L10.228,15.272 C10.607,15.272 10.914,15.578 10.914,15.954 C10.914,16.33 10.607,16.637 10.228,16.637 Z M4.057,11.637 C3.679,11.637 3.371,11.33 3.371,10.954 L3.371,9.137 C3.371,8.761 3.679,8.454 4.057,8.454 C4.435,8.454 4.742,8.761 4.742,9.137 L4.742,10.954 C4.742,11.33 4.435,11.637 4.057,11.637 Z M15.942,7.091 C15.662,7.091 15.396,7.147 15.152,7.249 C14.667,4.828 12.542,3 10,3 C7.458,3 5.333,4.828 4.847,7.249 C4.604,7.147 4.337,7.091 4.057,7.091 C2.922,7.091 2,8.009 2,9.137 L2,10.954 C2,12.082 2.922,13 4.057,13 C5.151,13 6.04,12.144 6.102,11.071 L6.114,11.071 L6.114,10.954 L6.114,9.137 L6.114,8.301 C6.114,6.13 7.857,4.363 10,4.363 C12.142,4.363 13.885,6.13 13.885,8.301 L13.885,9.137 L13.885,10.954 L13.885,11.995 C13.885,13.345 13.218,14.55 12.156,15.265 C11.87,14.476 11.118,13.909 10.228,13.909 L9.771,13.909 C8.637,13.909 7.714,14.826 7.714,15.954 C7.714,17.082 8.637,18 9.771,18 L10.228,18 C11.029,18 11.717,17.538 12.057,16.872 C13.729,16.159 14.902,14.645 15.189,12.853 C15.423,12.945 15.676,13 15.942,13 C17.077,13 18,12.082 18,10.954 L18,9.137 C18,8.009 17.077,7.091 15.942,7.091 Z"/>
</symbol>
<symbol id="icon-loading" viewBox="0 0 20 20" fill="currentColor">

Before

Width:  |  Height:  |  Size: 205 KiB

After

Width:  |  Height:  |  Size: 205 KiB

File diff suppressed because one or more lines are too long

@ -173,4 +173,5 @@ import './v172';
import './v173';
import './v174';
import './v175';
import './v176';
import './xrun';

@ -0,0 +1,14 @@
import {
Migrations,
} from '../../../app/migrations';
import {
Settings,
} from '../../../app/models';
Migrations.add({
version: 176,
up() {
Settings.remove({ _id: 'Livechat', type: 'group' });
},
});
Loading…
Cancel
Save