mirror of
https://github.com/bringout/oca-ocb-mail.git
synced 2026-04-23 07:42:06 +02:00
Initial commit: Mail packages
This commit is contained in:
commit
4e53507711
1948 changed files with 751201 additions and 0 deletions
|
|
@ -0,0 +1,4 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
from . import controllers
|
||||
from . import models
|
||||
from . import report
|
||||
227
odoo-bringout-oca-ocb-im_livechat/im_livechat/__manifest__.py
Normal file
227
odoo-bringout-oca-ocb-im_livechat/im_livechat/__manifest__.py
Normal file
|
|
@ -0,0 +1,227 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
{
|
||||
'name': 'Live Chat',
|
||||
'version': '1.0',
|
||||
'sequence': 210,
|
||||
'summary': 'Chat with your website visitors',
|
||||
'category': 'Website/Live Chat',
|
||||
'website': 'https://www.odoo.com/app/live-chat',
|
||||
'description':
|
||||
"""
|
||||
Live Chat Support
|
||||
==========================
|
||||
|
||||
Allow to drop instant messaging widgets on any web page that will communicate
|
||||
with the current server and dispatch visitors request amongst several live
|
||||
chat operators.
|
||||
Help your customers with this chat, and analyse their feedback.
|
||||
|
||||
""",
|
||||
'data': [
|
||||
"security/im_livechat_channel_security.xml",
|
||||
"security/ir.model.access.csv",
|
||||
"data/mail_shortcode_data.xml",
|
||||
"data/mail_templates.xml",
|
||||
"data/im_livechat_channel_data.xml",
|
||||
"data/im_livechat_chatbot_data.xml",
|
||||
'data/digest_data.xml',
|
||||
'views/chatbot_script_answer_views.xml',
|
||||
'views/chatbot_script_step_views.xml',
|
||||
'views/chatbot_script_views.xml',
|
||||
"views/rating_rating_views.xml",
|
||||
"views/mail_channel_views.xml",
|
||||
"views/im_livechat_channel_views.xml",
|
||||
"views/im_livechat_channel_templates.xml",
|
||||
"views/im_livechat_chatbot_templates.xml",
|
||||
"views/res_users_views.xml",
|
||||
"views/digest_views.xml",
|
||||
"report/im_livechat_report_channel_views.xml",
|
||||
"report/im_livechat_report_operator_views.xml"
|
||||
],
|
||||
'demo': [
|
||||
"data/im_livechat_channel_demo.xml",
|
||||
'data/mail_shortcode_demo.xml',
|
||||
],
|
||||
'depends': ["mail", "rating", "digest", "utm"],
|
||||
'installable': True,
|
||||
'application': True,
|
||||
'assets': {
|
||||
'mail.assets_discuss_public': [
|
||||
'im_livechat/static/src/components/*/*',
|
||||
],
|
||||
'web.assets_frontend': [
|
||||
('include', 'im_livechat.assets_public_livechat'),
|
||||
'im_livechat/static/src/public/main.js',
|
||||
'im_livechat/static/src/services/*.js',
|
||||
'im_livechat/static/src/legacy/public_livechat_chatbot.js',
|
||||
'im_livechat/static/src/legacy/public_livechat.scss',
|
||||
'im_livechat/static/src/legacy/public_livechat_chatbot.scss',
|
||||
'mail/static/src/utils/*.js',
|
||||
'mail/static/src/js/utils.js',
|
||||
'mail/static/src/component_hooks/*.js',
|
||||
'mail/static/src/services/messaging_service.js',
|
||||
],
|
||||
'web.assets_backend': [
|
||||
'im_livechat/static/src/js/colors_reset_button/*',
|
||||
'im_livechat/static/src/js/im_livechat_chatbot_steps_one2many.js',
|
||||
'im_livechat/static/src/js/im_livechat_chatbot_script_answers_m2m.js',
|
||||
'im_livechat/static/src/components/*/*.js',
|
||||
'im_livechat/static/src/scss/im_livechat_history.scss',
|
||||
'im_livechat/static/src/scss/im_livechat_form.scss',
|
||||
'im_livechat/static/src/components/*/*.xml',
|
||||
],
|
||||
'web.tests_assets': [
|
||||
'im_livechat/static/tests/helpers/**/*.js',
|
||||
],
|
||||
'web.qunit_suite_tests': [
|
||||
'im_livechat/static/tests/qunit_suite_tests/components/**/*.js',
|
||||
],
|
||||
'web.assets_tests': [
|
||||
'im_livechat/static/tests/tours/**/*',
|
||||
],
|
||||
'mail.assets_messaging': [
|
||||
'im_livechat/static/src/models/*.js',
|
||||
],
|
||||
'im_livechat.assets_public_livechat': [
|
||||
('include', 'mail.assets_core_messaging'),
|
||||
'im_livechat/static/src/legacy/models/*',
|
||||
'im_livechat/static/src/legacy/widgets/*',
|
||||
'im_livechat/static/src/legacy/widgets/*/*',
|
||||
'im_livechat/static/src/public_models/*.js',
|
||||
],
|
||||
# Bundle of External Librairies of the Livechat (Odoo + required modules)
|
||||
'im_livechat.external_lib': [
|
||||
# Momentjs
|
||||
'web/static/lib/moment/moment.js',
|
||||
'web/static/lib/luxon/luxon.js',
|
||||
# Odoo minimal lib
|
||||
'web/static/lib/underscore/underscore.js',
|
||||
'web/static/lib/underscore.string/lib/underscore.string.js',
|
||||
# jQuery
|
||||
'web/static/lib/jquery/jquery.js',
|
||||
'web/static/lib/jquery.ui/jquery-ui.js',
|
||||
'web/static/lib/jquery/jquery.browser.js',
|
||||
'web/static/lib/jquery.ba-bbq/jquery.ba-bbq.js',
|
||||
# Qweb2 lib
|
||||
'web/static/lib/qweb/qweb2.js',
|
||||
# Odoo JS Framework
|
||||
'web/static/src/legacy/js/promise_extension.js',
|
||||
'web/static/src/boot.js',
|
||||
'web/static/lib/owl/owl.js',
|
||||
'web/static/lib/owl/odoo_module.js',
|
||||
'web/static/src/owl2_compatibility/*.js',
|
||||
'web/static/src/legacy/legacy_component.js',
|
||||
'web/static/src/core/browser/browser.js',
|
||||
'web/static/src/core/browser/feature_detection.js',
|
||||
'web/static/src/core/dialog/dialog.js',
|
||||
'web/static/src/core/errors/error_dialogs.js',
|
||||
'web/static/src/core/effects/**/*.js',
|
||||
'web/static/src/core/hotkeys/hotkey_service.js',
|
||||
'web/static/src/core/hotkeys/hotkey_hook.js',
|
||||
'web/static/src/core/l10n/dates.js',
|
||||
'web/static/src/core/l10n/localization.js',
|
||||
'web/static/src/core/l10n/localization_service.js',
|
||||
'web/static/src/core/l10n/translation.js',
|
||||
'web/static/src/core/main_components_container.js',
|
||||
'web/static/src/core/network/rpc_service.js',
|
||||
'web/static/src/core/assets.js',
|
||||
'web/static/src/core/notifications/notification.js',
|
||||
'web/static/src/core/notifications/notification_container.js',
|
||||
'web/static/src/core/notifications/notification_service.js',
|
||||
'web/static/src/core/registry.js',
|
||||
'web/static/src/core/transition.js',
|
||||
'web/static/src/core/ui/block_ui.js',
|
||||
'web/static/src/core/ui/ui_service.js',
|
||||
'web/static/src/core/user_service.js',
|
||||
'web/static/src/core/utils/components.js',
|
||||
'web/static/src/core/utils/functions.js',
|
||||
'web/static/src/core/utils/hooks.js',
|
||||
'web/static/src/core/utils/numbers.js',
|
||||
'web/static/src/core/utils/strings.js',
|
||||
'web/static/src/core/utils/timing.js',
|
||||
'web/static/src/core/utils/ui.js',
|
||||
'web/static/src/env.js',
|
||||
'web/static/src/legacy/utils.js',
|
||||
'web/static/src/legacy/js/owl_compatibility.js',
|
||||
'web/static/src/legacy/js/libs/download.js',
|
||||
'web/static/src/legacy/js/libs/content-disposition.js',
|
||||
'web/static/src/legacy/js/libs/pdfjs.js',
|
||||
'web/static/src/legacy/js/services/config.js',
|
||||
'web/static/src/legacy/js/core/abstract_service.js',
|
||||
'web/static/src/legacy/js/core/class.js',
|
||||
'web/static/src/legacy/js/core/collections.js',
|
||||
'web/static/src/legacy/js/core/translation.js',
|
||||
'web/static/src/legacy/js/core/ajax.js',
|
||||
'im_livechat/static/src/js/ajax_external.js',
|
||||
'web/static/src/legacy/js/core/time.js',
|
||||
'web/static/src/legacy/js/core/mixins.js',
|
||||
'web/static/src/legacy/js/core/service_mixins.js',
|
||||
'web/static/src/legacy/js/core/rpc.js',
|
||||
'web/static/src/legacy/js/core/widget.js',
|
||||
'web/static/src/legacy/js/core/registry.js',
|
||||
'web/static/src/session.js',
|
||||
'web/static/src/legacy/js/core/session.js',
|
||||
'web/static/src/legacy/js/core/concurrency.js',
|
||||
'web/static/src/legacy/js/core/cookie_utils.js',
|
||||
'web/static/src/legacy/js/core/utils.js',
|
||||
'web/static/src/legacy/js/core/minimal_dom.js',
|
||||
'web/static/src/legacy/js/core/dom.js',
|
||||
'web/static/src/legacy/js/core/qweb.js',
|
||||
'web/static/src/legacy/js/core/bus.js',
|
||||
'web/static/src/legacy/js/services/core.js',
|
||||
'web/static/src/legacy/js/core/local_storage.js',
|
||||
'web/static/src/legacy/js/core/ram_storage.js',
|
||||
'web/static/src/legacy/js/core/abstract_storage_service.js',
|
||||
'web/static/src/legacy/js/common_env.js',
|
||||
'web/static/src/legacy/js/public/lazyloader.js',
|
||||
'web/static/src/legacy/js/public/public_env.js',
|
||||
'web/static/src/legacy/js/public/public_root.js',
|
||||
'web/static/src/legacy/js/public/public_root_instance.js',
|
||||
'web/static/src/legacy/js/public/public_widget.js',
|
||||
'web/static/src/legacy/js/services/ajax_service.js',
|
||||
'web/static/src/legacy/js/services/local_storage_service.js',
|
||||
# Bus, Mail, Livechat
|
||||
'bus/static/src/im_status_service.js',
|
||||
'bus/static/src/multi_tab_service.js',
|
||||
'bus/static/src/services/bus_service.js',
|
||||
'bus/static/src/services/legacy/make_bus_service_to_legacy_env.js',
|
||||
'bus/static/src/workers/websocket_worker.js',
|
||||
'bus/static/src/workers/websocket_worker_utils.js',
|
||||
'mail/static/src/js/utils.js',
|
||||
'im_livechat/static/src/legacy/public_livechat_chatbot.js',
|
||||
|
||||
('include', 'web._assets_helpers'),
|
||||
|
||||
'web/static/src/scss/pre_variables.scss',
|
||||
'web/static/lib/bootstrap/scss/_variables.scss',
|
||||
'im_livechat/static/src/scss/im_livechat_bootstrap.scss',
|
||||
'im_livechat/static/src/legacy/public_livechat.scss',
|
||||
'im_livechat/static/src/legacy/public_livechat_chatbot.scss',
|
||||
|
||||
|
||||
'web/static/src/core/utils/transitions.scss',
|
||||
|
||||
'mail/static/src/utils/*.js',
|
||||
'mail/static/src/js/emojis.js',
|
||||
'mail/static/src/component_hooks/*.js',
|
||||
('include', 'im_livechat.assets_public_livechat'),
|
||||
'mail/static/src/services/messaging_service.js',
|
||||
# Framework JS
|
||||
'bus/static/src/*.js',
|
||||
'bus/static/src/services/presence_service.js',
|
||||
'web/static/lib/luxon/luxon.js',
|
||||
'web/static/src/core/**/*',
|
||||
# FIXME: debug menu currently depends on webclient, once it doesn't we don't need to remove the contents of the debug folder
|
||||
('remove', 'web/static/src/core/debug/**/*'),
|
||||
'web/static/src/env.js',
|
||||
'web/static/src/legacy/js/core/dialog.js',
|
||||
'web/static/src/legacy/js/core/owl_dialog.js',
|
||||
'web/static/src/legacy/js/core/misc.js',
|
||||
'web/static/src/legacy/js/fields/field_utils.js',
|
||||
|
||||
'im_livechat/static/src/public/*.js',
|
||||
'im_livechat/static/src/services/*.js',
|
||||
]
|
||||
},
|
||||
'license': 'LGPL-3',
|
||||
}
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import chatbot
|
||||
from . import main
|
||||
|
|
@ -0,0 +1,109 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import http
|
||||
from odoo.http import request
|
||||
from odoo.tools import get_lang, is_html_empty, plaintext2html
|
||||
|
||||
|
||||
class LivechatChatbotScriptController(http.Controller):
|
||||
@http.route('/chatbot/restart', type="json", auth="public", cors="*")
|
||||
def chatbot_restart(self, channel_uuid, chatbot_script_id):
|
||||
chatbot_language = self._get_chatbot_language()
|
||||
mail_channel = request.env['mail.channel'].sudo().with_context(lang=chatbot_language).search([('uuid', '=', channel_uuid)], limit=1)
|
||||
chatbot = request.env['chatbot.script'].browse(chatbot_script_id)
|
||||
if not mail_channel or not chatbot.exists():
|
||||
return None
|
||||
|
||||
return mail_channel._chatbot_restart(chatbot).message_format()[0]
|
||||
|
||||
@http.route('/chatbot/post_welcome_steps', type="json", auth="public", cors="*")
|
||||
def chatbot_post_welcome_steps(self, channel_uuid, chatbot_script_id):
|
||||
mail_channel = request.env['mail.channel'].sudo().search([('uuid', '=', channel_uuid)], limit=1)
|
||||
chatbot_language = self._get_chatbot_language()
|
||||
chatbot = request.env['chatbot.script'].sudo().with_context(lang=chatbot_language).browse(chatbot_script_id)
|
||||
if not mail_channel or not chatbot.exists():
|
||||
return None
|
||||
|
||||
return chatbot._post_welcome_steps(mail_channel).message_format()
|
||||
|
||||
@http.route('/chatbot/answer/save', type="json", auth="public", cors="*")
|
||||
def chatbot_save_answer(self, channel_uuid, message_id, selected_answer_id):
|
||||
mail_channel = request.env['mail.channel'].sudo().search([('uuid', '=', channel_uuid)], limit=1)
|
||||
chatbot_message = request.env['chatbot.message'].sudo().search([
|
||||
('mail_message_id', '=', message_id),
|
||||
('mail_channel_id', '=', mail_channel.id),
|
||||
], limit=1)
|
||||
selected_answer = request.env['chatbot.script.answer'].sudo().browse(selected_answer_id)
|
||||
|
||||
if not mail_channel or not chatbot_message or not selected_answer.exists():
|
||||
return
|
||||
|
||||
if selected_answer in chatbot_message.script_step_id.answer_ids:
|
||||
chatbot_message.write({'user_script_answer_id': selected_answer_id})
|
||||
|
||||
@http.route('/chatbot/step/trigger', type="json", auth="public", cors="*")
|
||||
def chatbot_trigger_step(self, channel_uuid, chatbot_script_id=None):
|
||||
chatbot_language = self._get_chatbot_language()
|
||||
mail_channel = request.env['mail.channel'].sudo().with_context(lang=chatbot_language).search([('uuid', '=', channel_uuid)], limit=1)
|
||||
if not mail_channel:
|
||||
return None
|
||||
|
||||
next_step = False
|
||||
if mail_channel.chatbot_current_step_id:
|
||||
chatbot = mail_channel.chatbot_current_step_id.chatbot_script_id
|
||||
user_messages = mail_channel.message_ids.filtered(
|
||||
lambda message: message.author_id != chatbot.operator_partner_id
|
||||
)
|
||||
user_answer = request.env['mail.message'].sudo()
|
||||
if user_messages:
|
||||
user_answer = user_messages.sorted(lambda message: message.id)[-1]
|
||||
next_step = mail_channel.chatbot_current_step_id._process_answer(mail_channel, user_answer.body)
|
||||
elif chatbot_script_id: # when restarting, we don't have a "current step" -> set "next" as first step of the script
|
||||
chatbot = request.env['chatbot.script'].sudo().with_context(lang=chatbot_language).browse(chatbot_script_id)
|
||||
if chatbot.exists():
|
||||
next_step = chatbot.script_step_ids[:1]
|
||||
|
||||
if not next_step:
|
||||
return None
|
||||
|
||||
posted_message = next_step._process_step(mail_channel)
|
||||
return {
|
||||
'chatbot_posted_message': posted_message.message_format()[0] if posted_message else None,
|
||||
'chatbot_step': {
|
||||
'chatbot_operator_found': next_step.step_type == 'forward_operator' and len(
|
||||
mail_channel.channel_member_ids) > 2,
|
||||
'chatbot_script_step_id': next_step.id,
|
||||
'chatbot_step_answers': [{
|
||||
'id': answer.id,
|
||||
'label': answer.name,
|
||||
'redirect_link': answer.redirect_link,
|
||||
} for answer in next_step.answer_ids],
|
||||
'chatbot_step_is_last': next_step._is_last_step(mail_channel),
|
||||
'chatbot_step_message': plaintext2html(next_step.message) if not is_html_empty(next_step.message) else False,
|
||||
'chatbot_step_type': next_step.step_type,
|
||||
}
|
||||
}
|
||||
|
||||
@http.route('/chatbot/step/validate_email', type="json", auth="public", cors="*")
|
||||
def chatbot_validate_email(self, channel_uuid):
|
||||
mail_channel = request.env['mail.channel'].sudo().search([('uuid', '=', channel_uuid)], limit=1)
|
||||
if not mail_channel or not mail_channel.chatbot_current_step_id:
|
||||
return None
|
||||
|
||||
chatbot = mail_channel.chatbot_current_step_id.chatbot_script_id
|
||||
user_messages = mail_channel.message_ids.filtered(
|
||||
lambda message: message.author_id != chatbot.operator_partner_id
|
||||
)
|
||||
|
||||
if user_messages:
|
||||
user_answer = user_messages.sorted(lambda message: message.id)[-1]
|
||||
result = chatbot._validate_email(user_answer.body, mail_channel)
|
||||
|
||||
if result['posted_message']:
|
||||
result['posted_message'] = result['posted_message'].message_format()[0]
|
||||
|
||||
return result
|
||||
|
||||
def _get_chatbot_language(self):
|
||||
return request.httprequest.cookies.get('frontend_lang', request.env.user.lang or get_lang(request.env).code)
|
||||
|
|
@ -0,0 +1,218 @@
|
|||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from werkzeug.exceptions import NotFound
|
||||
|
||||
from odoo import http, tools, _
|
||||
from odoo.http import request
|
||||
from odoo.addons.base.models.assetsbundle import AssetsBundle
|
||||
|
||||
|
||||
class LivechatController(http.Controller):
|
||||
|
||||
# Note: the `cors` attribute on many routes is meant to allow the livechat
|
||||
# to be embedded in an external website.
|
||||
|
||||
@http.route('/im_livechat/external_lib.<any(css,js):ext>', type='http', auth='public')
|
||||
def livechat_lib(self, ext, **kwargs):
|
||||
# _get_asset return the bundle html code (script and link list) but we want to use the attachment content
|
||||
bundle = 'im_livechat.external_lib'
|
||||
files, _ = request.env["ir.qweb"]._get_asset_content(bundle)
|
||||
asset = AssetsBundle(bundle, files)
|
||||
|
||||
mock_attachment = getattr(asset, ext)()
|
||||
if isinstance(mock_attachment, list): # suppose that CSS asset will not required to be split in pages
|
||||
mock_attachment = mock_attachment[0]
|
||||
|
||||
stream = request.env['ir.binary']._get_stream_from(mock_attachment)
|
||||
return stream.get_response()
|
||||
|
||||
@http.route('/im_livechat/load_templates', type='json', auth='none', cors="*")
|
||||
def load_templates(self, **kwargs):
|
||||
templates = self._livechat_templates_get()
|
||||
return [tools.file_open(tmpl, 'rb').read() for tmpl in templates]
|
||||
|
||||
def _livechat_templates_get(self):
|
||||
return [
|
||||
'im_livechat/static/src/legacy/widgets/feedback/feedback.xml',
|
||||
'im_livechat/static/src/legacy/widgets/public_livechat_window/public_livechat_window.xml',
|
||||
'im_livechat/static/src/legacy/widgets/public_livechat_view/public_livechat_view.xml',
|
||||
'im_livechat/static/src/legacy/public_livechat_chatbot.xml',
|
||||
]
|
||||
|
||||
@http.route('/im_livechat/support/<int:channel_id>', type='http', auth='public')
|
||||
def support_page(self, channel_id, **kwargs):
|
||||
channel = request.env['im_livechat.channel'].sudo().browse(channel_id)
|
||||
return request.render('im_livechat.support_page', {'channel': channel})
|
||||
|
||||
@http.route('/im_livechat/loader/<int:channel_id>', type='http', auth='public')
|
||||
def loader(self, channel_id, **kwargs):
|
||||
username = kwargs.get("username", _("Visitor"))
|
||||
channel = request.env['im_livechat.channel'].sudo().browse(channel_id)
|
||||
info = channel.get_livechat_info(username=username)
|
||||
return request.render('im_livechat.loader', {'info': info}, headers=[('Content-Type', 'application/javascript')])
|
||||
|
||||
@http.route('/im_livechat/init', type='json', auth="public", cors="*")
|
||||
def livechat_init(self, channel_id):
|
||||
operator_available = len(request.env['im_livechat.channel'].sudo().browse(channel_id)._get_available_users())
|
||||
rule = {}
|
||||
# find the country from the request
|
||||
country_id = False
|
||||
country_code = request.geoip.get('country_code')
|
||||
if country_code:
|
||||
country_id = request.env['res.country'].sudo().search([('code', '=', country_code)], limit=1).id
|
||||
# extract url
|
||||
url = request.httprequest.headers.get('Referer')
|
||||
# find the first matching rule for the given country and url
|
||||
matching_rule = request.env['im_livechat.channel.rule'].sudo().match_rule(channel_id, url, country_id)
|
||||
if matching_rule and (not matching_rule.chatbot_script_id or matching_rule.chatbot_script_id.script_step_ids):
|
||||
frontend_lang = request.httprequest.cookies.get('frontend_lang', request.env.user.lang or 'en_US')
|
||||
matching_rule = matching_rule.with_context(lang=frontend_lang)
|
||||
rule = {
|
||||
'action': matching_rule.action,
|
||||
'auto_popup_timer': matching_rule.auto_popup_timer,
|
||||
'regex_url': matching_rule.regex_url,
|
||||
}
|
||||
if matching_rule.chatbot_script_id.active and (not matching_rule.chatbot_only_if_no_operator or
|
||||
(not operator_available and matching_rule.chatbot_only_if_no_operator)) and matching_rule.chatbot_script_id.script_step_ids:
|
||||
chatbot_script = matching_rule.chatbot_script_id
|
||||
rule.update({'chatbot': chatbot_script._format_for_frontend()})
|
||||
return {
|
||||
'available_for_me': (rule and rule.get('chatbot'))
|
||||
or operator_available and (not rule or rule['action'] != 'hide_button'),
|
||||
'rule': rule,
|
||||
}
|
||||
|
||||
@http.route('/im_livechat/operator/<int:operator_id>/avatar',
|
||||
type='http', auth="public", cors="*")
|
||||
def livechat_operator_get_avatar(self, operator_id):
|
||||
""" Custom route allowing to retrieve an operator's avatar.
|
||||
|
||||
This is done to bypass more complicated rules, notably 'website_published' when the website
|
||||
module is installed.
|
||||
|
||||
Here, we assume that if you are a member of at least one im_livechat.channel, then it's ok
|
||||
to make your avatar publicly available.
|
||||
|
||||
We also make the chatbot operator avatars publicly available. """
|
||||
|
||||
is_livechat_member = False
|
||||
operator = request.env['res.partner'].sudo().browse(operator_id)
|
||||
if operator.exists():
|
||||
is_livechat_member = bool(request.env['im_livechat.channel'].sudo().search_count([
|
||||
('user_ids', 'in', operator.user_ids.ids)
|
||||
]))
|
||||
|
||||
if not is_livechat_member:
|
||||
# we don't put chatbot operators as livechat members (because we don't have a user_id for them)
|
||||
is_livechat_member = bool(request.env['chatbot.script'].sudo().search_count([
|
||||
('operator_partner_id', 'in', operator.ids)
|
||||
]))
|
||||
|
||||
return request.env['ir.binary']._get_image_stream_from(
|
||||
operator if is_livechat_member else request.env['res.partner'],
|
||||
field_name='avatar_128',
|
||||
placeholder='mail/static/src/img/smiley/avatar.jpg',
|
||||
).get_response()
|
||||
|
||||
@http.route('/im_livechat/get_session', type="json", auth='public', cors="*")
|
||||
def get_session(self, channel_id, anonymous_name, previous_operator_id=None, chatbot_script_id=None, persisted=True, **kwargs):
|
||||
user_id = None
|
||||
country_id = None
|
||||
# if the user is identifiy (eg: portal user on the frontend), don't use the anonymous name. The user will be added to session.
|
||||
if request.session.uid:
|
||||
user_id = request.env.user.id
|
||||
country_id = request.env.user.country_id.id
|
||||
else:
|
||||
# if geoip, add the country name to the anonymous name
|
||||
if request.geoip:
|
||||
# get the country of the anonymous person, if any
|
||||
country_code = request.geoip.get('country_code', "")
|
||||
country = request.env['res.country'].sudo().search([('code', '=', country_code)], limit=1) if country_code else None
|
||||
if country:
|
||||
country_id = country.id
|
||||
|
||||
if previous_operator_id:
|
||||
previous_operator_id = int(previous_operator_id)
|
||||
|
||||
chatbot_script = False
|
||||
if chatbot_script_id:
|
||||
frontend_lang = request.httprequest.cookies.get('frontend_lang', request.env.user.lang or 'en_US')
|
||||
chatbot_script = request.env['chatbot.script'].sudo().with_context(lang=frontend_lang).browse(chatbot_script_id)
|
||||
|
||||
return request.env["im_livechat.channel"].with_context(lang=False).sudo().browse(channel_id)._open_livechat_mail_channel(
|
||||
anonymous_name,
|
||||
previous_operator_id=previous_operator_id,
|
||||
chatbot_script=chatbot_script,
|
||||
user_id=user_id,
|
||||
country_id=country_id,
|
||||
persisted=persisted
|
||||
)
|
||||
|
||||
@http.route('/im_livechat/feedback', type='json', auth='public', cors="*")
|
||||
def feedback(self, uuid, rate, reason=None, **kwargs):
|
||||
channel = request.env['mail.channel'].sudo().search([('uuid', '=', uuid)], limit=1)
|
||||
if channel:
|
||||
# limit the creation : only ONE rating per session
|
||||
values = {
|
||||
'rating': rate,
|
||||
'consumed': True,
|
||||
'feedback': reason,
|
||||
'is_internal': False,
|
||||
}
|
||||
if not channel.rating_ids:
|
||||
values.update({
|
||||
'res_id': channel.id,
|
||||
'res_model_id': request.env['ir.model']._get_id('mail.channel'),
|
||||
})
|
||||
# find the partner (operator)
|
||||
if channel.channel_partner_ids:
|
||||
values['rated_partner_id'] = channel.channel_partner_ids[0].id
|
||||
# if logged in user, set its partner on rating
|
||||
values['partner_id'] = request.env.user.partner_id.id if request.session.uid else False
|
||||
# create the rating
|
||||
rating = request.env['rating.rating'].sudo().create(values)
|
||||
else:
|
||||
rating = channel.rating_ids[0]
|
||||
rating.write(values)
|
||||
return rating.id
|
||||
return False
|
||||
|
||||
@http.route('/im_livechat/history', type="json", auth="public", cors="*")
|
||||
def history_pages(self, pid, channel_uuid, page_history=None):
|
||||
partner_ids = (pid, request.env.user.partner_id.id)
|
||||
channel = request.env['mail.channel'].sudo().search([('uuid', '=', channel_uuid), ('channel_partner_ids', 'in', partner_ids)])
|
||||
if channel:
|
||||
channel._send_history_message(pid, page_history)
|
||||
return True
|
||||
|
||||
@http.route('/im_livechat/notify_typing', type='json', auth='public', cors="*")
|
||||
def notify_typing(self, uuid, is_typing):
|
||||
""" Broadcast the typing notification of the website user to other channel members
|
||||
:param uuid: (string) the UUID of the livechat channel
|
||||
:param is_typing: (boolean) tells whether the website user is typing or not.
|
||||
"""
|
||||
channel = request.env['mail.channel'].sudo().search([('uuid', '=', uuid)])
|
||||
if not channel:
|
||||
raise NotFound()
|
||||
channel_member = channel.env['mail.channel.member'].search([('channel_id', '=', channel.id), ('partner_id', '=', request.env.user.partner_id.id)])
|
||||
if not channel_member:
|
||||
raise NotFound()
|
||||
channel_member._notify_typing(is_typing=is_typing)
|
||||
|
||||
@http.route('/im_livechat/email_livechat_transcript', type='json', auth='public', cors="*")
|
||||
def email_livechat_transcript(self, uuid, email):
|
||||
channel = request.env['mail.channel'].sudo().search([
|
||||
('channel_type', '=', 'livechat'),
|
||||
('uuid', '=', uuid)], limit=1)
|
||||
if channel:
|
||||
channel._email_livechat_transcript(email)
|
||||
|
||||
@http.route('/im_livechat/visitor_leave_session', type='json', auth="public")
|
||||
def visitor_leave_session(self, uuid):
|
||||
""" Called when the livechat visitor leaves the conversation.
|
||||
This will clean the chat request and warn the operator that the conversation is over.
|
||||
This allows also to re-send a new chat request to the visitor, as while the visitor is
|
||||
in conversation with an operator, it's not possible to send the visitor a chat request."""
|
||||
mail_channel = request.env['mail.channel'].sudo().search([('uuid', '=', uuid)])
|
||||
if mail_channel:
|
||||
mail_channel._close_livechat_session()
|
||||
|
|
@ -0,0 +1,25 @@
|
|||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<odoo>
|
||||
<data noupdate="1">
|
||||
<record id="digest.digest_digest_default" model="digest.digest">
|
||||
<field name="kpi_livechat_rating">True</field>
|
||||
<field name="kpi_livechat_conversations">True</field>
|
||||
<field name="kpi_livechat_response">True</field>
|
||||
</record>
|
||||
</data>
|
||||
|
||||
<data>
|
||||
<record id="digest_tip_im_livechat_0" model="digest.tip">
|
||||
<field name="name">Tip: Use canned responses to chat faster</field>
|
||||
<field name="sequence">2900</field>
|
||||
<field name="group_id" ref="im_livechat.im_livechat_group_manager" />
|
||||
<field name="tip_description" type="html">
|
||||
<div>
|
||||
<p class="tip_title">Tip: Use canned responses to chat faster</p>
|
||||
<p class="tip_content">Use canned responses to define templates of messages in the livechat app. To load a canned response, start your sentence with ':' and select the template.</p>
|
||||
<img src="https://download.odoocdn.com/digests/im_livechat/static/src/img/canned-responses.gif" class="illustration_border" />
|
||||
</div>
|
||||
</field>
|
||||
</record>
|
||||
</data>
|
||||
</odoo>
|
||||
|
|
@ -0,0 +1,9 @@
|
|||
<?xml version="1.0"?>
|
||||
<odoo>
|
||||
<data noupdate="1">
|
||||
<record id="im_livechat_channel_data" model="im_livechat.channel">
|
||||
<field name="name">YourWebsite.com</field>
|
||||
<field name="default_message">Hello, how may I help you?</field>
|
||||
</record>
|
||||
</data>
|
||||
</odoo>
|
||||
|
|
@ -0,0 +1,502 @@
|
|||
<?xml version="1.0"?>
|
||||
<odoo>
|
||||
<data>
|
||||
<record id="im_livechat_channel_rule_demo" model="im_livechat.channel.rule">
|
||||
<field name="regex_url">/im_livechat/</field>
|
||||
<field name="action">auto_popup</field>
|
||||
<field name="auto_popup_timer">3</field>
|
||||
<field name="channel_id" ref="im_livechat_channel_data"/>
|
||||
</record>
|
||||
<record id="im_livechat.im_livechat_group_user" model="res.groups">
|
||||
<field eval="[(4, ref('base.user_demo'))]" name="users"/>
|
||||
</record>
|
||||
<record id="im_livechat_channel_data" model="im_livechat.channel">
|
||||
<field eval="[(4, ref('base.user_admin'))]" name="user_ids"/>
|
||||
</record>
|
||||
<record id="im_livechat_channel_data" model="im_livechat.channel">
|
||||
<field eval="[(4, ref('base.user_demo'))]" name="user_ids"/>
|
||||
</record>
|
||||
<!-- Session 0 -->
|
||||
<record id="im_livechat_mail_channel_data_0" model="mail.channel">
|
||||
<field name="channel_type">livechat</field>
|
||||
<field name="livechat_channel_id" ref="im_livechat_channel_data"/>
|
||||
<field name="livechat_operator_id" ref="base.partner_admin"/>
|
||||
<field name="name">Visitor #234, Mitchell Admin</field>
|
||||
<field name="anonymous_name">Visitor #234, Mitchell Admin</field>
|
||||
</record>
|
||||
<record id="im_livechat_rating_1" model="rating.rating">
|
||||
<field name="access_token">LIVECHAT_1</field>
|
||||
<field name="res_id" ref="im_livechat.im_livechat_mail_channel_data_0"/>
|
||||
<field name="res_model_id" ref="mail.model_mail_channel"/>
|
||||
<field name="rated_partner_id" ref="base.partner_admin"/>
|
||||
<field eval="False" name="partner_id"/>
|
||||
<field eval="True" name="consumed"/>
|
||||
</record>
|
||||
<function model="mail.channel" name="rating_apply"
|
||||
eval="([ref('im_livechat.im_livechat_mail_channel_data_0')], 5, 'LIVECHAT_1', None, 'Good Job')"/>
|
||||
<record id="im_livechat_mail_message_5_data" model="mail.message">
|
||||
<field name="model">mail.channel</field>
|
||||
<field name="res_id" ref="im_livechat.im_livechat_mail_channel_data_0"/>
|
||||
<field name="message_type">email</field>
|
||||
<field name="author_id" ref="base.partner_admin"/>
|
||||
<field name="body">You're welcome, have a nice day!</field>
|
||||
<field eval="DateTime.today() + relativedelta(months=-1, days=-0, minutes=5)" name="date"/>
|
||||
</record>
|
||||
<record id="im_livechat_mail_message_4_data" model="mail.message">
|
||||
<field name="model">mail.channel</field>
|
||||
<field name="res_id" ref="im_livechat.im_livechat_mail_channel_data_0"/>
|
||||
<field name="message_type">email</field>
|
||||
<field eval="False" name="author_id"/>
|
||||
<field name="body">Great! Thanks for the info</field>
|
||||
<field eval="DateTime.today() + relativedelta(months=-1, days=-0, minutes=4)" name="date"/>
|
||||
</record>
|
||||
<record id="im_livechat_mail_message_3_data" model="mail.message">
|
||||
<field name="model">mail.channel</field>
|
||||
<field name="res_id" ref="im_livechat.im_livechat_mail_channel_data_0"/>
|
||||
<field name="message_type">email</field>
|
||||
<field name="author_id" ref="base.partner_admin"/>
|
||||
<field name="body">Yes, you can use our Timesheets application and Awesome Timesheets to record your time efficiently!</field>
|
||||
<field eval="DateTime.today() + relativedelta(months=-1, days=-0, minutes=3)" name="date"/>
|
||||
</record>
|
||||
<record id="im_livechat_mail_message_2_data" model="mail.message">
|
||||
<field name="model">mail.channel</field>
|
||||
<field name="res_id" ref="im_livechat.im_livechat_mail_channel_data_0"/>
|
||||
<field name="message_type">email</field>
|
||||
<field eval="False" name="author_id"/>
|
||||
<field name="body">I'm looking for an application to record my timesheet, any tips?</field>
|
||||
<field eval="DateTime.today() + relativedelta(months=-1, days=-0, minutes=2)" name="date"/>
|
||||
</record>
|
||||
<record id="im_livechat_mail_message_1_data" model="mail.message">
|
||||
<field name="model">mail.channel</field>
|
||||
<field name="res_id" ref="im_livechat.im_livechat_mail_channel_data_0"/>
|
||||
<field name="message_type">email</field>
|
||||
<field name="author_id" ref="base.partner_admin"/>
|
||||
<field name="body">Hello, how may I help you?</field>
|
||||
<field eval="DateTime.today() + relativedelta(months=-1, days=-0, minutes=1)" name="date"/>
|
||||
</record>
|
||||
<!-- Session 1 -->
|
||||
<record id="im_livechat_mail_channel_data_1" model="mail.channel">
|
||||
<field name="channel_type">livechat</field>
|
||||
<field name="livechat_channel_id" ref="im_livechat_channel_data"/>
|
||||
<field name="livechat_operator_id" ref="base.partner_demo"/>
|
||||
<field name="name">Visitor #323, Marc Demo</field>
|
||||
<field name="anonymous_name">Visitor #323, Marc Demo</field>
|
||||
</record>
|
||||
<record id="im_livechat_rating_2" model="rating.rating">
|
||||
<field name="access_token">LIVECHAT_2</field>
|
||||
<field name="res_id" ref="im_livechat.im_livechat_mail_channel_data_1"/>
|
||||
<field name="res_model_id" ref="mail.model_mail_channel"/>
|
||||
<field name="rated_partner_id" ref="base.partner_demo"/>
|
||||
<field eval="False" name="partner_id"/>
|
||||
<field eval="True" name="consumed"/>
|
||||
</record>
|
||||
<function model="mail.channel" name="rating_apply"
|
||||
eval="([ref('im_livechat.im_livechat_mail_channel_data_1')], 5, 'LIVECHAT_2', None, 'Super Job')"/>
|
||||
<record id="im_livechat_mail_message_10_data" model="mail.message">
|
||||
<field name="model">mail.channel</field>
|
||||
<field name="res_id" ref="im_livechat.im_livechat_mail_channel_data_1"/>
|
||||
<field name="message_type">email</field>
|
||||
<field name="author_id" ref="base.partner_demo"/>
|
||||
<field name="body">You're welcome, enjoy Odoo!</field>
|
||||
<field eval="DateTime.today() + relativedelta(months=-1, days=-1, minutes=10)" name="date"/>
|
||||
</record>
|
||||
<record id="im_livechat_mail_message_9_data" model="mail.message">
|
||||
<field name="model">mail.channel</field>
|
||||
<field name="res_id" ref="im_livechat.im_livechat_mail_channel_data_1"/>
|
||||
<field name="message_type">email</field>
|
||||
<field eval="False" name="author_id"/>
|
||||
<field name="body">Awesome, thanks!</field>
|
||||
<field eval="DateTime.today() + relativedelta(months=-1, days=-1, minutes=9)" name="date"/>
|
||||
</record>
|
||||
<record id="im_livechat_mail_message_8_data" model="mail.message">
|
||||
<field name="model">mail.channel</field>
|
||||
<field name="res_id" ref="im_livechat.im_livechat_mail_channel_data_1"/>
|
||||
<field name="message_type">email</field>
|
||||
<field name="author_id" ref="base.partner_demo"/>
|
||||
<field name="body">Yes, we just released a new application called Social Marketing that should fit your needs! Check it out :)</field>
|
||||
<field eval="DateTime.today() + relativedelta(months=-1, days=-1, minutes=8)" name="date"/>
|
||||
</record>
|
||||
<record id="im_livechat_mail_message_7_data" model="mail.message">
|
||||
<field name="model">mail.channel</field>
|
||||
<field name="res_id" ref="im_livechat.im_livechat_mail_channel_data_1"/>
|
||||
<field name="message_type">email</field>
|
||||
<field eval="False" name="author_id"/>
|
||||
<field name="body">I was wondering if Odoo has an application to easily manage social media for my business..</field>
|
||||
<field eval="DateTime.today() + relativedelta(months=-1, days=-1, minutes=7)" name="date"/>
|
||||
</record>
|
||||
<record id="im_livechat_mail_message_6_data" model="mail.message">
|
||||
<field name="model">mail.channel</field>
|
||||
<field name="res_id" ref="im_livechat.im_livechat_mail_channel_data_1"/>
|
||||
<field name="message_type">email</field>
|
||||
<field name="author_id" ref="base.partner_demo"/>
|
||||
<field name="body">Hello, how may I help you?</field>
|
||||
<field eval="DateTime.today() + relativedelta(months=-1, days=-1, minutes=6)" name="date"/>
|
||||
</record>
|
||||
<!-- Session 2 -->
|
||||
<record id="im_livechat_mail_channel_data_2" model="mail.channel">
|
||||
<field name="channel_type">livechat</field>
|
||||
<field name="livechat_channel_id" ref="im_livechat_channel_data"/>
|
||||
<field name="livechat_operator_id" ref="base.partner_admin"/>
|
||||
<field name="name">Joel Willis, Mitchell Admin</field>
|
||||
<field name="anonymous_name">Joel Willis, Mitchell Admin</field>
|
||||
</record>
|
||||
<record id="im_livechat_rating_3" model="rating.rating">
|
||||
<field name="access_token">LIVECHAT_3</field>
|
||||
<field name="res_id" ref="im_livechat.im_livechat_mail_channel_data_2"/>
|
||||
<field name="res_model_id" ref="mail.model_mail_channel"/>
|
||||
<field name="rated_partner_id" ref="base.partner_admin"/>
|
||||
<field name="partner_id" ref="base.partner_demo_portal"/>
|
||||
<field eval="True" name="consumed"/>
|
||||
</record>
|
||||
<function model="mail.channel" name="rating_apply"
|
||||
eval="([ref('im_livechat.im_livechat_mail_channel_data_2')], 5, 'LIVECHAT_3', None, 'Mega Job')"/>
|
||||
|
||||
<record id="im_livechat_mail_message_14_data" model="mail.message">
|
||||
<field name="model">mail.channel</field>
|
||||
<field name="res_id" ref="im_livechat.im_livechat_mail_channel_data_2"/>
|
||||
<field name="message_type">email</field>
|
||||
<field name="author_id" ref="base.partner_demo_portal"/>
|
||||
<field name="body">Oh :(</field>
|
||||
<field eval="DateTime.today() + relativedelta(months=-1, days=-2, minutes=14)" name="date"/>
|
||||
</record>
|
||||
<record id="im_livechat_mail_message_13_data" model="mail.message">
|
||||
<field name="model">mail.channel</field>
|
||||
<field name="res_id" ref="im_livechat.im_livechat_mail_channel_data_2"/>
|
||||
<field name="message_type">email</field>
|
||||
<field name="author_id" ref="base.partner_admin"/>
|
||||
<field name="body">Nope, sorry to disappoint :(</field>
|
||||
<field eval="DateTime.today() + relativedelta(months=-1, days=-2, minutes=13)" name="date"/>
|
||||
</record>
|
||||
<record id="im_livechat_mail_message_12_data" model="mail.message">
|
||||
<field name="model">mail.channel</field>
|
||||
<field name="res_id" ref="im_livechat.im_livechat_mail_channel_data_2"/>
|
||||
<field name="message_type">email</field>
|
||||
<field name="author_id" ref="base.partner_demo_portal"/>
|
||||
<field name="body">Hello, are you single?</field>
|
||||
<field eval="DateTime.today() + relativedelta(months=-1, days=-2, minutes=12)" name="date"/>
|
||||
</record>
|
||||
<record id="im_livechat_mail_message_11_data" model="mail.message">
|
||||
<field name="model">mail.channel</field>
|
||||
<field name="res_id" ref="im_livechat.im_livechat_mail_channel_data_2"/>
|
||||
<field name="message_type">email</field>
|
||||
<field name="author_id" ref="base.partner_admin"/>
|
||||
<field name="body">Hello, how may I help you?</field>
|
||||
<field eval="DateTime.today() + relativedelta(months=-1, days=-2, minutes=11)" name="date"/>
|
||||
</record>
|
||||
<!-- Session 3 -->
|
||||
<record id="im_livechat_mail_channel_data_3" model="mail.channel">
|
||||
<field name="channel_type">livechat</field>
|
||||
<field name="livechat_channel_id" ref="im_livechat_channel_data"/>
|
||||
<field name="livechat_operator_id" ref="base.partner_demo"/>
|
||||
<field name="name">Joel Willis, Marc Demo</field>
|
||||
<field name="anonymous_name">Joel Willis, Marc Demo</field>
|
||||
</record>
|
||||
<record id="im_livechat_rating_4" model="rating.rating">
|
||||
<field name="access_token">LIVECHAT_4</field>
|
||||
<field name="res_id" ref="im_livechat.im_livechat_mail_channel_data_3"/>
|
||||
<field name="res_model_id" ref="mail.model_mail_channel"/>
|
||||
<field name="rated_partner_id" ref="base.partner_demo"/>
|
||||
<field name="partner_id" ref="base.partner_demo_portal"/>
|
||||
<field eval="True" name="consumed"/>
|
||||
</record>
|
||||
<function model="mail.channel" name="rating_apply"
|
||||
eval="([ref('im_livechat.im_livechat_mail_channel_data_3')], 5, 'LIVECHAT_4', None, 'Good Job')"/>
|
||||
|
||||
<record id="im_livechat_mail_message_17_data" model="mail.message">
|
||||
<field name="model">mail.channel</field>
|
||||
<field name="res_id" ref="im_livechat.im_livechat_mail_channel_data_3"/>
|
||||
<field name="message_type">email</field>
|
||||
<field name="author_id" ref="base.partner_demo_portal"/>
|
||||
<field name="body">Thanks for the info, I'll look into it!</field>
|
||||
<field eval="DateTime.today() + relativedelta(months=-2, days=-3, minutes=17)" name="date"/>
|
||||
</record>
|
||||
<record id="im_livechat_mail_message_16_data" model="mail.message">
|
||||
<field name="model">mail.channel</field>
|
||||
<field name="res_id" ref="im_livechat.im_livechat_mail_channel_data_3"/>
|
||||
<field name="message_type">email</field>
|
||||
<field name="author_id" ref="base.partner_demo"/>
|
||||
<field name="body">Hello Joel Willis, you're at the right place! You can customize Odoo using our Studio application in just a few clicks.</field>
|
||||
<field eval="DateTime.today() + relativedelta(months=-2, days=-3, minutes=16)" name="date"/>
|
||||
</record>
|
||||
<record id="im_livechat_mail_message_15_data" model="mail.message">
|
||||
<field name="model">mail.channel</field>
|
||||
<field name="res_id" ref="im_livechat.im_livechat_mail_channel_data_3"/>
|
||||
<field name="message_type">email</field>
|
||||
<field name="author_id" ref="base.partner_demo_portal"/>
|
||||
<field name="body">Hello, I'm looking for a software that can be easily updated with my needs.</field>
|
||||
<field eval="DateTime.today() + relativedelta(months=-2, days=-3, minutes=15)" name="date"/>
|
||||
</record>
|
||||
<!-- Session 4 -->
|
||||
<record id="im_livechat_mail_channel_data_4" model="mail.channel">
|
||||
<field name="channel_type">livechat</field>
|
||||
<field name="livechat_channel_id" ref="im_livechat_channel_data"/>
|
||||
<field name="livechat_operator_id" ref="base.partner_admin"/>
|
||||
<field name="name">Visitor #532, Mitchell Admin</field>
|
||||
<field name="anonymous_name">Visitor #532, Mitchell Admin</field>
|
||||
</record>
|
||||
<record id="im_livechat_rating_5" model="rating.rating">
|
||||
<field name="access_token">LIVECHAT_5</field>
|
||||
<field name="res_id" ref="im_livechat.im_livechat_mail_channel_data_4"/>
|
||||
<field name="res_model_id" ref="mail.model_mail_channel"/>
|
||||
<field name="rated_partner_id" ref="base.partner_admin"/>
|
||||
<field eval="False" name="partner_id"/>
|
||||
<field eval="True" name="consumed"/>
|
||||
</record>
|
||||
<function model="mail.channel" name="rating_apply"
|
||||
eval="([ref('im_livechat.im_livechat_mail_channel_data_4')], 5, 'LIVECHAT_5', None, 'Super Job')"/>
|
||||
<record id="im_livechat_mail_message_21_data" model="mail.message">
|
||||
<field name="model">mail.channel</field>
|
||||
<field name="res_id" ref="im_livechat.im_livechat_mail_channel_data_4"/>
|
||||
<field name="message_type">email</field>
|
||||
<field eval="False" name="author_id"/>
|
||||
<field name="body">Ok.. Will do, thanks</field>
|
||||
<field eval="DateTime.today() + relativedelta(months=-2, days=-4, minutes=21)" name="date"/>
|
||||
</record>
|
||||
<record id="im_livechat_mail_message_20_data" model="mail.message">
|
||||
<field name="model">mail.channel</field>
|
||||
<field name="res_id" ref="im_livechat.im_livechat_mail_channel_data_4"/>
|
||||
<field name="message_type">email</field>
|
||||
<field name="author_id" ref="base.partner_admin"/>
|
||||
<field name="body">Hi, if you need help with your database, feel free to contact our support via http://www.odoo.com/help</field>
|
||||
<field eval="DateTime.today() + relativedelta(months=-2, days=-4, minutes=20)" name="date"/>
|
||||
</record>
|
||||
<record id="im_livechat_mail_message_19_data" model="mail.message">
|
||||
<field name="model">mail.channel</field>
|
||||
<field name="res_id" ref="im_livechat.im_livechat_mail_channel_data_4"/>
|
||||
<field name="message_type">email</field>
|
||||
<field eval="False" name="author_id"/>
|
||||
<field name="body">Hello, it seems that I can't log in to my database. Can you help?</field>
|
||||
<field eval="DateTime.today() + relativedelta(months=-2, days=-4, minutes=19)" name="date"/>
|
||||
</record>
|
||||
<record id="im_livechat_mail_message_18_data" model="mail.message">
|
||||
<field name="model">mail.channel</field>
|
||||
<field name="res_id" ref="im_livechat.im_livechat_mail_channel_data_4"/>
|
||||
<field name="message_type">email</field>
|
||||
<field name="author_id" ref="base.partner_admin"/>
|
||||
<field name="body">Hello, how may I help you?</field>
|
||||
<field eval="DateTime.today() + relativedelta(months=-2, days=-4, minutes=18)" name="date"/>
|
||||
</record>
|
||||
<!-- Session 5 -->
|
||||
<record id="im_livechat_mail_channel_data_5" model="mail.channel">
|
||||
<field name="channel_type">livechat</field>
|
||||
<field name="livechat_channel_id" ref="im_livechat_channel_data"/>
|
||||
<field name="livechat_operator_id" ref="base.partner_admin"/>
|
||||
<field name="name">Visitor #649, Mitchell Admin</field>
|
||||
<field name="anonymous_name">Visitor #649, Mitchell Admin</field>
|
||||
</record>
|
||||
<record id="im_livechat_rating_6" model="rating.rating">
|
||||
<field name="access_token">LIVECHAT_6</field>
|
||||
<field name="res_id" ref="im_livechat.im_livechat_mail_channel_data_5"/>
|
||||
<field name="res_model_id" ref="mail.model_mail_channel"/>
|
||||
<field name="rated_partner_id" ref="base.partner_admin"/>
|
||||
<field eval="False" name="partner_id"/>
|
||||
<field eval="True" name="consumed"/>
|
||||
</record>
|
||||
<function model="mail.channel" name="rating_apply"
|
||||
eval="([ref('im_livechat.im_livechat_mail_channel_data_5')], 5, 'LIVECHAT_6', None, 'Good Job')"/>
|
||||
<record id="im_livechat_mail_message_25_data" model="mail.message">
|
||||
<field name="model">mail.channel</field>
|
||||
<field name="res_id" ref="im_livechat.im_livechat_mail_channel_data_5"/>
|
||||
<field name="message_type">email</field>
|
||||
<field eval="False" name="author_id"/>
|
||||
<field name="body">Thanks!</field>
|
||||
<field eval="DateTime.today() + relativedelta(months=-3, days=-5, minutes=25)" name="date"/>
|
||||
</record>
|
||||
<record id="im_livechat_mail_message_24_data" model="mail.message">
|
||||
<field name="model">mail.channel</field>
|
||||
<field name="res_id" ref="im_livechat.im_livechat_mail_channel_data_5"/>
|
||||
<field name="message_type">email</field>
|
||||
<field name="author_id" ref="base.partner_admin"/>
|
||||
<field name="body">Yes, of course, you can find it here: https://www.odoo.com/documentation/16.0/</field>
|
||||
<field eval="DateTime.today() + relativedelta(months=-3, days=-5, minutes=24)" name="date"/>
|
||||
</record>
|
||||
<record id="im_livechat_mail_message_23_data" model="mail.message">
|
||||
<field name="model">mail.channel</field>
|
||||
<field name="res_id" ref="im_livechat.im_livechat_mail_channel_data_5"/>
|
||||
<field name="message_type">email</field>
|
||||
<field eval="False" name="author_id"/>
|
||||
<field name="body">Hello, I'm a bit lost in the Invetory module, is there some documentation I could find?</field>
|
||||
<field eval="DateTime.today() + relativedelta(months=-3, days=-5, minutes=23)" name="date"/>
|
||||
</record>
|
||||
<record id="im_livechat_mail_message_22_data" model="mail.message">
|
||||
<field name="model">mail.channel</field>
|
||||
<field name="res_id" ref="im_livechat.im_livechat_mail_channel_data_5"/>
|
||||
<field name="message_type">email</field>
|
||||
<field name="author_id" ref="base.partner_admin"/>
|
||||
<field name="body">Hello, how may I help you?</field>
|
||||
<field eval="DateTime.today() + relativedelta(months=-3, days=-5, minutes=22)" name="date"/>
|
||||
</record>
|
||||
<!-- Session 6 -->
|
||||
<record id="im_livechat_mail_channel_data_6" model="mail.channel">
|
||||
<field name="channel_type">livechat</field>
|
||||
<field name="livechat_channel_id" ref="im_livechat_channel_data"/>
|
||||
<field name="livechat_operator_id" ref="base.partner_admin"/>
|
||||
<field name="name">Joel Willis, Mitchell Admin</field>
|
||||
<field name="anonymous_name">Joel Willis, Mitchell Admin</field>
|
||||
</record>
|
||||
<record id="im_livechat_rating_7" model="rating.rating">
|
||||
<field name="access_token">LIVECHAT_7</field>
|
||||
<field name="res_id" ref="im_livechat.im_livechat_mail_channel_data_6"/>
|
||||
<field name="res_model_id" ref="mail.model_mail_channel"/>
|
||||
<field name="rated_partner_id" ref="base.partner_admin"/>
|
||||
<field name="partner_id" ref="base.partner_demo_portal"/>
|
||||
<field eval="True" name="consumed"/>
|
||||
</record>
|
||||
<function model="mail.channel" name="rating_apply"
|
||||
eval="([ref('im_livechat.im_livechat_mail_channel_data_6')], 5, 'LIVECHAT_7', None, 'Super Job')"/>
|
||||
<record id="im_livechat_mail_message_29_data" model="mail.message">
|
||||
<field name="model">mail.channel</field>
|
||||
<field name="res_id" ref="im_livechat.im_livechat_mail_channel_data_6"/>
|
||||
<field name="message_type">email</field>
|
||||
<field name="author_id" ref="base.partner_demo_portal"/>
|
||||
<field name="body">Good to hear, thanks!</field>
|
||||
<field eval="DateTime.today() + relativedelta(months=-3, days=-6, minutes=29)" name="date"/>
|
||||
</record>
|
||||
<record id="im_livechat_mail_message_28_data" model="mail.message">
|
||||
<field name="model">mail.channel</field>
|
||||
<field name="res_id" ref="im_livechat.im_livechat_mail_channel_data_6"/>
|
||||
<field name="message_type">email</field>
|
||||
<field name="author_id" ref="base.partner_admin"/>
|
||||
<field name="body">Joel Willis, you'll need our Inventory and Sales application to do so. You can try them for 15 days, FOR FREE :)</field>
|
||||
<field eval="DateTime.today() + relativedelta(months=-3, days=-6, minutes=28)" name="date"/>
|
||||
</record>
|
||||
<record id="im_livechat_mail_message_27_data" model="mail.message">
|
||||
<field name="model">mail.channel</field>
|
||||
<field name="res_id" ref="im_livechat.im_livechat_mail_channel_data_6"/>
|
||||
<field name="message_type">email</field>
|
||||
<field name="author_id" ref="base.partner_demo_portal"/>
|
||||
<field name="body">Hi, I need a software to easily manage my stock, and generate sales orders.</field>
|
||||
<field eval="DateTime.today() + relativedelta(months=-3, days=-6, minutes=27)" name="date"/>
|
||||
</record>
|
||||
<record id="im_livechat_mail_message_26_data" model="mail.message">
|
||||
<field name="model">mail.channel</field>
|
||||
<field name="res_id" ref="im_livechat.im_livechat_mail_channel_data_6"/>
|
||||
<field name="message_type">email</field>
|
||||
<field name="author_id" ref="base.partner_admin"/>
|
||||
<field name="body">Hello, how may I help you?</field>
|
||||
<field eval="DateTime.today() + relativedelta(months=-3, days=-6, minutes=26)" name="date"/>
|
||||
</record>
|
||||
<!-- Session 7 -->
|
||||
<record id="im_livechat_mail_channel_data_7" model="mail.channel">
|
||||
<field name="channel_type">livechat</field>
|
||||
<field name="livechat_channel_id" ref="im_livechat_channel_data"/>
|
||||
<field name="livechat_operator_id" ref="base.partner_demo"/>
|
||||
<field name="name">Visitor #722, Marc Demo</field>
|
||||
<field name="anonymous_name">Visitor #722, Marc Demo</field>
|
||||
</record>
|
||||
<record id="im_livechat_rating_8" model="rating.rating">
|
||||
<field name="access_token">LIVECHAT_8</field>
|
||||
<field name="res_id" ref="im_livechat.im_livechat_mail_channel_data_7"/>
|
||||
<field name="res_model_id" ref="mail.model_mail_channel"/>
|
||||
<field name="rated_partner_id" ref="base.partner_demo"/>
|
||||
<field eval="False" name="partner_id"/>
|
||||
<field eval="True" name="consumed"/>
|
||||
</record>
|
||||
<function model="mail.channel" name="rating_apply"
|
||||
eval="([ref('im_livechat.im_livechat_mail_channel_data_7')], 5, 'LIVECHAT_8', None, 'Super Job')"/>
|
||||
<record id="im_livechat_mail_message_33_data" model="mail.message">
|
||||
<field name="model">mail.channel</field>
|
||||
<field name="res_id" ref="im_livechat.im_livechat_mail_channel_data_7"/>
|
||||
<field name="message_type">email</field>
|
||||
<field eval="False" name="author_id"/>
|
||||
<field name="body">I'm great, thanks for asking!</field>
|
||||
<field eval="DateTime.today() + relativedelta(months=-3, days=-7, minutes=33)" name="date"/>
|
||||
</record>
|
||||
<record id="im_livechat_mail_message_32_data" model="mail.message">
|
||||
<field name="model">mail.channel</field>
|
||||
<field name="res_id" ref="im_livechat.im_livechat_mail_channel_data_7"/>
|
||||
<field name="message_type">email</field>
|
||||
<field name="author_id" ref="base.partner_demo"/>
|
||||
<field name="body">I'm fine, and you?</field>
|
||||
<field eval="DateTime.today() + relativedelta(months=-3, days=-7, minutes=32)" name="date"/>
|
||||
</record>
|
||||
<record id="im_livechat_mail_message_31_data" model="mail.message">
|
||||
<field name="model">mail.channel</field>
|
||||
<field name="res_id" ref="im_livechat.im_livechat_mail_channel_data_7"/>
|
||||
<field name="message_type">email</field>
|
||||
<field eval="False" name="author_id"/>
|
||||
<field name="body">Heeeey Marc, how are you?</field>
|
||||
<field eval="DateTime.today() + relativedelta(months=-3, days=-7, minutes=31)" name="date"/>
|
||||
</record>
|
||||
<record id="im_livechat_mail_message_30_data" model="mail.message">
|
||||
<field name="model">mail.channel</field>
|
||||
<field name="res_id" ref="im_livechat.im_livechat_mail_channel_data_7"/>
|
||||
<field name="message_type">email</field>
|
||||
<field name="author_id" ref="base.partner_demo"/>
|
||||
<field name="body">Hello, how may I help you?</field>
|
||||
<field eval="DateTime.today() + relativedelta(months=-3, days=-7, minutes=30)" name="date"/>
|
||||
</record>
|
||||
|
||||
<record id="mail_channel_livechat_1" model="mail.channel">
|
||||
<field name="name">Visitor, Mitchell Admin</field>
|
||||
<field name="livechat_operator_id" ref="base.partner_admin"/>
|
||||
<field name="livechat_channel_id" ref="im_livechat.im_livechat_channel_data"/>
|
||||
<field name="create_date" eval="datetime.now() - timedelta(days=1)"/>
|
||||
<field name="channel_type">livechat</field>
|
||||
</record>
|
||||
|
||||
<record id="mail_message_livechat_1" model="mail.message">
|
||||
<field name="author_id" eval="False"/>
|
||||
<field name="record_name">Visitor</field>
|
||||
<field name="date" eval="datetime.now() - timedelta(days=1)"/>
|
||||
<field name="create_date" eval="datetime.now() - timedelta(days=1)"/>
|
||||
<field name="body">Hi</field>
|
||||
<field name="res_id" ref="im_livechat.mail_channel_livechat_1"/>
|
||||
<field name="model">mail.channel</field>
|
||||
</record>
|
||||
<record id="mail_message_livechat_2" model="mail.message">
|
||||
<field name="author_id" ref="base.partner_admin"/>
|
||||
<field name="date" eval="datetime.now() - timedelta(days=1, seconds=-15)"/>
|
||||
<field name="create_date" eval="datetime.now() - timedelta(days=1, seconds=-15)"/>
|
||||
<field name="body">Hello, how may I help you?</field>
|
||||
<field name="res_id" ref="im_livechat.mail_channel_livechat_1"/>
|
||||
<field name="model">mail.channel</field>
|
||||
</record>
|
||||
<record id="mail_message_livechat_3" model="mail.message">
|
||||
<field name="author_id" eval="False"/>
|
||||
<field name="record_name">Visitor</field>
|
||||
<field name="date" eval="datetime.now() - timedelta(days=1, seconds=-25)"/>
|
||||
<field name="create_date" eval="datetime.now() - timedelta(days=1, seconds=-25)"/>
|
||||
<field name="body">I would like to know more about the CRM application</field>
|
||||
<field name="res_id" ref="im_livechat.mail_channel_livechat_1"/>
|
||||
<field name="model">mail.channel</field>
|
||||
</record>
|
||||
<record id="mail_message_livechat_4" model="mail.message">
|
||||
<field name="author_id" ref="base.partner_admin"/>
|
||||
<field name="date" eval="datetime.now() - timedelta(days=1, seconds=-33)"/>
|
||||
<field name="create_date" eval="datetime.now() - timedelta(days=1, seconds=-33)"/>
|
||||
<field name="body">The CRM application helps you to track leads, close opportunities and get accurate forecasts. You can test it for free on our website.</field>
|
||||
<field name="res_id" ref="im_livechat.mail_channel_livechat_1"/>
|
||||
<field name="model">mail.channel</field>
|
||||
</record>
|
||||
<record id="mail_message_livechat_5" model="mail.message">
|
||||
<field name="author_id" eval="False"/>
|
||||
<field name="record_name">Visitor</field>
|
||||
<field name="date" eval="datetime.now() - timedelta(days=1, seconds=-42)"/>
|
||||
<field name="create_date" eval="datetime.now() - timedelta(days=1, seconds=-42)"/>
|
||||
<field name="body">Great, thanks!</field>
|
||||
<field name="res_id" ref="im_livechat.mail_channel_livechat_1"/>
|
||||
<field name="model">mail.channel</field>
|
||||
</record>
|
||||
<record id="mail_message_livechat_6" model="mail.message">
|
||||
<field name="author_id" eval="False"/>
|
||||
<field name="record_name">Visitor</field>
|
||||
<field name="date" eval="datetime.now() - timedelta(days=1, seconds=-53)"/>
|
||||
<field name="create_date" eval="datetime.now() - timedelta(days=1, seconds=-53)"/>
|
||||
<field name="body">Rating: :-)</field>
|
||||
<field name="res_id" ref="im_livechat.mail_channel_livechat_1"/>
|
||||
<field name="model">mail.channel</field>
|
||||
</record>
|
||||
<record id="rating_rating_livechat_1" model="rating.rating">
|
||||
<field name="access_token">LIVECHAT_9</field>
|
||||
<field name="res_model_id" ref="mail.model_mail_channel"/>
|
||||
<field name="rated_partner_id" ref="base.partner_admin"/>
|
||||
<field name="partner_id" ref="base.partner_admin"/>
|
||||
<field name="create_date" eval="datetime.now() - timedelta(days=1, seconds=-53)"/>
|
||||
<field name="res_id" ref="im_livechat.mail_channel_livechat_1"/>
|
||||
</record>
|
||||
<function model="mail.channel" name="rating_apply"
|
||||
eval="([ref('im_livechat.mail_channel_livechat_1')], 5, 'LIVECHAT_9', None, 'Super Job')"/>
|
||||
|
||||
</data>
|
||||
</odoo>
|
||||
|
|
@ -0,0 +1,103 @@
|
|||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<odoo><data noupdate="1">
|
||||
|
||||
<!--
|
||||
This provides a working chatbot for people to work with.
|
||||
It's placed into 'data' to give them a starting point.
|
||||
From that record, they can duplicate / adapt / delete / ...
|
||||
-->
|
||||
|
||||
<record id="chatbot_script_welcome_bot" model="chatbot.script">
|
||||
<field name="title">Welcome Bot</field>
|
||||
<field name="image_1920" type="base64" file="mail/static/src/img/odoobot.png"/>
|
||||
</record>
|
||||
|
||||
<record id="chatbot_script_welcome_step_welcome" model="chatbot.script.step">
|
||||
<field name="message">Welcome to CompanyName ! 👋</field>
|
||||
<field name="sequence">1</field>
|
||||
<field name="step_type">text</field>
|
||||
<field name="chatbot_script_id" ref="chatbot_script_welcome_bot"/>
|
||||
</record>
|
||||
|
||||
<record id="chatbot_script_welcome_step_dispatch" model="chatbot.script.step">
|
||||
<field name="message">What are you looking for?</field>
|
||||
<field name="sequence">2</field>
|
||||
<field name="step_type">question_selection</field>
|
||||
<field name="chatbot_script_id" ref="chatbot_script_welcome_bot"/>
|
||||
</record>
|
||||
|
||||
<record id="chatbot_script_welcome_step_dispatch_answer_pricing" model="chatbot.script.answer">
|
||||
<field name="name">I have a pricing question</field>
|
||||
<field name="sequence">1</field>
|
||||
<field name="script_step_id" ref="chatbot_script_welcome_step_dispatch"/>
|
||||
</record>
|
||||
|
||||
<record id="chatbot_script_welcome_step_dispatch_answer_documentation" model="chatbot.script.answer">
|
||||
<field name="name">I am looking for your documentation</field>
|
||||
<field name="redirect_link">/</field>
|
||||
<field name="sequence">2</field>
|
||||
<field name="script_step_id" ref="chatbot_script_welcome_step_dispatch"/>
|
||||
</record>
|
||||
|
||||
<record id="chatbot_script_welcome_step_dispatch_answer_just_looking" model="chatbot.script.answer">
|
||||
<field name="name">I am just looking around</field>
|
||||
<field name="sequence">3</field>
|
||||
<field name="script_step_id" ref="chatbot_script_welcome_step_dispatch"/>
|
||||
</record>
|
||||
|
||||
<record id="chatbot_script_welcome_step_pricing" model="chatbot.script.step">
|
||||
<field name="message">Hmmm, let me check if I can find someone that could help you with that...</field>
|
||||
<field name="sequence">3</field>
|
||||
<field name="step_type">text</field>
|
||||
<field name="chatbot_script_id" ref="chatbot_script_welcome_bot"/>
|
||||
<field name="triggering_answer_ids" eval="[(4, ref('chatbot_script_welcome_step_dispatch_answer_pricing'))]"/>
|
||||
</record>
|
||||
|
||||
<record id="chatbot_script_welcome_step_pricing_forward_operator" model="chatbot.script.step">
|
||||
<field name="sequence">4</field>
|
||||
<field name="step_type">forward_operator</field>
|
||||
<field name="chatbot_script_id" ref="chatbot_script_welcome_bot"/>
|
||||
<field name="triggering_answer_ids" eval="[(4, ref('chatbot_script_welcome_step_dispatch_answer_pricing'))]"/>
|
||||
</record>
|
||||
|
||||
<record id="chatbot_script_welcome_step_pricing_noone_available" model="chatbot.script.step">
|
||||
<field name="message">Hu-ho, it looks like none of our operators are available 🙁</field>
|
||||
<field name="sequence">5</field>
|
||||
<field name="step_type">text</field>
|
||||
<field name="chatbot_script_id" ref="chatbot_script_welcome_bot"/>
|
||||
<field name="triggering_answer_ids" eval="[(4, ref('chatbot_script_welcome_step_dispatch_answer_pricing'))]"/>
|
||||
</record>
|
||||
|
||||
<record id="chatbot_script_welcome_step_pricing_email" model="chatbot.script.step">
|
||||
<field name="message">Would you mind leaving your email address so that we can reach you back?</field>
|
||||
<field name="sequence">6</field>
|
||||
<field name="step_type">question_email</field>
|
||||
<field name="chatbot_script_id" ref="chatbot_script_welcome_bot"/>
|
||||
<field name="triggering_answer_ids" eval="[(4, ref('chatbot_script_welcome_step_dispatch_answer_pricing'))]"/>
|
||||
</record>
|
||||
|
||||
<record id="chatbot_script_welcome_step_documentation_redirect" model="chatbot.script.step">
|
||||
<field name="message">And tadaaaa here you go! 🌟</field>
|
||||
<field name="sequence">7</field>
|
||||
<field name="step_type">text</field>
|
||||
<field name="chatbot_script_id" ref="chatbot_script_welcome_bot"/>
|
||||
<field name="triggering_answer_ids" eval="[(4, ref('chatbot_script_welcome_step_dispatch_answer_documentation'))]"/>
|
||||
</record>
|
||||
|
||||
<record id="chatbot_script_welcome_step_documentation_exit" model="chatbot.script.step">
|
||||
<field name="message">If you need anything else, feel free to get back in touch</field>
|
||||
<field name="sequence">8</field>
|
||||
<field name="step_type">text</field>
|
||||
<field name="chatbot_script_id" ref="chatbot_script_welcome_bot"/>
|
||||
<field name="triggering_answer_ids" eval="[(4, ref('chatbot_script_welcome_step_dispatch_answer_documentation'))]"/>
|
||||
</record>
|
||||
|
||||
<record id="chatbot_script_welcome_step_just_looking" model="chatbot.script.step">
|
||||
<field name="message">Please do! If there is anything we can help with, let us know</field>
|
||||
<field name="sequence">9</field>
|
||||
<field name="step_type">text</field>
|
||||
<field name="chatbot_script_id" ref="chatbot_script_welcome_bot"/>
|
||||
<field name="triggering_answer_ids" eval="[(4, ref('chatbot_script_welcome_step_dispatch_answer_just_looking'))]"/>
|
||||
</record>
|
||||
|
||||
</data></odoo>
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo><data noupdate="1">
|
||||
<record id="mail_shortcode_data_hello" model="mail.shortcode">
|
||||
<field name="source">hello</field>
|
||||
<field name="substitution">Hello. How may I help you?</field>
|
||||
</record>
|
||||
</data></odoo>
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
<data noupdate="1">
|
||||
|
||||
<record id="mail_canned_response_bye" model="mail.shortcode">
|
||||
<field name="source">bye</field>
|
||||
<field name="substitution">Thanks for your feedback. Good bye!</field>
|
||||
</record>
|
||||
|
||||
</data>
|
||||
</odoo>
|
||||
|
|
@ -0,0 +1,96 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
<data noupdate="1">
|
||||
<template id="livechat_email_template">
|
||||
<table border="0" cellpadding="0" cellspacing="0" style="padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;"><tr><td align="center">
|
||||
<table border="0" cellpadding="0" cellspacing="0" width="590" style="padding: 24px; background-color: white; color: #454748; border-collapse:separate;">
|
||||
<tbody>
|
||||
<!-- HEADER -->
|
||||
<tr>
|
||||
<td align="center" style="min-width: 590px;">
|
||||
<table border="0" cellpadding="0" cellspacing="0" width="100%" style="background-color: white; padding: 0; border-collapse:separate;">
|
||||
<tr><td valign="middle">
|
||||
<span style="font-size: 10px;">Livechat Conversation</span><br/>
|
||||
<span style="font-size: 20px; font-weight: bold;">
|
||||
<t t-esc="company.name"/>
|
||||
</span>
|
||||
</td><td valign="middle" align="right">
|
||||
<img t-att-src="'/logo.png?company=%s' % company.id" style="padding: 0px; margin: 0px; height: 48px;" t-att-alt="'%s' % company.name"/>
|
||||
</td></tr>
|
||||
<tr><td colspan="2" style="text-align:center;">
|
||||
<hr width="100%" style="background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:4px 0px 32px 0px;"/>
|
||||
</td></tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<!-- CONTENT -->
|
||||
<t t-set="top" t-value="'border-top: thin solid #dee2e6;'" />
|
||||
<t t-set="bottom" t-value="'border-bottom: thin solid #dee2e6;'" />
|
||||
<t t-set="right" t-value="'border-right: thin solid #dee2e6;'" />
|
||||
<t t-set="left" t-value="'border-left: thin solid #dee2e6;'" />
|
||||
<tr>
|
||||
<td style="padding: 0 50px;">
|
||||
<div style="font-size: 13px; padding: 10px 0;">
|
||||
<span>Hello,</span><br />Here's a copy of your conversation with
|
||||
<span t-esc="channel.livechat_operator_id.user_livechat_username or channel.livechat_operator_id.name"/>, on the
|
||||
<span t-field="channel.livechat_channel_id.create_date"/>
|
||||
</div>
|
||||
<table cellspacing="0" cellpadding="0" style="width:100%; border-collapse: collapse;">
|
||||
<t t-foreach="channel.message_ids.sorted(key=lambda m: m.date)" t-as="message" >
|
||||
<t t-set="author_name"><t t-if="message.author_id" t-esc="message.author_id.user_livechat_username or message.author_id.name"></t><t t-else="">You</t></t>
|
||||
<tr>
|
||||
<td valign="top" align="center" rowspan="2" t-att-style="'width: 70px;' + top + bottom + left">
|
||||
<t t-if="message.author_avatar">
|
||||
<img t-attf-alt="{{author_name}}" style="width: 64px; height: 64px; object-fit: cover;" t-attf-src="data:image/png;base64,{{message.author_avatar}}"/>
|
||||
</t>
|
||||
<t t-else="">
|
||||
<img t-attf-alt="{{author_name}}" style="width: 64px; height: 64px; object-fit: cover;" src="/mail/static/src/img/smiley/avatar.jpg"/>
|
||||
</t>
|
||||
</td>
|
||||
<td t-att-style="'padding-left: 5px; margin: 0px;' + top">
|
||||
<strong t-esc="author_name"/>
|
||||
</td>
|
||||
<td t-att-style="'font-size: 13px; padding: 5px;' + top + right" align="right"><span t-field="message.date"/></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top" colspan="2" t-att-style="'padding-left: 5px;' + bottom + right">
|
||||
<span t-field="message.body" style="font-size: 13px;"/>
|
||||
</td>
|
||||
</tr>
|
||||
</t>
|
||||
</table>
|
||||
<div style="font-size: 13px; padding: 30px 0;">
|
||||
<span>Best regards,</span><br /><br />
|
||||
<span t-field="company.name"/>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<!-- FOOTER -->
|
||||
<tr>
|
||||
<td align="center" style="min-width: 590px; padding: 0 8px 0 8px; font-size:11px;">
|
||||
<hr width="100%" style="background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 4px 0px;"/>
|
||||
<b t-esc="company.name"/><br/>
|
||||
<div style="color: #999999;">
|
||||
<t t-esc="company.phone"/>
|
||||
<t t-if="company.email"> |
|
||||
<a t-att-href="'mailto:%s' % company.email" style="text-decoration:none; color: #999999;"><t t-esc="company.email"/></a>
|
||||
</t>
|
||||
<t t-if="company.website"> |
|
||||
<a t-att-href="'%s' % company.website" style="text-decoration:none; color: #999999;">
|
||||
<t t-esc="company.website"/>
|
||||
</a>
|
||||
</t>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</td></tr>
|
||||
<!-- POWERED BY -->
|
||||
<tr><td align="center" style="min-width: 590px;">
|
||||
Powered by <a target="_blank" href="https://www.odoo.com?utm_source=db&utm_medium=email" style="color: #875A7B;">Odoo</a>
|
||||
</td></tr>
|
||||
</table>
|
||||
</template>
|
||||
</data>
|
||||
</odoo>
|
||||
1980
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/af.po
Normal file
1980
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/af.po
Normal file
File diff suppressed because it is too large
Load diff
1976
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/am.po
Normal file
1976
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/am.po
Normal file
File diff suppressed because it is too large
Load diff
2040
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/ar.po
Normal file
2040
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/ar.po
Normal file
File diff suppressed because it is too large
Load diff
1982
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/az.po
Normal file
1982
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/az.po
Normal file
File diff suppressed because it is too large
Load diff
1980
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/be.po
Normal file
1980
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/be.po
Normal file
File diff suppressed because it is too large
Load diff
2025
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/bg.po
Normal file
2025
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/bg.po
Normal file
File diff suppressed because it is too large
Load diff
1976
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/bs.po
Normal file
1976
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/bs.po
Normal file
File diff suppressed because it is too large
Load diff
2079
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/ca.po
Normal file
2079
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/ca.po
Normal file
File diff suppressed because it is too large
Load diff
2059
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/cs.po
Normal file
2059
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/cs.po
Normal file
File diff suppressed because it is too large
Load diff
2018
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/da.po
Normal file
2018
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/da.po
Normal file
File diff suppressed because it is too large
Load diff
2083
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/de.po
Normal file
2083
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/de.po
Normal file
File diff suppressed because it is too large
Load diff
1052
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/el.po
Normal file
1052
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/el.po
Normal file
File diff suppressed because it is too large
Load diff
923
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/en_GB.po
Normal file
923
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/en_GB.po
Normal file
|
|
@ -0,0 +1,923 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * im_livechat
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 11.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-11-30 13:12+0000\n"
|
||||
"PO-Revision-Date: 2017-11-30 13:12+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: English (United Kingdom) (https://www.transifex.com/odoo/teams/41243/en_GB/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: en_GB\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_nbr_channel
|
||||
msgid "# of Sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_nbr_speaker
|
||||
msgid "# of speakers"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rating_percentage_satisfaction
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "% Happy"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_action
|
||||
msgid ""
|
||||
"* 'Display the button' displays the chat button on the pages.\n"
|
||||
"* 'Auto popup' displays the button and automatically open the conversation pane.\n"
|
||||
"* 'Hide the button' hides the chat button on the pages."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid ""
|
||||
"<span>Define rules for your live support channel. You can apply an action "
|
||||
"(disable the support, automatically open your support, or just make the "
|
||||
"button available) for the given URL, and per country.<br/>To identify the "
|
||||
"country, GeoIP must be installed on your server, otherwise, the countries of"
|
||||
" the rule will not be taken into account.</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_action
|
||||
msgid "Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_mail_channel_anonymous_name
|
||||
msgid "Anonymous Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_are_you_inside
|
||||
msgid "Are you inside the matrix?"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:48
|
||||
#, python-format
|
||||
msgid "Ask something ..."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_tree
|
||||
msgid "Attendees"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: selection:im_livechat.channel.rule,action:0
|
||||
msgid "Auto popup"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_auto_popup_timer
|
||||
msgid "Auto popup timer"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_duration
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_duration
|
||||
msgid "Average duration"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_nbr_message
|
||||
msgid "Average message"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_operator_time_to_answer
|
||||
msgid "Average time to give the first answer to the visitor"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:13
|
||||
#, python-format
|
||||
msgid "Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.im_livechat_canned_response_action
|
||||
#: model:ir.ui.menu,name:im_livechat.canned_responses
|
||||
msgid "Canned Responses"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_canned_response_action
|
||||
msgid ""
|
||||
"Canned responses allow you to insert prewritten responses in\n"
|
||||
" your messages by typing <i>:shortcut</i>. The shortcut is\n"
|
||||
" replaced directly in your message, so that you can still edit\n"
|
||||
" it before sending."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_livechat_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_livechat_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_mail_channel_livechat_channel_id
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_channel_name
|
||||
msgid "Channel Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_rule_view_form
|
||||
msgid "Channel Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_im_livechat_channel_rule
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "Channel Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.support_channels
|
||||
msgid "Channels"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_input_placeholder
|
||||
msgid "Chat Input Placeholder"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:50
|
||||
#, python-format
|
||||
msgid "Chat with one of our collaborators"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_canned_response_action
|
||||
msgid "Click to create a new canned response."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_channel_action
|
||||
msgid "Click to define a new website live chat channel."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_technical_name
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.livechat_config
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_channel_id
|
||||
msgid "Conversation"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/copy_clipboard.js:32
|
||||
#, python-format
|
||||
msgid "Copied !"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/copy_clipboard.xml:6
|
||||
#: code:addons/im_livechat/static/src/xml/copy_clipboard.xml:12
|
||||
#, python-format
|
||||
msgid "Copy Text"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid ""
|
||||
"Copy and paste this code into your website, within the <head> tag:"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_country_ids
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_create_uid
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Created by"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_create_date
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_create_date
|
||||
msgid "Created on"
|
||||
msgstr "Created on"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Creation date (day)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
msgid "Creation date (hour)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Creation date (month)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Creation date (week)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Creation date (year)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.rating_rating_action_livechat_report
|
||||
#: model:ir.ui.menu,name:im_livechat.rating_rating_menu_livechat
|
||||
msgid "Customer Ratings"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.rating_rating_action_livechat_report
|
||||
msgid "Customer ratings on livechat session."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_button_text
|
||||
msgid "Default text displayed on the Livechat Support Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_auto_popup_timer
|
||||
msgid ""
|
||||
"Delay (in seconds) to automatically open the conversation window. Note: the "
|
||||
"selected action must be 'Auto popup' otherwise this parameter will not be "
|
||||
"taken into account."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:7
|
||||
#, python-format
|
||||
msgid "Did we correctly answer your question ?"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_mail_channel
|
||||
msgid "Discussion channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_display_name
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_display_name
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_display_name
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Display Name"
|
||||
|
||||
#. module: im_livechat
|
||||
#: selection:im_livechat.channel.rule,action:0
|
||||
msgid "Display the button"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_channel_duration
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_operator_duration
|
||||
msgid "Duration of the conversation (in seconds)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_channel_action
|
||||
msgid ""
|
||||
"Each channel has it's own URL that you can send by email to\n"
|
||||
" your customers in order to start chatting with you."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:19
|
||||
#, python-format
|
||||
msgid "Explain your note"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid ""
|
||||
"For website built with Odoo CMS, please install the website_livechat module."
|
||||
" Then go to Website Admin > Configuration > Settings and select the "
|
||||
"Website Live Chat Channel you want to add on your website."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_sequence
|
||||
msgid ""
|
||||
"Given the order to find a matching rule. If 2 rules are matching for the "
|
||||
"given url/country, the one with the lowest sequence will be chosen."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:11
|
||||
#, python-format
|
||||
msgid "Good"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Group By..."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: selection:im_livechat.channel.rule,action:0
|
||||
msgid "Hide the button"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.mail_channel_action
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_tree
|
||||
msgid "History"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_start_date_hour
|
||||
msgid "Hour of start Date of session"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:51
|
||||
#, python-format
|
||||
msgid "How may I help you?"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "How to use the Website Live Chat widget?"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:15
|
||||
#, python-format
|
||||
msgid "I don't want to rate this conversation"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_image
|
||||
msgid "Image"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Join"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "Join Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
msgid "Last 24h"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.rating_rating_view_search_livechat
|
||||
msgid "Last 7 days"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel___last_update
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule___last_update
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel___last_update
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Last Modified on"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_write_uid
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Last Updated by"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_write_date
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Last Updated on"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
msgid "Last Week"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Leave"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "Leave Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_mail_channel_partner
|
||||
msgid "Listeners of a Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.menu_livechat_root
|
||||
msgid "Live Chat"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.module.category,name:im_livechat.module_category_im_livechat
|
||||
msgid "Live Support"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat_backend.xml:9
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat_backend.xml:21
|
||||
#, python-format
|
||||
msgid "Livechat"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_im_livechat_channel
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.rating_rating_view_search_livechat
|
||||
msgid "Livechat Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_report_channel_action
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_report_operator_action
|
||||
msgid ""
|
||||
"Livechat Support Channel Statistics allows you to easily check and analyse "
|
||||
"your company livechat session performance. Extract information about the "
|
||||
"missed sessions, the audiance, the duration of a session, etc."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_im_livechat_report_channel
|
||||
#: model:ir.model,name:im_livechat.model_im_livechat_report_operator
|
||||
msgid "Livechat Support Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.im_livechat_report_channel_action
|
||||
#: model:ir.actions.act_window,name:im_livechat.im_livechat_report_operator_action
|
||||
msgid "Livechat Support Report Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_graph
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_pivot
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_graph
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_pivot
|
||||
msgid "Livechat Support Statistics"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:res.groups,name:im_livechat.im_livechat_group_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_sequence
|
||||
msgid "Matching order"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_image_medium
|
||||
msgid "Medium"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_image_medium
|
||||
msgid ""
|
||||
"Medium-sized photo of the group. It is automatically resized as a 128x128px "
|
||||
"image, with aspect ratio preserved. Use this field in form views or some "
|
||||
"kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
msgid "Missed sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_name
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: code:addons/im_livechat/models/mail_channel.py:125
|
||||
#, python-format
|
||||
msgid "No history found"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:150
|
||||
#, python-format
|
||||
msgid ""
|
||||
"None of our collaborators seems to be available, please try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_nbr_channel
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_operator_nbr_channel
|
||||
msgid "Number of conversation"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_channel_nbr_speaker
|
||||
msgid "Number of different speakers"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_channel_nbr_message
|
||||
msgid "Number of message in the conversation"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:12
|
||||
#, python-format
|
||||
msgid "OK"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_partner_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_partner_id
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
msgid "Operator"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.menu_reporting_livechat_operator
|
||||
msgid "Operator Analysis"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_user_ids
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "Operators"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid ""
|
||||
"Operators\n"
|
||||
" <br/>\n"
|
||||
" <i class=\"fa fa-comments\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid ""
|
||||
"Operators that do not show any activity In Odoo for more than 30 minutes "
|
||||
"will be considered as disconnected."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rating_percentage_satisfaction
|
||||
msgid "Percentage of happy ratings over the past 7 days"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_rating_rating
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_tree
|
||||
msgid "Rating"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:344
|
||||
#, python-format
|
||||
msgid "Rating: :rating_%d"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Rating: Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Rating: Great"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Rating: Okay"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.rating_rating_action_view_livechat_rating
|
||||
msgid "Ratings for livechat channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_regex_url
|
||||
msgid ""
|
||||
"Regular expression specifying the web pages this rule will be applied on."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.menu_reporting_livechat
|
||||
msgid "Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_ids
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_rule_view_tree
|
||||
msgid "Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_script_external
|
||||
msgid "Script (external)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Search history"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
msgid "Search report"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: code:addons/im_livechat/models/mail_channel.py:113
|
||||
#, python-format
|
||||
msgid "See 15 last visited pages"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_tree
|
||||
msgid "Session Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_form
|
||||
msgid "Session Form"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.menu_reporting_livechat_channel
|
||||
msgid "Session Statistics"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.mail_channel_action_from_livechat_channel
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_channel_ids
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.session_history
|
||||
msgid "Sessions History"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_image_small
|
||||
msgid ""
|
||||
"Small-sized photo of the group. It is automatically resized as a 64x64px "
|
||||
"image, with aspect ratio preserved. Use this field anywhere a small image is"
|
||||
" required."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_start_date
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_start_date
|
||||
msgid "Start Date of session"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_channel_start_date
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_operator_start_date
|
||||
msgid "Start date of the conversation"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_button_text
|
||||
msgid "Text of the Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_channel_id
|
||||
msgid "The channel of the rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_name
|
||||
msgid "The name of the channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_country_ids
|
||||
msgid ""
|
||||
"The rule will only be applied for these countries. Example: if you select "
|
||||
"'Belgium' and 'United States' and that you set the action to 'Hide Button', "
|
||||
"the chat button will be hidden on the specified URL from the visitors "
|
||||
"located in these 2 countries. This feature requires GeoIP installed on your "
|
||||
"server."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:res.groups,comment:im_livechat.im_livechat_group_manager
|
||||
msgid "The user will be able to delete support channels."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:res.groups,comment:im_livechat.im_livechat_group_user
|
||||
msgid "The user will be able to join support channels."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.rating_rating_action_view_livechat_rating
|
||||
msgid "There is no rating for this channel at the moment."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_image
|
||||
msgid ""
|
||||
"This field holds the image used as photo for the group, limited to "
|
||||
"1024x1024px."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_default_message
|
||||
msgid ""
|
||||
"This is an automated 'welcome' message that your visitor will see when they "
|
||||
"initiate a new conversation."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_image_small
|
||||
msgid "Thumbnail"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_time_to_answer
|
||||
msgid "Time to answer"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
msgid "Treated sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_regex_url
|
||||
msgid "URL Regex"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_web_page
|
||||
msgid ""
|
||||
"URL to a static page where you client can discuss with the operator of the "
|
||||
"channel."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_uuid
|
||||
msgid "UUID"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:res.groups,name:im_livechat.im_livechat_group_user
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/controllers/main.py:37
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:49
|
||||
#, python-format
|
||||
msgid "Visitor"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_web_page
|
||||
msgid "Web Page"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.im_livechat_channel_action
|
||||
msgid "Website Live Chat Channels"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_default_message
|
||||
msgid "Welcome Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_channel_action
|
||||
msgid ""
|
||||
"You can create channels for each website on which you want\n"
|
||||
" to integrate the website live chat widget, allowing your website\n"
|
||||
" visitors to talk in real time with your operators."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.mail_channel_action
|
||||
msgid ""
|
||||
"Your chatter history is empty. Create a channel and start chatting to fill "
|
||||
"up your history."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "e.g. Hello, how may I help you?"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "e.g. YourWebsite.com"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_ir_autovacuum
|
||||
msgid "ir.autovacuum"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "or copy this url and send it by email to your customers or suppliers:"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_rule_view_form
|
||||
msgid "seconds"
|
||||
msgstr ""
|
||||
2072
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/es.po
Normal file
2072
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/es.po
Normal file
File diff suppressed because it is too large
Load diff
923
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/es_BO.po
Normal file
923
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/es_BO.po
Normal file
|
|
@ -0,0 +1,923 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * im_livechat
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 11.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-11-30 13:12+0000\n"
|
||||
"PO-Revision-Date: 2017-11-30 13:12+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Spanish (Bolivia) (https://www.transifex.com/odoo/teams/41243/es_BO/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_BO\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_nbr_channel
|
||||
msgid "# of Sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_nbr_speaker
|
||||
msgid "# of speakers"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rating_percentage_satisfaction
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "% Happy"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_action
|
||||
msgid ""
|
||||
"* 'Display the button' displays the chat button on the pages.\n"
|
||||
"* 'Auto popup' displays the button and automatically open the conversation pane.\n"
|
||||
"* 'Hide the button' hides the chat button on the pages."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid ""
|
||||
"<span>Define rules for your live support channel. You can apply an action "
|
||||
"(disable the support, automatically open your support, or just make the "
|
||||
"button available) for the given URL, and per country.<br/>To identify the "
|
||||
"country, GeoIP must be installed on your server, otherwise, the countries of"
|
||||
" the rule will not be taken into account.</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_action
|
||||
msgid "Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_mail_channel_anonymous_name
|
||||
msgid "Anonymous Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_are_you_inside
|
||||
msgid "Are you inside the matrix?"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:48
|
||||
#, python-format
|
||||
msgid "Ask something ..."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_tree
|
||||
msgid "Attendees"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: selection:im_livechat.channel.rule,action:0
|
||||
msgid "Auto popup"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_auto_popup_timer
|
||||
msgid "Auto popup timer"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_duration
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_duration
|
||||
msgid "Average duration"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_nbr_message
|
||||
msgid "Average message"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_operator_time_to_answer
|
||||
msgid "Average time to give the first answer to the visitor"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:13
|
||||
#, python-format
|
||||
msgid "Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.im_livechat_canned_response_action
|
||||
#: model:ir.ui.menu,name:im_livechat.canned_responses
|
||||
msgid "Canned Responses"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_canned_response_action
|
||||
msgid ""
|
||||
"Canned responses allow you to insert prewritten responses in\n"
|
||||
" your messages by typing <i>:shortcut</i>. The shortcut is\n"
|
||||
" replaced directly in your message, so that you can still edit\n"
|
||||
" it before sending."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_livechat_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_livechat_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_mail_channel_livechat_channel_id
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_channel_name
|
||||
msgid "Channel Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_rule_view_form
|
||||
msgid "Channel Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_im_livechat_channel_rule
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "Channel Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.support_channels
|
||||
msgid "Channels"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_input_placeholder
|
||||
msgid "Chat Input Placeholder"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:50
|
||||
#, python-format
|
||||
msgid "Chat with one of our collaborators"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_canned_response_action
|
||||
msgid "Click to create a new canned response."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_channel_action
|
||||
msgid "Click to define a new website live chat channel."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_technical_name
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.livechat_config
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_channel_id
|
||||
msgid "Conversation"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/copy_clipboard.js:32
|
||||
#, python-format
|
||||
msgid "Copied !"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/copy_clipboard.xml:6
|
||||
#: code:addons/im_livechat/static/src/xml/copy_clipboard.xml:12
|
||||
#, python-format
|
||||
msgid "Copy Text"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid ""
|
||||
"Copy and paste this code into your website, within the <head> tag:"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_country_ids
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_create_uid
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_create_date
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Creation date (day)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
msgid "Creation date (hour)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Creation date (month)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Creation date (week)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Creation date (year)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.rating_rating_action_livechat_report
|
||||
#: model:ir.ui.menu,name:im_livechat.rating_rating_menu_livechat
|
||||
msgid "Customer Ratings"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.rating_rating_action_livechat_report
|
||||
msgid "Customer ratings on livechat session."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_button_text
|
||||
msgid "Default text displayed on the Livechat Support Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_auto_popup_timer
|
||||
msgid ""
|
||||
"Delay (in seconds) to automatically open the conversation window. Note: the "
|
||||
"selected action must be 'Auto popup' otherwise this parameter will not be "
|
||||
"taken into account."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:7
|
||||
#, python-format
|
||||
msgid "Did we correctly answer your question ?"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_mail_channel
|
||||
msgid "Discussion channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_display_name
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_display_name
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_display_name
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: selection:im_livechat.channel.rule,action:0
|
||||
msgid "Display the button"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_channel_duration
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_operator_duration
|
||||
msgid "Duration of the conversation (in seconds)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_channel_action
|
||||
msgid ""
|
||||
"Each channel has it's own URL that you can send by email to\n"
|
||||
" your customers in order to start chatting with you."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:19
|
||||
#, python-format
|
||||
msgid "Explain your note"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid ""
|
||||
"For website built with Odoo CMS, please install the website_livechat module."
|
||||
" Then go to Website Admin > Configuration > Settings and select the "
|
||||
"Website Live Chat Channel you want to add on your website."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_sequence
|
||||
msgid ""
|
||||
"Given the order to find a matching rule. If 2 rules are matching for the "
|
||||
"given url/country, the one with the lowest sequence will be chosen."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:11
|
||||
#, python-format
|
||||
msgid "Good"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Group By..."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: selection:im_livechat.channel.rule,action:0
|
||||
msgid "Hide the button"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.mail_channel_action
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_tree
|
||||
msgid "History"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_start_date_hour
|
||||
msgid "Hour of start Date of session"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:51
|
||||
#, python-format
|
||||
msgid "How may I help you?"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "How to use the Website Live Chat widget?"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:15
|
||||
#, python-format
|
||||
msgid "I don't want to rate this conversation"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_image
|
||||
msgid "Image"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Join"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "Join Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
msgid "Last 24h"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.rating_rating_view_search_livechat
|
||||
msgid "Last 7 days"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel___last_update
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule___last_update
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel___last_update
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_write_uid
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización de"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_write_date
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización en"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
msgid "Last Week"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Leave"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "Leave Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_mail_channel_partner
|
||||
msgid "Listeners of a Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.menu_livechat_root
|
||||
msgid "Live Chat"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.module.category,name:im_livechat.module_category_im_livechat
|
||||
msgid "Live Support"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat_backend.xml:9
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat_backend.xml:21
|
||||
#, python-format
|
||||
msgid "Livechat"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_im_livechat_channel
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.rating_rating_view_search_livechat
|
||||
msgid "Livechat Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_report_channel_action
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_report_operator_action
|
||||
msgid ""
|
||||
"Livechat Support Channel Statistics allows you to easily check and analyse "
|
||||
"your company livechat session performance. Extract information about the "
|
||||
"missed sessions, the audiance, the duration of a session, etc."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_im_livechat_report_channel
|
||||
#: model:ir.model,name:im_livechat.model_im_livechat_report_operator
|
||||
msgid "Livechat Support Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.im_livechat_report_channel_action
|
||||
#: model:ir.actions.act_window,name:im_livechat.im_livechat_report_operator_action
|
||||
msgid "Livechat Support Report Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_graph
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_pivot
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_graph
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_pivot
|
||||
msgid "Livechat Support Statistics"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:res.groups,name:im_livechat.im_livechat_group_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_sequence
|
||||
msgid "Matching order"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_image_medium
|
||||
msgid "Medium"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_image_medium
|
||||
msgid ""
|
||||
"Medium-sized photo of the group. It is automatically resized as a 128x128px "
|
||||
"image, with aspect ratio preserved. Use this field in form views or some "
|
||||
"kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
msgid "Missed sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_name
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: code:addons/im_livechat/models/mail_channel.py:125
|
||||
#, python-format
|
||||
msgid "No history found"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:150
|
||||
#, python-format
|
||||
msgid ""
|
||||
"None of our collaborators seems to be available, please try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_nbr_channel
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_operator_nbr_channel
|
||||
msgid "Number of conversation"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_channel_nbr_speaker
|
||||
msgid "Number of different speakers"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_channel_nbr_message
|
||||
msgid "Number of message in the conversation"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:12
|
||||
#, python-format
|
||||
msgid "OK"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_partner_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_partner_id
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
msgid "Operator"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.menu_reporting_livechat_operator
|
||||
msgid "Operator Analysis"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_user_ids
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "Operators"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid ""
|
||||
"Operators\n"
|
||||
" <br/>\n"
|
||||
" <i class=\"fa fa-comments\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid ""
|
||||
"Operators that do not show any activity In Odoo for more than 30 minutes "
|
||||
"will be considered as disconnected."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rating_percentage_satisfaction
|
||||
msgid "Percentage of happy ratings over the past 7 days"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_rating_rating
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_tree
|
||||
msgid "Rating"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:344
|
||||
#, python-format
|
||||
msgid "Rating: :rating_%d"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Rating: Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Rating: Great"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Rating: Okay"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.rating_rating_action_view_livechat_rating
|
||||
msgid "Ratings for livechat channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_regex_url
|
||||
msgid ""
|
||||
"Regular expression specifying the web pages this rule will be applied on."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.menu_reporting_livechat
|
||||
msgid "Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_ids
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_rule_view_tree
|
||||
msgid "Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_script_external
|
||||
msgid "Script (external)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Search history"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
msgid "Search report"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: code:addons/im_livechat/models/mail_channel.py:113
|
||||
#, python-format
|
||||
msgid "See 15 last visited pages"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_tree
|
||||
msgid "Session Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_form
|
||||
msgid "Session Form"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.menu_reporting_livechat_channel
|
||||
msgid "Session Statistics"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.mail_channel_action_from_livechat_channel
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_channel_ids
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.session_history
|
||||
msgid "Sessions History"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_image_small
|
||||
msgid ""
|
||||
"Small-sized photo of the group. It is automatically resized as a 64x64px "
|
||||
"image, with aspect ratio preserved. Use this field anywhere a small image is"
|
||||
" required."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_start_date
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_start_date
|
||||
msgid "Start Date of session"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_channel_start_date
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_operator_start_date
|
||||
msgid "Start date of the conversation"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_button_text
|
||||
msgid "Text of the Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_channel_id
|
||||
msgid "The channel of the rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_name
|
||||
msgid "The name of the channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_country_ids
|
||||
msgid ""
|
||||
"The rule will only be applied for these countries. Example: if you select "
|
||||
"'Belgium' and 'United States' and that you set the action to 'Hide Button', "
|
||||
"the chat button will be hidden on the specified URL from the visitors "
|
||||
"located in these 2 countries. This feature requires GeoIP installed on your "
|
||||
"server."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:res.groups,comment:im_livechat.im_livechat_group_manager
|
||||
msgid "The user will be able to delete support channels."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:res.groups,comment:im_livechat.im_livechat_group_user
|
||||
msgid "The user will be able to join support channels."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.rating_rating_action_view_livechat_rating
|
||||
msgid "There is no rating for this channel at the moment."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_image
|
||||
msgid ""
|
||||
"This field holds the image used as photo for the group, limited to "
|
||||
"1024x1024px."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_default_message
|
||||
msgid ""
|
||||
"This is an automated 'welcome' message that your visitor will see when they "
|
||||
"initiate a new conversation."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_image_small
|
||||
msgid "Thumbnail"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_time_to_answer
|
||||
msgid "Time to answer"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
msgid "Treated sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_regex_url
|
||||
msgid "URL Regex"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_web_page
|
||||
msgid ""
|
||||
"URL to a static page where you client can discuss with the operator of the "
|
||||
"channel."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_uuid
|
||||
msgid "UUID"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:res.groups,name:im_livechat.im_livechat_group_user
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/controllers/main.py:37
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:49
|
||||
#, python-format
|
||||
msgid "Visitor"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_web_page
|
||||
msgid "Web Page"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.im_livechat_channel_action
|
||||
msgid "Website Live Chat Channels"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_default_message
|
||||
msgid "Welcome Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_channel_action
|
||||
msgid ""
|
||||
"You can create channels for each website on which you want\n"
|
||||
" to integrate the website live chat widget, allowing your website\n"
|
||||
" visitors to talk in real time with your operators."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.mail_channel_action
|
||||
msgid ""
|
||||
"Your chatter history is empty. Create a channel and start chatting to fill "
|
||||
"up your history."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "e.g. Hello, how may I help you?"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "e.g. YourWebsite.com"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_ir_autovacuum
|
||||
msgid "ir.autovacuum"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "or copy this url and send it by email to your customers or suppliers:"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_rule_view_form
|
||||
msgid "seconds"
|
||||
msgstr ""
|
||||
923
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/es_CL.po
Normal file
923
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/es_CL.po
Normal file
|
|
@ -0,0 +1,923 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * im_livechat
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 11.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-11-30 13:12+0000\n"
|
||||
"PO-Revision-Date: 2017-11-30 13:12+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Spanish (Chile) (https://www.transifex.com/odoo/teams/41243/es_CL/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_CL\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_nbr_channel
|
||||
msgid "# of Sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_nbr_speaker
|
||||
msgid "# of speakers"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rating_percentage_satisfaction
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "% Happy"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_action
|
||||
msgid ""
|
||||
"* 'Display the button' displays the chat button on the pages.\n"
|
||||
"* 'Auto popup' displays the button and automatically open the conversation pane.\n"
|
||||
"* 'Hide the button' hides the chat button on the pages."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid ""
|
||||
"<span>Define rules for your live support channel. You can apply an action "
|
||||
"(disable the support, automatically open your support, or just make the "
|
||||
"button available) for the given URL, and per country.<br/>To identify the "
|
||||
"country, GeoIP must be installed on your server, otherwise, the countries of"
|
||||
" the rule will not be taken into account.</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_action
|
||||
msgid "Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_mail_channel_anonymous_name
|
||||
msgid "Anonymous Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_are_you_inside
|
||||
msgid "Are you inside the matrix?"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:48
|
||||
#, python-format
|
||||
msgid "Ask something ..."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_tree
|
||||
msgid "Attendees"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: selection:im_livechat.channel.rule,action:0
|
||||
msgid "Auto popup"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_auto_popup_timer
|
||||
msgid "Auto popup timer"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_duration
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_duration
|
||||
msgid "Average duration"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_nbr_message
|
||||
msgid "Average message"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_operator_time_to_answer
|
||||
msgid "Average time to give the first answer to the visitor"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:13
|
||||
#, python-format
|
||||
msgid "Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.im_livechat_canned_response_action
|
||||
#: model:ir.ui.menu,name:im_livechat.canned_responses
|
||||
msgid "Canned Responses"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_canned_response_action
|
||||
msgid ""
|
||||
"Canned responses allow you to insert prewritten responses in\n"
|
||||
" your messages by typing <i>:shortcut</i>. The shortcut is\n"
|
||||
" replaced directly in your message, so that you can still edit\n"
|
||||
" it before sending."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_livechat_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_livechat_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_mail_channel_livechat_channel_id
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_channel_name
|
||||
msgid "Channel Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_rule_view_form
|
||||
msgid "Channel Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_im_livechat_channel_rule
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "Channel Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.support_channels
|
||||
msgid "Channels"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_input_placeholder
|
||||
msgid "Chat Input Placeholder"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:50
|
||||
#, python-format
|
||||
msgid "Chat with one of our collaborators"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_canned_response_action
|
||||
msgid "Click to create a new canned response."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_channel_action
|
||||
msgid "Click to define a new website live chat channel."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_technical_name
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.livechat_config
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_channel_id
|
||||
msgid "Conversation"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/copy_clipboard.js:32
|
||||
#, python-format
|
||||
msgid "Copied !"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/copy_clipboard.xml:6
|
||||
#: code:addons/im_livechat/static/src/xml/copy_clipboard.xml:12
|
||||
#, python-format
|
||||
msgid "Copy Text"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid ""
|
||||
"Copy and paste this code into your website, within the <head> tag:"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_country_ids
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_create_uid
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_create_date
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Creation date (day)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
msgid "Creation date (hour)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Creation date (month)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Creation date (week)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Creation date (year)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.rating_rating_action_livechat_report
|
||||
#: model:ir.ui.menu,name:im_livechat.rating_rating_menu_livechat
|
||||
msgid "Customer Ratings"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.rating_rating_action_livechat_report
|
||||
msgid "Customer ratings on livechat session."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_button_text
|
||||
msgid "Default text displayed on the Livechat Support Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_auto_popup_timer
|
||||
msgid ""
|
||||
"Delay (in seconds) to automatically open the conversation window. Note: the "
|
||||
"selected action must be 'Auto popup' otherwise this parameter will not be "
|
||||
"taken into account."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:7
|
||||
#, python-format
|
||||
msgid "Did we correctly answer your question ?"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_mail_channel
|
||||
msgid "Discussion channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_display_name
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_display_name
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_display_name
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre mostrado"
|
||||
|
||||
#. module: im_livechat
|
||||
#: selection:im_livechat.channel.rule,action:0
|
||||
msgid "Display the button"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_channel_duration
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_operator_duration
|
||||
msgid "Duration of the conversation (in seconds)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_channel_action
|
||||
msgid ""
|
||||
"Each channel has it's own URL that you can send by email to\n"
|
||||
" your customers in order to start chatting with you."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:19
|
||||
#, python-format
|
||||
msgid "Explain your note"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid ""
|
||||
"For website built with Odoo CMS, please install the website_livechat module."
|
||||
" Then go to Website Admin > Configuration > Settings and select the "
|
||||
"Website Live Chat Channel you want to add on your website."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_sequence
|
||||
msgid ""
|
||||
"Given the order to find a matching rule. If 2 rules are matching for the "
|
||||
"given url/country, the one with the lowest sequence will be chosen."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:11
|
||||
#, python-format
|
||||
msgid "Good"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Group By..."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: selection:im_livechat.channel.rule,action:0
|
||||
msgid "Hide the button"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.mail_channel_action
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_tree
|
||||
msgid "History"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_start_date_hour
|
||||
msgid "Hour of start Date of session"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:51
|
||||
#, python-format
|
||||
msgid "How may I help you?"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "How to use the Website Live Chat widget?"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:15
|
||||
#, python-format
|
||||
msgid "I don't want to rate this conversation"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_id
|
||||
msgid "ID"
|
||||
msgstr "ID (identificación)"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_image
|
||||
msgid "Image"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Join"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "Join Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
msgid "Last 24h"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.rating_rating_view_search_livechat
|
||||
msgid "Last 7 days"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel___last_update
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule___last_update
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel___last_update
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificación en"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_write_uid
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización de"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_write_date
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización en"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
msgid "Last Week"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Leave"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "Leave Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_mail_channel_partner
|
||||
msgid "Listeners of a Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.menu_livechat_root
|
||||
msgid "Live Chat"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.module.category,name:im_livechat.module_category_im_livechat
|
||||
msgid "Live Support"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat_backend.xml:9
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat_backend.xml:21
|
||||
#, python-format
|
||||
msgid "Livechat"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_im_livechat_channel
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.rating_rating_view_search_livechat
|
||||
msgid "Livechat Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_report_channel_action
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_report_operator_action
|
||||
msgid ""
|
||||
"Livechat Support Channel Statistics allows you to easily check and analyse "
|
||||
"your company livechat session performance. Extract information about the "
|
||||
"missed sessions, the audiance, the duration of a session, etc."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_im_livechat_report_channel
|
||||
#: model:ir.model,name:im_livechat.model_im_livechat_report_operator
|
||||
msgid "Livechat Support Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.im_livechat_report_channel_action
|
||||
#: model:ir.actions.act_window,name:im_livechat.im_livechat_report_operator_action
|
||||
msgid "Livechat Support Report Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_graph
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_pivot
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_graph
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_pivot
|
||||
msgid "Livechat Support Statistics"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:res.groups,name:im_livechat.im_livechat_group_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_sequence
|
||||
msgid "Matching order"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_image_medium
|
||||
msgid "Medium"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_image_medium
|
||||
msgid ""
|
||||
"Medium-sized photo of the group. It is automatically resized as a 128x128px "
|
||||
"image, with aspect ratio preserved. Use this field in form views or some "
|
||||
"kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
msgid "Missed sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_name
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: code:addons/im_livechat/models/mail_channel.py:125
|
||||
#, python-format
|
||||
msgid "No history found"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:150
|
||||
#, python-format
|
||||
msgid ""
|
||||
"None of our collaborators seems to be available, please try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_nbr_channel
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_operator_nbr_channel
|
||||
msgid "Number of conversation"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_channel_nbr_speaker
|
||||
msgid "Number of different speakers"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_channel_nbr_message
|
||||
msgid "Number of message in the conversation"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:12
|
||||
#, python-format
|
||||
msgid "OK"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_partner_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_partner_id
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
msgid "Operator"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.menu_reporting_livechat_operator
|
||||
msgid "Operator Analysis"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_user_ids
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "Operators"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid ""
|
||||
"Operators\n"
|
||||
" <br/>\n"
|
||||
" <i class=\"fa fa-comments\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid ""
|
||||
"Operators that do not show any activity In Odoo for more than 30 minutes "
|
||||
"will be considered as disconnected."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rating_percentage_satisfaction
|
||||
msgid "Percentage of happy ratings over the past 7 days"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_rating_rating
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_tree
|
||||
msgid "Rating"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:344
|
||||
#, python-format
|
||||
msgid "Rating: :rating_%d"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Rating: Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Rating: Great"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Rating: Okay"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.rating_rating_action_view_livechat_rating
|
||||
msgid "Ratings for livechat channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_regex_url
|
||||
msgid ""
|
||||
"Regular expression specifying the web pages this rule will be applied on."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.menu_reporting_livechat
|
||||
msgid "Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_ids
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_rule_view_tree
|
||||
msgid "Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_script_external
|
||||
msgid "Script (external)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Search history"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
msgid "Search report"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: code:addons/im_livechat/models/mail_channel.py:113
|
||||
#, python-format
|
||||
msgid "See 15 last visited pages"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_tree
|
||||
msgid "Session Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_form
|
||||
msgid "Session Form"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.menu_reporting_livechat_channel
|
||||
msgid "Session Statistics"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.mail_channel_action_from_livechat_channel
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_channel_ids
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.session_history
|
||||
msgid "Sessions History"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_image_small
|
||||
msgid ""
|
||||
"Small-sized photo of the group. It is automatically resized as a 64x64px "
|
||||
"image, with aspect ratio preserved. Use this field anywhere a small image is"
|
||||
" required."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_start_date
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_start_date
|
||||
msgid "Start Date of session"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_channel_start_date
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_operator_start_date
|
||||
msgid "Start date of the conversation"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_button_text
|
||||
msgid "Text of the Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_channel_id
|
||||
msgid "The channel of the rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_name
|
||||
msgid "The name of the channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_country_ids
|
||||
msgid ""
|
||||
"The rule will only be applied for these countries. Example: if you select "
|
||||
"'Belgium' and 'United States' and that you set the action to 'Hide Button', "
|
||||
"the chat button will be hidden on the specified URL from the visitors "
|
||||
"located in these 2 countries. This feature requires GeoIP installed on your "
|
||||
"server."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:res.groups,comment:im_livechat.im_livechat_group_manager
|
||||
msgid "The user will be able to delete support channels."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:res.groups,comment:im_livechat.im_livechat_group_user
|
||||
msgid "The user will be able to join support channels."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.rating_rating_action_view_livechat_rating
|
||||
msgid "There is no rating for this channel at the moment."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_image
|
||||
msgid ""
|
||||
"This field holds the image used as photo for the group, limited to "
|
||||
"1024x1024px."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_default_message
|
||||
msgid ""
|
||||
"This is an automated 'welcome' message that your visitor will see when they "
|
||||
"initiate a new conversation."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_image_small
|
||||
msgid "Thumbnail"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_time_to_answer
|
||||
msgid "Time to answer"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
msgid "Treated sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_regex_url
|
||||
msgid "URL Regex"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_web_page
|
||||
msgid ""
|
||||
"URL to a static page where you client can discuss with the operator of the "
|
||||
"channel."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_uuid
|
||||
msgid "UUID"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:res.groups,name:im_livechat.im_livechat_group_user
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/controllers/main.py:37
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:49
|
||||
#, python-format
|
||||
msgid "Visitor"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_web_page
|
||||
msgid "Web Page"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.im_livechat_channel_action
|
||||
msgid "Website Live Chat Channels"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_default_message
|
||||
msgid "Welcome Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_channel_action
|
||||
msgid ""
|
||||
"You can create channels for each website on which you want\n"
|
||||
" to integrate the website live chat widget, allowing your website\n"
|
||||
" visitors to talk in real time with your operators."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.mail_channel_action
|
||||
msgid ""
|
||||
"Your chatter history is empty. Create a channel and start chatting to fill "
|
||||
"up your history."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "e.g. Hello, how may I help you?"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "e.g. YourWebsite.com"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_ir_autovacuum
|
||||
msgid "ir.autovacuum"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "or copy this url and send it by email to your customers or suppliers:"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_rule_view_form
|
||||
msgid "seconds"
|
||||
msgstr ""
|
||||
923
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/es_CO.po
Normal file
923
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/es_CO.po
Normal file
|
|
@ -0,0 +1,923 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * im_livechat
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 11.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-11-30 13:12+0000\n"
|
||||
"PO-Revision-Date: 2017-11-30 13:12+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Spanish (Colombia) (https://www.transifex.com/odoo/teams/41243/es_CO/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_CO\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_nbr_channel
|
||||
msgid "# of Sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_nbr_speaker
|
||||
msgid "# of speakers"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rating_percentage_satisfaction
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "% Happy"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_action
|
||||
msgid ""
|
||||
"* 'Display the button' displays the chat button on the pages.\n"
|
||||
"* 'Auto popup' displays the button and automatically open the conversation pane.\n"
|
||||
"* 'Hide the button' hides the chat button on the pages."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid ""
|
||||
"<span>Define rules for your live support channel. You can apply an action "
|
||||
"(disable the support, automatically open your support, or just make the "
|
||||
"button available) for the given URL, and per country.<br/>To identify the "
|
||||
"country, GeoIP must be installed on your server, otherwise, the countries of"
|
||||
" the rule will not be taken into account.</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_action
|
||||
msgid "Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_mail_channel_anonymous_name
|
||||
msgid "Anonymous Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_are_you_inside
|
||||
msgid "Are you inside the matrix?"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:48
|
||||
#, python-format
|
||||
msgid "Ask something ..."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_tree
|
||||
msgid "Attendees"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: selection:im_livechat.channel.rule,action:0
|
||||
msgid "Auto popup"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_auto_popup_timer
|
||||
msgid "Auto popup timer"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_duration
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_duration
|
||||
msgid "Average duration"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_nbr_message
|
||||
msgid "Average message"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_operator_time_to_answer
|
||||
msgid "Average time to give the first answer to the visitor"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:13
|
||||
#, python-format
|
||||
msgid "Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.im_livechat_canned_response_action
|
||||
#: model:ir.ui.menu,name:im_livechat.canned_responses
|
||||
msgid "Canned Responses"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_canned_response_action
|
||||
msgid ""
|
||||
"Canned responses allow you to insert prewritten responses in\n"
|
||||
" your messages by typing <i>:shortcut</i>. The shortcut is\n"
|
||||
" replaced directly in your message, so that you can still edit\n"
|
||||
" it before sending."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_livechat_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_livechat_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_mail_channel_livechat_channel_id
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_channel_name
|
||||
msgid "Channel Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_rule_view_form
|
||||
msgid "Channel Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_im_livechat_channel_rule
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "Channel Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.support_channels
|
||||
msgid "Channels"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_input_placeholder
|
||||
msgid "Chat Input Placeholder"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:50
|
||||
#, python-format
|
||||
msgid "Chat with one of our collaborators"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_canned_response_action
|
||||
msgid "Click to create a new canned response."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_channel_action
|
||||
msgid "Click to define a new website live chat channel."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_technical_name
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.livechat_config
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_channel_id
|
||||
msgid "Conversation"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/copy_clipboard.js:32
|
||||
#, python-format
|
||||
msgid "Copied !"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/copy_clipboard.xml:6
|
||||
#: code:addons/im_livechat/static/src/xml/copy_clipboard.xml:12
|
||||
#, python-format
|
||||
msgid "Copy Text"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid ""
|
||||
"Copy and paste this code into your website, within the <head> tag:"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_country_ids
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_create_uid
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_create_date
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Creation date (day)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
msgid "Creation date (hour)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Creation date (month)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Creation date (week)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Creation date (year)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.rating_rating_action_livechat_report
|
||||
#: model:ir.ui.menu,name:im_livechat.rating_rating_menu_livechat
|
||||
msgid "Customer Ratings"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.rating_rating_action_livechat_report
|
||||
msgid "Customer ratings on livechat session."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_button_text
|
||||
msgid "Default text displayed on the Livechat Support Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_auto_popup_timer
|
||||
msgid ""
|
||||
"Delay (in seconds) to automatically open the conversation window. Note: the "
|
||||
"selected action must be 'Auto popup' otherwise this parameter will not be "
|
||||
"taken into account."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:7
|
||||
#, python-format
|
||||
msgid "Did we correctly answer your question ?"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_mail_channel
|
||||
msgid "Discussion channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_display_name
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_display_name
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_display_name
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre Público"
|
||||
|
||||
#. module: im_livechat
|
||||
#: selection:im_livechat.channel.rule,action:0
|
||||
msgid "Display the button"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_channel_duration
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_operator_duration
|
||||
msgid "Duration of the conversation (in seconds)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_channel_action
|
||||
msgid ""
|
||||
"Each channel has it's own URL that you can send by email to\n"
|
||||
" your customers in order to start chatting with you."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:19
|
||||
#, python-format
|
||||
msgid "Explain your note"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid ""
|
||||
"For website built with Odoo CMS, please install the website_livechat module."
|
||||
" Then go to Website Admin > Configuration > Settings and select the "
|
||||
"Website Live Chat Channel you want to add on your website."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_sequence
|
||||
msgid ""
|
||||
"Given the order to find a matching rule. If 2 rules are matching for the "
|
||||
"given url/country, the one with the lowest sequence will be chosen."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:11
|
||||
#, python-format
|
||||
msgid "Good"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Group By..."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: selection:im_livechat.channel.rule,action:0
|
||||
msgid "Hide the button"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.mail_channel_action
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_tree
|
||||
msgid "History"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_start_date_hour
|
||||
msgid "Hour of start Date of session"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:51
|
||||
#, python-format
|
||||
msgid "How may I help you?"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "How to use the Website Live Chat widget?"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:15
|
||||
#, python-format
|
||||
msgid "I don't want to rate this conversation"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_image
|
||||
msgid "Image"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Join"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "Join Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
msgid "Last 24h"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.rating_rating_view_search_livechat
|
||||
msgid "Last 7 days"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel___last_update
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule___last_update
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel___last_update
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última Modificación el"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_write_uid
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Actualizado por"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_write_date
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Actualizado"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
msgid "Last Week"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Leave"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "Leave Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_mail_channel_partner
|
||||
msgid "Listeners of a Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.menu_livechat_root
|
||||
msgid "Live Chat"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.module.category,name:im_livechat.module_category_im_livechat
|
||||
msgid "Live Support"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat_backend.xml:9
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat_backend.xml:21
|
||||
#, python-format
|
||||
msgid "Livechat"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_im_livechat_channel
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.rating_rating_view_search_livechat
|
||||
msgid "Livechat Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_report_channel_action
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_report_operator_action
|
||||
msgid ""
|
||||
"Livechat Support Channel Statistics allows you to easily check and analyse "
|
||||
"your company livechat session performance. Extract information about the "
|
||||
"missed sessions, the audiance, the duration of a session, etc."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_im_livechat_report_channel
|
||||
#: model:ir.model,name:im_livechat.model_im_livechat_report_operator
|
||||
msgid "Livechat Support Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.im_livechat_report_channel_action
|
||||
#: model:ir.actions.act_window,name:im_livechat.im_livechat_report_operator_action
|
||||
msgid "Livechat Support Report Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_graph
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_pivot
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_graph
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_pivot
|
||||
msgid "Livechat Support Statistics"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:res.groups,name:im_livechat.im_livechat_group_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_sequence
|
||||
msgid "Matching order"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_image_medium
|
||||
msgid "Medium"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_image_medium
|
||||
msgid ""
|
||||
"Medium-sized photo of the group. It is automatically resized as a 128x128px "
|
||||
"image, with aspect ratio preserved. Use this field in form views or some "
|
||||
"kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
msgid "Missed sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_name
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: code:addons/im_livechat/models/mail_channel.py:125
|
||||
#, python-format
|
||||
msgid "No history found"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:150
|
||||
#, python-format
|
||||
msgid ""
|
||||
"None of our collaborators seems to be available, please try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_nbr_channel
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_operator_nbr_channel
|
||||
msgid "Number of conversation"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_channel_nbr_speaker
|
||||
msgid "Number of different speakers"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_channel_nbr_message
|
||||
msgid "Number of message in the conversation"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:12
|
||||
#, python-format
|
||||
msgid "OK"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_partner_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_partner_id
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
msgid "Operator"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.menu_reporting_livechat_operator
|
||||
msgid "Operator Analysis"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_user_ids
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "Operators"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid ""
|
||||
"Operators\n"
|
||||
" <br/>\n"
|
||||
" <i class=\"fa fa-comments\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid ""
|
||||
"Operators that do not show any activity In Odoo for more than 30 minutes "
|
||||
"will be considered as disconnected."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rating_percentage_satisfaction
|
||||
msgid "Percentage of happy ratings over the past 7 days"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_rating_rating
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_tree
|
||||
msgid "Rating"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:344
|
||||
#, python-format
|
||||
msgid "Rating: :rating_%d"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Rating: Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Rating: Great"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Rating: Okay"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.rating_rating_action_view_livechat_rating
|
||||
msgid "Ratings for livechat channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_regex_url
|
||||
msgid ""
|
||||
"Regular expression specifying the web pages this rule will be applied on."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.menu_reporting_livechat
|
||||
msgid "Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_ids
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_rule_view_tree
|
||||
msgid "Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_script_external
|
||||
msgid "Script (external)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Search history"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
msgid "Search report"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: code:addons/im_livechat/models/mail_channel.py:113
|
||||
#, python-format
|
||||
msgid "See 15 last visited pages"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_tree
|
||||
msgid "Session Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_form
|
||||
msgid "Session Form"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.menu_reporting_livechat_channel
|
||||
msgid "Session Statistics"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.mail_channel_action_from_livechat_channel
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_channel_ids
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.session_history
|
||||
msgid "Sessions History"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_image_small
|
||||
msgid ""
|
||||
"Small-sized photo of the group. It is automatically resized as a 64x64px "
|
||||
"image, with aspect ratio preserved. Use this field anywhere a small image is"
|
||||
" required."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_start_date
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_start_date
|
||||
msgid "Start Date of session"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_channel_start_date
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_operator_start_date
|
||||
msgid "Start date of the conversation"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_button_text
|
||||
msgid "Text of the Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_channel_id
|
||||
msgid "The channel of the rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_name
|
||||
msgid "The name of the channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_country_ids
|
||||
msgid ""
|
||||
"The rule will only be applied for these countries. Example: if you select "
|
||||
"'Belgium' and 'United States' and that you set the action to 'Hide Button', "
|
||||
"the chat button will be hidden on the specified URL from the visitors "
|
||||
"located in these 2 countries. This feature requires GeoIP installed on your "
|
||||
"server."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:res.groups,comment:im_livechat.im_livechat_group_manager
|
||||
msgid "The user will be able to delete support channels."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:res.groups,comment:im_livechat.im_livechat_group_user
|
||||
msgid "The user will be able to join support channels."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.rating_rating_action_view_livechat_rating
|
||||
msgid "There is no rating for this channel at the moment."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_image
|
||||
msgid ""
|
||||
"This field holds the image used as photo for the group, limited to "
|
||||
"1024x1024px."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_default_message
|
||||
msgid ""
|
||||
"This is an automated 'welcome' message that your visitor will see when they "
|
||||
"initiate a new conversation."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_image_small
|
||||
msgid "Thumbnail"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_time_to_answer
|
||||
msgid "Time to answer"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
msgid "Treated sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_regex_url
|
||||
msgid "URL Regex"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_web_page
|
||||
msgid ""
|
||||
"URL to a static page where you client can discuss with the operator of the "
|
||||
"channel."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_uuid
|
||||
msgid "UUID"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:res.groups,name:im_livechat.im_livechat_group_user
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/controllers/main.py:37
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:49
|
||||
#, python-format
|
||||
msgid "Visitor"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_web_page
|
||||
msgid "Web Page"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.im_livechat_channel_action
|
||||
msgid "Website Live Chat Channels"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_default_message
|
||||
msgid "Welcome Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_channel_action
|
||||
msgid ""
|
||||
"You can create channels for each website on which you want\n"
|
||||
" to integrate the website live chat widget, allowing your website\n"
|
||||
" visitors to talk in real time with your operators."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.mail_channel_action
|
||||
msgid ""
|
||||
"Your chatter history is empty. Create a channel and start chatting to fill "
|
||||
"up your history."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "e.g. Hello, how may I help you?"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "e.g. YourWebsite.com"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_ir_autovacuum
|
||||
msgid "ir.autovacuum"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "or copy this url and send it by email to your customers or suppliers:"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_rule_view_form
|
||||
msgid "seconds"
|
||||
msgstr ""
|
||||
923
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/es_CR.po
Normal file
923
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/es_CR.po
Normal file
|
|
@ -0,0 +1,923 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * im_livechat
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 11.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-11-30 13:12+0000\n"
|
||||
"PO-Revision-Date: 2017-11-30 13:12+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/odoo/teams/41243/es_CR/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_CR\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_nbr_channel
|
||||
msgid "# of Sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_nbr_speaker
|
||||
msgid "# of speakers"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rating_percentage_satisfaction
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "% Happy"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_action
|
||||
msgid ""
|
||||
"* 'Display the button' displays the chat button on the pages.\n"
|
||||
"* 'Auto popup' displays the button and automatically open the conversation pane.\n"
|
||||
"* 'Hide the button' hides the chat button on the pages."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid ""
|
||||
"<span>Define rules for your live support channel. You can apply an action "
|
||||
"(disable the support, automatically open your support, or just make the "
|
||||
"button available) for the given URL, and per country.<br/>To identify the "
|
||||
"country, GeoIP must be installed on your server, otherwise, the countries of"
|
||||
" the rule will not be taken into account.</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_action
|
||||
msgid "Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_mail_channel_anonymous_name
|
||||
msgid "Anonymous Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_are_you_inside
|
||||
msgid "Are you inside the matrix?"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:48
|
||||
#, python-format
|
||||
msgid "Ask something ..."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_tree
|
||||
msgid "Attendees"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: selection:im_livechat.channel.rule,action:0
|
||||
msgid "Auto popup"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_auto_popup_timer
|
||||
msgid "Auto popup timer"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_duration
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_duration
|
||||
msgid "Average duration"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_nbr_message
|
||||
msgid "Average message"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_operator_time_to_answer
|
||||
msgid "Average time to give the first answer to the visitor"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:13
|
||||
#, python-format
|
||||
msgid "Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.im_livechat_canned_response_action
|
||||
#: model:ir.ui.menu,name:im_livechat.canned_responses
|
||||
msgid "Canned Responses"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_canned_response_action
|
||||
msgid ""
|
||||
"Canned responses allow you to insert prewritten responses in\n"
|
||||
" your messages by typing <i>:shortcut</i>. The shortcut is\n"
|
||||
" replaced directly in your message, so that you can still edit\n"
|
||||
" it before sending."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_livechat_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_livechat_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_mail_channel_livechat_channel_id
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_channel_name
|
||||
msgid "Channel Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_rule_view_form
|
||||
msgid "Channel Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_im_livechat_channel_rule
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "Channel Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.support_channels
|
||||
msgid "Channels"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_input_placeholder
|
||||
msgid "Chat Input Placeholder"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:50
|
||||
#, python-format
|
||||
msgid "Chat with one of our collaborators"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_canned_response_action
|
||||
msgid "Click to create a new canned response."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_channel_action
|
||||
msgid "Click to define a new website live chat channel."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_technical_name
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.livechat_config
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_channel_id
|
||||
msgid "Conversation"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/copy_clipboard.js:32
|
||||
#, python-format
|
||||
msgid "Copied !"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/copy_clipboard.xml:6
|
||||
#: code:addons/im_livechat/static/src/xml/copy_clipboard.xml:12
|
||||
#, python-format
|
||||
msgid "Copy Text"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid ""
|
||||
"Copy and paste this code into your website, within the <head> tag:"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_country_ids
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_create_uid
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_create_uid
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_create_date
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Creation date (day)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
msgid "Creation date (hour)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Creation date (month)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Creation date (week)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Creation date (year)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.rating_rating_action_livechat_report
|
||||
#: model:ir.ui.menu,name:im_livechat.rating_rating_menu_livechat
|
||||
msgid "Customer Ratings"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.rating_rating_action_livechat_report
|
||||
msgid "Customer ratings on livechat session."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_button_text
|
||||
msgid "Default text displayed on the Livechat Support Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_auto_popup_timer
|
||||
msgid ""
|
||||
"Delay (in seconds) to automatically open the conversation window. Note: the "
|
||||
"selected action must be 'Auto popup' otherwise this parameter will not be "
|
||||
"taken into account."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:7
|
||||
#, python-format
|
||||
msgid "Did we correctly answer your question ?"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_mail_channel
|
||||
msgid "Discussion channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_display_name
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_display_name
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_display_name
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: selection:im_livechat.channel.rule,action:0
|
||||
msgid "Display the button"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_channel_duration
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_operator_duration
|
||||
msgid "Duration of the conversation (in seconds)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_channel_action
|
||||
msgid ""
|
||||
"Each channel has it's own URL that you can send by email to\n"
|
||||
" your customers in order to start chatting with you."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:19
|
||||
#, python-format
|
||||
msgid "Explain your note"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid ""
|
||||
"For website built with Odoo CMS, please install the website_livechat module."
|
||||
" Then go to Website Admin > Configuration > Settings and select the "
|
||||
"Website Live Chat Channel you want to add on your website."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_sequence
|
||||
msgid ""
|
||||
"Given the order to find a matching rule. If 2 rules are matching for the "
|
||||
"given url/country, the one with the lowest sequence will be chosen."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:11
|
||||
#, python-format
|
||||
msgid "Good"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Group By..."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: selection:im_livechat.channel.rule,action:0
|
||||
msgid "Hide the button"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.mail_channel_action
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_tree
|
||||
msgid "History"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_start_date_hour
|
||||
msgid "Hour of start Date of session"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:51
|
||||
#, python-format
|
||||
msgid "How may I help you?"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "How to use the Website Live Chat widget?"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:15
|
||||
#, python-format
|
||||
msgid "I don't want to rate this conversation"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_image
|
||||
msgid "Image"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Join"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "Join Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
msgid "Last 24h"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.rating_rating_view_search_livechat
|
||||
msgid "Last 7 days"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel___last_update
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule___last_update
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel___last_update
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_write_uid
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_write_date
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
msgid "Last Week"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Leave"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "Leave Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_mail_channel_partner
|
||||
msgid "Listeners of a Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.menu_livechat_root
|
||||
msgid "Live Chat"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.module.category,name:im_livechat.module_category_im_livechat
|
||||
msgid "Live Support"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat_backend.xml:9
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat_backend.xml:21
|
||||
#, python-format
|
||||
msgid "Livechat"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_im_livechat_channel
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.rating_rating_view_search_livechat
|
||||
msgid "Livechat Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_report_channel_action
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_report_operator_action
|
||||
msgid ""
|
||||
"Livechat Support Channel Statistics allows you to easily check and analyse "
|
||||
"your company livechat session performance. Extract information about the "
|
||||
"missed sessions, the audiance, the duration of a session, etc."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_im_livechat_report_channel
|
||||
#: model:ir.model,name:im_livechat.model_im_livechat_report_operator
|
||||
msgid "Livechat Support Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.im_livechat_report_channel_action
|
||||
#: model:ir.actions.act_window,name:im_livechat.im_livechat_report_operator_action
|
||||
msgid "Livechat Support Report Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_graph
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_pivot
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_graph
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_pivot
|
||||
msgid "Livechat Support Statistics"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:res.groups,name:im_livechat.im_livechat_group_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_sequence
|
||||
msgid "Matching order"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_image_medium
|
||||
msgid "Medium"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_image_medium
|
||||
msgid ""
|
||||
"Medium-sized photo of the group. It is automatically resized as a 128x128px "
|
||||
"image, with aspect ratio preserved. Use this field in form views or some "
|
||||
"kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
msgid "Missed sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_name
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: code:addons/im_livechat/models/mail_channel.py:125
|
||||
#, python-format
|
||||
msgid "No history found"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:150
|
||||
#, python-format
|
||||
msgid ""
|
||||
"None of our collaborators seems to be available, please try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_nbr_channel
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_operator_nbr_channel
|
||||
msgid "Number of conversation"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_channel_nbr_speaker
|
||||
msgid "Number of different speakers"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_channel_nbr_message
|
||||
msgid "Number of message in the conversation"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:12
|
||||
#, python-format
|
||||
msgid "OK"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_partner_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_partner_id
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
msgid "Operator"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.menu_reporting_livechat_operator
|
||||
msgid "Operator Analysis"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_user_ids
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "Operators"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid ""
|
||||
"Operators\n"
|
||||
" <br/>\n"
|
||||
" <i class=\"fa fa-comments\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid ""
|
||||
"Operators that do not show any activity In Odoo for more than 30 minutes "
|
||||
"will be considered as disconnected."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rating_percentage_satisfaction
|
||||
msgid "Percentage of happy ratings over the past 7 days"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_rating_rating
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_tree
|
||||
msgid "Rating"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:344
|
||||
#, python-format
|
||||
msgid "Rating: :rating_%d"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Rating: Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Rating: Great"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Rating: Okay"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.rating_rating_action_view_livechat_rating
|
||||
msgid "Ratings for livechat channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_regex_url
|
||||
msgid ""
|
||||
"Regular expression specifying the web pages this rule will be applied on."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.menu_reporting_livechat
|
||||
msgid "Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_ids
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_rule_view_tree
|
||||
msgid "Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_script_external
|
||||
msgid "Script (external)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Search history"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
msgid "Search report"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: code:addons/im_livechat/models/mail_channel.py:113
|
||||
#, python-format
|
||||
msgid "See 15 last visited pages"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_tree
|
||||
msgid "Session Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_form
|
||||
msgid "Session Form"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.menu_reporting_livechat_channel
|
||||
msgid "Session Statistics"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.mail_channel_action_from_livechat_channel
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_channel_ids
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.session_history
|
||||
msgid "Sessions History"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_image_small
|
||||
msgid ""
|
||||
"Small-sized photo of the group. It is automatically resized as a 64x64px "
|
||||
"image, with aspect ratio preserved. Use this field anywhere a small image is"
|
||||
" required."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_start_date
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_start_date
|
||||
msgid "Start Date of session"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_channel_start_date
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_operator_start_date
|
||||
msgid "Start date of the conversation"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_button_text
|
||||
msgid "Text of the Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_channel_id
|
||||
msgid "The channel of the rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_name
|
||||
msgid "The name of the channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_country_ids
|
||||
msgid ""
|
||||
"The rule will only be applied for these countries. Example: if you select "
|
||||
"'Belgium' and 'United States' and that you set the action to 'Hide Button', "
|
||||
"the chat button will be hidden on the specified URL from the visitors "
|
||||
"located in these 2 countries. This feature requires GeoIP installed on your "
|
||||
"server."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:res.groups,comment:im_livechat.im_livechat_group_manager
|
||||
msgid "The user will be able to delete support channels."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:res.groups,comment:im_livechat.im_livechat_group_user
|
||||
msgid "The user will be able to join support channels."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.rating_rating_action_view_livechat_rating
|
||||
msgid "There is no rating for this channel at the moment."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_image
|
||||
msgid ""
|
||||
"This field holds the image used as photo for the group, limited to "
|
||||
"1024x1024px."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_default_message
|
||||
msgid ""
|
||||
"This is an automated 'welcome' message that your visitor will see when they "
|
||||
"initiate a new conversation."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_image_small
|
||||
msgid "Thumbnail"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_time_to_answer
|
||||
msgid "Time to answer"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
msgid "Treated sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_regex_url
|
||||
msgid "URL Regex"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_web_page
|
||||
msgid ""
|
||||
"URL to a static page where you client can discuss with the operator of the "
|
||||
"channel."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_uuid
|
||||
msgid "UUID"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:res.groups,name:im_livechat.im_livechat_group_user
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/controllers/main.py:37
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:49
|
||||
#, python-format
|
||||
msgid "Visitor"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_web_page
|
||||
msgid "Web Page"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.im_livechat_channel_action
|
||||
msgid "Website Live Chat Channels"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_default_message
|
||||
msgid "Welcome Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_channel_action
|
||||
msgid ""
|
||||
"You can create channels for each website on which you want\n"
|
||||
" to integrate the website live chat widget, allowing your website\n"
|
||||
" visitors to talk in real time with your operators."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.mail_channel_action
|
||||
msgid ""
|
||||
"Your chatter history is empty. Create a channel and start chatting to fill "
|
||||
"up your history."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "e.g. Hello, how may I help you?"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "e.g. YourWebsite.com"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_ir_autovacuum
|
||||
msgid "ir.autovacuum"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "or copy this url and send it by email to your customers or suppliers:"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_rule_view_form
|
||||
msgid "seconds"
|
||||
msgstr ""
|
||||
923
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/es_DO.po
Normal file
923
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/es_DO.po
Normal file
|
|
@ -0,0 +1,923 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * im_livechat
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 11.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-11-30 13:12+0000\n"
|
||||
"PO-Revision-Date: 2017-11-30 13:12+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/odoo/teams/41243/es_DO/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_DO\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_nbr_channel
|
||||
msgid "# of Sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_nbr_speaker
|
||||
msgid "# of speakers"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rating_percentage_satisfaction
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "% Happy"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_action
|
||||
msgid ""
|
||||
"* 'Display the button' displays the chat button on the pages.\n"
|
||||
"* 'Auto popup' displays the button and automatically open the conversation pane.\n"
|
||||
"* 'Hide the button' hides the chat button on the pages."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid ""
|
||||
"<span>Define rules for your live support channel. You can apply an action "
|
||||
"(disable the support, automatically open your support, or just make the "
|
||||
"button available) for the given URL, and per country.<br/>To identify the "
|
||||
"country, GeoIP must be installed on your server, otherwise, the countries of"
|
||||
" the rule will not be taken into account.</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_action
|
||||
msgid "Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_mail_channel_anonymous_name
|
||||
msgid "Anonymous Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_are_you_inside
|
||||
msgid "Are you inside the matrix?"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:48
|
||||
#, python-format
|
||||
msgid "Ask something ..."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_tree
|
||||
msgid "Attendees"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: selection:im_livechat.channel.rule,action:0
|
||||
msgid "Auto popup"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_auto_popup_timer
|
||||
msgid "Auto popup timer"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_duration
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_duration
|
||||
msgid "Average duration"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_nbr_message
|
||||
msgid "Average message"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_operator_time_to_answer
|
||||
msgid "Average time to give the first answer to the visitor"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:13
|
||||
#, python-format
|
||||
msgid "Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.im_livechat_canned_response_action
|
||||
#: model:ir.ui.menu,name:im_livechat.canned_responses
|
||||
msgid "Canned Responses"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_canned_response_action
|
||||
msgid ""
|
||||
"Canned responses allow you to insert prewritten responses in\n"
|
||||
" your messages by typing <i>:shortcut</i>. The shortcut is\n"
|
||||
" replaced directly in your message, so that you can still edit\n"
|
||||
" it before sending."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_livechat_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_livechat_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_mail_channel_livechat_channel_id
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_channel_name
|
||||
msgid "Channel Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_rule_view_form
|
||||
msgid "Channel Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_im_livechat_channel_rule
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "Channel Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.support_channels
|
||||
msgid "Channels"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_input_placeholder
|
||||
msgid "Chat Input Placeholder"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:50
|
||||
#, python-format
|
||||
msgid "Chat with one of our collaborators"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_canned_response_action
|
||||
msgid "Click to create a new canned response."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_channel_action
|
||||
msgid "Click to define a new website live chat channel."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_technical_name
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.livechat_config
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_channel_id
|
||||
msgid "Conversation"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/copy_clipboard.js:32
|
||||
#, python-format
|
||||
msgid "Copied !"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/copy_clipboard.xml:6
|
||||
#: code:addons/im_livechat/static/src/xml/copy_clipboard.xml:12
|
||||
#, python-format
|
||||
msgid "Copy Text"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid ""
|
||||
"Copy and paste this code into your website, within the <head> tag:"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_country_ids
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_create_uid
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_create_date
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Creation date (day)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
msgid "Creation date (hour)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Creation date (month)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Creation date (week)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Creation date (year)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.rating_rating_action_livechat_report
|
||||
#: model:ir.ui.menu,name:im_livechat.rating_rating_menu_livechat
|
||||
msgid "Customer Ratings"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.rating_rating_action_livechat_report
|
||||
msgid "Customer ratings on livechat session."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_button_text
|
||||
msgid "Default text displayed on the Livechat Support Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_auto_popup_timer
|
||||
msgid ""
|
||||
"Delay (in seconds) to automatically open the conversation window. Note: the "
|
||||
"selected action must be 'Auto popup' otherwise this parameter will not be "
|
||||
"taken into account."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:7
|
||||
#, python-format
|
||||
msgid "Did we correctly answer your question ?"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_mail_channel
|
||||
msgid "Discussion channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_display_name
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_display_name
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_display_name
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre mostrado"
|
||||
|
||||
#. module: im_livechat
|
||||
#: selection:im_livechat.channel.rule,action:0
|
||||
msgid "Display the button"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_channel_duration
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_operator_duration
|
||||
msgid "Duration of the conversation (in seconds)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_channel_action
|
||||
msgid ""
|
||||
"Each channel has it's own URL that you can send by email to\n"
|
||||
" your customers in order to start chatting with you."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:19
|
||||
#, python-format
|
||||
msgid "Explain your note"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid ""
|
||||
"For website built with Odoo CMS, please install the website_livechat module."
|
||||
" Then go to Website Admin > Configuration > Settings and select the "
|
||||
"Website Live Chat Channel you want to add on your website."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_sequence
|
||||
msgid ""
|
||||
"Given the order to find a matching rule. If 2 rules are matching for the "
|
||||
"given url/country, the one with the lowest sequence will be chosen."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:11
|
||||
#, python-format
|
||||
msgid "Good"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Group By..."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: selection:im_livechat.channel.rule,action:0
|
||||
msgid "Hide the button"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.mail_channel_action
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_tree
|
||||
msgid "History"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_start_date_hour
|
||||
msgid "Hour of start Date of session"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:51
|
||||
#, python-format
|
||||
msgid "How may I help you?"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "How to use the Website Live Chat widget?"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:15
|
||||
#, python-format
|
||||
msgid "I don't want to rate this conversation"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_id
|
||||
msgid "ID"
|
||||
msgstr "ID (identificación)"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_image
|
||||
msgid "Image"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Join"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "Join Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
msgid "Last 24h"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.rating_rating_view_search_livechat
|
||||
msgid "Last 7 days"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel___last_update
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule___last_update
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel___last_update
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificación en"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_write_uid
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización de"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_write_date
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización en"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
msgid "Last Week"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Leave"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "Leave Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_mail_channel_partner
|
||||
msgid "Listeners of a Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.menu_livechat_root
|
||||
msgid "Live Chat"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.module.category,name:im_livechat.module_category_im_livechat
|
||||
msgid "Live Support"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat_backend.xml:9
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat_backend.xml:21
|
||||
#, python-format
|
||||
msgid "Livechat"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_im_livechat_channel
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.rating_rating_view_search_livechat
|
||||
msgid "Livechat Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_report_channel_action
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_report_operator_action
|
||||
msgid ""
|
||||
"Livechat Support Channel Statistics allows you to easily check and analyse "
|
||||
"your company livechat session performance. Extract information about the "
|
||||
"missed sessions, the audiance, the duration of a session, etc."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_im_livechat_report_channel
|
||||
#: model:ir.model,name:im_livechat.model_im_livechat_report_operator
|
||||
msgid "Livechat Support Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.im_livechat_report_channel_action
|
||||
#: model:ir.actions.act_window,name:im_livechat.im_livechat_report_operator_action
|
||||
msgid "Livechat Support Report Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_graph
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_pivot
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_graph
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_pivot
|
||||
msgid "Livechat Support Statistics"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:res.groups,name:im_livechat.im_livechat_group_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_sequence
|
||||
msgid "Matching order"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_image_medium
|
||||
msgid "Medium"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_image_medium
|
||||
msgid ""
|
||||
"Medium-sized photo of the group. It is automatically resized as a 128x128px "
|
||||
"image, with aspect ratio preserved. Use this field in form views or some "
|
||||
"kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
msgid "Missed sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_name
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: code:addons/im_livechat/models/mail_channel.py:125
|
||||
#, python-format
|
||||
msgid "No history found"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:150
|
||||
#, python-format
|
||||
msgid ""
|
||||
"None of our collaborators seems to be available, please try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_nbr_channel
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_operator_nbr_channel
|
||||
msgid "Number of conversation"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_channel_nbr_speaker
|
||||
msgid "Number of different speakers"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_channel_nbr_message
|
||||
msgid "Number of message in the conversation"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:12
|
||||
#, python-format
|
||||
msgid "OK"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_partner_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_partner_id
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
msgid "Operator"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.menu_reporting_livechat_operator
|
||||
msgid "Operator Analysis"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_user_ids
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "Operators"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid ""
|
||||
"Operators\n"
|
||||
" <br/>\n"
|
||||
" <i class=\"fa fa-comments\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid ""
|
||||
"Operators that do not show any activity In Odoo for more than 30 minutes "
|
||||
"will be considered as disconnected."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rating_percentage_satisfaction
|
||||
msgid "Percentage of happy ratings over the past 7 days"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_rating_rating
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_tree
|
||||
msgid "Rating"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:344
|
||||
#, python-format
|
||||
msgid "Rating: :rating_%d"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Rating: Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Rating: Great"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Rating: Okay"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.rating_rating_action_view_livechat_rating
|
||||
msgid "Ratings for livechat channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_regex_url
|
||||
msgid ""
|
||||
"Regular expression specifying the web pages this rule will be applied on."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.menu_reporting_livechat
|
||||
msgid "Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_ids
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_rule_view_tree
|
||||
msgid "Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_script_external
|
||||
msgid "Script (external)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Search history"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
msgid "Search report"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: code:addons/im_livechat/models/mail_channel.py:113
|
||||
#, python-format
|
||||
msgid "See 15 last visited pages"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_tree
|
||||
msgid "Session Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_form
|
||||
msgid "Session Form"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.menu_reporting_livechat_channel
|
||||
msgid "Session Statistics"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.mail_channel_action_from_livechat_channel
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_channel_ids
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.session_history
|
||||
msgid "Sessions History"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_image_small
|
||||
msgid ""
|
||||
"Small-sized photo of the group. It is automatically resized as a 64x64px "
|
||||
"image, with aspect ratio preserved. Use this field anywhere a small image is"
|
||||
" required."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_start_date
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_start_date
|
||||
msgid "Start Date of session"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_channel_start_date
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_operator_start_date
|
||||
msgid "Start date of the conversation"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_button_text
|
||||
msgid "Text of the Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_channel_id
|
||||
msgid "The channel of the rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_name
|
||||
msgid "The name of the channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_country_ids
|
||||
msgid ""
|
||||
"The rule will only be applied for these countries. Example: if you select "
|
||||
"'Belgium' and 'United States' and that you set the action to 'Hide Button', "
|
||||
"the chat button will be hidden on the specified URL from the visitors "
|
||||
"located in these 2 countries. This feature requires GeoIP installed on your "
|
||||
"server."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:res.groups,comment:im_livechat.im_livechat_group_manager
|
||||
msgid "The user will be able to delete support channels."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:res.groups,comment:im_livechat.im_livechat_group_user
|
||||
msgid "The user will be able to join support channels."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.rating_rating_action_view_livechat_rating
|
||||
msgid "There is no rating for this channel at the moment."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_image
|
||||
msgid ""
|
||||
"This field holds the image used as photo for the group, limited to "
|
||||
"1024x1024px."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_default_message
|
||||
msgid ""
|
||||
"This is an automated 'welcome' message that your visitor will see when they "
|
||||
"initiate a new conversation."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_image_small
|
||||
msgid "Thumbnail"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_time_to_answer
|
||||
msgid "Time to answer"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
msgid "Treated sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_regex_url
|
||||
msgid "URL Regex"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_web_page
|
||||
msgid ""
|
||||
"URL to a static page where you client can discuss with the operator of the "
|
||||
"channel."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_uuid
|
||||
msgid "UUID"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:res.groups,name:im_livechat.im_livechat_group_user
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/controllers/main.py:37
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:49
|
||||
#, python-format
|
||||
msgid "Visitor"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_web_page
|
||||
msgid "Web Page"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.im_livechat_channel_action
|
||||
msgid "Website Live Chat Channels"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_default_message
|
||||
msgid "Welcome Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_channel_action
|
||||
msgid ""
|
||||
"You can create channels for each website on which you want\n"
|
||||
" to integrate the website live chat widget, allowing your website\n"
|
||||
" visitors to talk in real time with your operators."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.mail_channel_action
|
||||
msgid ""
|
||||
"Your chatter history is empty. Create a channel and start chatting to fill "
|
||||
"up your history."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "e.g. Hello, how may I help you?"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "e.g. YourWebsite.com"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_ir_autovacuum
|
||||
msgid "ir.autovacuum"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "or copy this url and send it by email to your customers or suppliers:"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_rule_view_form
|
||||
msgid "seconds"
|
||||
msgstr ""
|
||||
923
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/es_EC.po
Normal file
923
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/es_EC.po
Normal file
|
|
@ -0,0 +1,923 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * im_livechat
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 11.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-11-30 13:12+0000\n"
|
||||
"PO-Revision-Date: 2017-11-30 13:12+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Spanish (Ecuador) (https://www.transifex.com/odoo/teams/41243/es_EC/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_EC\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_nbr_channel
|
||||
msgid "# of Sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_nbr_speaker
|
||||
msgid "# of speakers"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rating_percentage_satisfaction
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "% Happy"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_action
|
||||
msgid ""
|
||||
"* 'Display the button' displays the chat button on the pages.\n"
|
||||
"* 'Auto popup' displays the button and automatically open the conversation pane.\n"
|
||||
"* 'Hide the button' hides the chat button on the pages."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid ""
|
||||
"<span>Define rules for your live support channel. You can apply an action "
|
||||
"(disable the support, automatically open your support, or just make the "
|
||||
"button available) for the given URL, and per country.<br/>To identify the "
|
||||
"country, GeoIP must be installed on your server, otherwise, the countries of"
|
||||
" the rule will not be taken into account.</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_action
|
||||
msgid "Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_mail_channel_anonymous_name
|
||||
msgid "Anonymous Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_are_you_inside
|
||||
msgid "Are you inside the matrix?"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:48
|
||||
#, python-format
|
||||
msgid "Ask something ..."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_tree
|
||||
msgid "Attendees"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: selection:im_livechat.channel.rule,action:0
|
||||
msgid "Auto popup"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_auto_popup_timer
|
||||
msgid "Auto popup timer"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_duration
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_duration
|
||||
msgid "Average duration"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_nbr_message
|
||||
msgid "Average message"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_operator_time_to_answer
|
||||
msgid "Average time to give the first answer to the visitor"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:13
|
||||
#, python-format
|
||||
msgid "Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.im_livechat_canned_response_action
|
||||
#: model:ir.ui.menu,name:im_livechat.canned_responses
|
||||
msgid "Canned Responses"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_canned_response_action
|
||||
msgid ""
|
||||
"Canned responses allow you to insert prewritten responses in\n"
|
||||
" your messages by typing <i>:shortcut</i>. The shortcut is\n"
|
||||
" replaced directly in your message, so that you can still edit\n"
|
||||
" it before sending."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_livechat_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_livechat_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_mail_channel_livechat_channel_id
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_channel_name
|
||||
msgid "Channel Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_rule_view_form
|
||||
msgid "Channel Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_im_livechat_channel_rule
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "Channel Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.support_channels
|
||||
msgid "Channels"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_input_placeholder
|
||||
msgid "Chat Input Placeholder"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:50
|
||||
#, python-format
|
||||
msgid "Chat with one of our collaborators"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_canned_response_action
|
||||
msgid "Click to create a new canned response."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_channel_action
|
||||
msgid "Click to define a new website live chat channel."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_technical_name
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.livechat_config
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_channel_id
|
||||
msgid "Conversation"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/copy_clipboard.js:32
|
||||
#, python-format
|
||||
msgid "Copied !"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/copy_clipboard.xml:6
|
||||
#: code:addons/im_livechat/static/src/xml/copy_clipboard.xml:12
|
||||
#, python-format
|
||||
msgid "Copy Text"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid ""
|
||||
"Copy and paste this code into your website, within the <head> tag:"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_country_ids
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_create_uid
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por:"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_create_date
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Creation date (day)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
msgid "Creation date (hour)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Creation date (month)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Creation date (week)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Creation date (year)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.rating_rating_action_livechat_report
|
||||
#: model:ir.ui.menu,name:im_livechat.rating_rating_menu_livechat
|
||||
msgid "Customer Ratings"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.rating_rating_action_livechat_report
|
||||
msgid "Customer ratings on livechat session."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_button_text
|
||||
msgid "Default text displayed on the Livechat Support Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_auto_popup_timer
|
||||
msgid ""
|
||||
"Delay (in seconds) to automatically open the conversation window. Note: the "
|
||||
"selected action must be 'Auto popup' otherwise this parameter will not be "
|
||||
"taken into account."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:7
|
||||
#, python-format
|
||||
msgid "Did we correctly answer your question ?"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_mail_channel
|
||||
msgid "Discussion channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_display_name
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_display_name
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_display_name
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre a Mostrar"
|
||||
|
||||
#. module: im_livechat
|
||||
#: selection:im_livechat.channel.rule,action:0
|
||||
msgid "Display the button"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_channel_duration
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_operator_duration
|
||||
msgid "Duration of the conversation (in seconds)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_channel_action
|
||||
msgid ""
|
||||
"Each channel has it's own URL that you can send by email to\n"
|
||||
" your customers in order to start chatting with you."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:19
|
||||
#, python-format
|
||||
msgid "Explain your note"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid ""
|
||||
"For website built with Odoo CMS, please install the website_livechat module."
|
||||
" Then go to Website Admin > Configuration > Settings and select the "
|
||||
"Website Live Chat Channel you want to add on your website."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_sequence
|
||||
msgid ""
|
||||
"Given the order to find a matching rule. If 2 rules are matching for the "
|
||||
"given url/country, the one with the lowest sequence will be chosen."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:11
|
||||
#, python-format
|
||||
msgid "Good"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Group By..."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: selection:im_livechat.channel.rule,action:0
|
||||
msgid "Hide the button"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.mail_channel_action
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_tree
|
||||
msgid "History"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_start_date_hour
|
||||
msgid "Hour of start Date of session"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:51
|
||||
#, python-format
|
||||
msgid "How may I help you?"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "How to use the Website Live Chat widget?"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:15
|
||||
#, python-format
|
||||
msgid "I don't want to rate this conversation"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_image
|
||||
msgid "Image"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Join"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "Join Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
msgid "Last 24h"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.rating_rating_view_search_livechat
|
||||
msgid "Last 7 days"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel___last_update
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule___last_update
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel___last_update
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Fecha de modificación"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_write_uid
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Ultima Actualización por"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_write_date
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Actualizado en"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
msgid "Last Week"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Leave"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "Leave Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_mail_channel_partner
|
||||
msgid "Listeners of a Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.menu_livechat_root
|
||||
msgid "Live Chat"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.module.category,name:im_livechat.module_category_im_livechat
|
||||
msgid "Live Support"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat_backend.xml:9
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat_backend.xml:21
|
||||
#, python-format
|
||||
msgid "Livechat"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_im_livechat_channel
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.rating_rating_view_search_livechat
|
||||
msgid "Livechat Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_report_channel_action
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_report_operator_action
|
||||
msgid ""
|
||||
"Livechat Support Channel Statistics allows you to easily check and analyse "
|
||||
"your company livechat session performance. Extract information about the "
|
||||
"missed sessions, the audiance, the duration of a session, etc."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_im_livechat_report_channel
|
||||
#: model:ir.model,name:im_livechat.model_im_livechat_report_operator
|
||||
msgid "Livechat Support Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.im_livechat_report_channel_action
|
||||
#: model:ir.actions.act_window,name:im_livechat.im_livechat_report_operator_action
|
||||
msgid "Livechat Support Report Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_graph
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_pivot
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_graph
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_pivot
|
||||
msgid "Livechat Support Statistics"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:res.groups,name:im_livechat.im_livechat_group_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_sequence
|
||||
msgid "Matching order"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_image_medium
|
||||
msgid "Medium"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_image_medium
|
||||
msgid ""
|
||||
"Medium-sized photo of the group. It is automatically resized as a 128x128px "
|
||||
"image, with aspect ratio preserved. Use this field in form views or some "
|
||||
"kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
msgid "Missed sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_name
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: code:addons/im_livechat/models/mail_channel.py:125
|
||||
#, python-format
|
||||
msgid "No history found"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:150
|
||||
#, python-format
|
||||
msgid ""
|
||||
"None of our collaborators seems to be available, please try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_nbr_channel
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_operator_nbr_channel
|
||||
msgid "Number of conversation"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_channel_nbr_speaker
|
||||
msgid "Number of different speakers"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_channel_nbr_message
|
||||
msgid "Number of message in the conversation"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:12
|
||||
#, python-format
|
||||
msgid "OK"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_partner_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_partner_id
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
msgid "Operator"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.menu_reporting_livechat_operator
|
||||
msgid "Operator Analysis"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_user_ids
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "Operators"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid ""
|
||||
"Operators\n"
|
||||
" <br/>\n"
|
||||
" <i class=\"fa fa-comments\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid ""
|
||||
"Operators that do not show any activity In Odoo for more than 30 minutes "
|
||||
"will be considered as disconnected."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rating_percentage_satisfaction
|
||||
msgid "Percentage of happy ratings over the past 7 days"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_rating_rating
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_tree
|
||||
msgid "Rating"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:344
|
||||
#, python-format
|
||||
msgid "Rating: :rating_%d"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Rating: Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Rating: Great"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Rating: Okay"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.rating_rating_action_view_livechat_rating
|
||||
msgid "Ratings for livechat channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_regex_url
|
||||
msgid ""
|
||||
"Regular expression specifying the web pages this rule will be applied on."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.menu_reporting_livechat
|
||||
msgid "Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_ids
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_rule_view_tree
|
||||
msgid "Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_script_external
|
||||
msgid "Script (external)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Search history"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
msgid "Search report"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: code:addons/im_livechat/models/mail_channel.py:113
|
||||
#, python-format
|
||||
msgid "See 15 last visited pages"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_tree
|
||||
msgid "Session Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_form
|
||||
msgid "Session Form"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.menu_reporting_livechat_channel
|
||||
msgid "Session Statistics"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.mail_channel_action_from_livechat_channel
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_channel_ids
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.session_history
|
||||
msgid "Sessions History"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_image_small
|
||||
msgid ""
|
||||
"Small-sized photo of the group. It is automatically resized as a 64x64px "
|
||||
"image, with aspect ratio preserved. Use this field anywhere a small image is"
|
||||
" required."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_start_date
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_start_date
|
||||
msgid "Start Date of session"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_channel_start_date
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_operator_start_date
|
||||
msgid "Start date of the conversation"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_button_text
|
||||
msgid "Text of the Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_channel_id
|
||||
msgid "The channel of the rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_name
|
||||
msgid "The name of the channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_country_ids
|
||||
msgid ""
|
||||
"The rule will only be applied for these countries. Example: if you select "
|
||||
"'Belgium' and 'United States' and that you set the action to 'Hide Button', "
|
||||
"the chat button will be hidden on the specified URL from the visitors "
|
||||
"located in these 2 countries. This feature requires GeoIP installed on your "
|
||||
"server."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:res.groups,comment:im_livechat.im_livechat_group_manager
|
||||
msgid "The user will be able to delete support channels."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:res.groups,comment:im_livechat.im_livechat_group_user
|
||||
msgid "The user will be able to join support channels."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.rating_rating_action_view_livechat_rating
|
||||
msgid "There is no rating for this channel at the moment."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_image
|
||||
msgid ""
|
||||
"This field holds the image used as photo for the group, limited to "
|
||||
"1024x1024px."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_default_message
|
||||
msgid ""
|
||||
"This is an automated 'welcome' message that your visitor will see when they "
|
||||
"initiate a new conversation."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_image_small
|
||||
msgid "Thumbnail"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_time_to_answer
|
||||
msgid "Time to answer"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
msgid "Treated sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_regex_url
|
||||
msgid "URL Regex"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_web_page
|
||||
msgid ""
|
||||
"URL to a static page where you client can discuss with the operator of the "
|
||||
"channel."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_uuid
|
||||
msgid "UUID"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:res.groups,name:im_livechat.im_livechat_group_user
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/controllers/main.py:37
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:49
|
||||
#, python-format
|
||||
msgid "Visitor"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_web_page
|
||||
msgid "Web Page"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.im_livechat_channel_action
|
||||
msgid "Website Live Chat Channels"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_default_message
|
||||
msgid "Welcome Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_channel_action
|
||||
msgid ""
|
||||
"You can create channels for each website on which you want\n"
|
||||
" to integrate the website live chat widget, allowing your website\n"
|
||||
" visitors to talk in real time with your operators."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.mail_channel_action
|
||||
msgid ""
|
||||
"Your chatter history is empty. Create a channel and start chatting to fill "
|
||||
"up your history."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "e.g. Hello, how may I help you?"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "e.g. YourWebsite.com"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_ir_autovacuum
|
||||
msgid "ir.autovacuum"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "or copy this url and send it by email to your customers or suppliers:"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_rule_view_form
|
||||
msgid "seconds"
|
||||
msgstr ""
|
||||
2072
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/es_MX.po
Normal file
2072
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/es_MX.po
Normal file
File diff suppressed because it is too large
Load diff
923
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/es_PE.po
Normal file
923
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/es_PE.po
Normal file
|
|
@ -0,0 +1,923 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * im_livechat
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 11.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-11-30 13:12+0000\n"
|
||||
"PO-Revision-Date: 2017-11-30 13:12+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Spanish (Peru) (https://www.transifex.com/odoo/teams/41243/es_PE/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_PE\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_nbr_channel
|
||||
msgid "# of Sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_nbr_speaker
|
||||
msgid "# of speakers"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rating_percentage_satisfaction
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "% Happy"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_action
|
||||
msgid ""
|
||||
"* 'Display the button' displays the chat button on the pages.\n"
|
||||
"* 'Auto popup' displays the button and automatically open the conversation pane.\n"
|
||||
"* 'Hide the button' hides the chat button on the pages."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid ""
|
||||
"<span>Define rules for your live support channel. You can apply an action "
|
||||
"(disable the support, automatically open your support, or just make the "
|
||||
"button available) for the given URL, and per country.<br/>To identify the "
|
||||
"country, GeoIP must be installed on your server, otherwise, the countries of"
|
||||
" the rule will not be taken into account.</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_action
|
||||
msgid "Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_mail_channel_anonymous_name
|
||||
msgid "Anonymous Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_are_you_inside
|
||||
msgid "Are you inside the matrix?"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:48
|
||||
#, python-format
|
||||
msgid "Ask something ..."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_tree
|
||||
msgid "Attendees"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: selection:im_livechat.channel.rule,action:0
|
||||
msgid "Auto popup"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_auto_popup_timer
|
||||
msgid "Auto popup timer"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_duration
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_duration
|
||||
msgid "Average duration"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_nbr_message
|
||||
msgid "Average message"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_operator_time_to_answer
|
||||
msgid "Average time to give the first answer to the visitor"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:13
|
||||
#, python-format
|
||||
msgid "Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.im_livechat_canned_response_action
|
||||
#: model:ir.ui.menu,name:im_livechat.canned_responses
|
||||
msgid "Canned Responses"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_canned_response_action
|
||||
msgid ""
|
||||
"Canned responses allow you to insert prewritten responses in\n"
|
||||
" your messages by typing <i>:shortcut</i>. The shortcut is\n"
|
||||
" replaced directly in your message, so that you can still edit\n"
|
||||
" it before sending."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_livechat_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_livechat_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_mail_channel_livechat_channel_id
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_channel_name
|
||||
msgid "Channel Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_rule_view_form
|
||||
msgid "Channel Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_im_livechat_channel_rule
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "Channel Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.support_channels
|
||||
msgid "Channels"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_input_placeholder
|
||||
msgid "Chat Input Placeholder"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:50
|
||||
#, python-format
|
||||
msgid "Chat with one of our collaborators"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_canned_response_action
|
||||
msgid "Click to create a new canned response."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_channel_action
|
||||
msgid "Click to define a new website live chat channel."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_technical_name
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.livechat_config
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_channel_id
|
||||
msgid "Conversation"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/copy_clipboard.js:32
|
||||
#, python-format
|
||||
msgid "Copied !"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/copy_clipboard.xml:6
|
||||
#: code:addons/im_livechat/static/src/xml/copy_clipboard.xml:12
|
||||
#, python-format
|
||||
msgid "Copy Text"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid ""
|
||||
"Copy and paste this code into your website, within the <head> tag:"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_country_ids
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_create_uid
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_create_date
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Creation date (day)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
msgid "Creation date (hour)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Creation date (month)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Creation date (week)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Creation date (year)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.rating_rating_action_livechat_report
|
||||
#: model:ir.ui.menu,name:im_livechat.rating_rating_menu_livechat
|
||||
msgid "Customer Ratings"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.rating_rating_action_livechat_report
|
||||
msgid "Customer ratings on livechat session."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_button_text
|
||||
msgid "Default text displayed on the Livechat Support Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_auto_popup_timer
|
||||
msgid ""
|
||||
"Delay (in seconds) to automatically open the conversation window. Note: the "
|
||||
"selected action must be 'Auto popup' otherwise this parameter will not be "
|
||||
"taken into account."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:7
|
||||
#, python-format
|
||||
msgid "Did we correctly answer your question ?"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_mail_channel
|
||||
msgid "Discussion channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_display_name
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_display_name
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_display_name
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre a Mostrar"
|
||||
|
||||
#. module: im_livechat
|
||||
#: selection:im_livechat.channel.rule,action:0
|
||||
msgid "Display the button"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_channel_duration
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_operator_duration
|
||||
msgid "Duration of the conversation (in seconds)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_channel_action
|
||||
msgid ""
|
||||
"Each channel has it's own URL that you can send by email to\n"
|
||||
" your customers in order to start chatting with you."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:19
|
||||
#, python-format
|
||||
msgid "Explain your note"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid ""
|
||||
"For website built with Odoo CMS, please install the website_livechat module."
|
||||
" Then go to Website Admin > Configuration > Settings and select the "
|
||||
"Website Live Chat Channel you want to add on your website."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_sequence
|
||||
msgid ""
|
||||
"Given the order to find a matching rule. If 2 rules are matching for the "
|
||||
"given url/country, the one with the lowest sequence will be chosen."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:11
|
||||
#, python-format
|
||||
msgid "Good"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Group By..."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: selection:im_livechat.channel.rule,action:0
|
||||
msgid "Hide the button"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.mail_channel_action
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_tree
|
||||
msgid "History"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_start_date_hour
|
||||
msgid "Hour of start Date of session"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:51
|
||||
#, python-format
|
||||
msgid "How may I help you?"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "How to use the Website Live Chat widget?"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:15
|
||||
#, python-format
|
||||
msgid "I don't want to rate this conversation"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_image
|
||||
msgid "Image"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Join"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "Join Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
msgid "Last 24h"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.rating_rating_view_search_livechat
|
||||
msgid "Last 7 days"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel___last_update
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule___last_update
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel___last_update
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Ultima Modificación en"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_write_uid
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Actualizado última vez por"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_write_date
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Ultima Actualización"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
msgid "Last Week"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Leave"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "Leave Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_mail_channel_partner
|
||||
msgid "Listeners of a Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.menu_livechat_root
|
||||
msgid "Live Chat"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.module.category,name:im_livechat.module_category_im_livechat
|
||||
msgid "Live Support"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat_backend.xml:9
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat_backend.xml:21
|
||||
#, python-format
|
||||
msgid "Livechat"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_im_livechat_channel
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.rating_rating_view_search_livechat
|
||||
msgid "Livechat Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_report_channel_action
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_report_operator_action
|
||||
msgid ""
|
||||
"Livechat Support Channel Statistics allows you to easily check and analyse "
|
||||
"your company livechat session performance. Extract information about the "
|
||||
"missed sessions, the audiance, the duration of a session, etc."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_im_livechat_report_channel
|
||||
#: model:ir.model,name:im_livechat.model_im_livechat_report_operator
|
||||
msgid "Livechat Support Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.im_livechat_report_channel_action
|
||||
#: model:ir.actions.act_window,name:im_livechat.im_livechat_report_operator_action
|
||||
msgid "Livechat Support Report Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_graph
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_pivot
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_graph
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_pivot
|
||||
msgid "Livechat Support Statistics"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:res.groups,name:im_livechat.im_livechat_group_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_sequence
|
||||
msgid "Matching order"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_image_medium
|
||||
msgid "Medium"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_image_medium
|
||||
msgid ""
|
||||
"Medium-sized photo of the group. It is automatically resized as a 128x128px "
|
||||
"image, with aspect ratio preserved. Use this field in form views or some "
|
||||
"kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
msgid "Missed sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_name
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: code:addons/im_livechat/models/mail_channel.py:125
|
||||
#, python-format
|
||||
msgid "No history found"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:150
|
||||
#, python-format
|
||||
msgid ""
|
||||
"None of our collaborators seems to be available, please try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_nbr_channel
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_operator_nbr_channel
|
||||
msgid "Number of conversation"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_channel_nbr_speaker
|
||||
msgid "Number of different speakers"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_channel_nbr_message
|
||||
msgid "Number of message in the conversation"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:12
|
||||
#, python-format
|
||||
msgid "OK"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_partner_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_partner_id
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
msgid "Operator"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.menu_reporting_livechat_operator
|
||||
msgid "Operator Analysis"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_user_ids
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "Operators"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid ""
|
||||
"Operators\n"
|
||||
" <br/>\n"
|
||||
" <i class=\"fa fa-comments\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid ""
|
||||
"Operators that do not show any activity In Odoo for more than 30 minutes "
|
||||
"will be considered as disconnected."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rating_percentage_satisfaction
|
||||
msgid "Percentage of happy ratings over the past 7 days"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_rating_rating
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_tree
|
||||
msgid "Rating"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:344
|
||||
#, python-format
|
||||
msgid "Rating: :rating_%d"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Rating: Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Rating: Great"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Rating: Okay"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.rating_rating_action_view_livechat_rating
|
||||
msgid "Ratings for livechat channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_regex_url
|
||||
msgid ""
|
||||
"Regular expression specifying the web pages this rule will be applied on."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.menu_reporting_livechat
|
||||
msgid "Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_ids
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_rule_view_tree
|
||||
msgid "Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_script_external
|
||||
msgid "Script (external)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Search history"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
msgid "Search report"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: code:addons/im_livechat/models/mail_channel.py:113
|
||||
#, python-format
|
||||
msgid "See 15 last visited pages"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_tree
|
||||
msgid "Session Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_form
|
||||
msgid "Session Form"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.menu_reporting_livechat_channel
|
||||
msgid "Session Statistics"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.mail_channel_action_from_livechat_channel
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_channel_ids
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.session_history
|
||||
msgid "Sessions History"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_image_small
|
||||
msgid ""
|
||||
"Small-sized photo of the group. It is automatically resized as a 64x64px "
|
||||
"image, with aspect ratio preserved. Use this field anywhere a small image is"
|
||||
" required."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_start_date
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_start_date
|
||||
msgid "Start Date of session"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_channel_start_date
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_operator_start_date
|
||||
msgid "Start date of the conversation"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_button_text
|
||||
msgid "Text of the Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_channel_id
|
||||
msgid "The channel of the rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_name
|
||||
msgid "The name of the channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_country_ids
|
||||
msgid ""
|
||||
"The rule will only be applied for these countries. Example: if you select "
|
||||
"'Belgium' and 'United States' and that you set the action to 'Hide Button', "
|
||||
"the chat button will be hidden on the specified URL from the visitors "
|
||||
"located in these 2 countries. This feature requires GeoIP installed on your "
|
||||
"server."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:res.groups,comment:im_livechat.im_livechat_group_manager
|
||||
msgid "The user will be able to delete support channels."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:res.groups,comment:im_livechat.im_livechat_group_user
|
||||
msgid "The user will be able to join support channels."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.rating_rating_action_view_livechat_rating
|
||||
msgid "There is no rating for this channel at the moment."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_image
|
||||
msgid ""
|
||||
"This field holds the image used as photo for the group, limited to "
|
||||
"1024x1024px."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_default_message
|
||||
msgid ""
|
||||
"This is an automated 'welcome' message that your visitor will see when they "
|
||||
"initiate a new conversation."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_image_small
|
||||
msgid "Thumbnail"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_time_to_answer
|
||||
msgid "Time to answer"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
msgid "Treated sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_regex_url
|
||||
msgid "URL Regex"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_web_page
|
||||
msgid ""
|
||||
"URL to a static page where you client can discuss with the operator of the "
|
||||
"channel."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_uuid
|
||||
msgid "UUID"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:res.groups,name:im_livechat.im_livechat_group_user
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/controllers/main.py:37
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:49
|
||||
#, python-format
|
||||
msgid "Visitor"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_web_page
|
||||
msgid "Web Page"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.im_livechat_channel_action
|
||||
msgid "Website Live Chat Channels"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_default_message
|
||||
msgid "Welcome Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_channel_action
|
||||
msgid ""
|
||||
"You can create channels for each website on which you want\n"
|
||||
" to integrate the website live chat widget, allowing your website\n"
|
||||
" visitors to talk in real time with your operators."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.mail_channel_action
|
||||
msgid ""
|
||||
"Your chatter history is empty. Create a channel and start chatting to fill "
|
||||
"up your history."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "e.g. Hello, how may I help you?"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "e.g. YourWebsite.com"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_ir_autovacuum
|
||||
msgid "ir.autovacuum"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "or copy this url and send it by email to your customers or suppliers:"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_rule_view_form
|
||||
msgid "seconds"
|
||||
msgstr ""
|
||||
923
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/es_PY.po
Normal file
923
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/es_PY.po
Normal file
|
|
@ -0,0 +1,923 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * im_livechat
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 11.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-11-30 13:12+0000\n"
|
||||
"PO-Revision-Date: 2017-11-30 13:12+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Spanish (Paraguay) (https://www.transifex.com/odoo/teams/41243/es_PY/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_PY\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_nbr_channel
|
||||
msgid "# of Sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_nbr_speaker
|
||||
msgid "# of speakers"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rating_percentage_satisfaction
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "% Happy"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_action
|
||||
msgid ""
|
||||
"* 'Display the button' displays the chat button on the pages.\n"
|
||||
"* 'Auto popup' displays the button and automatically open the conversation pane.\n"
|
||||
"* 'Hide the button' hides the chat button on the pages."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid ""
|
||||
"<span>Define rules for your live support channel. You can apply an action "
|
||||
"(disable the support, automatically open your support, or just make the "
|
||||
"button available) for the given URL, and per country.<br/>To identify the "
|
||||
"country, GeoIP must be installed on your server, otherwise, the countries of"
|
||||
" the rule will not be taken into account.</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_action
|
||||
msgid "Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_mail_channel_anonymous_name
|
||||
msgid "Anonymous Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_are_you_inside
|
||||
msgid "Are you inside the matrix?"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:48
|
||||
#, python-format
|
||||
msgid "Ask something ..."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_tree
|
||||
msgid "Attendees"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: selection:im_livechat.channel.rule,action:0
|
||||
msgid "Auto popup"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_auto_popup_timer
|
||||
msgid "Auto popup timer"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_duration
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_duration
|
||||
msgid "Average duration"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_nbr_message
|
||||
msgid "Average message"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_operator_time_to_answer
|
||||
msgid "Average time to give the first answer to the visitor"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:13
|
||||
#, python-format
|
||||
msgid "Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.im_livechat_canned_response_action
|
||||
#: model:ir.ui.menu,name:im_livechat.canned_responses
|
||||
msgid "Canned Responses"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_canned_response_action
|
||||
msgid ""
|
||||
"Canned responses allow you to insert prewritten responses in\n"
|
||||
" your messages by typing <i>:shortcut</i>. The shortcut is\n"
|
||||
" replaced directly in your message, so that you can still edit\n"
|
||||
" it before sending."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_livechat_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_livechat_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_mail_channel_livechat_channel_id
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_channel_name
|
||||
msgid "Channel Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_rule_view_form
|
||||
msgid "Channel Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_im_livechat_channel_rule
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "Channel Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.support_channels
|
||||
msgid "Channels"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_input_placeholder
|
||||
msgid "Chat Input Placeholder"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:50
|
||||
#, python-format
|
||||
msgid "Chat with one of our collaborators"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_canned_response_action
|
||||
msgid "Click to create a new canned response."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_channel_action
|
||||
msgid "Click to define a new website live chat channel."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_technical_name
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.livechat_config
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_channel_id
|
||||
msgid "Conversation"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/copy_clipboard.js:32
|
||||
#, python-format
|
||||
msgid "Copied !"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/copy_clipboard.xml:6
|
||||
#: code:addons/im_livechat/static/src/xml/copy_clipboard.xml:12
|
||||
#, python-format
|
||||
msgid "Copy Text"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid ""
|
||||
"Copy and paste this code into your website, within the <head> tag:"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_country_ids
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_create_uid
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_create_date
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Creation date (day)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
msgid "Creation date (hour)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Creation date (month)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Creation date (week)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Creation date (year)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.rating_rating_action_livechat_report
|
||||
#: model:ir.ui.menu,name:im_livechat.rating_rating_menu_livechat
|
||||
msgid "Customer Ratings"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.rating_rating_action_livechat_report
|
||||
msgid "Customer ratings on livechat session."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_button_text
|
||||
msgid "Default text displayed on the Livechat Support Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_auto_popup_timer
|
||||
msgid ""
|
||||
"Delay (in seconds) to automatically open the conversation window. Note: the "
|
||||
"selected action must be 'Auto popup' otherwise this parameter will not be "
|
||||
"taken into account."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:7
|
||||
#, python-format
|
||||
msgid "Did we correctly answer your question ?"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_mail_channel
|
||||
msgid "Discussion channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_display_name
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_display_name
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_display_name
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: selection:im_livechat.channel.rule,action:0
|
||||
msgid "Display the button"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_channel_duration
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_operator_duration
|
||||
msgid "Duration of the conversation (in seconds)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_channel_action
|
||||
msgid ""
|
||||
"Each channel has it's own URL that you can send by email to\n"
|
||||
" your customers in order to start chatting with you."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:19
|
||||
#, python-format
|
||||
msgid "Explain your note"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid ""
|
||||
"For website built with Odoo CMS, please install the website_livechat module."
|
||||
" Then go to Website Admin > Configuration > Settings and select the "
|
||||
"Website Live Chat Channel you want to add on your website."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_sequence
|
||||
msgid ""
|
||||
"Given the order to find a matching rule. If 2 rules are matching for the "
|
||||
"given url/country, the one with the lowest sequence will be chosen."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:11
|
||||
#, python-format
|
||||
msgid "Good"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Group By..."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: selection:im_livechat.channel.rule,action:0
|
||||
msgid "Hide the button"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.mail_channel_action
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_tree
|
||||
msgid "History"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_start_date_hour
|
||||
msgid "Hour of start Date of session"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:51
|
||||
#, python-format
|
||||
msgid "How may I help you?"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "How to use the Website Live Chat widget?"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:15
|
||||
#, python-format
|
||||
msgid "I don't want to rate this conversation"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_image
|
||||
msgid "Image"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Join"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "Join Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
msgid "Last 24h"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.rating_rating_view_search_livechat
|
||||
msgid "Last 7 days"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel___last_update
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule___last_update
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel___last_update
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_write_uid
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Ultima actualización por"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_write_date
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Ultima actualización en"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
msgid "Last Week"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Leave"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "Leave Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_mail_channel_partner
|
||||
msgid "Listeners of a Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.menu_livechat_root
|
||||
msgid "Live Chat"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.module.category,name:im_livechat.module_category_im_livechat
|
||||
msgid "Live Support"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat_backend.xml:9
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat_backend.xml:21
|
||||
#, python-format
|
||||
msgid "Livechat"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_im_livechat_channel
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.rating_rating_view_search_livechat
|
||||
msgid "Livechat Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_report_channel_action
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_report_operator_action
|
||||
msgid ""
|
||||
"Livechat Support Channel Statistics allows you to easily check and analyse "
|
||||
"your company livechat session performance. Extract information about the "
|
||||
"missed sessions, the audiance, the duration of a session, etc."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_im_livechat_report_channel
|
||||
#: model:ir.model,name:im_livechat.model_im_livechat_report_operator
|
||||
msgid "Livechat Support Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.im_livechat_report_channel_action
|
||||
#: model:ir.actions.act_window,name:im_livechat.im_livechat_report_operator_action
|
||||
msgid "Livechat Support Report Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_graph
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_pivot
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_graph
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_pivot
|
||||
msgid "Livechat Support Statistics"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:res.groups,name:im_livechat.im_livechat_group_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_sequence
|
||||
msgid "Matching order"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_image_medium
|
||||
msgid "Medium"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_image_medium
|
||||
msgid ""
|
||||
"Medium-sized photo of the group. It is automatically resized as a 128x128px "
|
||||
"image, with aspect ratio preserved. Use this field in form views or some "
|
||||
"kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
msgid "Missed sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_name
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: code:addons/im_livechat/models/mail_channel.py:125
|
||||
#, python-format
|
||||
msgid "No history found"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:150
|
||||
#, python-format
|
||||
msgid ""
|
||||
"None of our collaborators seems to be available, please try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_nbr_channel
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_operator_nbr_channel
|
||||
msgid "Number of conversation"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_channel_nbr_speaker
|
||||
msgid "Number of different speakers"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_channel_nbr_message
|
||||
msgid "Number of message in the conversation"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:12
|
||||
#, python-format
|
||||
msgid "OK"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_partner_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_partner_id
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
msgid "Operator"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.menu_reporting_livechat_operator
|
||||
msgid "Operator Analysis"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_user_ids
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "Operators"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid ""
|
||||
"Operators\n"
|
||||
" <br/>\n"
|
||||
" <i class=\"fa fa-comments\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid ""
|
||||
"Operators that do not show any activity In Odoo for more than 30 minutes "
|
||||
"will be considered as disconnected."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rating_percentage_satisfaction
|
||||
msgid "Percentage of happy ratings over the past 7 days"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_rating_rating
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_tree
|
||||
msgid "Rating"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:344
|
||||
#, python-format
|
||||
msgid "Rating: :rating_%d"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Rating: Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Rating: Great"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Rating: Okay"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.rating_rating_action_view_livechat_rating
|
||||
msgid "Ratings for livechat channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_regex_url
|
||||
msgid ""
|
||||
"Regular expression specifying the web pages this rule will be applied on."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.menu_reporting_livechat
|
||||
msgid "Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_ids
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_rule_view_tree
|
||||
msgid "Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_script_external
|
||||
msgid "Script (external)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Search history"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
msgid "Search report"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: code:addons/im_livechat/models/mail_channel.py:113
|
||||
#, python-format
|
||||
msgid "See 15 last visited pages"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_tree
|
||||
msgid "Session Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_form
|
||||
msgid "Session Form"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.menu_reporting_livechat_channel
|
||||
msgid "Session Statistics"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.mail_channel_action_from_livechat_channel
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_channel_ids
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.session_history
|
||||
msgid "Sessions History"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_image_small
|
||||
msgid ""
|
||||
"Small-sized photo of the group. It is automatically resized as a 64x64px "
|
||||
"image, with aspect ratio preserved. Use this field anywhere a small image is"
|
||||
" required."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_start_date
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_start_date
|
||||
msgid "Start Date of session"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_channel_start_date
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_operator_start_date
|
||||
msgid "Start date of the conversation"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_button_text
|
||||
msgid "Text of the Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_channel_id
|
||||
msgid "The channel of the rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_name
|
||||
msgid "The name of the channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_country_ids
|
||||
msgid ""
|
||||
"The rule will only be applied for these countries. Example: if you select "
|
||||
"'Belgium' and 'United States' and that you set the action to 'Hide Button', "
|
||||
"the chat button will be hidden on the specified URL from the visitors "
|
||||
"located in these 2 countries. This feature requires GeoIP installed on your "
|
||||
"server."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:res.groups,comment:im_livechat.im_livechat_group_manager
|
||||
msgid "The user will be able to delete support channels."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:res.groups,comment:im_livechat.im_livechat_group_user
|
||||
msgid "The user will be able to join support channels."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.rating_rating_action_view_livechat_rating
|
||||
msgid "There is no rating for this channel at the moment."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_image
|
||||
msgid ""
|
||||
"This field holds the image used as photo for the group, limited to "
|
||||
"1024x1024px."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_default_message
|
||||
msgid ""
|
||||
"This is an automated 'welcome' message that your visitor will see when they "
|
||||
"initiate a new conversation."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_image_small
|
||||
msgid "Thumbnail"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_time_to_answer
|
||||
msgid "Time to answer"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
msgid "Treated sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_regex_url
|
||||
msgid "URL Regex"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_web_page
|
||||
msgid ""
|
||||
"URL to a static page where you client can discuss with the operator of the "
|
||||
"channel."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_uuid
|
||||
msgid "UUID"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:res.groups,name:im_livechat.im_livechat_group_user
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/controllers/main.py:37
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:49
|
||||
#, python-format
|
||||
msgid "Visitor"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_web_page
|
||||
msgid "Web Page"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.im_livechat_channel_action
|
||||
msgid "Website Live Chat Channels"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_default_message
|
||||
msgid "Welcome Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_channel_action
|
||||
msgid ""
|
||||
"You can create channels for each website on which you want\n"
|
||||
" to integrate the website live chat widget, allowing your website\n"
|
||||
" visitors to talk in real time with your operators."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.mail_channel_action
|
||||
msgid ""
|
||||
"Your chatter history is empty. Create a channel and start chatting to fill "
|
||||
"up your history."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "e.g. Hello, how may I help you?"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "e.g. YourWebsite.com"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_ir_autovacuum
|
||||
msgid "ir.autovacuum"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "or copy this url and send it by email to your customers or suppliers:"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_rule_view_form
|
||||
msgid "seconds"
|
||||
msgstr ""
|
||||
923
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/es_VE.po
Normal file
923
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/es_VE.po
Normal file
|
|
@ -0,0 +1,923 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * im_livechat
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 11.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-11-30 13:12+0000\n"
|
||||
"PO-Revision-Date: 2017-11-30 13:12+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Spanish (Venezuela) (https://www.transifex.com/odoo/teams/41243/es_VE/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_VE\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_nbr_channel
|
||||
msgid "# of Sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_nbr_speaker
|
||||
msgid "# of speakers"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rating_percentage_satisfaction
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "% Happy"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_action
|
||||
msgid ""
|
||||
"* 'Display the button' displays the chat button on the pages.\n"
|
||||
"* 'Auto popup' displays the button and automatically open the conversation pane.\n"
|
||||
"* 'Hide the button' hides the chat button on the pages."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid ""
|
||||
"<span>Define rules for your live support channel. You can apply an action "
|
||||
"(disable the support, automatically open your support, or just make the "
|
||||
"button available) for the given URL, and per country.<br/>To identify the "
|
||||
"country, GeoIP must be installed on your server, otherwise, the countries of"
|
||||
" the rule will not be taken into account.</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_action
|
||||
msgid "Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_mail_channel_anonymous_name
|
||||
msgid "Anonymous Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_are_you_inside
|
||||
msgid "Are you inside the matrix?"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:48
|
||||
#, python-format
|
||||
msgid "Ask something ..."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_tree
|
||||
msgid "Attendees"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: selection:im_livechat.channel.rule,action:0
|
||||
msgid "Auto popup"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_auto_popup_timer
|
||||
msgid "Auto popup timer"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_duration
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_duration
|
||||
msgid "Average duration"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_nbr_message
|
||||
msgid "Average message"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_operator_time_to_answer
|
||||
msgid "Average time to give the first answer to the visitor"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:13
|
||||
#, python-format
|
||||
msgid "Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.im_livechat_canned_response_action
|
||||
#: model:ir.ui.menu,name:im_livechat.canned_responses
|
||||
msgid "Canned Responses"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_canned_response_action
|
||||
msgid ""
|
||||
"Canned responses allow you to insert prewritten responses in\n"
|
||||
" your messages by typing <i>:shortcut</i>. The shortcut is\n"
|
||||
" replaced directly in your message, so that you can still edit\n"
|
||||
" it before sending."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_livechat_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_livechat_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_mail_channel_livechat_channel_id
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_channel_name
|
||||
msgid "Channel Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_rule_view_form
|
||||
msgid "Channel Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_im_livechat_channel_rule
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "Channel Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.support_channels
|
||||
msgid "Channels"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_input_placeholder
|
||||
msgid "Chat Input Placeholder"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:50
|
||||
#, python-format
|
||||
msgid "Chat with one of our collaborators"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_canned_response_action
|
||||
msgid "Click to create a new canned response."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_channel_action
|
||||
msgid "Click to define a new website live chat channel."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_technical_name
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.livechat_config
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_channel_id
|
||||
msgid "Conversation"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/copy_clipboard.js:32
|
||||
#, python-format
|
||||
msgid "Copied !"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/copy_clipboard.xml:6
|
||||
#: code:addons/im_livechat/static/src/xml/copy_clipboard.xml:12
|
||||
#, python-format
|
||||
msgid "Copy Text"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid ""
|
||||
"Copy and paste this code into your website, within the <head> tag:"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_country_ids
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_create_uid
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_create_date
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Creation date (day)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
msgid "Creation date (hour)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Creation date (month)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Creation date (week)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Creation date (year)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.rating_rating_action_livechat_report
|
||||
#: model:ir.ui.menu,name:im_livechat.rating_rating_menu_livechat
|
||||
msgid "Customer Ratings"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.rating_rating_action_livechat_report
|
||||
msgid "Customer ratings on livechat session."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_button_text
|
||||
msgid "Default text displayed on the Livechat Support Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_auto_popup_timer
|
||||
msgid ""
|
||||
"Delay (in seconds) to automatically open the conversation window. Note: the "
|
||||
"selected action must be 'Auto popup' otherwise this parameter will not be "
|
||||
"taken into account."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:7
|
||||
#, python-format
|
||||
msgid "Did we correctly answer your question ?"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_mail_channel
|
||||
msgid "Discussion channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_display_name
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_display_name
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_display_name
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Mostrar nombre"
|
||||
|
||||
#. module: im_livechat
|
||||
#: selection:im_livechat.channel.rule,action:0
|
||||
msgid "Display the button"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_channel_duration
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_operator_duration
|
||||
msgid "Duration of the conversation (in seconds)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_channel_action
|
||||
msgid ""
|
||||
"Each channel has it's own URL that you can send by email to\n"
|
||||
" your customers in order to start chatting with you."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:19
|
||||
#, python-format
|
||||
msgid "Explain your note"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid ""
|
||||
"For website built with Odoo CMS, please install the website_livechat module."
|
||||
" Then go to Website Admin > Configuration > Settings and select the "
|
||||
"Website Live Chat Channel you want to add on your website."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_sequence
|
||||
msgid ""
|
||||
"Given the order to find a matching rule. If 2 rules are matching for the "
|
||||
"given url/country, the one with the lowest sequence will be chosen."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:11
|
||||
#, python-format
|
||||
msgid "Good"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Group By..."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: selection:im_livechat.channel.rule,action:0
|
||||
msgid "Hide the button"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.mail_channel_action
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_tree
|
||||
msgid "History"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_start_date_hour
|
||||
msgid "Hour of start Date of session"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:51
|
||||
#, python-format
|
||||
msgid "How may I help you?"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "How to use the Website Live Chat widget?"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:15
|
||||
#, python-format
|
||||
msgid "I don't want to rate this conversation"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_image
|
||||
msgid "Image"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Join"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "Join Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
msgid "Last 24h"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.rating_rating_view_search_livechat
|
||||
msgid "Last 7 days"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel___last_update
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule___last_update
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel___last_update
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Modificada por última vez"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_write_uid
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización realizada por"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_write_date
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Ultima actualizacion en"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
msgid "Last Week"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Leave"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "Leave Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_mail_channel_partner
|
||||
msgid "Listeners of a Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.menu_livechat_root
|
||||
msgid "Live Chat"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.module.category,name:im_livechat.module_category_im_livechat
|
||||
msgid "Live Support"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat_backend.xml:9
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat_backend.xml:21
|
||||
#, python-format
|
||||
msgid "Livechat"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_im_livechat_channel
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.rating_rating_view_search_livechat
|
||||
msgid "Livechat Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_report_channel_action
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_report_operator_action
|
||||
msgid ""
|
||||
"Livechat Support Channel Statistics allows you to easily check and analyse "
|
||||
"your company livechat session performance. Extract information about the "
|
||||
"missed sessions, the audiance, the duration of a session, etc."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_im_livechat_report_channel
|
||||
#: model:ir.model,name:im_livechat.model_im_livechat_report_operator
|
||||
msgid "Livechat Support Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.im_livechat_report_channel_action
|
||||
#: model:ir.actions.act_window,name:im_livechat.im_livechat_report_operator_action
|
||||
msgid "Livechat Support Report Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_graph
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_pivot
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_graph
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_pivot
|
||||
msgid "Livechat Support Statistics"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:res.groups,name:im_livechat.im_livechat_group_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_sequence
|
||||
msgid "Matching order"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_image_medium
|
||||
msgid "Medium"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_image_medium
|
||||
msgid ""
|
||||
"Medium-sized photo of the group. It is automatically resized as a 128x128px "
|
||||
"image, with aspect ratio preserved. Use this field in form views or some "
|
||||
"kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
msgid "Missed sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_name
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: code:addons/im_livechat/models/mail_channel.py:125
|
||||
#, python-format
|
||||
msgid "No history found"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:150
|
||||
#, python-format
|
||||
msgid ""
|
||||
"None of our collaborators seems to be available, please try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_nbr_channel
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_operator_nbr_channel
|
||||
msgid "Number of conversation"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_channel_nbr_speaker
|
||||
msgid "Number of different speakers"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_channel_nbr_message
|
||||
msgid "Number of message in the conversation"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:12
|
||||
#, python-format
|
||||
msgid "OK"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_partner_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_partner_id
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
msgid "Operator"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.menu_reporting_livechat_operator
|
||||
msgid "Operator Analysis"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_user_ids
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "Operators"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid ""
|
||||
"Operators\n"
|
||||
" <br/>\n"
|
||||
" <i class=\"fa fa-comments\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid ""
|
||||
"Operators that do not show any activity In Odoo for more than 30 minutes "
|
||||
"will be considered as disconnected."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rating_percentage_satisfaction
|
||||
msgid "Percentage of happy ratings over the past 7 days"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_rating_rating
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_tree
|
||||
msgid "Rating"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:344
|
||||
#, python-format
|
||||
msgid "Rating: :rating_%d"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Rating: Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Rating: Great"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Rating: Okay"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.rating_rating_action_view_livechat_rating
|
||||
msgid "Ratings for livechat channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_regex_url
|
||||
msgid ""
|
||||
"Regular expression specifying the web pages this rule will be applied on."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.menu_reporting_livechat
|
||||
msgid "Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_ids
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_rule_view_tree
|
||||
msgid "Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_script_external
|
||||
msgid "Script (external)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Search history"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
msgid "Search report"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: code:addons/im_livechat/models/mail_channel.py:113
|
||||
#, python-format
|
||||
msgid "See 15 last visited pages"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_tree
|
||||
msgid "Session Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_form
|
||||
msgid "Session Form"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.menu_reporting_livechat_channel
|
||||
msgid "Session Statistics"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.mail_channel_action_from_livechat_channel
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_channel_ids
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.session_history
|
||||
msgid "Sessions History"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_image_small
|
||||
msgid ""
|
||||
"Small-sized photo of the group. It is automatically resized as a 64x64px "
|
||||
"image, with aspect ratio preserved. Use this field anywhere a small image is"
|
||||
" required."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_start_date
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_start_date
|
||||
msgid "Start Date of session"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_channel_start_date
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_operator_start_date
|
||||
msgid "Start date of the conversation"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_button_text
|
||||
msgid "Text of the Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_channel_id
|
||||
msgid "The channel of the rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_name
|
||||
msgid "The name of the channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_country_ids
|
||||
msgid ""
|
||||
"The rule will only be applied for these countries. Example: if you select "
|
||||
"'Belgium' and 'United States' and that you set the action to 'Hide Button', "
|
||||
"the chat button will be hidden on the specified URL from the visitors "
|
||||
"located in these 2 countries. This feature requires GeoIP installed on your "
|
||||
"server."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:res.groups,comment:im_livechat.im_livechat_group_manager
|
||||
msgid "The user will be able to delete support channels."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:res.groups,comment:im_livechat.im_livechat_group_user
|
||||
msgid "The user will be able to join support channels."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.rating_rating_action_view_livechat_rating
|
||||
msgid "There is no rating for this channel at the moment."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_image
|
||||
msgid ""
|
||||
"This field holds the image used as photo for the group, limited to "
|
||||
"1024x1024px."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_default_message
|
||||
msgid ""
|
||||
"This is an automated 'welcome' message that your visitor will see when they "
|
||||
"initiate a new conversation."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_image_small
|
||||
msgid "Thumbnail"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_time_to_answer
|
||||
msgid "Time to answer"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
msgid "Treated sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_regex_url
|
||||
msgid "URL Regex"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_web_page
|
||||
msgid ""
|
||||
"URL to a static page where you client can discuss with the operator of the "
|
||||
"channel."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_uuid
|
||||
msgid "UUID"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:res.groups,name:im_livechat.im_livechat_group_user
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/controllers/main.py:37
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:49
|
||||
#, python-format
|
||||
msgid "Visitor"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_web_page
|
||||
msgid "Web Page"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.im_livechat_channel_action
|
||||
msgid "Website Live Chat Channels"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_default_message
|
||||
msgid "Welcome Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_channel_action
|
||||
msgid ""
|
||||
"You can create channels for each website on which you want\n"
|
||||
" to integrate the website live chat widget, allowing your website\n"
|
||||
" visitors to talk in real time with your operators."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.mail_channel_action
|
||||
msgid ""
|
||||
"Your chatter history is empty. Create a channel and start chatting to fill "
|
||||
"up your history."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "e.g. Hello, how may I help you?"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "e.g. YourWebsite.com"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_ir_autovacuum
|
||||
msgid "ir.autovacuum"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "or copy this url and send it by email to your customers or suppliers:"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_rule_view_form
|
||||
msgid "seconds"
|
||||
msgstr ""
|
||||
2037
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/et.po
Normal file
2037
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/et.po
Normal file
File diff suppressed because it is too large
Load diff
923
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/eu.po
Normal file
923
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/eu.po
Normal file
|
|
@ -0,0 +1,923 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * im_livechat
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 11.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-11-30 13:12+0000\n"
|
||||
"PO-Revision-Date: 2017-11-30 13:12+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Basque (https://www.transifex.com/odoo/teams/41243/eu/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: eu\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_nbr_channel
|
||||
msgid "# of Sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_nbr_speaker
|
||||
msgid "# of speakers"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rating_percentage_satisfaction
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "% Happy"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_action
|
||||
msgid ""
|
||||
"* 'Display the button' displays the chat button on the pages.\n"
|
||||
"* 'Auto popup' displays the button and automatically open the conversation pane.\n"
|
||||
"* 'Hide the button' hides the chat button on the pages."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid ""
|
||||
"<span>Define rules for your live support channel. You can apply an action "
|
||||
"(disable the support, automatically open your support, or just make the "
|
||||
"button available) for the given URL, and per country.<br/>To identify the "
|
||||
"country, GeoIP must be installed on your server, otherwise, the countries of"
|
||||
" the rule will not be taken into account.</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_action
|
||||
msgid "Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_mail_channel_anonymous_name
|
||||
msgid "Anonymous Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_are_you_inside
|
||||
msgid "Are you inside the matrix?"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:48
|
||||
#, python-format
|
||||
msgid "Ask something ..."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_tree
|
||||
msgid "Attendees"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: selection:im_livechat.channel.rule,action:0
|
||||
msgid "Auto popup"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_auto_popup_timer
|
||||
msgid "Auto popup timer"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_duration
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_duration
|
||||
msgid "Average duration"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_nbr_message
|
||||
msgid "Average message"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_operator_time_to_answer
|
||||
msgid "Average time to give the first answer to the visitor"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:13
|
||||
#, python-format
|
||||
msgid "Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.im_livechat_canned_response_action
|
||||
#: model:ir.ui.menu,name:im_livechat.canned_responses
|
||||
msgid "Canned Responses"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_canned_response_action
|
||||
msgid ""
|
||||
"Canned responses allow you to insert prewritten responses in\n"
|
||||
" your messages by typing <i>:shortcut</i>. The shortcut is\n"
|
||||
" replaced directly in your message, so that you can still edit\n"
|
||||
" it before sending."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_livechat_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_livechat_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_mail_channel_livechat_channel_id
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_channel_name
|
||||
msgid "Channel Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_rule_view_form
|
||||
msgid "Channel Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_im_livechat_channel_rule
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "Channel Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.support_channels
|
||||
msgid "Channels"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_input_placeholder
|
||||
msgid "Chat Input Placeholder"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:50
|
||||
#, python-format
|
||||
msgid "Chat with one of our collaborators"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_canned_response_action
|
||||
msgid "Click to create a new canned response."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_channel_action
|
||||
msgid "Click to define a new website live chat channel."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_technical_name
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.livechat_config
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_channel_id
|
||||
msgid "Conversation"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/copy_clipboard.js:32
|
||||
#, python-format
|
||||
msgid "Copied !"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/copy_clipboard.xml:6
|
||||
#: code:addons/im_livechat/static/src/xml/copy_clipboard.xml:12
|
||||
#, python-format
|
||||
msgid "Copy Text"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid ""
|
||||
"Copy and paste this code into your website, within the <head> tag:"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_country_ids
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_create_uid
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Nork sortua"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_create_date
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_create_date
|
||||
msgid "Created on"
|
||||
msgstr "Created on"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Creation date (day)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
msgid "Creation date (hour)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Creation date (month)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Creation date (week)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Creation date (year)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.rating_rating_action_livechat_report
|
||||
#: model:ir.ui.menu,name:im_livechat.rating_rating_menu_livechat
|
||||
msgid "Customer Ratings"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.rating_rating_action_livechat_report
|
||||
msgid "Customer ratings on livechat session."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_button_text
|
||||
msgid "Default text displayed on the Livechat Support Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_auto_popup_timer
|
||||
msgid ""
|
||||
"Delay (in seconds) to automatically open the conversation window. Note: the "
|
||||
"selected action must be 'Auto popup' otherwise this parameter will not be "
|
||||
"taken into account."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:7
|
||||
#, python-format
|
||||
msgid "Did we correctly answer your question ?"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_mail_channel
|
||||
msgid "Discussion channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_display_name
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_display_name
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_display_name
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Izena erakutsi"
|
||||
|
||||
#. module: im_livechat
|
||||
#: selection:im_livechat.channel.rule,action:0
|
||||
msgid "Display the button"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_channel_duration
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_operator_duration
|
||||
msgid "Duration of the conversation (in seconds)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_channel_action
|
||||
msgid ""
|
||||
"Each channel has it's own URL that you can send by email to\n"
|
||||
" your customers in order to start chatting with you."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:19
|
||||
#, python-format
|
||||
msgid "Explain your note"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid ""
|
||||
"For website built with Odoo CMS, please install the website_livechat module."
|
||||
" Then go to Website Admin > Configuration > Settings and select the "
|
||||
"Website Live Chat Channel you want to add on your website."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_sequence
|
||||
msgid ""
|
||||
"Given the order to find a matching rule. If 2 rules are matching for the "
|
||||
"given url/country, the one with the lowest sequence will be chosen."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:11
|
||||
#, python-format
|
||||
msgid "Good"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Group By..."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: selection:im_livechat.channel.rule,action:0
|
||||
msgid "Hide the button"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.mail_channel_action
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_tree
|
||||
msgid "History"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_start_date_hour
|
||||
msgid "Hour of start Date of session"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:51
|
||||
#, python-format
|
||||
msgid "How may I help you?"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "How to use the Website Live Chat widget?"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:15
|
||||
#, python-format
|
||||
msgid "I don't want to rate this conversation"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_image
|
||||
msgid "Image"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Join"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "Join Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
msgid "Last 24h"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.rating_rating_view_search_livechat
|
||||
msgid "Last 7 days"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel___last_update
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule___last_update
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel___last_update
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_write_uid
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Last Updated by"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_write_date
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Last Updated on"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
msgid "Last Week"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Leave"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "Leave Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_mail_channel_partner
|
||||
msgid "Listeners of a Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.menu_livechat_root
|
||||
msgid "Live Chat"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.module.category,name:im_livechat.module_category_im_livechat
|
||||
msgid "Live Support"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat_backend.xml:9
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat_backend.xml:21
|
||||
#, python-format
|
||||
msgid "Livechat"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_im_livechat_channel
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.rating_rating_view_search_livechat
|
||||
msgid "Livechat Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_report_channel_action
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_report_operator_action
|
||||
msgid ""
|
||||
"Livechat Support Channel Statistics allows you to easily check and analyse "
|
||||
"your company livechat session performance. Extract information about the "
|
||||
"missed sessions, the audiance, the duration of a session, etc."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_im_livechat_report_channel
|
||||
#: model:ir.model,name:im_livechat.model_im_livechat_report_operator
|
||||
msgid "Livechat Support Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.im_livechat_report_channel_action
|
||||
#: model:ir.actions.act_window,name:im_livechat.im_livechat_report_operator_action
|
||||
msgid "Livechat Support Report Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_graph
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_pivot
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_graph
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_pivot
|
||||
msgid "Livechat Support Statistics"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:res.groups,name:im_livechat.im_livechat_group_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_sequence
|
||||
msgid "Matching order"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_image_medium
|
||||
msgid "Medium"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_image_medium
|
||||
msgid ""
|
||||
"Medium-sized photo of the group. It is automatically resized as a 128x128px "
|
||||
"image, with aspect ratio preserved. Use this field in form views or some "
|
||||
"kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
msgid "Missed sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_name
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: code:addons/im_livechat/models/mail_channel.py:125
|
||||
#, python-format
|
||||
msgid "No history found"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:150
|
||||
#, python-format
|
||||
msgid ""
|
||||
"None of our collaborators seems to be available, please try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_nbr_channel
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_operator_nbr_channel
|
||||
msgid "Number of conversation"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_channel_nbr_speaker
|
||||
msgid "Number of different speakers"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_channel_nbr_message
|
||||
msgid "Number of message in the conversation"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:12
|
||||
#, python-format
|
||||
msgid "OK"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_partner_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_partner_id
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
msgid "Operator"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.menu_reporting_livechat_operator
|
||||
msgid "Operator Analysis"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_user_ids
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "Operators"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid ""
|
||||
"Operators\n"
|
||||
" <br/>\n"
|
||||
" <i class=\"fa fa-comments\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid ""
|
||||
"Operators that do not show any activity In Odoo for more than 30 minutes "
|
||||
"will be considered as disconnected."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rating_percentage_satisfaction
|
||||
msgid "Percentage of happy ratings over the past 7 days"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_rating_rating
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_tree
|
||||
msgid "Rating"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:344
|
||||
#, python-format
|
||||
msgid "Rating: :rating_%d"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Rating: Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Rating: Great"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Rating: Okay"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.rating_rating_action_view_livechat_rating
|
||||
msgid "Ratings for livechat channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_regex_url
|
||||
msgid ""
|
||||
"Regular expression specifying the web pages this rule will be applied on."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.menu_reporting_livechat
|
||||
msgid "Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_ids
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_rule_view_tree
|
||||
msgid "Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_script_external
|
||||
msgid "Script (external)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Search history"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
msgid "Search report"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: code:addons/im_livechat/models/mail_channel.py:113
|
||||
#, python-format
|
||||
msgid "See 15 last visited pages"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_tree
|
||||
msgid "Session Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_form
|
||||
msgid "Session Form"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.menu_reporting_livechat_channel
|
||||
msgid "Session Statistics"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.mail_channel_action_from_livechat_channel
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_channel_ids
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.session_history
|
||||
msgid "Sessions History"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_image_small
|
||||
msgid ""
|
||||
"Small-sized photo of the group. It is automatically resized as a 64x64px "
|
||||
"image, with aspect ratio preserved. Use this field anywhere a small image is"
|
||||
" required."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_start_date
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_start_date
|
||||
msgid "Start Date of session"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_channel_start_date
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_operator_start_date
|
||||
msgid "Start date of the conversation"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_button_text
|
||||
msgid "Text of the Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_channel_id
|
||||
msgid "The channel of the rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_name
|
||||
msgid "The name of the channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_country_ids
|
||||
msgid ""
|
||||
"The rule will only be applied for these countries. Example: if you select "
|
||||
"'Belgium' and 'United States' and that you set the action to 'Hide Button', "
|
||||
"the chat button will be hidden on the specified URL from the visitors "
|
||||
"located in these 2 countries. This feature requires GeoIP installed on your "
|
||||
"server."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:res.groups,comment:im_livechat.im_livechat_group_manager
|
||||
msgid "The user will be able to delete support channels."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:res.groups,comment:im_livechat.im_livechat_group_user
|
||||
msgid "The user will be able to join support channels."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.rating_rating_action_view_livechat_rating
|
||||
msgid "There is no rating for this channel at the moment."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_image
|
||||
msgid ""
|
||||
"This field holds the image used as photo for the group, limited to "
|
||||
"1024x1024px."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_default_message
|
||||
msgid ""
|
||||
"This is an automated 'welcome' message that your visitor will see when they "
|
||||
"initiate a new conversation."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_image_small
|
||||
msgid "Thumbnail"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_time_to_answer
|
||||
msgid "Time to answer"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
msgid "Treated sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_regex_url
|
||||
msgid "URL Regex"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_web_page
|
||||
msgid ""
|
||||
"URL to a static page where you client can discuss with the operator of the "
|
||||
"channel."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_uuid
|
||||
msgid "UUID"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:res.groups,name:im_livechat.im_livechat_group_user
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/controllers/main.py:37
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:49
|
||||
#, python-format
|
||||
msgid "Visitor"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_web_page
|
||||
msgid "Web Page"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.im_livechat_channel_action
|
||||
msgid "Website Live Chat Channels"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_default_message
|
||||
msgid "Welcome Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_channel_action
|
||||
msgid ""
|
||||
"You can create channels for each website on which you want\n"
|
||||
" to integrate the website live chat widget, allowing your website\n"
|
||||
" visitors to talk in real time with your operators."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.mail_channel_action
|
||||
msgid ""
|
||||
"Your chatter history is empty. Create a channel and start chatting to fill "
|
||||
"up your history."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "e.g. Hello, how may I help you?"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "e.g. YourWebsite.com"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_ir_autovacuum
|
||||
msgid "ir.autovacuum"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "or copy this url and send it by email to your customers or suppliers:"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_rule_view_form
|
||||
msgid "seconds"
|
||||
msgstr ""
|
||||
2060
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/fa.po
Normal file
2060
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/fa.po
Normal file
File diff suppressed because it is too large
Load diff
2071
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/fi.po
Normal file
2071
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/fi.po
Normal file
File diff suppressed because it is too large
Load diff
923
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/fo.po
Normal file
923
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/fo.po
Normal file
|
|
@ -0,0 +1,923 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * im_livechat
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 11.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-11-30 13:12+0000\n"
|
||||
"PO-Revision-Date: 2017-11-30 13:12+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Faroese (https://www.transifex.com/odoo/teams/41243/fo/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fo\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_nbr_channel
|
||||
msgid "# of Sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_nbr_speaker
|
||||
msgid "# of speakers"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rating_percentage_satisfaction
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "% Happy"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_action
|
||||
msgid ""
|
||||
"* 'Display the button' displays the chat button on the pages.\n"
|
||||
"* 'Auto popup' displays the button and automatically open the conversation pane.\n"
|
||||
"* 'Hide the button' hides the chat button on the pages."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid ""
|
||||
"<span>Define rules for your live support channel. You can apply an action "
|
||||
"(disable the support, automatically open your support, or just make the "
|
||||
"button available) for the given URL, and per country.<br/>To identify the "
|
||||
"country, GeoIP must be installed on your server, otherwise, the countries of"
|
||||
" the rule will not be taken into account.</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_action
|
||||
msgid "Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_mail_channel_anonymous_name
|
||||
msgid "Anonymous Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_are_you_inside
|
||||
msgid "Are you inside the matrix?"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:48
|
||||
#, python-format
|
||||
msgid "Ask something ..."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_tree
|
||||
msgid "Attendees"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: selection:im_livechat.channel.rule,action:0
|
||||
msgid "Auto popup"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_auto_popup_timer
|
||||
msgid "Auto popup timer"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_duration
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_duration
|
||||
msgid "Average duration"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_nbr_message
|
||||
msgid "Average message"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_operator_time_to_answer
|
||||
msgid "Average time to give the first answer to the visitor"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:13
|
||||
#, python-format
|
||||
msgid "Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.im_livechat_canned_response_action
|
||||
#: model:ir.ui.menu,name:im_livechat.canned_responses
|
||||
msgid "Canned Responses"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_canned_response_action
|
||||
msgid ""
|
||||
"Canned responses allow you to insert prewritten responses in\n"
|
||||
" your messages by typing <i>:shortcut</i>. The shortcut is\n"
|
||||
" replaced directly in your message, so that you can still edit\n"
|
||||
" it before sending."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_livechat_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_livechat_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_mail_channel_livechat_channel_id
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_channel_name
|
||||
msgid "Channel Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_rule_view_form
|
||||
msgid "Channel Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_im_livechat_channel_rule
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "Channel Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.support_channels
|
||||
msgid "Channels"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_input_placeholder
|
||||
msgid "Chat Input Placeholder"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:50
|
||||
#, python-format
|
||||
msgid "Chat with one of our collaborators"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_canned_response_action
|
||||
msgid "Click to create a new canned response."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_channel_action
|
||||
msgid "Click to define a new website live chat channel."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_technical_name
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.livechat_config
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_channel_id
|
||||
msgid "Conversation"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/copy_clipboard.js:32
|
||||
#, python-format
|
||||
msgid "Copied !"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/copy_clipboard.xml:6
|
||||
#: code:addons/im_livechat/static/src/xml/copy_clipboard.xml:12
|
||||
#, python-format
|
||||
msgid "Copy Text"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid ""
|
||||
"Copy and paste this code into your website, within the <head> tag:"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_country_ids
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_create_uid
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Byrjað av"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_create_date
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_create_date
|
||||
msgid "Created on"
|
||||
msgstr "Byrjað tann"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Creation date (day)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
msgid "Creation date (hour)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Creation date (month)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Creation date (week)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Creation date (year)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.rating_rating_action_livechat_report
|
||||
#: model:ir.ui.menu,name:im_livechat.rating_rating_menu_livechat
|
||||
msgid "Customer Ratings"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.rating_rating_action_livechat_report
|
||||
msgid "Customer ratings on livechat session."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_button_text
|
||||
msgid "Default text displayed on the Livechat Support Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_auto_popup_timer
|
||||
msgid ""
|
||||
"Delay (in seconds) to automatically open the conversation window. Note: the "
|
||||
"selected action must be 'Auto popup' otherwise this parameter will not be "
|
||||
"taken into account."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:7
|
||||
#, python-format
|
||||
msgid "Did we correctly answer your question ?"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_mail_channel
|
||||
msgid "Discussion channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_display_name
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_display_name
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_display_name
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Vís navn"
|
||||
|
||||
#. module: im_livechat
|
||||
#: selection:im_livechat.channel.rule,action:0
|
||||
msgid "Display the button"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_channel_duration
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_operator_duration
|
||||
msgid "Duration of the conversation (in seconds)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_channel_action
|
||||
msgid ""
|
||||
"Each channel has it's own URL that you can send by email to\n"
|
||||
" your customers in order to start chatting with you."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:19
|
||||
#, python-format
|
||||
msgid "Explain your note"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid ""
|
||||
"For website built with Odoo CMS, please install the website_livechat module."
|
||||
" Then go to Website Admin > Configuration > Settings and select the "
|
||||
"Website Live Chat Channel you want to add on your website."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_sequence
|
||||
msgid ""
|
||||
"Given the order to find a matching rule. If 2 rules are matching for the "
|
||||
"given url/country, the one with the lowest sequence will be chosen."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:11
|
||||
#, python-format
|
||||
msgid "Good"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Group By..."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: selection:im_livechat.channel.rule,action:0
|
||||
msgid "Hide the button"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.mail_channel_action
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_tree
|
||||
msgid "History"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_start_date_hour
|
||||
msgid "Hour of start Date of session"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:51
|
||||
#, python-format
|
||||
msgid "How may I help you?"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "How to use the Website Live Chat widget?"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:15
|
||||
#, python-format
|
||||
msgid "I don't want to rate this conversation"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_image
|
||||
msgid "Image"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Join"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "Join Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
msgid "Last 24h"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.rating_rating_view_search_livechat
|
||||
msgid "Last 7 days"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel___last_update
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule___last_update
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel___last_update
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Seinast rættað tann"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_write_uid
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Seinast dagført av"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_write_date
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Seinast dagført tann"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
msgid "Last Week"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Leave"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "Leave Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_mail_channel_partner
|
||||
msgid "Listeners of a Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.menu_livechat_root
|
||||
msgid "Live Chat"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.module.category,name:im_livechat.module_category_im_livechat
|
||||
msgid "Live Support"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat_backend.xml:9
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat_backend.xml:21
|
||||
#, python-format
|
||||
msgid "Livechat"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_im_livechat_channel
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.rating_rating_view_search_livechat
|
||||
msgid "Livechat Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_report_channel_action
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_report_operator_action
|
||||
msgid ""
|
||||
"Livechat Support Channel Statistics allows you to easily check and analyse "
|
||||
"your company livechat session performance. Extract information about the "
|
||||
"missed sessions, the audiance, the duration of a session, etc."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_im_livechat_report_channel
|
||||
#: model:ir.model,name:im_livechat.model_im_livechat_report_operator
|
||||
msgid "Livechat Support Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.im_livechat_report_channel_action
|
||||
#: model:ir.actions.act_window,name:im_livechat.im_livechat_report_operator_action
|
||||
msgid "Livechat Support Report Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_graph
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_pivot
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_graph
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_pivot
|
||||
msgid "Livechat Support Statistics"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:res.groups,name:im_livechat.im_livechat_group_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_sequence
|
||||
msgid "Matching order"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_image_medium
|
||||
msgid "Medium"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_image_medium
|
||||
msgid ""
|
||||
"Medium-sized photo of the group. It is automatically resized as a 128x128px "
|
||||
"image, with aspect ratio preserved. Use this field in form views or some "
|
||||
"kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
msgid "Missed sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_name
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: code:addons/im_livechat/models/mail_channel.py:125
|
||||
#, python-format
|
||||
msgid "No history found"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:150
|
||||
#, python-format
|
||||
msgid ""
|
||||
"None of our collaborators seems to be available, please try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_nbr_channel
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_operator_nbr_channel
|
||||
msgid "Number of conversation"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_channel_nbr_speaker
|
||||
msgid "Number of different speakers"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_channel_nbr_message
|
||||
msgid "Number of message in the conversation"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:12
|
||||
#, python-format
|
||||
msgid "OK"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_partner_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_partner_id
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
msgid "Operator"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.menu_reporting_livechat_operator
|
||||
msgid "Operator Analysis"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_user_ids
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "Operators"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid ""
|
||||
"Operators\n"
|
||||
" <br/>\n"
|
||||
" <i class=\"fa fa-comments\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid ""
|
||||
"Operators that do not show any activity In Odoo for more than 30 minutes "
|
||||
"will be considered as disconnected."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rating_percentage_satisfaction
|
||||
msgid "Percentage of happy ratings over the past 7 days"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_rating_rating
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_tree
|
||||
msgid "Rating"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:344
|
||||
#, python-format
|
||||
msgid "Rating: :rating_%d"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Rating: Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Rating: Great"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Rating: Okay"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.rating_rating_action_view_livechat_rating
|
||||
msgid "Ratings for livechat channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_regex_url
|
||||
msgid ""
|
||||
"Regular expression specifying the web pages this rule will be applied on."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.menu_reporting_livechat
|
||||
msgid "Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_ids
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_rule_view_tree
|
||||
msgid "Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_script_external
|
||||
msgid "Script (external)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Search history"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
msgid "Search report"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: code:addons/im_livechat/models/mail_channel.py:113
|
||||
#, python-format
|
||||
msgid "See 15 last visited pages"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_tree
|
||||
msgid "Session Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_form
|
||||
msgid "Session Form"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.menu_reporting_livechat_channel
|
||||
msgid "Session Statistics"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.mail_channel_action_from_livechat_channel
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_channel_ids
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.session_history
|
||||
msgid "Sessions History"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_image_small
|
||||
msgid ""
|
||||
"Small-sized photo of the group. It is automatically resized as a 64x64px "
|
||||
"image, with aspect ratio preserved. Use this field anywhere a small image is"
|
||||
" required."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_start_date
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_start_date
|
||||
msgid "Start Date of session"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_channel_start_date
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_operator_start_date
|
||||
msgid "Start date of the conversation"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_button_text
|
||||
msgid "Text of the Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_channel_id
|
||||
msgid "The channel of the rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_name
|
||||
msgid "The name of the channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_country_ids
|
||||
msgid ""
|
||||
"The rule will only be applied for these countries. Example: if you select "
|
||||
"'Belgium' and 'United States' and that you set the action to 'Hide Button', "
|
||||
"the chat button will be hidden on the specified URL from the visitors "
|
||||
"located in these 2 countries. This feature requires GeoIP installed on your "
|
||||
"server."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:res.groups,comment:im_livechat.im_livechat_group_manager
|
||||
msgid "The user will be able to delete support channels."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:res.groups,comment:im_livechat.im_livechat_group_user
|
||||
msgid "The user will be able to join support channels."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.rating_rating_action_view_livechat_rating
|
||||
msgid "There is no rating for this channel at the moment."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_image
|
||||
msgid ""
|
||||
"This field holds the image used as photo for the group, limited to "
|
||||
"1024x1024px."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_default_message
|
||||
msgid ""
|
||||
"This is an automated 'welcome' message that your visitor will see when they "
|
||||
"initiate a new conversation."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_image_small
|
||||
msgid "Thumbnail"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_time_to_answer
|
||||
msgid "Time to answer"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
msgid "Treated sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_regex_url
|
||||
msgid "URL Regex"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_web_page
|
||||
msgid ""
|
||||
"URL to a static page where you client can discuss with the operator of the "
|
||||
"channel."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_uuid
|
||||
msgid "UUID"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:res.groups,name:im_livechat.im_livechat_group_user
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/controllers/main.py:37
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:49
|
||||
#, python-format
|
||||
msgid "Visitor"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_web_page
|
||||
msgid "Web Page"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.im_livechat_channel_action
|
||||
msgid "Website Live Chat Channels"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_default_message
|
||||
msgid "Welcome Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_channel_action
|
||||
msgid ""
|
||||
"You can create channels for each website on which you want\n"
|
||||
" to integrate the website live chat widget, allowing your website\n"
|
||||
" visitors to talk in real time with your operators."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.mail_channel_action
|
||||
msgid ""
|
||||
"Your chatter history is empty. Create a channel and start chatting to fill "
|
||||
"up your history."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "e.g. Hello, how may I help you?"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "e.g. YourWebsite.com"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_ir_autovacuum
|
||||
msgid "ir.autovacuum"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "or copy this url and send it by email to your customers or suppliers:"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_rule_view_form
|
||||
msgid "seconds"
|
||||
msgstr ""
|
||||
2075
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/fr.po
Normal file
2075
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/fr.po
Normal file
File diff suppressed because it is too large
Load diff
923
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/fr_CA.po
Normal file
923
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/fr_CA.po
Normal file
|
|
@ -0,0 +1,923 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * im_livechat
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 11.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-11-30 13:12+0000\n"
|
||||
"PO-Revision-Date: 2017-11-30 13:12+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: French (Canada) (https://www.transifex.com/odoo/teams/41243/fr_CA/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fr_CA\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_nbr_channel
|
||||
msgid "# of Sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_nbr_speaker
|
||||
msgid "# of speakers"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rating_percentage_satisfaction
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "% Happy"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_action
|
||||
msgid ""
|
||||
"* 'Display the button' displays the chat button on the pages.\n"
|
||||
"* 'Auto popup' displays the button and automatically open the conversation pane.\n"
|
||||
"* 'Hide the button' hides the chat button on the pages."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid ""
|
||||
"<span>Define rules for your live support channel. You can apply an action "
|
||||
"(disable the support, automatically open your support, or just make the "
|
||||
"button available) for the given URL, and per country.<br/>To identify the "
|
||||
"country, GeoIP must be installed on your server, otherwise, the countries of"
|
||||
" the rule will not be taken into account.</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_action
|
||||
msgid "Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_mail_channel_anonymous_name
|
||||
msgid "Anonymous Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_are_you_inside
|
||||
msgid "Are you inside the matrix?"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:48
|
||||
#, python-format
|
||||
msgid "Ask something ..."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_tree
|
||||
msgid "Attendees"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: selection:im_livechat.channel.rule,action:0
|
||||
msgid "Auto popup"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_auto_popup_timer
|
||||
msgid "Auto popup timer"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_duration
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_duration
|
||||
msgid "Average duration"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_nbr_message
|
||||
msgid "Average message"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_operator_time_to_answer
|
||||
msgid "Average time to give the first answer to the visitor"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:13
|
||||
#, python-format
|
||||
msgid "Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.im_livechat_canned_response_action
|
||||
#: model:ir.ui.menu,name:im_livechat.canned_responses
|
||||
msgid "Canned Responses"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_canned_response_action
|
||||
msgid ""
|
||||
"Canned responses allow you to insert prewritten responses in\n"
|
||||
" your messages by typing <i>:shortcut</i>. The shortcut is\n"
|
||||
" replaced directly in your message, so that you can still edit\n"
|
||||
" it before sending."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_livechat_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_livechat_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_mail_channel_livechat_channel_id
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_channel_name
|
||||
msgid "Channel Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_rule_view_form
|
||||
msgid "Channel Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_im_livechat_channel_rule
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "Channel Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.support_channels
|
||||
msgid "Channels"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_input_placeholder
|
||||
msgid "Chat Input Placeholder"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:50
|
||||
#, python-format
|
||||
msgid "Chat with one of our collaborators"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_canned_response_action
|
||||
msgid "Click to create a new canned response."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_channel_action
|
||||
msgid "Click to define a new website live chat channel."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_technical_name
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.livechat_config
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_channel_id
|
||||
msgid "Conversation"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/copy_clipboard.js:32
|
||||
#, python-format
|
||||
msgid "Copied !"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/copy_clipboard.xml:6
|
||||
#: code:addons/im_livechat/static/src/xml/copy_clipboard.xml:12
|
||||
#, python-format
|
||||
msgid "Copy Text"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid ""
|
||||
"Copy and paste this code into your website, within the <head> tag:"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_country_ids
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_create_uid
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Créé par"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_create_date
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_create_date
|
||||
msgid "Created on"
|
||||
msgstr "Créé le"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Creation date (day)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
msgid "Creation date (hour)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Creation date (month)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Creation date (week)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Creation date (year)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.rating_rating_action_livechat_report
|
||||
#: model:ir.ui.menu,name:im_livechat.rating_rating_menu_livechat
|
||||
msgid "Customer Ratings"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.rating_rating_action_livechat_report
|
||||
msgid "Customer ratings on livechat session."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_button_text
|
||||
msgid "Default text displayed on the Livechat Support Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_auto_popup_timer
|
||||
msgid ""
|
||||
"Delay (in seconds) to automatically open the conversation window. Note: the "
|
||||
"selected action must be 'Auto popup' otherwise this parameter will not be "
|
||||
"taken into account."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:7
|
||||
#, python-format
|
||||
msgid "Did we correctly answer your question ?"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_mail_channel
|
||||
msgid "Discussion channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_display_name
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_display_name
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_display_name
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nom affiché"
|
||||
|
||||
#. module: im_livechat
|
||||
#: selection:im_livechat.channel.rule,action:0
|
||||
msgid "Display the button"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_channel_duration
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_operator_duration
|
||||
msgid "Duration of the conversation (in seconds)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_channel_action
|
||||
msgid ""
|
||||
"Each channel has it's own URL that you can send by email to\n"
|
||||
" your customers in order to start chatting with you."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:19
|
||||
#, python-format
|
||||
msgid "Explain your note"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid ""
|
||||
"For website built with Odoo CMS, please install the website_livechat module."
|
||||
" Then go to Website Admin > Configuration > Settings and select the "
|
||||
"Website Live Chat Channel you want to add on your website."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_sequence
|
||||
msgid ""
|
||||
"Given the order to find a matching rule. If 2 rules are matching for the "
|
||||
"given url/country, the one with the lowest sequence will be chosen."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:11
|
||||
#, python-format
|
||||
msgid "Good"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Group By..."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: selection:im_livechat.channel.rule,action:0
|
||||
msgid "Hide the button"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.mail_channel_action
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_tree
|
||||
msgid "History"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_start_date_hour
|
||||
msgid "Hour of start Date of session"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:51
|
||||
#, python-format
|
||||
msgid "How may I help you?"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "How to use the Website Live Chat widget?"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:15
|
||||
#, python-format
|
||||
msgid "I don't want to rate this conversation"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_id
|
||||
msgid "ID"
|
||||
msgstr "Identifiant"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_image
|
||||
msgid "Image"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Join"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "Join Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
msgid "Last 24h"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.rating_rating_view_search_livechat
|
||||
msgid "Last 7 days"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel___last_update
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule___last_update
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel___last_update
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Dernière modification le"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_write_uid
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Dernière mise à jour par"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_write_date
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Dernière mise à jour le"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
msgid "Last Week"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Leave"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "Leave Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_mail_channel_partner
|
||||
msgid "Listeners of a Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.menu_livechat_root
|
||||
msgid "Live Chat"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.module.category,name:im_livechat.module_category_im_livechat
|
||||
msgid "Live Support"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat_backend.xml:9
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat_backend.xml:21
|
||||
#, python-format
|
||||
msgid "Livechat"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_im_livechat_channel
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.rating_rating_view_search_livechat
|
||||
msgid "Livechat Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_report_channel_action
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_report_operator_action
|
||||
msgid ""
|
||||
"Livechat Support Channel Statistics allows you to easily check and analyse "
|
||||
"your company livechat session performance. Extract information about the "
|
||||
"missed sessions, the audiance, the duration of a session, etc."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_im_livechat_report_channel
|
||||
#: model:ir.model,name:im_livechat.model_im_livechat_report_operator
|
||||
msgid "Livechat Support Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.im_livechat_report_channel_action
|
||||
#: model:ir.actions.act_window,name:im_livechat.im_livechat_report_operator_action
|
||||
msgid "Livechat Support Report Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_graph
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_pivot
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_graph
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_pivot
|
||||
msgid "Livechat Support Statistics"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:res.groups,name:im_livechat.im_livechat_group_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_sequence
|
||||
msgid "Matching order"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_image_medium
|
||||
msgid "Medium"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_image_medium
|
||||
msgid ""
|
||||
"Medium-sized photo of the group. It is automatically resized as a 128x128px "
|
||||
"image, with aspect ratio preserved. Use this field in form views or some "
|
||||
"kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
msgid "Missed sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_name
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: code:addons/im_livechat/models/mail_channel.py:125
|
||||
#, python-format
|
||||
msgid "No history found"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:150
|
||||
#, python-format
|
||||
msgid ""
|
||||
"None of our collaborators seems to be available, please try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_nbr_channel
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_operator_nbr_channel
|
||||
msgid "Number of conversation"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_channel_nbr_speaker
|
||||
msgid "Number of different speakers"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_channel_nbr_message
|
||||
msgid "Number of message in the conversation"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:12
|
||||
#, python-format
|
||||
msgid "OK"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_partner_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_partner_id
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
msgid "Operator"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.menu_reporting_livechat_operator
|
||||
msgid "Operator Analysis"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_user_ids
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "Operators"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid ""
|
||||
"Operators\n"
|
||||
" <br/>\n"
|
||||
" <i class=\"fa fa-comments\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid ""
|
||||
"Operators that do not show any activity In Odoo for more than 30 minutes "
|
||||
"will be considered as disconnected."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rating_percentage_satisfaction
|
||||
msgid "Percentage of happy ratings over the past 7 days"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_rating_rating
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_tree
|
||||
msgid "Rating"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:344
|
||||
#, python-format
|
||||
msgid "Rating: :rating_%d"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Rating: Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Rating: Great"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Rating: Okay"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.rating_rating_action_view_livechat_rating
|
||||
msgid "Ratings for livechat channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_regex_url
|
||||
msgid ""
|
||||
"Regular expression specifying the web pages this rule will be applied on."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.menu_reporting_livechat
|
||||
msgid "Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_ids
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_rule_view_tree
|
||||
msgid "Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_script_external
|
||||
msgid "Script (external)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Search history"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
msgid "Search report"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: code:addons/im_livechat/models/mail_channel.py:113
|
||||
#, python-format
|
||||
msgid "See 15 last visited pages"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_tree
|
||||
msgid "Session Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_form
|
||||
msgid "Session Form"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.menu_reporting_livechat_channel
|
||||
msgid "Session Statistics"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.mail_channel_action_from_livechat_channel
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_channel_ids
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.session_history
|
||||
msgid "Sessions History"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_image_small
|
||||
msgid ""
|
||||
"Small-sized photo of the group. It is automatically resized as a 64x64px "
|
||||
"image, with aspect ratio preserved. Use this field anywhere a small image is"
|
||||
" required."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_start_date
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_start_date
|
||||
msgid "Start Date of session"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_channel_start_date
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_operator_start_date
|
||||
msgid "Start date of the conversation"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_button_text
|
||||
msgid "Text of the Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_channel_id
|
||||
msgid "The channel of the rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_name
|
||||
msgid "The name of the channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_country_ids
|
||||
msgid ""
|
||||
"The rule will only be applied for these countries. Example: if you select "
|
||||
"'Belgium' and 'United States' and that you set the action to 'Hide Button', "
|
||||
"the chat button will be hidden on the specified URL from the visitors "
|
||||
"located in these 2 countries. This feature requires GeoIP installed on your "
|
||||
"server."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:res.groups,comment:im_livechat.im_livechat_group_manager
|
||||
msgid "The user will be able to delete support channels."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:res.groups,comment:im_livechat.im_livechat_group_user
|
||||
msgid "The user will be able to join support channels."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.rating_rating_action_view_livechat_rating
|
||||
msgid "There is no rating for this channel at the moment."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_image
|
||||
msgid ""
|
||||
"This field holds the image used as photo for the group, limited to "
|
||||
"1024x1024px."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_default_message
|
||||
msgid ""
|
||||
"This is an automated 'welcome' message that your visitor will see when they "
|
||||
"initiate a new conversation."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_image_small
|
||||
msgid "Thumbnail"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_time_to_answer
|
||||
msgid "Time to answer"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
msgid "Treated sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_regex_url
|
||||
msgid "URL Regex"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_web_page
|
||||
msgid ""
|
||||
"URL to a static page where you client can discuss with the operator of the "
|
||||
"channel."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_uuid
|
||||
msgid "UUID"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:res.groups,name:im_livechat.im_livechat_group_user
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/controllers/main.py:37
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:49
|
||||
#, python-format
|
||||
msgid "Visitor"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_web_page
|
||||
msgid "Web Page"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.im_livechat_channel_action
|
||||
msgid "Website Live Chat Channels"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_default_message
|
||||
msgid "Welcome Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_channel_action
|
||||
msgid ""
|
||||
"You can create channels for each website on which you want\n"
|
||||
" to integrate the website live chat widget, allowing your website\n"
|
||||
" visitors to talk in real time with your operators."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.mail_channel_action
|
||||
msgid ""
|
||||
"Your chatter history is empty. Create a channel and start chatting to fill "
|
||||
"up your history."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "e.g. Hello, how may I help you?"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "e.g. YourWebsite.com"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_ir_autovacuum
|
||||
msgid "ir.autovacuum"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "or copy this url and send it by email to your customers or suppliers:"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_rule_view_form
|
||||
msgid "seconds"
|
||||
msgstr ""
|
||||
923
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/gl.po
Normal file
923
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/gl.po
Normal file
|
|
@ -0,0 +1,923 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * im_livechat
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 11.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-11-30 13:12+0000\n"
|
||||
"PO-Revision-Date: 2017-11-30 13:12+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Galician (https://www.transifex.com/odoo/teams/41243/gl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: gl\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_nbr_channel
|
||||
msgid "# of Sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_nbr_speaker
|
||||
msgid "# of speakers"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rating_percentage_satisfaction
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "% Happy"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_action
|
||||
msgid ""
|
||||
"* 'Display the button' displays the chat button on the pages.\n"
|
||||
"* 'Auto popup' displays the button and automatically open the conversation pane.\n"
|
||||
"* 'Hide the button' hides the chat button on the pages."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid ""
|
||||
"<span>Define rules for your live support channel. You can apply an action "
|
||||
"(disable the support, automatically open your support, or just make the "
|
||||
"button available) for the given URL, and per country.<br/>To identify the "
|
||||
"country, GeoIP must be installed on your server, otherwise, the countries of"
|
||||
" the rule will not be taken into account.</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_action
|
||||
msgid "Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_mail_channel_anonymous_name
|
||||
msgid "Anonymous Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_are_you_inside
|
||||
msgid "Are you inside the matrix?"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:48
|
||||
#, python-format
|
||||
msgid "Ask something ..."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_tree
|
||||
msgid "Attendees"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: selection:im_livechat.channel.rule,action:0
|
||||
msgid "Auto popup"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_auto_popup_timer
|
||||
msgid "Auto popup timer"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_duration
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_duration
|
||||
msgid "Average duration"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_nbr_message
|
||||
msgid "Average message"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_operator_time_to_answer
|
||||
msgid "Average time to give the first answer to the visitor"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:13
|
||||
#, python-format
|
||||
msgid "Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.im_livechat_canned_response_action
|
||||
#: model:ir.ui.menu,name:im_livechat.canned_responses
|
||||
msgid "Canned Responses"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_canned_response_action
|
||||
msgid ""
|
||||
"Canned responses allow you to insert prewritten responses in\n"
|
||||
" your messages by typing <i>:shortcut</i>. The shortcut is\n"
|
||||
" replaced directly in your message, so that you can still edit\n"
|
||||
" it before sending."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_livechat_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_livechat_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_mail_channel_livechat_channel_id
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_channel_name
|
||||
msgid "Channel Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_rule_view_form
|
||||
msgid "Channel Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_im_livechat_channel_rule
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "Channel Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.support_channels
|
||||
msgid "Channels"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_input_placeholder
|
||||
msgid "Chat Input Placeholder"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:50
|
||||
#, python-format
|
||||
msgid "Chat with one of our collaborators"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_canned_response_action
|
||||
msgid "Click to create a new canned response."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_channel_action
|
||||
msgid "Click to define a new website live chat channel."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_technical_name
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.livechat_config
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_channel_id
|
||||
msgid "Conversation"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/copy_clipboard.js:32
|
||||
#, python-format
|
||||
msgid "Copied !"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/copy_clipboard.xml:6
|
||||
#: code:addons/im_livechat/static/src/xml/copy_clipboard.xml:12
|
||||
#, python-format
|
||||
msgid "Copy Text"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid ""
|
||||
"Copy and paste this code into your website, within the <head> tag:"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_country_ids
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_create_uid
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_create_date
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado o"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Creation date (day)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
msgid "Creation date (hour)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Creation date (month)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Creation date (week)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Creation date (year)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.rating_rating_action_livechat_report
|
||||
#: model:ir.ui.menu,name:im_livechat.rating_rating_menu_livechat
|
||||
msgid "Customer Ratings"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.rating_rating_action_livechat_report
|
||||
msgid "Customer ratings on livechat session."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_button_text
|
||||
msgid "Default text displayed on the Livechat Support Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_auto_popup_timer
|
||||
msgid ""
|
||||
"Delay (in seconds) to automatically open the conversation window. Note: the "
|
||||
"selected action must be 'Auto popup' otherwise this parameter will not be "
|
||||
"taken into account."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:7
|
||||
#, python-format
|
||||
msgid "Did we correctly answer your question ?"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_mail_channel
|
||||
msgid "Discussion channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_display_name
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_display_name
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_display_name
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: selection:im_livechat.channel.rule,action:0
|
||||
msgid "Display the button"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_channel_duration
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_operator_duration
|
||||
msgid "Duration of the conversation (in seconds)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_channel_action
|
||||
msgid ""
|
||||
"Each channel has it's own URL that you can send by email to\n"
|
||||
" your customers in order to start chatting with you."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:19
|
||||
#, python-format
|
||||
msgid "Explain your note"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid ""
|
||||
"For website built with Odoo CMS, please install the website_livechat module."
|
||||
" Then go to Website Admin > Configuration > Settings and select the "
|
||||
"Website Live Chat Channel you want to add on your website."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_sequence
|
||||
msgid ""
|
||||
"Given the order to find a matching rule. If 2 rules are matching for the "
|
||||
"given url/country, the one with the lowest sequence will be chosen."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:11
|
||||
#, python-format
|
||||
msgid "Good"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Group By..."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: selection:im_livechat.channel.rule,action:0
|
||||
msgid "Hide the button"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.mail_channel_action
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_tree
|
||||
msgid "History"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_start_date_hour
|
||||
msgid "Hour of start Date of session"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:51
|
||||
#, python-format
|
||||
msgid "How may I help you?"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "How to use the Website Live Chat widget?"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:15
|
||||
#, python-format
|
||||
msgid "I don't want to rate this conversation"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_image
|
||||
msgid "Image"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Join"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "Join Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
msgid "Last 24h"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.rating_rating_view_search_livechat
|
||||
msgid "Last 7 days"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel___last_update
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule___last_update
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel___last_update
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_write_uid
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización de"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_write_date
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización en"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
msgid "Last Week"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Leave"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "Leave Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_mail_channel_partner
|
||||
msgid "Listeners of a Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.menu_livechat_root
|
||||
msgid "Live Chat"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.module.category,name:im_livechat.module_category_im_livechat
|
||||
msgid "Live Support"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat_backend.xml:9
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat_backend.xml:21
|
||||
#, python-format
|
||||
msgid "Livechat"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_im_livechat_channel
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.rating_rating_view_search_livechat
|
||||
msgid "Livechat Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_report_channel_action
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_report_operator_action
|
||||
msgid ""
|
||||
"Livechat Support Channel Statistics allows you to easily check and analyse "
|
||||
"your company livechat session performance. Extract information about the "
|
||||
"missed sessions, the audiance, the duration of a session, etc."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_im_livechat_report_channel
|
||||
#: model:ir.model,name:im_livechat.model_im_livechat_report_operator
|
||||
msgid "Livechat Support Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.im_livechat_report_channel_action
|
||||
#: model:ir.actions.act_window,name:im_livechat.im_livechat_report_operator_action
|
||||
msgid "Livechat Support Report Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_graph
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_pivot
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_graph
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_pivot
|
||||
msgid "Livechat Support Statistics"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:res.groups,name:im_livechat.im_livechat_group_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_sequence
|
||||
msgid "Matching order"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_image_medium
|
||||
msgid "Medium"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_image_medium
|
||||
msgid ""
|
||||
"Medium-sized photo of the group. It is automatically resized as a 128x128px "
|
||||
"image, with aspect ratio preserved. Use this field in form views or some "
|
||||
"kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
msgid "Missed sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_name
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: code:addons/im_livechat/models/mail_channel.py:125
|
||||
#, python-format
|
||||
msgid "No history found"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:150
|
||||
#, python-format
|
||||
msgid ""
|
||||
"None of our collaborators seems to be available, please try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_nbr_channel
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_operator_nbr_channel
|
||||
msgid "Number of conversation"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_channel_nbr_speaker
|
||||
msgid "Number of different speakers"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_channel_nbr_message
|
||||
msgid "Number of message in the conversation"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:12
|
||||
#, python-format
|
||||
msgid "OK"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_partner_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_partner_id
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
msgid "Operator"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.menu_reporting_livechat_operator
|
||||
msgid "Operator Analysis"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_user_ids
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "Operators"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid ""
|
||||
"Operators\n"
|
||||
" <br/>\n"
|
||||
" <i class=\"fa fa-comments\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid ""
|
||||
"Operators that do not show any activity In Odoo for more than 30 minutes "
|
||||
"will be considered as disconnected."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rating_percentage_satisfaction
|
||||
msgid "Percentage of happy ratings over the past 7 days"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_rating_rating
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_tree
|
||||
msgid "Rating"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:344
|
||||
#, python-format
|
||||
msgid "Rating: :rating_%d"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Rating: Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Rating: Great"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Rating: Okay"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.rating_rating_action_view_livechat_rating
|
||||
msgid "Ratings for livechat channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_regex_url
|
||||
msgid ""
|
||||
"Regular expression specifying the web pages this rule will be applied on."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.menu_reporting_livechat
|
||||
msgid "Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_ids
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_rule_view_tree
|
||||
msgid "Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_script_external
|
||||
msgid "Script (external)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Search history"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
msgid "Search report"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: code:addons/im_livechat/models/mail_channel.py:113
|
||||
#, python-format
|
||||
msgid "See 15 last visited pages"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_tree
|
||||
msgid "Session Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_form
|
||||
msgid "Session Form"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.menu_reporting_livechat_channel
|
||||
msgid "Session Statistics"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.mail_channel_action_from_livechat_channel
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_channel_ids
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.session_history
|
||||
msgid "Sessions History"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_image_small
|
||||
msgid ""
|
||||
"Small-sized photo of the group. It is automatically resized as a 64x64px "
|
||||
"image, with aspect ratio preserved. Use this field anywhere a small image is"
|
||||
" required."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_start_date
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_start_date
|
||||
msgid "Start Date of session"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_channel_start_date
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_operator_start_date
|
||||
msgid "Start date of the conversation"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_button_text
|
||||
msgid "Text of the Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_channel_id
|
||||
msgid "The channel of the rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_name
|
||||
msgid "The name of the channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_country_ids
|
||||
msgid ""
|
||||
"The rule will only be applied for these countries. Example: if you select "
|
||||
"'Belgium' and 'United States' and that you set the action to 'Hide Button', "
|
||||
"the chat button will be hidden on the specified URL from the visitors "
|
||||
"located in these 2 countries. This feature requires GeoIP installed on your "
|
||||
"server."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:res.groups,comment:im_livechat.im_livechat_group_manager
|
||||
msgid "The user will be able to delete support channels."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:res.groups,comment:im_livechat.im_livechat_group_user
|
||||
msgid "The user will be able to join support channels."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.rating_rating_action_view_livechat_rating
|
||||
msgid "There is no rating for this channel at the moment."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_image
|
||||
msgid ""
|
||||
"This field holds the image used as photo for the group, limited to "
|
||||
"1024x1024px."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_default_message
|
||||
msgid ""
|
||||
"This is an automated 'welcome' message that your visitor will see when they "
|
||||
"initiate a new conversation."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_image_small
|
||||
msgid "Thumbnail"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_time_to_answer
|
||||
msgid "Time to answer"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
msgid "Treated sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_regex_url
|
||||
msgid "URL Regex"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_web_page
|
||||
msgid ""
|
||||
"URL to a static page where you client can discuss with the operator of the "
|
||||
"channel."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_uuid
|
||||
msgid "UUID"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:res.groups,name:im_livechat.im_livechat_group_user
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/controllers/main.py:37
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:49
|
||||
#, python-format
|
||||
msgid "Visitor"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_web_page
|
||||
msgid "Web Page"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.im_livechat_channel_action
|
||||
msgid "Website Live Chat Channels"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_default_message
|
||||
msgid "Welcome Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_channel_action
|
||||
msgid ""
|
||||
"You can create channels for each website on which you want\n"
|
||||
" to integrate the website live chat widget, allowing your website\n"
|
||||
" visitors to talk in real time with your operators."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.mail_channel_action
|
||||
msgid ""
|
||||
"Your chatter history is empty. Create a channel and start chatting to fill "
|
||||
"up your history."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "e.g. Hello, how may I help you?"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "e.g. YourWebsite.com"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_ir_autovacuum
|
||||
msgid "ir.autovacuum"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "or copy this url and send it by email to your customers or suppliers:"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_rule_view_form
|
||||
msgid "seconds"
|
||||
msgstr ""
|
||||
1980
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/gu.po
Normal file
1980
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/gu.po
Normal file
File diff suppressed because it is too large
Load diff
2001
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/he.po
Normal file
2001
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/he.po
Normal file
File diff suppressed because it is too large
Load diff
1984
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/hi.po
Normal file
1984
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/hi.po
Normal file
File diff suppressed because it is too large
Load diff
2019
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/hr.po
Normal file
2019
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/hr.po
Normal file
File diff suppressed because it is too large
Load diff
2042
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/hu.po
Normal file
2042
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/hu.po
Normal file
File diff suppressed because it is too large
Load diff
1976
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/hy.po
Normal file
1976
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/hy.po
Normal file
File diff suppressed because it is too large
Load diff
2056
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/id.po
Normal file
2056
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/id.po
Normal file
File diff suppressed because it is too large
Load diff
1976
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/im_livechat.pot
Normal file
1976
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/im_livechat.pot
Normal file
File diff suppressed because it is too large
Load diff
1980
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/is.po
Normal file
1980
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/is.po
Normal file
File diff suppressed because it is too large
Load diff
2065
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/it.po
Normal file
2065
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/it.po
Normal file
File diff suppressed because it is too large
Load diff
2016
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/ja.po
Normal file
2016
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/ja.po
Normal file
File diff suppressed because it is too large
Load diff
923
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/ka.po
Normal file
923
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/ka.po
Normal file
|
|
@ -0,0 +1,923 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * im_livechat
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 11.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-11-30 13:12+0000\n"
|
||||
"PO-Revision-Date: 2017-11-30 13:12+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Georgian (https://www.transifex.com/odoo/teams/41243/ka/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ka\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_nbr_channel
|
||||
msgid "# of Sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_nbr_speaker
|
||||
msgid "# of speakers"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rating_percentage_satisfaction
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "% Happy"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_action
|
||||
msgid ""
|
||||
"* 'Display the button' displays the chat button on the pages.\n"
|
||||
"* 'Auto popup' displays the button and automatically open the conversation pane.\n"
|
||||
"* 'Hide the button' hides the chat button on the pages."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid ""
|
||||
"<span>Define rules for your live support channel. You can apply an action "
|
||||
"(disable the support, automatically open your support, or just make the "
|
||||
"button available) for the given URL, and per country.<br/>To identify the "
|
||||
"country, GeoIP must be installed on your server, otherwise, the countries of"
|
||||
" the rule will not be taken into account.</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_action
|
||||
msgid "Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_mail_channel_anonymous_name
|
||||
msgid "Anonymous Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_are_you_inside
|
||||
msgid "Are you inside the matrix?"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:48
|
||||
#, python-format
|
||||
msgid "Ask something ..."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_tree
|
||||
msgid "Attendees"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: selection:im_livechat.channel.rule,action:0
|
||||
msgid "Auto popup"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_auto_popup_timer
|
||||
msgid "Auto popup timer"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_duration
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_duration
|
||||
msgid "Average duration"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_nbr_message
|
||||
msgid "Average message"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_operator_time_to_answer
|
||||
msgid "Average time to give the first answer to the visitor"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:13
|
||||
#, python-format
|
||||
msgid "Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.im_livechat_canned_response_action
|
||||
#: model:ir.ui.menu,name:im_livechat.canned_responses
|
||||
msgid "Canned Responses"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_canned_response_action
|
||||
msgid ""
|
||||
"Canned responses allow you to insert prewritten responses in\n"
|
||||
" your messages by typing <i>:shortcut</i>. The shortcut is\n"
|
||||
" replaced directly in your message, so that you can still edit\n"
|
||||
" it before sending."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_livechat_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_livechat_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_mail_channel_livechat_channel_id
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_channel_name
|
||||
msgid "Channel Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_rule_view_form
|
||||
msgid "Channel Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_im_livechat_channel_rule
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "Channel Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.support_channels
|
||||
msgid "Channels"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_input_placeholder
|
||||
msgid "Chat Input Placeholder"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:50
|
||||
#, python-format
|
||||
msgid "Chat with one of our collaborators"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_canned_response_action
|
||||
msgid "Click to create a new canned response."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_channel_action
|
||||
msgid "Click to define a new website live chat channel."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_technical_name
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.livechat_config
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_channel_id
|
||||
msgid "Conversation"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/copy_clipboard.js:32
|
||||
#, python-format
|
||||
msgid "Copied !"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/copy_clipboard.xml:6
|
||||
#: code:addons/im_livechat/static/src/xml/copy_clipboard.xml:12
|
||||
#, python-format
|
||||
msgid "Copy Text"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid ""
|
||||
"Copy and paste this code into your website, within the <head> tag:"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_country_ids
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_create_uid
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "შემქმნელი"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_create_date
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_create_date
|
||||
msgid "Created on"
|
||||
msgstr "შექმნის თარიღი"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Creation date (day)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
msgid "Creation date (hour)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Creation date (month)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Creation date (week)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Creation date (year)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.rating_rating_action_livechat_report
|
||||
#: model:ir.ui.menu,name:im_livechat.rating_rating_menu_livechat
|
||||
msgid "Customer Ratings"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.rating_rating_action_livechat_report
|
||||
msgid "Customer ratings on livechat session."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_button_text
|
||||
msgid "Default text displayed on the Livechat Support Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_auto_popup_timer
|
||||
msgid ""
|
||||
"Delay (in seconds) to automatically open the conversation window. Note: the "
|
||||
"selected action must be 'Auto popup' otherwise this parameter will not be "
|
||||
"taken into account."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:7
|
||||
#, python-format
|
||||
msgid "Did we correctly answer your question ?"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_mail_channel
|
||||
msgid "Discussion channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_display_name
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_display_name
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_display_name
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_display_name
|
||||
msgid "Display Name"
|
||||
msgstr "სახელი"
|
||||
|
||||
#. module: im_livechat
|
||||
#: selection:im_livechat.channel.rule,action:0
|
||||
msgid "Display the button"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_channel_duration
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_operator_duration
|
||||
msgid "Duration of the conversation (in seconds)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_channel_action
|
||||
msgid ""
|
||||
"Each channel has it's own URL that you can send by email to\n"
|
||||
" your customers in order to start chatting with you."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:19
|
||||
#, python-format
|
||||
msgid "Explain your note"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid ""
|
||||
"For website built with Odoo CMS, please install the website_livechat module."
|
||||
" Then go to Website Admin > Configuration > Settings and select the "
|
||||
"Website Live Chat Channel you want to add on your website."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_sequence
|
||||
msgid ""
|
||||
"Given the order to find a matching rule. If 2 rules are matching for the "
|
||||
"given url/country, the one with the lowest sequence will be chosen."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:11
|
||||
#, python-format
|
||||
msgid "Good"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Group By..."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: selection:im_livechat.channel.rule,action:0
|
||||
msgid "Hide the button"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.mail_channel_action
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_tree
|
||||
msgid "History"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_start_date_hour
|
||||
msgid "Hour of start Date of session"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:51
|
||||
#, python-format
|
||||
msgid "How may I help you?"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "How to use the Website Live Chat widget?"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:15
|
||||
#, python-format
|
||||
msgid "I don't want to rate this conversation"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_id
|
||||
msgid "ID"
|
||||
msgstr "იდენტიფიკატორი"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_image
|
||||
msgid "Image"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Join"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "Join Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
msgid "Last 24h"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.rating_rating_view_search_livechat
|
||||
msgid "Last 7 days"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel___last_update
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule___last_update
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel___last_update
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "ბოლოს განახლებულია"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_write_uid
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "ბოლოს განაახლა"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_write_date
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "ბოლოს განახლებულია"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
msgid "Last Week"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Leave"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "Leave Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_mail_channel_partner
|
||||
msgid "Listeners of a Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.menu_livechat_root
|
||||
msgid "Live Chat"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.module.category,name:im_livechat.module_category_im_livechat
|
||||
msgid "Live Support"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat_backend.xml:9
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat_backend.xml:21
|
||||
#, python-format
|
||||
msgid "Livechat"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_im_livechat_channel
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.rating_rating_view_search_livechat
|
||||
msgid "Livechat Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_report_channel_action
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_report_operator_action
|
||||
msgid ""
|
||||
"Livechat Support Channel Statistics allows you to easily check and analyse "
|
||||
"your company livechat session performance. Extract information about the "
|
||||
"missed sessions, the audiance, the duration of a session, etc."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_im_livechat_report_channel
|
||||
#: model:ir.model,name:im_livechat.model_im_livechat_report_operator
|
||||
msgid "Livechat Support Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.im_livechat_report_channel_action
|
||||
#: model:ir.actions.act_window,name:im_livechat.im_livechat_report_operator_action
|
||||
msgid "Livechat Support Report Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_graph
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_pivot
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_graph
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_pivot
|
||||
msgid "Livechat Support Statistics"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:res.groups,name:im_livechat.im_livechat_group_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_sequence
|
||||
msgid "Matching order"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_image_medium
|
||||
msgid "Medium"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_image_medium
|
||||
msgid ""
|
||||
"Medium-sized photo of the group. It is automatically resized as a 128x128px "
|
||||
"image, with aspect ratio preserved. Use this field in form views or some "
|
||||
"kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
msgid "Missed sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_name
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: code:addons/im_livechat/models/mail_channel.py:125
|
||||
#, python-format
|
||||
msgid "No history found"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:150
|
||||
#, python-format
|
||||
msgid ""
|
||||
"None of our collaborators seems to be available, please try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_nbr_channel
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_operator_nbr_channel
|
||||
msgid "Number of conversation"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_channel_nbr_speaker
|
||||
msgid "Number of different speakers"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_channel_nbr_message
|
||||
msgid "Number of message in the conversation"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:12
|
||||
#, python-format
|
||||
msgid "OK"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_partner_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_partner_id
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
msgid "Operator"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.menu_reporting_livechat_operator
|
||||
msgid "Operator Analysis"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_user_ids
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "Operators"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid ""
|
||||
"Operators\n"
|
||||
" <br/>\n"
|
||||
" <i class=\"fa fa-comments\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid ""
|
||||
"Operators that do not show any activity In Odoo for more than 30 minutes "
|
||||
"will be considered as disconnected."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rating_percentage_satisfaction
|
||||
msgid "Percentage of happy ratings over the past 7 days"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_rating_rating
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_tree
|
||||
msgid "Rating"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:344
|
||||
#, python-format
|
||||
msgid "Rating: :rating_%d"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Rating: Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Rating: Great"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Rating: Okay"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.rating_rating_action_view_livechat_rating
|
||||
msgid "Ratings for livechat channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_regex_url
|
||||
msgid ""
|
||||
"Regular expression specifying the web pages this rule will be applied on."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.menu_reporting_livechat
|
||||
msgid "Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_ids
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_rule_view_tree
|
||||
msgid "Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_script_external
|
||||
msgid "Script (external)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Search history"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
msgid "Search report"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: code:addons/im_livechat/models/mail_channel.py:113
|
||||
#, python-format
|
||||
msgid "See 15 last visited pages"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_tree
|
||||
msgid "Session Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_form
|
||||
msgid "Session Form"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.menu_reporting_livechat_channel
|
||||
msgid "Session Statistics"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.mail_channel_action_from_livechat_channel
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_channel_ids
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.session_history
|
||||
msgid "Sessions History"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_image_small
|
||||
msgid ""
|
||||
"Small-sized photo of the group. It is automatically resized as a 64x64px "
|
||||
"image, with aspect ratio preserved. Use this field anywhere a small image is"
|
||||
" required."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_start_date
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_start_date
|
||||
msgid "Start Date of session"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_channel_start_date
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_operator_start_date
|
||||
msgid "Start date of the conversation"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_button_text
|
||||
msgid "Text of the Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_channel_id
|
||||
msgid "The channel of the rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_name
|
||||
msgid "The name of the channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_country_ids
|
||||
msgid ""
|
||||
"The rule will only be applied for these countries. Example: if you select "
|
||||
"'Belgium' and 'United States' and that you set the action to 'Hide Button', "
|
||||
"the chat button will be hidden on the specified URL from the visitors "
|
||||
"located in these 2 countries. This feature requires GeoIP installed on your "
|
||||
"server."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:res.groups,comment:im_livechat.im_livechat_group_manager
|
||||
msgid "The user will be able to delete support channels."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:res.groups,comment:im_livechat.im_livechat_group_user
|
||||
msgid "The user will be able to join support channels."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.rating_rating_action_view_livechat_rating
|
||||
msgid "There is no rating for this channel at the moment."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_image
|
||||
msgid ""
|
||||
"This field holds the image used as photo for the group, limited to "
|
||||
"1024x1024px."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_default_message
|
||||
msgid ""
|
||||
"This is an automated 'welcome' message that your visitor will see when they "
|
||||
"initiate a new conversation."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_image_small
|
||||
msgid "Thumbnail"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_time_to_answer
|
||||
msgid "Time to answer"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
msgid "Treated sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_regex_url
|
||||
msgid "URL Regex"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_web_page
|
||||
msgid ""
|
||||
"URL to a static page where you client can discuss with the operator of the "
|
||||
"channel."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_uuid
|
||||
msgid "UUID"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:res.groups,name:im_livechat.im_livechat_group_user
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/controllers/main.py:37
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:49
|
||||
#, python-format
|
||||
msgid "Visitor"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_web_page
|
||||
msgid "Web Page"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.im_livechat_channel_action
|
||||
msgid "Website Live Chat Channels"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_default_message
|
||||
msgid "Welcome Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_channel_action
|
||||
msgid ""
|
||||
"You can create channels for each website on which you want\n"
|
||||
" to integrate the website live chat widget, allowing your website\n"
|
||||
" visitors to talk in real time with your operators."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.mail_channel_action
|
||||
msgid ""
|
||||
"Your chatter history is empty. Create a channel and start chatting to fill "
|
||||
"up your history."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "e.g. Hello, how may I help you?"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "e.g. YourWebsite.com"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_ir_autovacuum
|
||||
msgid "ir.autovacuum"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "or copy this url and send it by email to your customers or suppliers:"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_rule_view_form
|
||||
msgid "seconds"
|
||||
msgstr ""
|
||||
923
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/kab.po
Normal file
923
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/kab.po
Normal file
|
|
@ -0,0 +1,923 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * im_livechat
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 11.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-11-30 13:12+0000\n"
|
||||
"PO-Revision-Date: 2017-11-30 13:12+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Kabyle (https://www.transifex.com/odoo/teams/41243/kab/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: kab\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_nbr_channel
|
||||
msgid "# of Sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_nbr_speaker
|
||||
msgid "# of speakers"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rating_percentage_satisfaction
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "% Happy"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_action
|
||||
msgid ""
|
||||
"* 'Display the button' displays the chat button on the pages.\n"
|
||||
"* 'Auto popup' displays the button and automatically open the conversation pane.\n"
|
||||
"* 'Hide the button' hides the chat button on the pages."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid ""
|
||||
"<span>Define rules for your live support channel. You can apply an action "
|
||||
"(disable the support, automatically open your support, or just make the "
|
||||
"button available) for the given URL, and per country.<br/>To identify the "
|
||||
"country, GeoIP must be installed on your server, otherwise, the countries of"
|
||||
" the rule will not be taken into account.</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_action
|
||||
msgid "Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_mail_channel_anonymous_name
|
||||
msgid "Anonymous Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_are_you_inside
|
||||
msgid "Are you inside the matrix?"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:48
|
||||
#, python-format
|
||||
msgid "Ask something ..."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_tree
|
||||
msgid "Attendees"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: selection:im_livechat.channel.rule,action:0
|
||||
msgid "Auto popup"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_auto_popup_timer
|
||||
msgid "Auto popup timer"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_duration
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_duration
|
||||
msgid "Average duration"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_nbr_message
|
||||
msgid "Average message"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_operator_time_to_answer
|
||||
msgid "Average time to give the first answer to the visitor"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:13
|
||||
#, python-format
|
||||
msgid "Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.im_livechat_canned_response_action
|
||||
#: model:ir.ui.menu,name:im_livechat.canned_responses
|
||||
msgid "Canned Responses"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_canned_response_action
|
||||
msgid ""
|
||||
"Canned responses allow you to insert prewritten responses in\n"
|
||||
" your messages by typing <i>:shortcut</i>. The shortcut is\n"
|
||||
" replaced directly in your message, so that you can still edit\n"
|
||||
" it before sending."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_livechat_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_livechat_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_mail_channel_livechat_channel_id
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_channel_name
|
||||
msgid "Channel Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_rule_view_form
|
||||
msgid "Channel Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_im_livechat_channel_rule
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "Channel Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.support_channels
|
||||
msgid "Channels"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_input_placeholder
|
||||
msgid "Chat Input Placeholder"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:50
|
||||
#, python-format
|
||||
msgid "Chat with one of our collaborators"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_canned_response_action
|
||||
msgid "Click to create a new canned response."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_channel_action
|
||||
msgid "Click to define a new website live chat channel."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_technical_name
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.livechat_config
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_channel_id
|
||||
msgid "Conversation"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/copy_clipboard.js:32
|
||||
#, python-format
|
||||
msgid "Copied !"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/copy_clipboard.xml:6
|
||||
#: code:addons/im_livechat/static/src/xml/copy_clipboard.xml:12
|
||||
#, python-format
|
||||
msgid "Copy Text"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid ""
|
||||
"Copy and paste this code into your website, within the <head> tag:"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_country_ids
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_create_uid
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Yerna-t"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_create_date
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_create_date
|
||||
msgid "Created on"
|
||||
msgstr "Yerna di"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Creation date (day)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
msgid "Creation date (hour)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Creation date (month)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Creation date (week)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Creation date (year)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.rating_rating_action_livechat_report
|
||||
#: model:ir.ui.menu,name:im_livechat.rating_rating_menu_livechat
|
||||
msgid "Customer Ratings"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.rating_rating_action_livechat_report
|
||||
msgid "Customer ratings on livechat session."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_button_text
|
||||
msgid "Default text displayed on the Livechat Support Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_auto_popup_timer
|
||||
msgid ""
|
||||
"Delay (in seconds) to automatically open the conversation window. Note: the "
|
||||
"selected action must be 'Auto popup' otherwise this parameter will not be "
|
||||
"taken into account."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:7
|
||||
#, python-format
|
||||
msgid "Did we correctly answer your question ?"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_mail_channel
|
||||
msgid "Discussion channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_display_name
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_display_name
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_display_name
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: selection:im_livechat.channel.rule,action:0
|
||||
msgid "Display the button"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_channel_duration
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_operator_duration
|
||||
msgid "Duration of the conversation (in seconds)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_channel_action
|
||||
msgid ""
|
||||
"Each channel has it's own URL that you can send by email to\n"
|
||||
" your customers in order to start chatting with you."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:19
|
||||
#, python-format
|
||||
msgid "Explain your note"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid ""
|
||||
"For website built with Odoo CMS, please install the website_livechat module."
|
||||
" Then go to Website Admin > Configuration > Settings and select the "
|
||||
"Website Live Chat Channel you want to add on your website."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_sequence
|
||||
msgid ""
|
||||
"Given the order to find a matching rule. If 2 rules are matching for the "
|
||||
"given url/country, the one with the lowest sequence will be chosen."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:11
|
||||
#, python-format
|
||||
msgid "Good"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Group By..."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: selection:im_livechat.channel.rule,action:0
|
||||
msgid "Hide the button"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.mail_channel_action
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_tree
|
||||
msgid "History"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_start_date_hour
|
||||
msgid "Hour of start Date of session"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:51
|
||||
#, python-format
|
||||
msgid "How may I help you?"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "How to use the Website Live Chat widget?"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:15
|
||||
#, python-format
|
||||
msgid "I don't want to rate this conversation"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_id
|
||||
msgid "ID"
|
||||
msgstr "Asulay"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_image
|
||||
msgid "Image"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Join"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "Join Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
msgid "Last 24h"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.rating_rating_view_search_livechat
|
||||
msgid "Last 7 days"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel___last_update
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule___last_update
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel___last_update
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Aleqqem aneggaru di"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_write_uid
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Aleqqem aneggaru sɣuṛ"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_write_date
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Aleqqem aneggaru di"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
msgid "Last Week"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Leave"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "Leave Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_mail_channel_partner
|
||||
msgid "Listeners of a Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.menu_livechat_root
|
||||
msgid "Live Chat"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.module.category,name:im_livechat.module_category_im_livechat
|
||||
msgid "Live Support"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat_backend.xml:9
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat_backend.xml:21
|
||||
#, python-format
|
||||
msgid "Livechat"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_im_livechat_channel
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.rating_rating_view_search_livechat
|
||||
msgid "Livechat Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_report_channel_action
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_report_operator_action
|
||||
msgid ""
|
||||
"Livechat Support Channel Statistics allows you to easily check and analyse "
|
||||
"your company livechat session performance. Extract information about the "
|
||||
"missed sessions, the audiance, the duration of a session, etc."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_im_livechat_report_channel
|
||||
#: model:ir.model,name:im_livechat.model_im_livechat_report_operator
|
||||
msgid "Livechat Support Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.im_livechat_report_channel_action
|
||||
#: model:ir.actions.act_window,name:im_livechat.im_livechat_report_operator_action
|
||||
msgid "Livechat Support Report Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_graph
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_pivot
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_graph
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_pivot
|
||||
msgid "Livechat Support Statistics"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:res.groups,name:im_livechat.im_livechat_group_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_sequence
|
||||
msgid "Matching order"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_image_medium
|
||||
msgid "Medium"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_image_medium
|
||||
msgid ""
|
||||
"Medium-sized photo of the group. It is automatically resized as a 128x128px "
|
||||
"image, with aspect ratio preserved. Use this field in form views or some "
|
||||
"kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
msgid "Missed sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_name
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: code:addons/im_livechat/models/mail_channel.py:125
|
||||
#, python-format
|
||||
msgid "No history found"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:150
|
||||
#, python-format
|
||||
msgid ""
|
||||
"None of our collaborators seems to be available, please try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_nbr_channel
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_operator_nbr_channel
|
||||
msgid "Number of conversation"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_channel_nbr_speaker
|
||||
msgid "Number of different speakers"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_channel_nbr_message
|
||||
msgid "Number of message in the conversation"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:12
|
||||
#, python-format
|
||||
msgid "OK"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_partner_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_partner_id
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
msgid "Operator"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.menu_reporting_livechat_operator
|
||||
msgid "Operator Analysis"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_user_ids
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "Operators"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid ""
|
||||
"Operators\n"
|
||||
" <br/>\n"
|
||||
" <i class=\"fa fa-comments\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid ""
|
||||
"Operators that do not show any activity In Odoo for more than 30 minutes "
|
||||
"will be considered as disconnected."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rating_percentage_satisfaction
|
||||
msgid "Percentage of happy ratings over the past 7 days"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_rating_rating
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_tree
|
||||
msgid "Rating"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:344
|
||||
#, python-format
|
||||
msgid "Rating: :rating_%d"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Rating: Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Rating: Great"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Rating: Okay"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.rating_rating_action_view_livechat_rating
|
||||
msgid "Ratings for livechat channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_regex_url
|
||||
msgid ""
|
||||
"Regular expression specifying the web pages this rule will be applied on."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.menu_reporting_livechat
|
||||
msgid "Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_ids
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_rule_view_tree
|
||||
msgid "Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_script_external
|
||||
msgid "Script (external)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Search history"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
msgid "Search report"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: code:addons/im_livechat/models/mail_channel.py:113
|
||||
#, python-format
|
||||
msgid "See 15 last visited pages"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_tree
|
||||
msgid "Session Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_form
|
||||
msgid "Session Form"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.menu_reporting_livechat_channel
|
||||
msgid "Session Statistics"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.mail_channel_action_from_livechat_channel
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_channel_ids
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.session_history
|
||||
msgid "Sessions History"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_image_small
|
||||
msgid ""
|
||||
"Small-sized photo of the group. It is automatically resized as a 64x64px "
|
||||
"image, with aspect ratio preserved. Use this field anywhere a small image is"
|
||||
" required."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_start_date
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_start_date
|
||||
msgid "Start Date of session"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_channel_start_date
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_operator_start_date
|
||||
msgid "Start date of the conversation"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_button_text
|
||||
msgid "Text of the Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_channel_id
|
||||
msgid "The channel of the rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_name
|
||||
msgid "The name of the channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_country_ids
|
||||
msgid ""
|
||||
"The rule will only be applied for these countries. Example: if you select "
|
||||
"'Belgium' and 'United States' and that you set the action to 'Hide Button', "
|
||||
"the chat button will be hidden on the specified URL from the visitors "
|
||||
"located in these 2 countries. This feature requires GeoIP installed on your "
|
||||
"server."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:res.groups,comment:im_livechat.im_livechat_group_manager
|
||||
msgid "The user will be able to delete support channels."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:res.groups,comment:im_livechat.im_livechat_group_user
|
||||
msgid "The user will be able to join support channels."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.rating_rating_action_view_livechat_rating
|
||||
msgid "There is no rating for this channel at the moment."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_image
|
||||
msgid ""
|
||||
"This field holds the image used as photo for the group, limited to "
|
||||
"1024x1024px."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_default_message
|
||||
msgid ""
|
||||
"This is an automated 'welcome' message that your visitor will see when they "
|
||||
"initiate a new conversation."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_image_small
|
||||
msgid "Thumbnail"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_time_to_answer
|
||||
msgid "Time to answer"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
msgid "Treated sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_regex_url
|
||||
msgid "URL Regex"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_web_page
|
||||
msgid ""
|
||||
"URL to a static page where you client can discuss with the operator of the "
|
||||
"channel."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_uuid
|
||||
msgid "UUID"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:res.groups,name:im_livechat.im_livechat_group_user
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/controllers/main.py:37
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:49
|
||||
#, python-format
|
||||
msgid "Visitor"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_web_page
|
||||
msgid "Web Page"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.im_livechat_channel_action
|
||||
msgid "Website Live Chat Channels"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_default_message
|
||||
msgid "Welcome Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_channel_action
|
||||
msgid ""
|
||||
"You can create channels for each website on which you want\n"
|
||||
" to integrate the website live chat widget, allowing your website\n"
|
||||
" visitors to talk in real time with your operators."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.mail_channel_action
|
||||
msgid ""
|
||||
"Your chatter history is empty. Create a channel and start chatting to fill "
|
||||
"up your history."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "e.g. Hello, how may I help you?"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "e.g. YourWebsite.com"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_ir_autovacuum
|
||||
msgid "ir.autovacuum"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "or copy this url and send it by email to your customers or suppliers:"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_rule_view_form
|
||||
msgid "seconds"
|
||||
msgstr ""
|
||||
2002
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/km.po
Normal file
2002
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/km.po
Normal file
File diff suppressed because it is too large
Load diff
2018
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/ko.po
Normal file
2018
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/ko.po
Normal file
File diff suppressed because it is too large
Load diff
1161
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/lb.po
Normal file
1161
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/lb.po
Normal file
File diff suppressed because it is too large
Load diff
1982
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/lo.po
Normal file
1982
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/lo.po
Normal file
File diff suppressed because it is too large
Load diff
2019
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/lt.po
Normal file
2019
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/lt.po
Normal file
File diff suppressed because it is too large
Load diff
1993
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/lv.po
Normal file
1993
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/lv.po
Normal file
File diff suppressed because it is too large
Load diff
923
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/mk.po
Normal file
923
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/mk.po
Normal file
|
|
@ -0,0 +1,923 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * im_livechat
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 11.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-11-30 13:12+0000\n"
|
||||
"PO-Revision-Date: 2017-11-30 13:12+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Macedonian (https://www.transifex.com/odoo/teams/41243/mk/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: mk\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_nbr_channel
|
||||
msgid "# of Sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_nbr_speaker
|
||||
msgid "# of speakers"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rating_percentage_satisfaction
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "% Happy"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_action
|
||||
msgid ""
|
||||
"* 'Display the button' displays the chat button on the pages.\n"
|
||||
"* 'Auto popup' displays the button and automatically open the conversation pane.\n"
|
||||
"* 'Hide the button' hides the chat button on the pages."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid ""
|
||||
"<span>Define rules for your live support channel. You can apply an action "
|
||||
"(disable the support, automatically open your support, or just make the "
|
||||
"button available) for the given URL, and per country.<br/>To identify the "
|
||||
"country, GeoIP must be installed on your server, otherwise, the countries of"
|
||||
" the rule will not be taken into account.</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_action
|
||||
msgid "Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_mail_channel_anonymous_name
|
||||
msgid "Anonymous Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_are_you_inside
|
||||
msgid "Are you inside the matrix?"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:48
|
||||
#, python-format
|
||||
msgid "Ask something ..."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_tree
|
||||
msgid "Attendees"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: selection:im_livechat.channel.rule,action:0
|
||||
msgid "Auto popup"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_auto_popup_timer
|
||||
msgid "Auto popup timer"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_duration
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_duration
|
||||
msgid "Average duration"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_nbr_message
|
||||
msgid "Average message"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_operator_time_to_answer
|
||||
msgid "Average time to give the first answer to the visitor"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:13
|
||||
#, python-format
|
||||
msgid "Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.im_livechat_canned_response_action
|
||||
#: model:ir.ui.menu,name:im_livechat.canned_responses
|
||||
msgid "Canned Responses"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_canned_response_action
|
||||
msgid ""
|
||||
"Canned responses allow you to insert prewritten responses in\n"
|
||||
" your messages by typing <i>:shortcut</i>. The shortcut is\n"
|
||||
" replaced directly in your message, so that you can still edit\n"
|
||||
" it before sending."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_livechat_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_livechat_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_mail_channel_livechat_channel_id
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_channel_name
|
||||
msgid "Channel Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_rule_view_form
|
||||
msgid "Channel Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_im_livechat_channel_rule
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "Channel Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.support_channels
|
||||
msgid "Channels"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_input_placeholder
|
||||
msgid "Chat Input Placeholder"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:50
|
||||
#, python-format
|
||||
msgid "Chat with one of our collaborators"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_canned_response_action
|
||||
msgid "Click to create a new canned response."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_channel_action
|
||||
msgid "Click to define a new website live chat channel."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_technical_name
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.livechat_config
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_channel_id
|
||||
msgid "Conversation"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/copy_clipboard.js:32
|
||||
#, python-format
|
||||
msgid "Copied !"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/copy_clipboard.xml:6
|
||||
#: code:addons/im_livechat/static/src/xml/copy_clipboard.xml:12
|
||||
#, python-format
|
||||
msgid "Copy Text"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid ""
|
||||
"Copy and paste this code into your website, within the <head> tag:"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_country_ids
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_create_uid
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Креирано од"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_create_date
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_create_date
|
||||
msgid "Created on"
|
||||
msgstr "Креирано на"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Creation date (day)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
msgid "Creation date (hour)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Creation date (month)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Creation date (week)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Creation date (year)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.rating_rating_action_livechat_report
|
||||
#: model:ir.ui.menu,name:im_livechat.rating_rating_menu_livechat
|
||||
msgid "Customer Ratings"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.rating_rating_action_livechat_report
|
||||
msgid "Customer ratings on livechat session."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_button_text
|
||||
msgid "Default text displayed on the Livechat Support Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_auto_popup_timer
|
||||
msgid ""
|
||||
"Delay (in seconds) to automatically open the conversation window. Note: the "
|
||||
"selected action must be 'Auto popup' otherwise this parameter will not be "
|
||||
"taken into account."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:7
|
||||
#, python-format
|
||||
msgid "Did we correctly answer your question ?"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_mail_channel
|
||||
msgid "Discussion channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_display_name
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_display_name
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_display_name
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Прикажи име"
|
||||
|
||||
#. module: im_livechat
|
||||
#: selection:im_livechat.channel.rule,action:0
|
||||
msgid "Display the button"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_channel_duration
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_operator_duration
|
||||
msgid "Duration of the conversation (in seconds)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_channel_action
|
||||
msgid ""
|
||||
"Each channel has it's own URL that you can send by email to\n"
|
||||
" your customers in order to start chatting with you."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:19
|
||||
#, python-format
|
||||
msgid "Explain your note"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid ""
|
||||
"For website built with Odoo CMS, please install the website_livechat module."
|
||||
" Then go to Website Admin > Configuration > Settings and select the "
|
||||
"Website Live Chat Channel you want to add on your website."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_sequence
|
||||
msgid ""
|
||||
"Given the order to find a matching rule. If 2 rules are matching for the "
|
||||
"given url/country, the one with the lowest sequence will be chosen."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:11
|
||||
#, python-format
|
||||
msgid "Good"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Group By..."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: selection:im_livechat.channel.rule,action:0
|
||||
msgid "Hide the button"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.mail_channel_action
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_tree
|
||||
msgid "History"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_start_date_hour
|
||||
msgid "Hour of start Date of session"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:51
|
||||
#, python-format
|
||||
msgid "How may I help you?"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "How to use the Website Live Chat widget?"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:15
|
||||
#, python-format
|
||||
msgid "I don't want to rate this conversation"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_image
|
||||
msgid "Image"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Join"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "Join Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
msgid "Last 24h"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.rating_rating_view_search_livechat
|
||||
msgid "Last 7 days"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel___last_update
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule___last_update
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel___last_update
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Последна промена на"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_write_uid
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Последно ажурирање од"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_write_date
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Последно ажурирање на"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
msgid "Last Week"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Leave"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "Leave Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_mail_channel_partner
|
||||
msgid "Listeners of a Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.menu_livechat_root
|
||||
msgid "Live Chat"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.module.category,name:im_livechat.module_category_im_livechat
|
||||
msgid "Live Support"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat_backend.xml:9
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat_backend.xml:21
|
||||
#, python-format
|
||||
msgid "Livechat"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_im_livechat_channel
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.rating_rating_view_search_livechat
|
||||
msgid "Livechat Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_report_channel_action
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_report_operator_action
|
||||
msgid ""
|
||||
"Livechat Support Channel Statistics allows you to easily check and analyse "
|
||||
"your company livechat session performance. Extract information about the "
|
||||
"missed sessions, the audiance, the duration of a session, etc."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_im_livechat_report_channel
|
||||
#: model:ir.model,name:im_livechat.model_im_livechat_report_operator
|
||||
msgid "Livechat Support Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.im_livechat_report_channel_action
|
||||
#: model:ir.actions.act_window,name:im_livechat.im_livechat_report_operator_action
|
||||
msgid "Livechat Support Report Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_graph
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_pivot
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_graph
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_pivot
|
||||
msgid "Livechat Support Statistics"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:res.groups,name:im_livechat.im_livechat_group_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_sequence
|
||||
msgid "Matching order"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_image_medium
|
||||
msgid "Medium"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_image_medium
|
||||
msgid ""
|
||||
"Medium-sized photo of the group. It is automatically resized as a 128x128px "
|
||||
"image, with aspect ratio preserved. Use this field in form views or some "
|
||||
"kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
msgid "Missed sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_name
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: code:addons/im_livechat/models/mail_channel.py:125
|
||||
#, python-format
|
||||
msgid "No history found"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:150
|
||||
#, python-format
|
||||
msgid ""
|
||||
"None of our collaborators seems to be available, please try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_nbr_channel
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_operator_nbr_channel
|
||||
msgid "Number of conversation"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_channel_nbr_speaker
|
||||
msgid "Number of different speakers"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_channel_nbr_message
|
||||
msgid "Number of message in the conversation"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:12
|
||||
#, python-format
|
||||
msgid "OK"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_partner_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_partner_id
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
msgid "Operator"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.menu_reporting_livechat_operator
|
||||
msgid "Operator Analysis"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_user_ids
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "Operators"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid ""
|
||||
"Operators\n"
|
||||
" <br/>\n"
|
||||
" <i class=\"fa fa-comments\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid ""
|
||||
"Operators that do not show any activity In Odoo for more than 30 minutes "
|
||||
"will be considered as disconnected."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rating_percentage_satisfaction
|
||||
msgid "Percentage of happy ratings over the past 7 days"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_rating_rating
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_tree
|
||||
msgid "Rating"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:344
|
||||
#, python-format
|
||||
msgid "Rating: :rating_%d"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Rating: Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Rating: Great"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Rating: Okay"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.rating_rating_action_view_livechat_rating
|
||||
msgid "Ratings for livechat channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_regex_url
|
||||
msgid ""
|
||||
"Regular expression specifying the web pages this rule will be applied on."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.menu_reporting_livechat
|
||||
msgid "Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_ids
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_rule_view_tree
|
||||
msgid "Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_script_external
|
||||
msgid "Script (external)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Search history"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
msgid "Search report"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: code:addons/im_livechat/models/mail_channel.py:113
|
||||
#, python-format
|
||||
msgid "See 15 last visited pages"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_tree
|
||||
msgid "Session Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_form
|
||||
msgid "Session Form"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.menu_reporting_livechat_channel
|
||||
msgid "Session Statistics"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.mail_channel_action_from_livechat_channel
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_channel_ids
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.session_history
|
||||
msgid "Sessions History"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_image_small
|
||||
msgid ""
|
||||
"Small-sized photo of the group. It is automatically resized as a 64x64px "
|
||||
"image, with aspect ratio preserved. Use this field anywhere a small image is"
|
||||
" required."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_start_date
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_start_date
|
||||
msgid "Start Date of session"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_channel_start_date
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_operator_start_date
|
||||
msgid "Start date of the conversation"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_button_text
|
||||
msgid "Text of the Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_channel_id
|
||||
msgid "The channel of the rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_name
|
||||
msgid "The name of the channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_country_ids
|
||||
msgid ""
|
||||
"The rule will only be applied for these countries. Example: if you select "
|
||||
"'Belgium' and 'United States' and that you set the action to 'Hide Button', "
|
||||
"the chat button will be hidden on the specified URL from the visitors "
|
||||
"located in these 2 countries. This feature requires GeoIP installed on your "
|
||||
"server."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:res.groups,comment:im_livechat.im_livechat_group_manager
|
||||
msgid "The user will be able to delete support channels."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:res.groups,comment:im_livechat.im_livechat_group_user
|
||||
msgid "The user will be able to join support channels."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.rating_rating_action_view_livechat_rating
|
||||
msgid "There is no rating for this channel at the moment."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_image
|
||||
msgid ""
|
||||
"This field holds the image used as photo for the group, limited to "
|
||||
"1024x1024px."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_default_message
|
||||
msgid ""
|
||||
"This is an automated 'welcome' message that your visitor will see when they "
|
||||
"initiate a new conversation."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_image_small
|
||||
msgid "Thumbnail"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_time_to_answer
|
||||
msgid "Time to answer"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
msgid "Treated sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_regex_url
|
||||
msgid "URL Regex"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_web_page
|
||||
msgid ""
|
||||
"URL to a static page where you client can discuss with the operator of the "
|
||||
"channel."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_uuid
|
||||
msgid "UUID"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:res.groups,name:im_livechat.im_livechat_group_user
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/controllers/main.py:37
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:49
|
||||
#, python-format
|
||||
msgid "Visitor"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_web_page
|
||||
msgid "Web Page"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.im_livechat_channel_action
|
||||
msgid "Website Live Chat Channels"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_default_message
|
||||
msgid "Welcome Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_channel_action
|
||||
msgid ""
|
||||
"You can create channels for each website on which you want\n"
|
||||
" to integrate the website live chat widget, allowing your website\n"
|
||||
" visitors to talk in real time with your operators."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.mail_channel_action
|
||||
msgid ""
|
||||
"Your chatter history is empty. Create a channel and start chatting to fill "
|
||||
"up your history."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "e.g. Hello, how may I help you?"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "e.g. YourWebsite.com"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_ir_autovacuum
|
||||
msgid "ir.autovacuum"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "or copy this url and send it by email to your customers or suppliers:"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_rule_view_form
|
||||
msgid "seconds"
|
||||
msgstr ""
|
||||
1981
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/ml.po
Normal file
1981
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/ml.po
Normal file
File diff suppressed because it is too large
Load diff
2005
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/mn.po
Normal file
2005
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/mn.po
Normal file
File diff suppressed because it is too large
Load diff
1989
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/ms.po
Normal file
1989
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/ms.po
Normal file
File diff suppressed because it is too large
Load diff
1993
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/nb.po
Normal file
1993
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/nb.po
Normal file
File diff suppressed because it is too large
Load diff
920
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/ne.po
Normal file
920
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/ne.po
Normal file
|
|
@ -0,0 +1,920 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * im_livechat
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 11.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-11-30 13:12+0000\n"
|
||||
"PO-Revision-Date: 2017-11-30 13:12+0000\n"
|
||||
"Language-Team: Nepali (https://www.transifex.com/odoo/teams/41243/ne/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ne\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_nbr_channel
|
||||
msgid "# of Sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_nbr_speaker
|
||||
msgid "# of speakers"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rating_percentage_satisfaction
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "% Happy"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_action
|
||||
msgid ""
|
||||
"* 'Display the button' displays the chat button on the pages.\n"
|
||||
"* 'Auto popup' displays the button and automatically open the conversation pane.\n"
|
||||
"* 'Hide the button' hides the chat button on the pages."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid ""
|
||||
"<span>Define rules for your live support channel. You can apply an action "
|
||||
"(disable the support, automatically open your support, or just make the "
|
||||
"button available) for the given URL, and per country.<br/>To identify the "
|
||||
"country, GeoIP must be installed on your server, otherwise, the countries of"
|
||||
" the rule will not be taken into account.</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_action
|
||||
msgid "Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_mail_channel_anonymous_name
|
||||
msgid "Anonymous Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_are_you_inside
|
||||
msgid "Are you inside the matrix?"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:48
|
||||
#, python-format
|
||||
msgid "Ask something ..."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_tree
|
||||
msgid "Attendees"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: selection:im_livechat.channel.rule,action:0
|
||||
msgid "Auto popup"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_auto_popup_timer
|
||||
msgid "Auto popup timer"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_duration
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_duration
|
||||
msgid "Average duration"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_nbr_message
|
||||
msgid "Average message"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_operator_time_to_answer
|
||||
msgid "Average time to give the first answer to the visitor"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:13
|
||||
#, python-format
|
||||
msgid "Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.im_livechat_canned_response_action
|
||||
#: model:ir.ui.menu,name:im_livechat.canned_responses
|
||||
msgid "Canned Responses"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_canned_response_action
|
||||
msgid ""
|
||||
"Canned responses allow you to insert prewritten responses in\n"
|
||||
" your messages by typing <i>:shortcut</i>. The shortcut is\n"
|
||||
" replaced directly in your message, so that you can still edit\n"
|
||||
" it before sending."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_livechat_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_livechat_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_mail_channel_livechat_channel_id
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_channel_name
|
||||
msgid "Channel Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_rule_view_form
|
||||
msgid "Channel Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_im_livechat_channel_rule
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "Channel Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.support_channels
|
||||
msgid "Channels"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_input_placeholder
|
||||
msgid "Chat Input Placeholder"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:50
|
||||
#, python-format
|
||||
msgid "Chat with one of our collaborators"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_canned_response_action
|
||||
msgid "Click to create a new canned response."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_channel_action
|
||||
msgid "Click to define a new website live chat channel."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_technical_name
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.livechat_config
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_channel_id
|
||||
msgid "Conversation"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/copy_clipboard.js:32
|
||||
#, python-format
|
||||
msgid "Copied !"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/copy_clipboard.xml:6
|
||||
#: code:addons/im_livechat/static/src/xml/copy_clipboard.xml:12
|
||||
#, python-format
|
||||
msgid "Copy Text"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid ""
|
||||
"Copy and paste this code into your website, within the <head> tag:"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_country_ids
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_create_uid
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_create_uid
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_create_date
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_create_date
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Creation date (day)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
msgid "Creation date (hour)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Creation date (month)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Creation date (week)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Creation date (year)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.rating_rating_action_livechat_report
|
||||
#: model:ir.ui.menu,name:im_livechat.rating_rating_menu_livechat
|
||||
msgid "Customer Ratings"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.rating_rating_action_livechat_report
|
||||
msgid "Customer ratings on livechat session."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_button_text
|
||||
msgid "Default text displayed on the Livechat Support Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_auto_popup_timer
|
||||
msgid ""
|
||||
"Delay (in seconds) to automatically open the conversation window. Note: the "
|
||||
"selected action must be 'Auto popup' otherwise this parameter will not be "
|
||||
"taken into account."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:7
|
||||
#, python-format
|
||||
msgid "Did we correctly answer your question ?"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_mail_channel
|
||||
msgid "Discussion channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_display_name
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_display_name
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_display_name
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: selection:im_livechat.channel.rule,action:0
|
||||
msgid "Display the button"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_channel_duration
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_operator_duration
|
||||
msgid "Duration of the conversation (in seconds)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_channel_action
|
||||
msgid ""
|
||||
"Each channel has it's own URL that you can send by email to\n"
|
||||
" your customers in order to start chatting with you."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:19
|
||||
#, python-format
|
||||
msgid "Explain your note"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid ""
|
||||
"For website built with Odoo CMS, please install the website_livechat module."
|
||||
" Then go to Website Admin > Configuration > Settings and select the "
|
||||
"Website Live Chat Channel you want to add on your website."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_sequence
|
||||
msgid ""
|
||||
"Given the order to find a matching rule. If 2 rules are matching for the "
|
||||
"given url/country, the one with the lowest sequence will be chosen."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:11
|
||||
#, python-format
|
||||
msgid "Good"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Group By..."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: selection:im_livechat.channel.rule,action:0
|
||||
msgid "Hide the button"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.mail_channel_action
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_tree
|
||||
msgid "History"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_start_date_hour
|
||||
msgid "Hour of start Date of session"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:51
|
||||
#, python-format
|
||||
msgid "How may I help you?"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "How to use the Website Live Chat widget?"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:15
|
||||
#, python-format
|
||||
msgid "I don't want to rate this conversation"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_image
|
||||
msgid "Image"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Join"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "Join Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
msgid "Last 24h"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.rating_rating_view_search_livechat
|
||||
msgid "Last 7 days"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel___last_update
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule___last_update
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel___last_update
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_write_uid
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_write_date
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
msgid "Last Week"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Leave"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "Leave Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_mail_channel_partner
|
||||
msgid "Listeners of a Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.menu_livechat_root
|
||||
msgid "Live Chat"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.module.category,name:im_livechat.module_category_im_livechat
|
||||
msgid "Live Support"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat_backend.xml:9
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat_backend.xml:21
|
||||
#, python-format
|
||||
msgid "Livechat"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_im_livechat_channel
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.rating_rating_view_search_livechat
|
||||
msgid "Livechat Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_report_channel_action
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_report_operator_action
|
||||
msgid ""
|
||||
"Livechat Support Channel Statistics allows you to easily check and analyse "
|
||||
"your company livechat session performance. Extract information about the "
|
||||
"missed sessions, the audiance, the duration of a session, etc."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_im_livechat_report_channel
|
||||
#: model:ir.model,name:im_livechat.model_im_livechat_report_operator
|
||||
msgid "Livechat Support Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.im_livechat_report_channel_action
|
||||
#: model:ir.actions.act_window,name:im_livechat.im_livechat_report_operator_action
|
||||
msgid "Livechat Support Report Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_graph
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_pivot
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_graph
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_pivot
|
||||
msgid "Livechat Support Statistics"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:res.groups,name:im_livechat.im_livechat_group_manager
|
||||
msgid "Manager"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_sequence
|
||||
msgid "Matching order"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_image_medium
|
||||
msgid "Medium"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_image_medium
|
||||
msgid ""
|
||||
"Medium-sized photo of the group. It is automatically resized as a 128x128px "
|
||||
"image, with aspect ratio preserved. Use this field in form views or some "
|
||||
"kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
msgid "Missed sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_name
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: code:addons/im_livechat/models/mail_channel.py:125
|
||||
#, python-format
|
||||
msgid "No history found"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:150
|
||||
#, python-format
|
||||
msgid ""
|
||||
"None of our collaborators seems to be available, please try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_nbr_channel
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_operator_nbr_channel
|
||||
msgid "Number of conversation"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_channel_nbr_speaker
|
||||
msgid "Number of different speakers"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_channel_nbr_message
|
||||
msgid "Number of message in the conversation"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:12
|
||||
#, python-format
|
||||
msgid "OK"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_partner_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_partner_id
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
msgid "Operator"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.menu_reporting_livechat_operator
|
||||
msgid "Operator Analysis"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_user_ids
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "Operators"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid ""
|
||||
"Operators\n"
|
||||
" <br/>\n"
|
||||
" <i class=\"fa fa-comments\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid ""
|
||||
"Operators that do not show any activity In Odoo for more than 30 minutes "
|
||||
"will be considered as disconnected."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rating_percentage_satisfaction
|
||||
msgid "Percentage of happy ratings over the past 7 days"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_rating_rating
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_tree
|
||||
msgid "Rating"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:344
|
||||
#, python-format
|
||||
msgid "Rating: :rating_%d"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Rating: Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Rating: Great"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Rating: Okay"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.rating_rating_action_view_livechat_rating
|
||||
msgid "Ratings for livechat channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_regex_url
|
||||
msgid ""
|
||||
"Regular expression specifying the web pages this rule will be applied on."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.menu_reporting_livechat
|
||||
msgid "Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_ids
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_rule_view_tree
|
||||
msgid "Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_script_external
|
||||
msgid "Script (external)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Search history"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
msgid "Search report"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: code:addons/im_livechat/models/mail_channel.py:113
|
||||
#, python-format
|
||||
msgid "See 15 last visited pages"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_tree
|
||||
msgid "Session Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_form
|
||||
msgid "Session Form"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.menu_reporting_livechat_channel
|
||||
msgid "Session Statistics"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.mail_channel_action_from_livechat_channel
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_channel_ids
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.session_history
|
||||
msgid "Sessions History"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_image_small
|
||||
msgid ""
|
||||
"Small-sized photo of the group. It is automatically resized as a 64x64px "
|
||||
"image, with aspect ratio preserved. Use this field anywhere a small image is"
|
||||
" required."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_start_date
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_start_date
|
||||
msgid "Start Date of session"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_channel_start_date
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_operator_start_date
|
||||
msgid "Start date of the conversation"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_button_text
|
||||
msgid "Text of the Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_channel_id
|
||||
msgid "The channel of the rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_name
|
||||
msgid "The name of the channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_country_ids
|
||||
msgid ""
|
||||
"The rule will only be applied for these countries. Example: if you select "
|
||||
"'Belgium' and 'United States' and that you set the action to 'Hide Button', "
|
||||
"the chat button will be hidden on the specified URL from the visitors "
|
||||
"located in these 2 countries. This feature requires GeoIP installed on your "
|
||||
"server."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:res.groups,comment:im_livechat.im_livechat_group_manager
|
||||
msgid "The user will be able to delete support channels."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:res.groups,comment:im_livechat.im_livechat_group_user
|
||||
msgid "The user will be able to join support channels."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.rating_rating_action_view_livechat_rating
|
||||
msgid "There is no rating for this channel at the moment."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_image
|
||||
msgid ""
|
||||
"This field holds the image used as photo for the group, limited to "
|
||||
"1024x1024px."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_default_message
|
||||
msgid ""
|
||||
"This is an automated 'welcome' message that your visitor will see when they "
|
||||
"initiate a new conversation."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_image_small
|
||||
msgid "Thumbnail"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_time_to_answer
|
||||
msgid "Time to answer"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
msgid "Treated sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_regex_url
|
||||
msgid "URL Regex"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_web_page
|
||||
msgid ""
|
||||
"URL to a static page where you client can discuss with the operator of the "
|
||||
"channel."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_uuid
|
||||
msgid "UUID"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:res.groups,name:im_livechat.im_livechat_group_user
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/controllers/main.py:37
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:49
|
||||
#, python-format
|
||||
msgid "Visitor"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_web_page
|
||||
msgid "Web Page"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.im_livechat_channel_action
|
||||
msgid "Website Live Chat Channels"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_default_message
|
||||
msgid "Welcome Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_channel_action
|
||||
msgid ""
|
||||
"You can create channels for each website on which you want\n"
|
||||
" to integrate the website live chat widget, allowing your website\n"
|
||||
" visitors to talk in real time with your operators."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.mail_channel_action
|
||||
msgid ""
|
||||
"Your chatter history is empty. Create a channel and start chatting to fill "
|
||||
"up your history."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "e.g. Hello, how may I help you?"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "e.g. YourWebsite.com"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_ir_autovacuum
|
||||
msgid "ir.autovacuum"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "or copy this url and send it by email to your customers or suppliers:"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_rule_view_form
|
||||
msgid "seconds"
|
||||
msgstr ""
|
||||
2068
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/nl.po
Normal file
2068
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/nl.po
Normal file
File diff suppressed because it is too large
Load diff
1976
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/no.po
Normal file
1976
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/no.po
Normal file
File diff suppressed because it is too large
Load diff
2077
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/pl.po
Normal file
2077
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/pl.po
Normal file
File diff suppressed because it is too large
Load diff
2014
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/pt.po
Normal file
2014
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/pt.po
Normal file
File diff suppressed because it is too large
Load diff
2071
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/pt_BR.po
Normal file
2071
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/pt_BR.po
Normal file
File diff suppressed because it is too large
Load diff
2059
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/ro.po
Normal file
2059
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/ro.po
Normal file
File diff suppressed because it is too large
Load diff
2076
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/ru.po
Normal file
2076
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/ru.po
Normal file
File diff suppressed because it is too large
Load diff
2004
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/sk.po
Normal file
2004
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/sk.po
Normal file
File diff suppressed because it is too large
Load diff
2054
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/sl.po
Normal file
2054
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/sl.po
Normal file
File diff suppressed because it is too large
Load diff
1976
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/sq.po
Normal file
1976
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/sq.po
Normal file
File diff suppressed because it is too large
Load diff
2059
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/sr.po
Normal file
2059
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/sr.po
Normal file
File diff suppressed because it is too large
Load diff
926
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/sr@latin.po
Normal file
926
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/sr@latin.po
Normal file
|
|
@ -0,0 +1,926 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * im_livechat
|
||||
#
|
||||
# Translators:
|
||||
# Djordje Marjanovic <djordje_m@yahoo.com>, 2017
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
# Ljubisa Jovev <ljubisa.jovev@gmail.com>, 2017
|
||||
# Nemanja Dragovic <nemanjadragovic94@gmail.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 11.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-11-30 13:12+0000\n"
|
||||
"PO-Revision-Date: 2017-11-30 13:12+0000\n"
|
||||
"Last-Translator: Nemanja Dragovic <nemanjadragovic94@gmail.com>, 2017\n"
|
||||
"Language-Team: Serbian (Latin) (https://www.transifex.com/odoo/teams/41243/sr%40latin/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sr@latin\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_nbr_channel
|
||||
msgid "# of Sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_nbr_speaker
|
||||
msgid "# of speakers"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rating_percentage_satisfaction
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "% Happy"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_action
|
||||
msgid ""
|
||||
"* 'Display the button' displays the chat button on the pages.\n"
|
||||
"* 'Auto popup' displays the button and automatically open the conversation pane.\n"
|
||||
"* 'Hide the button' hides the chat button on the pages."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid ""
|
||||
"<span>Define rules for your live support channel. You can apply an action "
|
||||
"(disable the support, automatically open your support, or just make the "
|
||||
"button available) for the given URL, and per country.<br/>To identify the "
|
||||
"country, GeoIP must be installed on your server, otherwise, the countries of"
|
||||
" the rule will not be taken into account.</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_action
|
||||
msgid "Action"
|
||||
msgstr "Akcija"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_mail_channel_anonymous_name
|
||||
msgid "Anonymous Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_are_you_inside
|
||||
msgid "Are you inside the matrix?"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:48
|
||||
#, python-format
|
||||
msgid "Ask something ..."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_tree
|
||||
msgid "Attendees"
|
||||
msgstr "Učesnici"
|
||||
|
||||
#. module: im_livechat
|
||||
#: selection:im_livechat.channel.rule,action:0
|
||||
msgid "Auto popup"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_auto_popup_timer
|
||||
msgid "Auto popup timer"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_duration
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_duration
|
||||
msgid "Average duration"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_nbr_message
|
||||
msgid "Average message"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_operator_time_to_answer
|
||||
msgid "Average time to give the first answer to the visitor"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:13
|
||||
#, python-format
|
||||
msgid "Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.im_livechat_canned_response_action
|
||||
#: model:ir.ui.menu,name:im_livechat.canned_responses
|
||||
msgid "Canned Responses"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_canned_response_action
|
||||
msgid ""
|
||||
"Canned responses allow you to insert prewritten responses in\n"
|
||||
" your messages by typing <i>:shortcut</i>. The shortcut is\n"
|
||||
" replaced directly in your message, so that you can still edit\n"
|
||||
" it before sending."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_livechat_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_livechat_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_mail_channel_livechat_channel_id
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Channel"
|
||||
msgstr "Kanal"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_channel_name
|
||||
msgid "Channel Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_rule_view_form
|
||||
msgid "Channel Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_im_livechat_channel_rule
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "Channel Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.support_channels
|
||||
msgid "Channels"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_input_placeholder
|
||||
msgid "Chat Input Placeholder"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:50
|
||||
#, python-format
|
||||
msgid "Chat with one of our collaborators"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_canned_response_action
|
||||
msgid "Click to create a new canned response."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_channel_action
|
||||
msgid "Click to define a new website live chat channel."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_technical_name
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
msgid "Code"
|
||||
msgstr "Šifra"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.livechat_config
|
||||
msgid "Configuration"
|
||||
msgstr "Postavka"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_channel_id
|
||||
msgid "Conversation"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/copy_clipboard.js:32
|
||||
#, python-format
|
||||
msgid "Copied !"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/copy_clipboard.xml:6
|
||||
#: code:addons/im_livechat/static/src/xml/copy_clipboard.xml:12
|
||||
#, python-format
|
||||
msgid "Copy Text"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid ""
|
||||
"Copy and paste this code into your website, within the <head> tag:"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_country_ids
|
||||
msgid "Country"
|
||||
msgstr "Država"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_create_uid
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Kreirao"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_create_date
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_create_date
|
||||
msgid "Created on"
|
||||
msgstr "Datum kreiranja"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Creation date (day)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
msgid "Creation date (hour)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Creation date (month)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Creation date (week)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Creation date (year)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.rating_rating_action_livechat_report
|
||||
#: model:ir.ui.menu,name:im_livechat.rating_rating_menu_livechat
|
||||
msgid "Customer Ratings"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.rating_rating_action_livechat_report
|
||||
msgid "Customer ratings on livechat session."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_button_text
|
||||
msgid "Default text displayed on the Livechat Support Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_auto_popup_timer
|
||||
msgid ""
|
||||
"Delay (in seconds) to automatically open the conversation window. Note: the "
|
||||
"selected action must be 'Auto popup' otherwise this parameter will not be "
|
||||
"taken into account."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:7
|
||||
#, python-format
|
||||
msgid "Did we correctly answer your question ?"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_mail_channel
|
||||
msgid "Discussion channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_display_name
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_display_name
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_display_name
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Naziv za prikaz"
|
||||
|
||||
#. module: im_livechat
|
||||
#: selection:im_livechat.channel.rule,action:0
|
||||
msgid "Display the button"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_channel_duration
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_operator_duration
|
||||
msgid "Duration of the conversation (in seconds)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_channel_action
|
||||
msgid ""
|
||||
"Each channel has it's own URL that you can send by email to\n"
|
||||
" your customers in order to start chatting with you."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:19
|
||||
#, python-format
|
||||
msgid "Explain your note"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid ""
|
||||
"For website built with Odoo CMS, please install the website_livechat module."
|
||||
" Then go to Website Admin > Configuration > Settings and select the "
|
||||
"Website Live Chat Channel you want to add on your website."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_sequence
|
||||
msgid ""
|
||||
"Given the order to find a matching rule. If 2 rules are matching for the "
|
||||
"given url/country, the one with the lowest sequence will be chosen."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:11
|
||||
#, python-format
|
||||
msgid "Good"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Group By..."
|
||||
msgstr "Grupiši po..."
|
||||
|
||||
#. module: im_livechat
|
||||
#: selection:im_livechat.channel.rule,action:0
|
||||
msgid "Hide the button"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.mail_channel_action
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_tree
|
||||
msgid "History"
|
||||
msgstr "Istorija"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_start_date_hour
|
||||
msgid "Hour of start Date of session"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:51
|
||||
#, python-format
|
||||
msgid "How may I help you?"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "How to use the Website Live Chat widget?"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:15
|
||||
#, python-format
|
||||
msgid "I don't want to rate this conversation"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_image
|
||||
msgid "Image"
|
||||
msgstr "Slika"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Join"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "Join Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
msgid "Last 24h"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.rating_rating_view_search_livechat
|
||||
msgid "Last 7 days"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel___last_update
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule___last_update
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel___last_update
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Zadnja promena"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_write_uid
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Promenio"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_write_date
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Vreme promene"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
msgid "Last Week"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Leave"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "Leave Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_mail_channel_partner
|
||||
msgid "Listeners of a Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.menu_livechat_root
|
||||
msgid "Live Chat"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.module.category,name:im_livechat.module_category_im_livechat
|
||||
msgid "Live Support"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat_backend.xml:9
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat_backend.xml:21
|
||||
#, python-format
|
||||
msgid "Livechat"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_im_livechat_channel
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.rating_rating_view_search_livechat
|
||||
msgid "Livechat Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_report_channel_action
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_report_operator_action
|
||||
msgid ""
|
||||
"Livechat Support Channel Statistics allows you to easily check and analyse "
|
||||
"your company livechat session performance. Extract information about the "
|
||||
"missed sessions, the audiance, the duration of a session, etc."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_im_livechat_report_channel
|
||||
#: model:ir.model,name:im_livechat.model_im_livechat_report_operator
|
||||
msgid "Livechat Support Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.im_livechat_report_channel_action
|
||||
#: model:ir.actions.act_window,name:im_livechat.im_livechat_report_operator_action
|
||||
msgid "Livechat Support Report Channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_graph
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_pivot
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_graph
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_pivot
|
||||
msgid "Livechat Support Statistics"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:res.groups,name:im_livechat.im_livechat_group_manager
|
||||
msgid "Manager"
|
||||
msgstr "Nadzor"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_sequence
|
||||
msgid "Matching order"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_image_medium
|
||||
msgid "Medium"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_image_medium
|
||||
msgid ""
|
||||
"Medium-sized photo of the group. It is automatically resized as a 128x128px "
|
||||
"image, with aspect ratio preserved. Use this field in form views or some "
|
||||
"kanban views."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
msgid "Missed sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_name
|
||||
msgid "Name"
|
||||
msgstr "Naziv"
|
||||
|
||||
#. module: im_livechat
|
||||
#: code:addons/im_livechat/models/mail_channel.py:125
|
||||
#, python-format
|
||||
msgid "No history found"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:150
|
||||
#, python-format
|
||||
msgid ""
|
||||
"None of our collaborators seems to be available, please try again later."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_nbr_channel
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_operator_nbr_channel
|
||||
msgid "Number of conversation"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_channel_nbr_speaker
|
||||
msgid "Number of different speakers"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_channel_nbr_message
|
||||
msgid "Number of message in the conversation"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/xml/im_livechat.xml:12
|
||||
#, python-format
|
||||
msgid "OK"
|
||||
msgstr "OK"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_partner_id
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_partner_id
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
msgid "Operator"
|
||||
msgstr "Operator"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.menu_reporting_livechat_operator
|
||||
msgid "Operator Analysis"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_user_ids
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "Operators"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid ""
|
||||
"Operators\n"
|
||||
" <br/>\n"
|
||||
" <i class=\"fa fa-comments\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid ""
|
||||
"Operators that do not show any activity In Odoo for more than 30 minutes "
|
||||
"will be considered as disconnected."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "Options"
|
||||
msgstr "Opcije"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rating_percentage_satisfaction
|
||||
msgid "Percentage of happy ratings over the past 7 days"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_rating_rating
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_tree
|
||||
msgid "Rating"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:344
|
||||
#, python-format
|
||||
msgid "Rating: :rating_%d"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Rating: Bad"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Rating: Great"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Rating: Okay"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.rating_rating_action_view_livechat_rating
|
||||
msgid "Ratings for livechat channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_regex_url
|
||||
msgid ""
|
||||
"Regular expression specifying the web pages this rule will be applied on."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.menu_reporting_livechat
|
||||
msgid "Report"
|
||||
msgstr "Izveštaj"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_ids
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_rule_view_tree
|
||||
msgid "Rules"
|
||||
msgstr "Pravila"
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_script_external
|
||||
msgid "Script (external)"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_search
|
||||
msgid "Search history"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_operator_view_search
|
||||
msgid "Search report"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: code:addons/im_livechat/models/mail_channel.py:113
|
||||
#, python-format
|
||||
msgid "See 15 last visited pages"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_tree
|
||||
msgid "Session Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.mail_channel_view_form
|
||||
msgid "Session Form"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.menu_reporting_livechat_channel
|
||||
msgid "Session Statistics"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.mail_channel_action_from_livechat_channel
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_channel_ids
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_kanban
|
||||
msgid "Sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.ui.menu,name:im_livechat.session_history
|
||||
msgid "Sessions History"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_image_small
|
||||
msgid ""
|
||||
"Small-sized photo of the group. It is automatically resized as a 64x64px "
|
||||
"image, with aspect ratio preserved. Use this field anywhere a small image is"
|
||||
" required."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_start_date
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_start_date
|
||||
msgid "Start Date of session"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_channel_start_date
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_report_operator_start_date
|
||||
msgid "Start date of the conversation"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_button_text
|
||||
msgid "Text of the Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_channel_id
|
||||
msgid "The channel of the rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_name
|
||||
msgid "The name of the channel"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_rule_country_ids
|
||||
msgid ""
|
||||
"The rule will only be applied for these countries. Example: if you select "
|
||||
"'Belgium' and 'United States' and that you set the action to 'Hide Button', "
|
||||
"the chat button will be hidden on the specified URL from the visitors "
|
||||
"located in these 2 countries. This feature requires GeoIP installed on your "
|
||||
"server."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:res.groups,comment:im_livechat.im_livechat_group_manager
|
||||
msgid "The user will be able to delete support channels."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:res.groups,comment:im_livechat.im_livechat_group_user
|
||||
msgid "The user will be able to join support channels."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.rating_rating_action_view_livechat_rating
|
||||
msgid "There is no rating for this channel at the moment."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_image
|
||||
msgid ""
|
||||
"This field holds the image used as photo for the group, limited to "
|
||||
"1024x1024px."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_default_message
|
||||
msgid ""
|
||||
"This is an automated 'welcome' message that your visitor will see when they "
|
||||
"initiate a new conversation."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_image_small
|
||||
msgid "Thumbnail"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_operator_time_to_answer
|
||||
msgid "Time to answer"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_report_channel_view_search
|
||||
msgid "Treated sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_rule_regex_url
|
||||
msgid "URL Regex"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,help:im_livechat.field_im_livechat_channel_web_page
|
||||
msgid ""
|
||||
"URL to a static page where you client can discuss with the operator of the "
|
||||
"channel."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_report_channel_uuid
|
||||
msgid "UUID"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:res.groups,name:im_livechat.im_livechat_group_user
|
||||
msgid "User"
|
||||
msgstr "Korisnik"
|
||||
|
||||
#. module: im_livechat
|
||||
#. openerp-web
|
||||
#: code:addons/im_livechat/controllers/main.py:37
|
||||
#: code:addons/im_livechat/static/src/js/im_livechat.js:49
|
||||
#, python-format
|
||||
msgid "Visitor"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_web_page
|
||||
msgid "Web Page"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.actions.act_window,name:im_livechat.im_livechat_channel_action
|
||||
msgid "Website Live Chat Channels"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model.fields,field_description:im_livechat.field_im_livechat_channel_default_message
|
||||
msgid "Welcome Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.im_livechat_channel_action
|
||||
msgid ""
|
||||
"You can create channels for each website on which you want\n"
|
||||
" to integrate the website live chat widget, allowing your website\n"
|
||||
" visitors to talk in real time with your operators."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.actions.act_window,help:im_livechat.mail_channel_action
|
||||
msgid ""
|
||||
"Your chatter history is empty. Create a channel and start chatting to fill "
|
||||
"up your history."
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "e.g. Hello, how may I help you?"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "e.g. YourWebsite.com"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model:ir.model,name:im_livechat.model_ir_autovacuum
|
||||
msgid "ir.autovacuum"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_view_form
|
||||
msgid "or copy this url and send it by email to your customers or suppliers:"
|
||||
msgstr ""
|
||||
|
||||
#. module: im_livechat
|
||||
#: model_terms:ir.ui.view,arch_db:im_livechat.im_livechat_channel_rule_view_form
|
||||
msgid "seconds"
|
||||
msgstr ""
|
||||
2066
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/sv.po
Normal file
2066
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/sv.po
Normal file
File diff suppressed because it is too large
Load diff
1976
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/sw.po
Normal file
1976
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/sw.po
Normal file
File diff suppressed because it is too large
Load diff
1976
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/ta.po
Normal file
1976
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/ta.po
Normal file
File diff suppressed because it is too large
Load diff
2039
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/th.po
Normal file
2039
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/th.po
Normal file
File diff suppressed because it is too large
Load diff
2066
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/tr.po
Normal file
2066
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/tr.po
Normal file
File diff suppressed because it is too large
Load diff
2059
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/uk.po
Normal file
2059
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/uk.po
Normal file
File diff suppressed because it is too large
Load diff
2056
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/vi.po
Normal file
2056
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/vi.po
Normal file
File diff suppressed because it is too large
Load diff
2010
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/zh_CN.po
Normal file
2010
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/zh_CN.po
Normal file
File diff suppressed because it is too large
Load diff
2005
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/zh_TW.po
Normal file
2005
odoo-bringout-oca-ocb-im_livechat/im_livechat/i18n/zh_TW.po
Normal file
File diff suppressed because it is too large
Load diff
|
|
@ -0,0 +1,15 @@
|
|||
# -*- coding: utf-8 -*
|
||||
|
||||
from . import chatbot_message
|
||||
from . import chatbot_script
|
||||
from . import chatbot_script_answer
|
||||
from . import chatbot_script_step
|
||||
from . import res_users
|
||||
from . import res_partner
|
||||
from . import im_livechat_channel
|
||||
from . import mail_channel
|
||||
from . import mail_channel_member
|
||||
from . import mail_message
|
||||
from . import res_users_settings
|
||||
from . import rating_rating
|
||||
from . import digest
|
||||
|
|
@ -0,0 +1,28 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import models, fields
|
||||
|
||||
|
||||
class ChatbotMailMessage(models.Model):
|
||||
""" Chatbot Mail Message
|
||||
We create a new model to store the related step to a mail.message and the user's answer.
|
||||
We do this in a new model to avoid bloating the 'mail.message' model.
|
||||
"""
|
||||
|
||||
_name = 'chatbot.message'
|
||||
_description = 'Chatbot Message'
|
||||
_order = 'create_date desc, id desc'
|
||||
_rec_name = 'mail_channel_id'
|
||||
|
||||
mail_message_id = fields.Many2one('mail.message', string='Related Mail Message', required=True, ondelete="cascade")
|
||||
mail_channel_id = fields.Many2one('mail.channel', string='Discussion Channel', required=True, ondelete="cascade")
|
||||
script_step_id = fields.Many2one(
|
||||
'chatbot.script.step', string='Chatbot Step', required=True, ondelete='cascade')
|
||||
user_script_answer_id = fields.Many2one('chatbot.script.answer', string="User's answer", ondelete="set null")
|
||||
user_raw_answer = fields.Html(string="User's raw answer")
|
||||
|
||||
_sql_constraints = [
|
||||
('_unique_mail_message_id', 'unique (mail_message_id)',
|
||||
"A mail.message can only be linked to a single chatbot message"),
|
||||
]
|
||||
|
|
@ -0,0 +1,216 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import _, api, models, fields
|
||||
from odoo.tools import email_normalize, html2plaintext, is_html_empty, plaintext2html
|
||||
|
||||
|
||||
class ChatbotScript(models.Model):
|
||||
_name = 'chatbot.script'
|
||||
_description = 'Chatbot Script'
|
||||
_inherit = ['image.mixin', 'utm.source.mixin']
|
||||
_rec_name = 'title'
|
||||
_order = 'title, id'
|
||||
|
||||
# we keep a separate field for UI since name is manipulated by 'utm.source.mixin'
|
||||
title = fields.Char('Title', required=True, translate=True, default="Chatbot")
|
||||
active = fields.Boolean(default=True)
|
||||
image_1920 = fields.Image(related='operator_partner_id.image_1920', readonly=False)
|
||||
|
||||
script_step_ids = fields.One2many('chatbot.script.step', 'chatbot_script_id',
|
||||
copy=True, string='Script Steps')
|
||||
operator_partner_id = fields.Many2one('res.partner', string='Bot Operator',
|
||||
ondelete='restrict', required=True, copy=False)
|
||||
livechat_channel_count = fields.Integer(string='Livechat Channel Count', compute='_compute_livechat_channel_count')
|
||||
first_step_warning = fields.Selection([
|
||||
('first_step_operator', 'First Step Operator'),
|
||||
('first_step_invalid', 'First Step Invalid'),
|
||||
], compute="_compute_first_step_warning")
|
||||
|
||||
def _compute_livechat_channel_count(self):
|
||||
channels_data = self.env['im_livechat.channel.rule'].read_group(
|
||||
[('chatbot_script_id', 'in', self.ids)], ['channel_id:count_distinct'], ['chatbot_script_id'])
|
||||
mapped_channels = {channel['chatbot_script_id'][0]: channel['channel_id'] for channel in channels_data}
|
||||
for script in self:
|
||||
script.livechat_channel_count = mapped_channels.get(script.id, 0)
|
||||
|
||||
@api.depends('script_step_ids.step_type')
|
||||
def _compute_first_step_warning(self):
|
||||
for script in self:
|
||||
allowed_first_step_types = [
|
||||
'question_selection',
|
||||
'question_email',
|
||||
'question_phone',
|
||||
'free_input_single',
|
||||
'free_input_multi',
|
||||
]
|
||||
welcome_steps = script.script_step_ids and script._get_welcome_steps()
|
||||
if welcome_steps and welcome_steps[-1].step_type == 'forward_operator':
|
||||
script.first_step_warning = 'first_step_operator'
|
||||
elif welcome_steps and welcome_steps[-1].step_type not in allowed_first_step_types:
|
||||
script.first_step_warning = 'first_step_invalid'
|
||||
else:
|
||||
script.first_step_warning = False
|
||||
|
||||
@api.returns('self', lambda value: value.id)
|
||||
def copy(self, default=None):
|
||||
""" Correctly copy the 'triggering_answer_ids' field from the original script_step_ids to the clone.
|
||||
This needs to be done in post-processing to make sure we get references to the newly created
|
||||
answers from the copy instead of references to the answers of the original.
|
||||
|
||||
This implementation assumes that the order of created steps and answers will be kept between
|
||||
the original and the clone, using 'zip()' to match the records between the two. """
|
||||
|
||||
default = default or {}
|
||||
default['title'] = self.title + _(' (copy)')
|
||||
|
||||
clone_chatbot_script = super().copy(default=default)
|
||||
if 'question_ids' in default:
|
||||
return clone_chatbot_script
|
||||
|
||||
original_steps = self.script_step_ids.sorted()
|
||||
clone_steps = clone_chatbot_script.script_step_ids.sorted()
|
||||
|
||||
answers_map = {}
|
||||
for clone_step, original_step in zip(clone_steps, original_steps):
|
||||
for clone_answer, original_answer in zip(clone_step.answer_ids.sorted(), original_step.answer_ids.sorted()):
|
||||
answers_map[original_answer] = clone_answer
|
||||
|
||||
for clone_step, original_step in zip(clone_steps, original_steps):
|
||||
clone_step.write({
|
||||
'triggering_answer_ids': [
|
||||
(4, answer.id)
|
||||
for answer in [
|
||||
answers_map[original_answer]
|
||||
for original_answer
|
||||
in original_step.triggering_answer_ids
|
||||
]
|
||||
]
|
||||
})
|
||||
|
||||
return clone_chatbot_script
|
||||
|
||||
@api.model_create_multi
|
||||
def create(self, vals_list):
|
||||
operator_partners_values = [{
|
||||
'name': vals['title'],
|
||||
'image_1920': vals.get('image_1920', False),
|
||||
'active': False,
|
||||
} for vals in vals_list if 'operator_partner_id' not in vals and 'title' in vals]
|
||||
|
||||
operator_partners = self.env['res.partner'].create(operator_partners_values)
|
||||
|
||||
for vals, partner in zip(
|
||||
[vals for vals in vals_list if 'operator_partner_id' not in vals and 'title' in vals],
|
||||
operator_partners
|
||||
):
|
||||
vals['operator_partner_id'] = partner.id
|
||||
|
||||
return super().create(vals_list)
|
||||
|
||||
def write(self, vals):
|
||||
res = super().write(vals)
|
||||
|
||||
if 'title' in vals:
|
||||
self.operator_partner_id.write({'name': vals['title']})
|
||||
|
||||
return res
|
||||
|
||||
def _get_welcome_steps(self):
|
||||
""" Returns a sub-set of script_step_ids that only contains the "welcoming steps".
|
||||
We consider those as all the steps the bot will say before expecting a first answer from
|
||||
the end user.
|
||||
|
||||
Example 1:
|
||||
- step 1 (question_selection): What do you want to do? - Create a Lead, -Create a Ticket
|
||||
- step 2 (text): Thank you for visiting our website!
|
||||
-> The welcoming steps will only contain step 1, since directly after that we expect an
|
||||
input from the user
|
||||
|
||||
Example 2:
|
||||
- step 1 (text): Hello! I'm a bot!
|
||||
- step 2 (text): I am here to help lost users.
|
||||
- step 3 (question_selection): What do you want to do? - Create a Lead, -Create a Ticket
|
||||
- step 4 (text): Thank you for visiting our website!
|
||||
-> The welcoming steps will contain steps 1, 2 and 3.
|
||||
Meaning the bot will have a small monologue with himself before expecting an input from the
|
||||
end user.
|
||||
|
||||
This is important because we need to display those welcoming steps in a special fashion on
|
||||
the frontend, since those are not inserted into the mail.channel as actual mail.messages,
|
||||
to avoid bloating the channels with bot messages if the end-user never interacts with it. """
|
||||
self.ensure_one()
|
||||
|
||||
welcome_steps = self.env['chatbot.script.step']
|
||||
for step in self.script_step_ids:
|
||||
welcome_steps += step
|
||||
if step.step_type != 'text':
|
||||
break
|
||||
|
||||
return welcome_steps
|
||||
|
||||
def _post_welcome_steps(self, mail_channel):
|
||||
""" Welcome messages are only posted after the visitor's first interaction with the chatbot.
|
||||
See 'chatbot.script#_get_welcome_steps()' for more details.
|
||||
|
||||
Side note: it is important to set the 'chatbot_current_step_id' on each iteration so that
|
||||
it's correctly set when going into 'mail_channel#_message_post_after_hook()'. """
|
||||
|
||||
self.ensure_one()
|
||||
posted_messages = self.env['mail.message']
|
||||
|
||||
for welcome_step in self._get_welcome_steps():
|
||||
mail_channel.chatbot_current_step_id = welcome_step.id
|
||||
|
||||
if not is_html_empty(welcome_step.message):
|
||||
posted_messages += mail_channel.with_context(mail_create_nosubscribe=True).message_post(
|
||||
author_id=self.operator_partner_id.id,
|
||||
body=plaintext2html(welcome_step.message),
|
||||
message_type='comment',
|
||||
subtype_xmlid='mail.mt_comment',
|
||||
)
|
||||
|
||||
return posted_messages
|
||||
|
||||
def action_view_livechat_channels(self):
|
||||
self.ensure_one()
|
||||
action = self.env['ir.actions.act_window']._for_xml_id('im_livechat.im_livechat_channel_action')
|
||||
action['domain'] = [('rule_ids.chatbot_script_id', 'in', self.ids)]
|
||||
return action
|
||||
|
||||
# --------------------------
|
||||
# Tooling / Misc
|
||||
# --------------------------
|
||||
|
||||
def _format_for_frontend(self):
|
||||
""" Small utility method that formats the script into a dict usable by the frontend code. """
|
||||
self.ensure_one()
|
||||
|
||||
return {
|
||||
'chatbot_script_id': self.id,
|
||||
'chatbot_name': self.title,
|
||||
'chatbot_operator_partner_id': self.operator_partner_id.id,
|
||||
'chatbot_welcome_steps': [
|
||||
step._format_for_frontend()
|
||||
for step in self._get_welcome_steps()
|
||||
]
|
||||
}
|
||||
|
||||
def _validate_email(self, email_address, mail_channel):
|
||||
email_address = html2plaintext(email_address)
|
||||
email_normalized = email_normalize(email_address)
|
||||
|
||||
posted_message = False
|
||||
error_message = False
|
||||
if not email_normalized:
|
||||
error_message = _(
|
||||
"'%(input_email)s' does not look like a valid email. Can you please try again?",
|
||||
input_email=email_address
|
||||
)
|
||||
posted_message = mail_channel._chatbot_post_message(self, plaintext2html(error_message))
|
||||
|
||||
return {
|
||||
'success': bool(email_normalized),
|
||||
'posted_message': posted_message,
|
||||
'error_message': error_message,
|
||||
}
|
||||
|
|
@ -0,0 +1,65 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import api, models, fields
|
||||
from odoo.osv import expression
|
||||
|
||||
import textwrap
|
||||
|
||||
|
||||
class ChatbotScriptAnswer(models.Model):
|
||||
_name = 'chatbot.script.answer'
|
||||
_description = 'Chatbot Script Answer'
|
||||
_order = 'script_step_id, sequence, id'
|
||||
|
||||
name = fields.Char(string='Answer', required=True, translate=True)
|
||||
sequence = fields.Integer(string='Sequence', default=1)
|
||||
redirect_link = fields.Char('Redirect Link',
|
||||
help="The visitor will be redirected to this link upon clicking the option "
|
||||
"(note that the script will end if the link is external to the livechat website).")
|
||||
script_step_id = fields.Many2one(
|
||||
'chatbot.script.step', string='Script Step', required=True, ondelete='cascade')
|
||||
chatbot_script_id = fields.Many2one(related='script_step_id.chatbot_script_id')
|
||||
|
||||
def name_get(self):
|
||||
if self._context.get('chatbot_script_answer_display_short_name'):
|
||||
return super().name_get()
|
||||
|
||||
result = []
|
||||
for answer in self:
|
||||
answer_message = answer.script_step_id.message.replace('\n', ' ')
|
||||
shortened_message = textwrap.shorten(answer_message, width=26, placeholder=" [...]")
|
||||
|
||||
result.append((
|
||||
answer.id,
|
||||
"%s: %s" % (shortened_message, answer.name)
|
||||
))
|
||||
|
||||
return result
|
||||
|
||||
@api.model
|
||||
def _name_search(self, name='', args=None, operator='ilike', limit=100, name_get_uid=None):
|
||||
"""
|
||||
Search the records whose name or step message are matching the ``name`` pattern.
|
||||
The chatbot_script_id is also passed to the context through the custom widget
|
||||
('chatbot_triggering_answers_widget') This allows to only see the question_answer
|
||||
from the same chatbot you're configuring.
|
||||
"""
|
||||
force_domain_chatbot_script_id = self.env.context.get('force_domain_chatbot_script_id')
|
||||
|
||||
if name and operator == 'ilike':
|
||||
if not args:
|
||||
args = []
|
||||
|
||||
# search on both name OR step's message (combined with passed args)
|
||||
name_domain = [('name', operator, name)]
|
||||
step_domain = [('script_step_id.message', operator, name)]
|
||||
domain = expression.AND([args, expression.OR([name_domain, step_domain])])
|
||||
|
||||
else:
|
||||
domain = args or []
|
||||
|
||||
if force_domain_chatbot_script_id:
|
||||
domain = expression.AND([domain, [('chatbot_script_id', '=', force_domain_chatbot_script_id)]])
|
||||
|
||||
return self._search(domain, limit=limit, access_rights_uid=name_get_uid)
|
||||
|
|
@ -0,0 +1,383 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import _, api, models, fields
|
||||
from odoo.exceptions import ValidationError
|
||||
from odoo.fields import Command
|
||||
from odoo.osv import expression
|
||||
from odoo.tools import html2plaintext, is_html_empty, email_normalize, plaintext2html
|
||||
|
||||
from collections import defaultdict
|
||||
from markupsafe import Markup
|
||||
|
||||
|
||||
class ChatbotScriptStep(models.Model):
|
||||
_name = 'chatbot.script.step'
|
||||
_description = 'Chatbot Script Step'
|
||||
_order = 'sequence, id'
|
||||
_rec_name = 'message'
|
||||
|
||||
message = fields.Text(string='Message', translate=True)
|
||||
sequence = fields.Integer(string='Sequence')
|
||||
chatbot_script_id = fields.Many2one(
|
||||
'chatbot.script', string='Chatbot', required=True, ondelete='cascade')
|
||||
step_type = fields.Selection([
|
||||
('text', 'Text'),
|
||||
('question_selection', 'Question'),
|
||||
('question_email', 'Email'),
|
||||
('question_phone', 'Phone'),
|
||||
('forward_operator', 'Forward to Operator'),
|
||||
('free_input_single', 'Free Input'),
|
||||
('free_input_multi', 'Free Input (Multi-Line)'),
|
||||
], default='text', required=True)
|
||||
# answers
|
||||
answer_ids = fields.One2many(
|
||||
'chatbot.script.answer', 'script_step_id',
|
||||
copy=True, string='Answers')
|
||||
triggering_answer_ids = fields.Many2many(
|
||||
'chatbot.script.answer', domain="[('script_step_id.sequence', '<', sequence)]",
|
||||
compute='_compute_triggering_answer_ids', readonly=False, store=True,
|
||||
copy=False, # copied manually, see chatbot.script#copy
|
||||
string='Only If', help='Show this step only if all of these answers have been selected.')
|
||||
# forward-operator specifics
|
||||
is_forward_operator_child = fields.Boolean(compute='_compute_is_forward_operator_child')
|
||||
|
||||
@api.depends('sequence')
|
||||
def _compute_triggering_answer_ids(self):
|
||||
for step in self.filtered('triggering_answer_ids'):
|
||||
update_command = [Command.unlink(answer.id) for answer in step.triggering_answer_ids
|
||||
if answer.script_step_id.sequence >= step.sequence]
|
||||
if update_command:
|
||||
step.triggering_answer_ids = update_command
|
||||
|
||||
@api.depends('sequence', 'triggering_answer_ids', 'chatbot_script_id.script_step_ids.triggering_answer_ids',
|
||||
'chatbot_script_id.script_step_ids.answer_ids', 'chatbot_script_id.script_step_ids.sequence')
|
||||
def _compute_is_forward_operator_child(self):
|
||||
parent_steps_by_chatbot = {}
|
||||
for chatbot in self.chatbot_script_id:
|
||||
parent_steps_by_chatbot[chatbot.id] = chatbot.script_step_ids.filtered(
|
||||
lambda step: step.step_type in ['forward_operator', 'question_selection']
|
||||
).sorted(lambda s: s.sequence, reverse=True)
|
||||
for step in self:
|
||||
parent_steps = parent_steps_by_chatbot[step.chatbot_script_id.id].filtered(
|
||||
lambda s: s.sequence < step.sequence
|
||||
)
|
||||
parent = step
|
||||
while True:
|
||||
parent = parent._get_parent_step(parent_steps)
|
||||
if not parent or parent.step_type == 'forward_operator':
|
||||
break
|
||||
step.is_forward_operator_child = parent and parent.step_type == 'forward_operator'
|
||||
|
||||
@api.model_create_multi
|
||||
def create(self, vals_list):
|
||||
""" Ensure we correctly assign sequences when creating steps.
|
||||
Indeed, sequences are very important within the script, and will break the whole flow if
|
||||
not correctly defined.
|
||||
|
||||
This override will group created steps by chatbot_id and increment the sequence accordingly.
|
||||
It will also look for an existing step for that chatbot and resume from the highest sequence.
|
||||
|
||||
This cannot be done in a default_value for the sequence field as we cannot search by
|
||||
runbot_id.
|
||||
It is also safer and more efficient to do it here (we can batch everything).
|
||||
|
||||
It is still possible to manually pass the 'sequence' in the values, which will take priority. """
|
||||
|
||||
vals_by_chatbot_id = {}
|
||||
for vals in vals_list:
|
||||
chatbot_id = vals.get('chatbot_script_id')
|
||||
if chatbot_id:
|
||||
step_values = vals_by_chatbot_id.get(chatbot_id, [])
|
||||
step_values.append(vals)
|
||||
vals_by_chatbot_id[chatbot_id] = step_values
|
||||
|
||||
max_sequence_by_chatbot = {}
|
||||
if vals_by_chatbot_id:
|
||||
read_group_results = self.env['chatbot.script.step'].read_group(
|
||||
[('chatbot_script_id', 'in', list(vals_by_chatbot_id.keys()))],
|
||||
['sequence:max'],
|
||||
['chatbot_script_id']
|
||||
)
|
||||
|
||||
max_sequence_by_chatbot = {
|
||||
read_group_result['chatbot_script_id'][0]: read_group_result['sequence']
|
||||
for read_group_result in read_group_results
|
||||
}
|
||||
|
||||
for chatbot_id, step_vals in vals_by_chatbot_id.items():
|
||||
current_sequence = 0
|
||||
if chatbot_id in max_sequence_by_chatbot:
|
||||
current_sequence = max_sequence_by_chatbot[chatbot_id] + 1
|
||||
|
||||
for vals in step_vals:
|
||||
if 'sequence' in vals:
|
||||
current_sequence = vals.get('sequence')
|
||||
else:
|
||||
vals['sequence'] = current_sequence
|
||||
current_sequence += 1
|
||||
|
||||
return super().create(vals_list)
|
||||
|
||||
# --------------------------
|
||||
# Business Methods
|
||||
# --------------------------
|
||||
|
||||
def _chatbot_prepare_customer_values(self, mail_channel, create_partner=True, update_partner=True):
|
||||
""" Common method that allows retreiving default customer values from the mail.channel
|
||||
following a chatbot.script.
|
||||
|
||||
This method will return a dict containing the 'customer' values such as:
|
||||
{
|
||||
'partner': The created partner (see 'create_partner') or the partner from the
|
||||
environment if not public
|
||||
'email': The email extracted from the mail.channel messages
|
||||
(see step_type 'question_email')
|
||||
'phone': The phone extracted from the mail.channel messages
|
||||
(see step_type 'question_phone')
|
||||
'description': A default description containing the "Please contact me on" and "Please
|
||||
call me on" with the related email and phone numbers.
|
||||
Can be used as a default description to create leads or tickets for example.
|
||||
}
|
||||
|
||||
:param record mail_channel: the mail.channel holding the visitor's conversation with the bot.
|
||||
:param bool create_partner: whether or not to create a res.partner is the current user is public.
|
||||
Defaults to True.
|
||||
:param bool update_partner: whether or not to set update the email and phone on the res.partner
|
||||
from the environment (if not a public user) if those are not set yet. Defaults to True.
|
||||
|
||||
:return dict: a dict containing the customer values."""
|
||||
|
||||
partner = False
|
||||
user_inputs = mail_channel._chatbot_find_customer_values_in_messages({
|
||||
'question_email': 'email',
|
||||
'question_phone': 'phone',
|
||||
})
|
||||
input_email = user_inputs.get('email', False)
|
||||
input_phone = user_inputs.get('phone', False)
|
||||
|
||||
if self.env.user._is_public() and create_partner:
|
||||
partner = self.env['res.partner'].create({
|
||||
'name': input_email,
|
||||
'email': input_email,
|
||||
'phone': input_phone,
|
||||
})
|
||||
elif not self.env.user._is_public():
|
||||
partner = self.env.user.partner_id
|
||||
if update_partner:
|
||||
# update email/phone value from partner if not set
|
||||
update_values = {}
|
||||
if input_email and not partner.email:
|
||||
update_values['email'] = input_email
|
||||
if input_phone and not partner.phone:
|
||||
update_values['phone'] = input_phone
|
||||
if update_values:
|
||||
partner.write(update_values)
|
||||
|
||||
description = Markup('')
|
||||
if input_email:
|
||||
description += Markup('%s<strong>%s</strong><br>') % (_('Please contact me on: '), input_email)
|
||||
if input_phone:
|
||||
description += Markup('%s<strong>%s</strong><br>') % (_('Please call me on: '), input_phone)
|
||||
if description:
|
||||
description += Markup('<br>')
|
||||
|
||||
return {
|
||||
'partner': partner,
|
||||
'email': input_email,
|
||||
'phone': input_phone,
|
||||
'description': description,
|
||||
}
|
||||
|
||||
def _fetch_next_step(self, selected_answer_ids):
|
||||
""" Fetch the next step depending on the user's selected answers.
|
||||
If a step contains multiple triggering answers from the same step the condition between
|
||||
them must be a 'OR'. If is contains multiple triggering answers from different steps the
|
||||
condition between them must be a 'AND'.
|
||||
|
||||
e.g:
|
||||
|
||||
STEP 1 : A B
|
||||
STEP 2 : C D
|
||||
STEP 3 : E
|
||||
STEP 4 ONLY IF A B C E
|
||||
|
||||
Scenario 1 (A C E):
|
||||
|
||||
A in (A B) -> OK
|
||||
C in (C) -> OK
|
||||
E in (E) -> OK
|
||||
|
||||
-> OK
|
||||
|
||||
Scenario 2 (B D E):
|
||||
|
||||
B in (A B) -> OK
|
||||
D in (C) -> NOK
|
||||
E in (E) -> OK
|
||||
|
||||
-> NOK
|
||||
"""
|
||||
self.ensure_one()
|
||||
domain = [('chatbot_script_id', '=', self.chatbot_script_id.id), ('sequence', '>', self.sequence)]
|
||||
if selected_answer_ids:
|
||||
domain = expression.AND([domain, [
|
||||
'|',
|
||||
('triggering_answer_ids', '=', False),
|
||||
('triggering_answer_ids', 'in', selected_answer_ids.ids)]])
|
||||
steps = self.env['chatbot.script.step'].search(domain)
|
||||
for step in steps:
|
||||
if not step.triggering_answer_ids:
|
||||
return step
|
||||
answers_by_step = defaultdict(list)
|
||||
for answer in step.triggering_answer_ids:
|
||||
answers_by_step[answer.script_step_id.id].append(answer)
|
||||
if all(any(answer in step_triggering_answers for answer in selected_answer_ids)
|
||||
for step_triggering_answers in answers_by_step.values()):
|
||||
return step
|
||||
return self.env['chatbot.script.step']
|
||||
|
||||
def _get_parent_step(self, all_parent_steps):
|
||||
""" Returns the first preceding step that matches either the triggering answers
|
||||
or the possible answers the user can select """
|
||||
self.ensure_one()
|
||||
|
||||
if not self.chatbot_script_id.ids:
|
||||
return self.env['chatbot.script.step']
|
||||
|
||||
for step in all_parent_steps:
|
||||
if step.sequence >= self.sequence:
|
||||
continue
|
||||
if self.triggering_answer_ids:
|
||||
if not (all(answer in self.triggering_answer_ids for answer in step.triggering_answer_ids) or
|
||||
any(answer in self.triggering_answer_ids for answer in step.answer_ids)):
|
||||
continue
|
||||
elif step.triggering_answer_ids:
|
||||
continue
|
||||
return step
|
||||
return self.env['chatbot.script.step']
|
||||
|
||||
def _is_last_step(self, mail_channel=False):
|
||||
self.ensure_one()
|
||||
mail_channel = mail_channel or self.env['mail.channel']
|
||||
|
||||
# if it's not a question and if there is no next step, then we end the script
|
||||
if self.step_type != 'question_selection' and not self._fetch_next_step(
|
||||
mail_channel.chatbot_message_ids.user_script_answer_id):
|
||||
return True
|
||||
|
||||
return False
|
||||
|
||||
def _process_answer(self, mail_channel, message_body):
|
||||
""" Method called when the user reacts to the current chatbot.script step.
|
||||
For most chatbot.script.step#step_types it simply returns the next chatbot.script.step of
|
||||
the script (see '_fetch_next_step').
|
||||
|
||||
Some extra processing is done for steps of type 'question_email' and 'question_phone' where
|
||||
we store the user raw answer (the mail message HTML body) into the chatbot.message in order
|
||||
to be able to recover it later (see '_chatbot_prepare_customer_values').
|
||||
|
||||
:param mail_channel:
|
||||
:param message_body:
|
||||
:return: script step to display next
|
||||
:rtype: 'chatbot.script.step' """
|
||||
|
||||
self.ensure_one()
|
||||
|
||||
user_text_answer = html2plaintext(message_body)
|
||||
if self.step_type == 'question_email' and not email_normalize(user_text_answer):
|
||||
# if this error is raised, display an error message but do not go to next step
|
||||
raise ValidationError(_('"%s" is not a valid email.', user_text_answer))
|
||||
|
||||
if self.step_type in ['question_email', 'question_phone']:
|
||||
chatbot_message = self.env['chatbot.message'].search([
|
||||
('mail_channel_id', '=', mail_channel.id),
|
||||
('script_step_id', '=', self.id),
|
||||
], limit=1)
|
||||
|
||||
if chatbot_message:
|
||||
chatbot_message.write({'user_raw_answer': message_body})
|
||||
self.env.flush_all()
|
||||
|
||||
return self._fetch_next_step(mail_channel.chatbot_message_ids.user_script_answer_id)
|
||||
|
||||
def _process_step(self, mail_channel):
|
||||
""" When we reach a chatbot.step in the script we need to do some processing on behalf of
|
||||
the bot. Which is for most chatbot.script.step#step_types just posting the message field.
|
||||
|
||||
Some extra processing may be required for special step types such as 'forward_operator',
|
||||
'create_lead', 'create_ticket' (in their related bridge modules).
|
||||
Those will have a dedicated processing method with specific docstrings.
|
||||
|
||||
Returns the mail.message posted by the chatbot's operator_partner_id. """
|
||||
|
||||
self.ensure_one()
|
||||
# We change the current step to the new step
|
||||
mail_channel.chatbot_current_step_id = self.id
|
||||
|
||||
if self.step_type == 'forward_operator':
|
||||
return self._process_step_forward_operator(mail_channel)
|
||||
|
||||
return mail_channel._chatbot_post_message(self.chatbot_script_id, plaintext2html(self.message))
|
||||
|
||||
def _process_step_forward_operator(self, mail_channel):
|
||||
""" Special type of step that will add a human operator to the conversation when reached,
|
||||
which stops the script and allow the visitor to discuss with a real person.
|
||||
|
||||
In case we don't find any operator (e.g: no-one is available) we don't post any messages.
|
||||
The script will continue normally, which allows to add extra steps when it's the case
|
||||
(e.g: ask for the visitor's email and create a lead). """
|
||||
|
||||
human_operator = False
|
||||
posted_message = False
|
||||
|
||||
if mail_channel.livechat_channel_id:
|
||||
human_operator = mail_channel.livechat_channel_id._get_random_operator()
|
||||
|
||||
# handle edge case where we found yourself as available operator -> don't do anything
|
||||
# it will act as if no-one is available (which is fine)
|
||||
if human_operator and human_operator != self.env.user:
|
||||
mail_channel.sudo().add_members(
|
||||
human_operator.partner_id.ids,
|
||||
open_chat_window=True,
|
||||
post_joined_message=False)
|
||||
|
||||
# rename the channel to include the operator's name
|
||||
mail_channel.sudo().name = ' '.join([
|
||||
self.env.user.display_name if not self.env.user._is_public() else mail_channel.anonymous_name,
|
||||
human_operator.livechat_username if human_operator.livechat_username else human_operator.name
|
||||
])
|
||||
|
||||
if self.message:
|
||||
# first post the message of the step (if we have one)
|
||||
posted_message = mail_channel._chatbot_post_message(self.chatbot_script_id, plaintext2html(self.message))
|
||||
|
||||
# then post a small custom 'Operator has joined' notification
|
||||
mail_channel._chatbot_post_message(
|
||||
self.chatbot_script_id,
|
||||
Markup('<div class="o_mail_notification">%s</div>') % _('%s has joined', human_operator.partner_id.name))
|
||||
|
||||
mail_channel._broadcast(human_operator.partner_id.ids)
|
||||
mail_channel.channel_pin(pinned=True)
|
||||
|
||||
return posted_message
|
||||
|
||||
# --------------------------
|
||||
# Tooling / Misc
|
||||
# --------------------------
|
||||
|
||||
def _format_for_frontend(self):
|
||||
""" Small utility method that formats the step into a dict usable by the frontend code. """
|
||||
self.ensure_one()
|
||||
|
||||
return {
|
||||
'chatbot_script_step_id': self.id,
|
||||
'chatbot_step_answers': [{
|
||||
'id': answer.id,
|
||||
'label': answer.name,
|
||||
'redirect_link': answer.redirect_link,
|
||||
} for answer in self.answer_ids],
|
||||
'chatbot_step_message': plaintext2html(self.message) if not is_html_empty(self.message) else False,
|
||||
'chatbot_step_is_last': self._is_last_step(),
|
||||
'chatbot_step_type': self.step_type
|
||||
}
|
||||
|
|
@ -0,0 +1,54 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import fields, models
|
||||
|
||||
|
||||
class Digest(models.Model):
|
||||
_inherit = 'digest.digest'
|
||||
|
||||
kpi_livechat_rating = fields.Boolean('% of Happiness')
|
||||
kpi_livechat_rating_value = fields.Float(digits=(16, 2), compute='_compute_kpi_livechat_rating_value')
|
||||
kpi_livechat_conversations = fields.Boolean('Conversations handled')
|
||||
kpi_livechat_conversations_value = fields.Integer(compute='_compute_kpi_livechat_conversations_value')
|
||||
kpi_livechat_response = fields.Boolean('Time to answer (sec)')
|
||||
kpi_livechat_response_value = fields.Float(digits=(16, 2), compute='_compute_kpi_livechat_response_value')
|
||||
|
||||
def _compute_kpi_livechat_rating_value(self):
|
||||
channels = self.env['mail.channel'].search([('livechat_operator_id', '=', self.env.user.partner_id.id)])
|
||||
for record in self:
|
||||
start, end, company = record._get_kpi_compute_parameters()
|
||||
domain = [
|
||||
('create_date', '>=', start), ('create_date', '<', end),
|
||||
('rated_partner_id', '=', self.env.user.partner_id.id)
|
||||
]
|
||||
ratings = channels.rating_get_grades(domain)
|
||||
record.kpi_livechat_rating_value = ratings['great'] * 100 / sum(ratings.values()) if sum(ratings.values()) else 0
|
||||
|
||||
def _compute_kpi_livechat_conversations_value(self):
|
||||
for record in self:
|
||||
start, end, company = record._get_kpi_compute_parameters()
|
||||
record.kpi_livechat_conversations_value = self.env['mail.channel'].search_count([
|
||||
('channel_type', '=', 'livechat'),
|
||||
('livechat_operator_id', '=', self.env.user.partner_id.id),
|
||||
('create_date', '>=', start), ('create_date', '<', end)
|
||||
])
|
||||
|
||||
def _compute_kpi_livechat_response_value(self):
|
||||
for record in self:
|
||||
start, end, company = record._get_kpi_compute_parameters()
|
||||
response_time = self.env['im_livechat.report.operator'].sudo()._read_group([
|
||||
('start_date', '>=', start), ('start_date', '<', end),
|
||||
('partner_id', '=', self.env.user.partner_id.id)], ['partner_id', 'time_to_answer'], ['partner_id'])
|
||||
record.kpi_livechat_response_value = sum(
|
||||
response['time_to_answer']
|
||||
for response in response_time
|
||||
if response['time_to_answer'] > 0
|
||||
)
|
||||
|
||||
def _compute_kpis_actions(self, company, user):
|
||||
res = super(Digest, self)._compute_kpis_actions(company, user)
|
||||
res['kpi_livechat_rating'] = 'im_livechat.rating_rating_action_livechat_report'
|
||||
res['kpi_livechat_conversations'] = 'im_livechat.im_livechat_report_operator_action'
|
||||
res['kpi_livechat_response'] = 'im_livechat.im_livechat_report_channel_time_to_answer_action'
|
||||
return res
|
||||
|
|
@ -0,0 +1,346 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
import base64
|
||||
import random
|
||||
import re
|
||||
|
||||
from odoo import api, Command, fields, models, modules, _
|
||||
|
||||
|
||||
class ImLivechatChannel(models.Model):
|
||||
""" Livechat Channel
|
||||
Define a communication channel, which can be accessed with 'script_external' (script tag to put on
|
||||
external website), 'script_internal' (code to be integrated with odoo website) or via 'web_page' link.
|
||||
It provides rating tools, and access rules for anonymous people.
|
||||
"""
|
||||
|
||||
_name = 'im_livechat.channel'
|
||||
_inherit = ['rating.parent.mixin']
|
||||
_description = 'Livechat Channel'
|
||||
_rating_satisfaction_days = 7 # include only last 7 days to compute satisfaction
|
||||
|
||||
def _default_image(self):
|
||||
image_path = modules.get_module_resource('im_livechat', 'static/src/img', 'default.png')
|
||||
return base64.b64encode(open(image_path, 'rb').read())
|
||||
|
||||
def _default_user_ids(self):
|
||||
return [(6, 0, [self._uid])]
|
||||
|
||||
def _default_button_text(self):
|
||||
return _('Have a Question? Chat with us.')
|
||||
|
||||
def _default_default_message(self):
|
||||
return _('How may I help you?')
|
||||
|
||||
# attribute fields
|
||||
name = fields.Char('Channel Name', required=True)
|
||||
button_text = fields.Char('Text of the Button', default=_default_button_text,
|
||||
help="Default text displayed on the Livechat Support Button")
|
||||
default_message = fields.Char('Welcome Message', default=_default_default_message,
|
||||
help="This is an automated 'welcome' message that your visitor will see when they initiate a new conversation.")
|
||||
input_placeholder = fields.Char('Chat Input Placeholder', help='Text that prompts the user to initiate the chat.')
|
||||
header_background_color = fields.Char(default="#875A7B", help="Default background color of the channel header once open")
|
||||
title_color = fields.Char(default="#FFFFFF", help="Default title color of the channel once open")
|
||||
button_background_color = fields.Char(default="#875A7B", help="Default background color of the Livechat button")
|
||||
button_text_color = fields.Char(default="#FFFFFF", help="Default text color of the Livechat button")
|
||||
|
||||
# computed fields
|
||||
web_page = fields.Char('Web Page', compute='_compute_web_page_link', store=False, readonly=True,
|
||||
help="URL to a static page where you client can discuss with the operator of the channel.")
|
||||
are_you_inside = fields.Boolean(string='Are you inside the matrix?',
|
||||
compute='_are_you_inside', store=False, readonly=True)
|
||||
script_external = fields.Html('Script (external)', compute='_compute_script_external', store=False, readonly=True, sanitize=False)
|
||||
nbr_channel = fields.Integer('Number of conversation', compute='_compute_nbr_channel', store=False, readonly=True)
|
||||
|
||||
image_128 = fields.Image("Image", max_width=128, max_height=128, default=_default_image)
|
||||
|
||||
# relationnal fields
|
||||
user_ids = fields.Many2many('res.users', 'im_livechat_channel_im_user', 'channel_id', 'user_id', string='Operators', default=_default_user_ids)
|
||||
channel_ids = fields.One2many('mail.channel', 'livechat_channel_id', 'Sessions')
|
||||
chatbot_script_count = fields.Integer(string='Number of Chatbot', compute='_compute_chatbot_script_count')
|
||||
rule_ids = fields.One2many('im_livechat.channel.rule', 'channel_id', 'Rules')
|
||||
|
||||
def _are_you_inside(self):
|
||||
for channel in self:
|
||||
channel.are_you_inside = bool(self.env.uid in [u.id for u in channel.user_ids])
|
||||
|
||||
@api.depends('rule_ids.chatbot_script_id')
|
||||
def _compute_chatbot_script_count(self):
|
||||
data = self.env['im_livechat.channel.rule'].read_group(
|
||||
[('channel_id', 'in', self.ids)], ['chatbot_script_id:count_distinct'], ['channel_id'])
|
||||
mapped_data = {rule['channel_id'][0]: rule['chatbot_script_id'] for rule in data}
|
||||
for channel in self:
|
||||
channel.chatbot_script_count = mapped_data.get(channel.id, 0)
|
||||
|
||||
def _compute_script_external(self):
|
||||
values = {
|
||||
"dbname": self._cr.dbname,
|
||||
}
|
||||
for record in self:
|
||||
values["channel_id"] = record.id
|
||||
values["url"] = record.get_base_url()
|
||||
record.script_external = self.env['ir.qweb']._render('im_livechat.external_loader', values) if record.id else False
|
||||
|
||||
def _compute_web_page_link(self):
|
||||
for record in self:
|
||||
record.web_page = "%s/im_livechat/support/%i" % (record.get_base_url(), record.id) if record.id else False
|
||||
|
||||
@api.depends('channel_ids')
|
||||
def _compute_nbr_channel(self):
|
||||
data = self.env['mail.channel']._read_group([
|
||||
('livechat_channel_id', 'in', self.ids)
|
||||
], ['__count'], ['livechat_channel_id'], lazy=False)
|
||||
channel_count = {x['livechat_channel_id'][0]: x['__count'] for x in data}
|
||||
for record in self:
|
||||
record.nbr_channel = channel_count.get(record.id, 0)
|
||||
|
||||
# --------------------------
|
||||
# Action Methods
|
||||
# --------------------------
|
||||
def action_join(self):
|
||||
self.ensure_one()
|
||||
return self.write({'user_ids': [(4, self._uid)]})
|
||||
|
||||
def action_quit(self):
|
||||
self.ensure_one()
|
||||
return self.write({'user_ids': [(3, self._uid)]})
|
||||
|
||||
def action_view_rating(self):
|
||||
""" Action to display the rating relative to the channel, so all rating of the
|
||||
sessions of the current channel
|
||||
:returns : the ir.action 'action_view_rating' with the correct context
|
||||
"""
|
||||
self.ensure_one()
|
||||
action = self.env['ir.actions.act_window']._for_xml_id('im_livechat.rating_rating_action_livechat')
|
||||
action['context'] = {'search_default_parent_res_name': self.name}
|
||||
return action
|
||||
|
||||
def action_view_chatbot_scripts(self):
|
||||
action = self.env['ir.actions.act_window']._for_xml_id('im_livechat.chatbot_script_action')
|
||||
chatbot_script_ids = self.env['im_livechat.channel.rule'].search(
|
||||
[('channel_id', 'in', self.ids)]).mapped('chatbot_script_id')
|
||||
if len(chatbot_script_ids) == 1:
|
||||
action['res_id'] = chatbot_script_ids.id
|
||||
action['view_mode'] = 'form'
|
||||
action['views'] = [(False, 'form')]
|
||||
else:
|
||||
action['domain'] = [('id', 'in', chatbot_script_ids.ids)]
|
||||
return action
|
||||
|
||||
# --------------------------
|
||||
# Channel Methods
|
||||
# --------------------------
|
||||
def _get_available_users(self):
|
||||
""" get available user of a given channel
|
||||
:retuns : return the res.users having their im_status online
|
||||
"""
|
||||
self.ensure_one()
|
||||
return self.user_ids.filtered(lambda user: user.im_status == 'online')
|
||||
|
||||
def _get_livechat_mail_channel_vals(self, anonymous_name, operator=None, chatbot_script=None, user_id=None, country_id=None):
|
||||
# partner to add to the mail.channel
|
||||
operator_partner_id = operator.partner_id.id if operator else chatbot_script.operator_partner_id.id
|
||||
members_to_add = [Command.create({'partner_id': operator_partner_id, 'is_pinned': False})]
|
||||
visitor_user = False
|
||||
if user_id:
|
||||
visitor_user = self.env['res.users'].browse(user_id)
|
||||
if visitor_user and visitor_user.active and operator and visitor_user != operator: # valid session user (not public)
|
||||
members_to_add.append(Command.create({'partner_id': visitor_user.partner_id.id}))
|
||||
|
||||
if chatbot_script:
|
||||
name = chatbot_script.title
|
||||
else:
|
||||
name = ' '.join([
|
||||
visitor_user.display_name if visitor_user else anonymous_name,
|
||||
operator.livechat_username if operator.livechat_username else operator.name
|
||||
])
|
||||
|
||||
return {
|
||||
'channel_member_ids': members_to_add,
|
||||
'livechat_active': True,
|
||||
'livechat_operator_id': operator_partner_id,
|
||||
'livechat_channel_id': self.id,
|
||||
'chatbot_current_step_id': chatbot_script._get_welcome_steps()[-1].id if chatbot_script else False,
|
||||
'anonymous_name': False if user_id else anonymous_name,
|
||||
'country_id': country_id,
|
||||
'channel_type': 'livechat',
|
||||
'name': name,
|
||||
}
|
||||
|
||||
def _open_livechat_mail_channel(self, anonymous_name, previous_operator_id=None, chatbot_script=None, user_id=None, country_id=None, persisted=True):
|
||||
""" Return a livechat session. If the session is persisted, creates a mail.channel record with a connected operator or with Odoobot as
|
||||
an operator if a chatbot has been configured, or return false otherwise
|
||||
:param anonymous_name : the name of the anonymous person of the session
|
||||
:param previous_operator_id : partner_id.id of the previous operator that this visitor had in the past
|
||||
:param chatbot_script : chatbot script if there is one configured
|
||||
:param user_id : the id of the logged in visitor, if any
|
||||
:param country_code : the country of the anonymous person of the session
|
||||
:param persisted: whether or not the session should be persisted
|
||||
:type anonymous_name : str
|
||||
:return : channel header
|
||||
:rtype : dict
|
||||
|
||||
If this visitor already had an operator within the last 7 days (information stored with the 'im_livechat_previous_operator_pid' cookie),
|
||||
the system will first try to assign that operator if he's available (to improve user experience).
|
||||
"""
|
||||
self.ensure_one()
|
||||
user_operator = False
|
||||
if chatbot_script:
|
||||
if chatbot_script.id not in self.env['im_livechat.channel.rule'].search(
|
||||
[('channel_id', 'in', self.ids)]).mapped('chatbot_script_id').ids:
|
||||
return False
|
||||
elif previous_operator_id:
|
||||
available_users = self._get_available_users()
|
||||
# previous_operator_id is the partner_id of the previous operator, need to convert to user
|
||||
if previous_operator_id in available_users.mapped('partner_id').ids:
|
||||
user_operator = next(available_user for available_user in available_users if available_user.partner_id.id == previous_operator_id)
|
||||
if not user_operator and not chatbot_script:
|
||||
user_operator = self._get_random_operator()
|
||||
if not user_operator and not chatbot_script:
|
||||
# no one available
|
||||
return False
|
||||
mail_channel_vals = self._get_livechat_mail_channel_vals(anonymous_name, user_operator, chatbot_script, user_id=user_id, country_id=country_id)
|
||||
if persisted:
|
||||
# create the session, and add the link with the given channel
|
||||
mail_channel = self.env["mail.channel"].with_context(mail_create_nosubscribe=False).sudo().create(mail_channel_vals)
|
||||
if user_operator:
|
||||
mail_channel._broadcast([user_operator.partner_id.id])
|
||||
return mail_channel.sudo().channel_info()[0]
|
||||
else:
|
||||
operator_partner_id = user_operator.partner_id if user_operator else chatbot_script.operator_partner_id
|
||||
display_name = operator_partner_id.user_livechat_username or operator_partner_id.display_name
|
||||
return {
|
||||
'name': mail_channel_vals['name'],
|
||||
'chatbot_current_step_id': mail_channel_vals['chatbot_current_step_id'],
|
||||
'state': 'open',
|
||||
'operator_pid': (operator_partner_id.id, display_name.replace(',', '')),
|
||||
'chatbot_script_id': chatbot_script.id if chatbot_script else None
|
||||
}
|
||||
|
||||
def _get_random_operator(self):
|
||||
""" Return a random operator from the available users of the channel that have the lowest number of active livechats.
|
||||
A livechat is considered 'active' if it has at least one message within the 30 minutes.
|
||||
|
||||
(Some annoying conversions have to be made on the fly because this model holds 'res.users' as available operators
|
||||
and the mail_channel model stores the partner_id of the randomly selected operator)
|
||||
|
||||
:return : user
|
||||
:rtype : res.users
|
||||
"""
|
||||
operators = self._get_available_users()
|
||||
if len(operators) == 0:
|
||||
return False
|
||||
|
||||
self.env.cr.execute("""SELECT COUNT(DISTINCT c.id), c.livechat_operator_id
|
||||
FROM mail_channel c
|
||||
LEFT OUTER JOIN mail_message m ON c.id = m.res_id AND m.model = 'mail.channel'
|
||||
WHERE c.channel_type = 'livechat'
|
||||
AND c.livechat_operator_id in %s
|
||||
AND m.create_date > ((now() at time zone 'UTC') - interval '30 minutes')
|
||||
GROUP BY c.livechat_operator_id
|
||||
ORDER BY COUNT(DISTINCT c.id) asc""", (tuple(operators.mapped('partner_id').ids),))
|
||||
active_channels = self.env.cr.dictfetchall()
|
||||
|
||||
# If inactive operator(s), return one of them
|
||||
active_channel_operator_ids = [active_channel['livechat_operator_id'] for active_channel in active_channels]
|
||||
inactive_operators = [operator for operator in operators if operator.partner_id.id not in active_channel_operator_ids]
|
||||
if inactive_operators:
|
||||
return random.choice(inactive_operators)
|
||||
|
||||
# If no inactive operator, active_channels is not empty as len(operators) > 0 (see above).
|
||||
# Get the less active operator using the active_channels first element's count (since they are sorted 'ascending')
|
||||
lowest_number_of_conversations = active_channels[0]['count']
|
||||
less_active_operator = random.choice([
|
||||
active_channel['livechat_operator_id'] for active_channel in active_channels
|
||||
if active_channel['count'] == lowest_number_of_conversations])
|
||||
|
||||
# convert the selected 'partner_id' to its corresponding res.users
|
||||
return next(operator for operator in operators if operator.partner_id.id == less_active_operator)
|
||||
|
||||
def _get_channel_infos(self):
|
||||
self.ensure_one()
|
||||
|
||||
return {
|
||||
'header_background_color': self.header_background_color,
|
||||
'button_background_color': self.button_background_color,
|
||||
'title_color': self.title_color,
|
||||
'button_text_color': self.button_text_color,
|
||||
'button_text': self.button_text,
|
||||
'input_placeholder': self.input_placeholder,
|
||||
'default_message': self.default_message,
|
||||
"channel_name": self.name,
|
||||
"channel_id": self.id,
|
||||
}
|
||||
|
||||
def get_livechat_info(self, username=None):
|
||||
self.ensure_one()
|
||||
|
||||
if username is None:
|
||||
username = _('Visitor')
|
||||
info = {}
|
||||
info['available'] = self.chatbot_script_count or len(self._get_available_users()) > 0
|
||||
info['server_url'] = self.get_base_url()
|
||||
if info['available']:
|
||||
info['options'] = self._get_channel_infos()
|
||||
info['options']['current_partner_id'] = self.env.user.partner_id.id
|
||||
info['options']["default_username"] = username
|
||||
return info
|
||||
|
||||
|
||||
class ImLivechatChannelRule(models.Model):
|
||||
""" Channel Rules
|
||||
Rules defining access to the channel (countries, and url matching). It also provide the 'auto pop'
|
||||
option to open automatically the conversation.
|
||||
"""
|
||||
|
||||
_name = 'im_livechat.channel.rule'
|
||||
_description = 'Livechat Channel Rules'
|
||||
_order = 'sequence asc'
|
||||
|
||||
regex_url = fields.Char('URL Regex',
|
||||
help="Regular expression specifying the web pages this rule will be applied on.")
|
||||
action = fields.Selection([
|
||||
('display_button', 'Show'),
|
||||
('display_button_and_text', 'Show with notification'),
|
||||
('auto_popup', 'Open automatically'),
|
||||
('hide_button', 'Hide')], string='Live Chat Button', required=True, default='display_button',
|
||||
help="* 'Show' displays the chat button on the pages.\n"\
|
||||
"* 'Show with notification' is 'Show' in addition to a floating text just next to the button.\n"\
|
||||
"* 'Open automatically' displays the button and automatically opens the conversation pane.\n"\
|
||||
"* 'Hide' hides the chat button on the pages.\n")
|
||||
auto_popup_timer = fields.Integer('Open automatically timer', default=0,
|
||||
help="Delay (in seconds) to automatically open the conversation window. Note: the selected action must be 'Open automatically' otherwise this parameter will not be taken into account.")
|
||||
chatbot_script_id = fields.Many2one('chatbot.script', string='Chatbot')
|
||||
chatbot_only_if_no_operator = fields.Boolean(
|
||||
string='Enabled only if no operator', help='Enable the bot only if there is no operator available')
|
||||
channel_id = fields.Many2one('im_livechat.channel', 'Channel',
|
||||
help="The channel of the rule")
|
||||
country_ids = fields.Many2many('res.country', 'im_livechat_channel_country_rel', 'channel_id', 'country_id', 'Country',
|
||||
help="The rule will only be applied for these countries. Example: if you select 'Belgium' and 'United States' and that you set the action to 'Hide', the chat button will be hidden on the specified URL from the visitors located in these 2 countries. This feature requires GeoIP installed on your server.")
|
||||
sequence = fields.Integer('Matching order', default=10,
|
||||
help="Given the order to find a matching rule. If 2 rules are matching for the given url/country, the one with the lowest sequence will be chosen.")
|
||||
|
||||
def match_rule(self, channel_id, url, country_id=False):
|
||||
""" determine if a rule of the given channel matches with the given url
|
||||
:param channel_id : the identifier of the channel_id
|
||||
:param url : the url to match with a rule
|
||||
:param country_id : the identifier of the country
|
||||
:returns the rule that matches the given condition. False otherwise.
|
||||
:rtype : im_livechat.channel.rule
|
||||
"""
|
||||
def _match(rules):
|
||||
for rule in rules:
|
||||
# url might not be set because it comes from referer, in that
|
||||
# case match the first rule with no regex_url
|
||||
if re.search(rule.regex_url or '', url or ''):
|
||||
return rule
|
||||
return False
|
||||
# first, search the country specific rules (the first match is returned)
|
||||
if country_id: # don't include the country in the research if geoIP is not installed
|
||||
domain = [('country_ids', 'in', [country_id]), ('channel_id', '=', channel_id)]
|
||||
rule = _match(self.search(domain))
|
||||
if rule:
|
||||
return rule
|
||||
# second, fallback on the rules without country
|
||||
domain = [('country_ids', '=', False), ('channel_id', '=', channel_id)]
|
||||
return _match(self.search(domain))
|
||||
|
|
@ -0,0 +1,235 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import api, fields, models, _
|
||||
from odoo.tools import email_normalize, email_split, html_escape, html2plaintext, plaintext2html
|
||||
|
||||
from markupsafe import Markup
|
||||
|
||||
|
||||
class MailChannel(models.Model):
|
||||
""" Chat Session
|
||||
Reprensenting a conversation between users.
|
||||
It extends the base method for anonymous usage.
|
||||
"""
|
||||
|
||||
_name = 'mail.channel'
|
||||
_inherit = ['mail.channel', 'rating.mixin']
|
||||
|
||||
anonymous_name = fields.Char('Anonymous Name')
|
||||
channel_type = fields.Selection(selection_add=[('livechat', 'Livechat Conversation')], ondelete={'livechat': 'cascade'})
|
||||
livechat_active = fields.Boolean('Is livechat ongoing?', help='Livechat session is active until visitor leaves the conversation.')
|
||||
livechat_channel_id = fields.Many2one('im_livechat.channel', 'Channel', index='btree_not_null')
|
||||
livechat_operator_id = fields.Many2one('res.partner', string='Operator')
|
||||
chatbot_current_step_id = fields.Many2one('chatbot.script.step', string='Chatbot Current Step')
|
||||
chatbot_message_ids = fields.One2many('chatbot.message', 'mail_channel_id', string='Chatbot Messages')
|
||||
country_id = fields.Many2one('res.country', string="Country", help="Country of the visitor of the channel")
|
||||
|
||||
_sql_constraints = [('livechat_operator_id', "CHECK((channel_type = 'livechat' and livechat_operator_id is not null) or (channel_type != 'livechat'))",
|
||||
'Livechat Operator ID is required for a channel of type livechat.')]
|
||||
|
||||
def _compute_is_chat(self):
|
||||
super(MailChannel, self)._compute_is_chat()
|
||||
for record in self:
|
||||
if record.channel_type == 'livechat':
|
||||
record.is_chat = True
|
||||
|
||||
def _channel_message_notifications(self, message, message_format=False):
|
||||
""" When a anonymous user create a mail.channel, the operator is not notify (to avoid massive polling when
|
||||
clicking on livechat button). So when the anonymous person is sending its FIRST message, the channel header
|
||||
should be added to the notification, since the user cannot be listining to the channel.
|
||||
"""
|
||||
notifications = super()._channel_message_notifications(message=message, message_format=message_format)
|
||||
for channel in self:
|
||||
# add uuid to allow anonymous to listen
|
||||
if channel.channel_type == 'livechat':
|
||||
notifications.append([channel.uuid, 'mail.channel/new_message', notifications[0][2]])
|
||||
if not message.author_id:
|
||||
unpinned_members = self.channel_member_ids.filtered(lambda member: not member.is_pinned)
|
||||
if unpinned_members:
|
||||
unpinned_members.write({'is_pinned': True})
|
||||
notifications = self._channel_channel_notifications(unpinned_members.partner_id.ids) + notifications
|
||||
return notifications
|
||||
|
||||
def channel_info(self):
|
||||
""" Extends the channel header by adding the livechat operator and the 'anonymous' profile
|
||||
:rtype : list(dict)
|
||||
"""
|
||||
channel_infos = super().channel_info()
|
||||
channel_infos_dict = dict((c['id'], c) for c in channel_infos)
|
||||
for channel in self:
|
||||
channel_infos_dict[channel.id]['channel']['anonymous_name'] = channel.anonymous_name
|
||||
channel_infos_dict[channel.id]['channel']['anonymous_country'] = {
|
||||
'code': channel.country_id.code,
|
||||
'id': channel.country_id.id,
|
||||
'name': channel.country_id.name,
|
||||
} if channel.country_id else [('clear',)]
|
||||
if channel.livechat_operator_id:
|
||||
display_name = channel.livechat_operator_id.user_livechat_username or channel.livechat_operator_id.display_name
|
||||
channel_infos_dict[channel.id]['operator_pid'] = (channel.livechat_operator_id.id, display_name.replace(',', ''))
|
||||
return list(channel_infos_dict.values())
|
||||
|
||||
@api.autovacuum
|
||||
def _gc_empty_livechat_sessions(self):
|
||||
hours = 1 # never remove empty session created within the last hour
|
||||
self.env.cr.execute("""
|
||||
SELECT id as id
|
||||
FROM mail_channel C
|
||||
WHERE NOT EXISTS (
|
||||
SELECT 1
|
||||
FROM mail_message M
|
||||
WHERE M.res_id = C.id AND m.model = 'mail.channel'
|
||||
) AND C.channel_type = 'livechat' AND livechat_channel_id IS NOT NULL AND
|
||||
COALESCE(write_date, create_date, (now() at time zone 'UTC'))::timestamp
|
||||
< ((now() at time zone 'UTC') - interval %s)""", ("%s hours" % hours,))
|
||||
empty_channel_ids = [item['id'] for item in self.env.cr.dictfetchall()]
|
||||
self.browse(empty_channel_ids).unlink()
|
||||
|
||||
def _execute_command_help_message_extra(self):
|
||||
msg = super(MailChannel, self)._execute_command_help_message_extra()
|
||||
return msg + _("Type <b>:shortcut</b> to insert a canned response in your message.<br>")
|
||||
|
||||
def execute_command_history(self, **kwargs):
|
||||
self.env['bus.bus']._sendone(self.uuid, 'im_livechat.history_command', {'id': self.id})
|
||||
|
||||
def _send_history_message(self, pid, page_history):
|
||||
message_body = _('No history found')
|
||||
if page_history:
|
||||
html_links = ['<li><a href="%s" target="_blank">%s</a></li>' % (html_escape(page), html_escape(page)) for page in page_history]
|
||||
message_body = '<ul>%s</ul>' % (''.join(html_links))
|
||||
self._send_transient_message(self.env['res.partner'].browse(pid), message_body)
|
||||
|
||||
def _message_update_content_after_hook(self, message):
|
||||
self.ensure_one()
|
||||
if self.channel_type == 'livechat':
|
||||
self.env['bus.bus']._sendone(self.uuid, 'mail.message/insert', {
|
||||
'id': message.id,
|
||||
'body': message.body,
|
||||
})
|
||||
return super()._message_update_content_after_hook(message=message)
|
||||
|
||||
def _get_visitor_leave_message(self, operator=False, cancel=False):
|
||||
return _('Visitor has left the conversation.')
|
||||
|
||||
def _close_livechat_session(self, **kwargs):
|
||||
""" Set deactivate the livechat channel and notify (the operator) the reason of closing the session."""
|
||||
self.ensure_one()
|
||||
if self.livechat_active:
|
||||
self.livechat_active = False
|
||||
# avoid useless notification if the channel is empty
|
||||
if not self.message_ids:
|
||||
return
|
||||
# Notify that the visitor has left the conversation
|
||||
self.message_post(author_id=self.env.ref('base.partner_root').id,
|
||||
body=self._get_visitor_leave_message(**kwargs), message_type='comment', subtype_xmlid='mail.mt_comment')
|
||||
|
||||
# Rating Mixin
|
||||
|
||||
def _rating_get_parent_field_name(self):
|
||||
return 'livechat_channel_id'
|
||||
|
||||
def _email_livechat_transcript(self, email):
|
||||
company = self.env.user.company_id
|
||||
render_context = {
|
||||
"company": company,
|
||||
"channel": self,
|
||||
}
|
||||
mail_body = self.env['ir.qweb']._render('im_livechat.livechat_email_template', render_context, minimal_qcontext=True)
|
||||
mail_body = self.env['mail.render.mixin']._replace_local_links(mail_body)
|
||||
mail = self.env['mail.mail'].sudo().create({
|
||||
'subject': _('Conversation with %s', self.livechat_operator_id.user_livechat_username or self.livechat_operator_id.name),
|
||||
'email_from': company.catchall_formatted or company.email_formatted,
|
||||
'author_id': self.env.user.partner_id.id,
|
||||
'email_to': email_split(email)[0],
|
||||
'body_html': mail_body,
|
||||
})
|
||||
mail.send()
|
||||
|
||||
def _get_channel_history(self):
|
||||
"""
|
||||
Converting message body back to plaintext for correct data formatting in HTML field.
|
||||
"""
|
||||
return Markup('').join(
|
||||
Markup('%s: %s<br/>') % (message.author_id.name or self.anonymous_name, html2plaintext(message.body))
|
||||
for message in self.message_ids.sorted('id')
|
||||
)
|
||||
|
||||
# =======================
|
||||
# Chatbot
|
||||
# =======================
|
||||
|
||||
def _chatbot_find_customer_values_in_messages(self, step_type_to_field):
|
||||
"""
|
||||
Look for user's input in the channel's messages based on a dictionary
|
||||
mapping the step_type to the field name of the model it will be used on.
|
||||
|
||||
:param dict step_type_to_field: a dict of step types to customer fields
|
||||
to fill, like : {'question_email': 'email_from', 'question_phone': 'mobile'}
|
||||
"""
|
||||
values = {}
|
||||
filtered_message_ids = self.chatbot_message_ids.filtered(
|
||||
lambda m: m.script_step_id.step_type in step_type_to_field.keys()
|
||||
)
|
||||
for message_id in filtered_message_ids:
|
||||
field_name = step_type_to_field[message_id.script_step_id.step_type]
|
||||
if not values.get(field_name):
|
||||
values[field_name] = html2plaintext(message_id.user_raw_answer or '')
|
||||
|
||||
return values
|
||||
|
||||
def _chatbot_post_message(self, chatbot_script, body):
|
||||
""" Small helper to post a message as the chatbot operator
|
||||
|
||||
:param record chatbot_script
|
||||
:param string body: message HTML body """
|
||||
|
||||
return self.with_context(mail_create_nosubscribe=True).message_post(
|
||||
author_id=chatbot_script.operator_partner_id.id,
|
||||
body=body,
|
||||
message_type='comment',
|
||||
subtype_xmlid='mail.mt_comment',
|
||||
)
|
||||
|
||||
def _chatbot_validate_email(self, email_address, chatbot_script):
|
||||
email_address = html2plaintext(email_address)
|
||||
email_normalized = email_normalize(email_address)
|
||||
|
||||
posted_message = False
|
||||
error_message = False
|
||||
if not email_normalized:
|
||||
error_message = _(
|
||||
"'%(input_email)s' does not look like a valid email. Can you please try again?",
|
||||
input_email=email_address
|
||||
)
|
||||
posted_message = self._chatbot_post_message(chatbot_script, plaintext2html(error_message))
|
||||
|
||||
return {
|
||||
'success': bool(email_normalized),
|
||||
'posted_message': posted_message,
|
||||
'error_message': error_message,
|
||||
}
|
||||
|
||||
def _message_post_after_hook(self, message, msg_vals):
|
||||
"""
|
||||
This method is called just before _notify_thread() method which is calling the _message_format()
|
||||
method. We need a 'chatbot.message' record before it happens to correctly display the message.
|
||||
It's created only if the mail channel is linked to a chatbot step.
|
||||
"""
|
||||
if self.chatbot_current_step_id:
|
||||
self.env['chatbot.message'].sudo().create({
|
||||
'mail_message_id': message.id,
|
||||
'mail_channel_id': self.id,
|
||||
'script_step_id': self.chatbot_current_step_id.id,
|
||||
})
|
||||
return super(MailChannel, self)._message_post_after_hook(message, msg_vals)
|
||||
|
||||
def _chatbot_restart(self, chatbot_script):
|
||||
self.write({
|
||||
'chatbot_current_step_id': False
|
||||
})
|
||||
|
||||
self.chatbot_message_ids.unlink()
|
||||
|
||||
return self._chatbot_post_message(
|
||||
chatbot_script,
|
||||
'<div class="o_mail_notification">%s</div>' % _('Restarting conversation...'))
|
||||
|
|
@ -0,0 +1,42 @@
|
|||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from datetime import datetime, timedelta
|
||||
|
||||
from odoo import api, models
|
||||
|
||||
|
||||
class ChannelMember(models.Model):
|
||||
_inherit = 'mail.channel.member'
|
||||
|
||||
@api.autovacuum
|
||||
def _gc_unpin_livechat_sessions(self):
|
||||
""" Unpin read livechat sessions with no activity for at least one day to
|
||||
clean the operator's interface """
|
||||
members = self.env['mail.channel.member'].search([
|
||||
('is_pinned', '=', True),
|
||||
('last_seen_dt', '<=', datetime.now() - timedelta(days=1)),
|
||||
('channel_id.channel_type', '=', 'livechat'),
|
||||
])
|
||||
sessions_to_be_unpinned = members.filtered(lambda m: m.message_unread_counter == 0)
|
||||
sessions_to_be_unpinned.write({'is_pinned': False})
|
||||
self.env['bus.bus']._sendmany([(member.partner_id, 'mail.channel/unpin', {'id': member.channel_id.id}) for member in sessions_to_be_unpinned])
|
||||
|
||||
def _get_partner_data(self, fields=None):
|
||||
if self.channel_id.channel_type == 'livechat':
|
||||
data = {
|
||||
'active': self.partner_id.active,
|
||||
'id': self.partner_id.id,
|
||||
'is_public': self.partner_id.is_public,
|
||||
}
|
||||
if self.partner_id.user_livechat_username:
|
||||
data['user_livechat_username'] = self.partner_id.user_livechat_username
|
||||
else:
|
||||
data['name'] = self.partner_id.name
|
||||
if not self.partner_id.is_public:
|
||||
data['country'] = {
|
||||
'code': self.partner_id.country_id.code,
|
||||
'id': self.partner_id.country_id.id,
|
||||
'name': self.partner_id.country_id.name,
|
||||
} if self.partner_id.country_id else [('clear',)]
|
||||
return data
|
||||
return super()._get_partner_data(fields=fields)
|
||||
|
|
@ -0,0 +1,47 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import models
|
||||
|
||||
|
||||
class MailMessage(models.Model):
|
||||
_inherit = 'mail.message'
|
||||
|
||||
def _message_format(self, fnames, format_reply=True, legacy=False):
|
||||
"""Override to remove email_from and to return the livechat username if applicable.
|
||||
A third param is added to the author_id tuple in this case to be able to differentiate it
|
||||
from the normal name in client code.
|
||||
|
||||
In addition, if we are currently running a chatbot.script, we include the information about
|
||||
the chatbot.message related to this mail.message.
|
||||
This allows the frontend display to include the additional features
|
||||
(e.g: Show additional buttons with the available answers for this step). """
|
||||
|
||||
vals_list = super()._message_format(fnames=fnames, format_reply=format_reply, legacy=legacy)
|
||||
for vals in vals_list:
|
||||
message_sudo = self.browse(vals['id']).sudo().with_prefetch(self.ids)
|
||||
mail_channel = self.env['mail.channel'].browse(message_sudo.res_id) if message_sudo.model == 'mail.channel' else self.env['mail.channel']
|
||||
if mail_channel.channel_type == 'livechat':
|
||||
if message_sudo.author_id:
|
||||
vals.pop('email_from')
|
||||
if message_sudo.author_id.user_livechat_username:
|
||||
vals['author'] = {
|
||||
'id': message_sudo.author_id.id,
|
||||
'user_livechat_username': message_sudo.author_id.user_livechat_username,
|
||||
}
|
||||
# sudo: chatbot.script.step - members of a channel can access the current chatbot step
|
||||
if mail_channel.chatbot_current_step_id \
|
||||
and message_sudo.author_id == mail_channel.chatbot_current_step_id.sudo().chatbot_script_id.operator_partner_id:
|
||||
chatbot_message_id = self.env['chatbot.message'].sudo().search([
|
||||
('mail_message_id', '=', message_sudo.id)], limit=1)
|
||||
if chatbot_message_id.script_step_id:
|
||||
vals['chatbot_script_step_id'] = chatbot_message_id.script_step_id.id
|
||||
if chatbot_message_id.script_step_id.step_type == 'question_selection':
|
||||
vals['chatbot_step_answers'] = [{
|
||||
'id': answer.id,
|
||||
'label': answer.name,
|
||||
'redirect_link': answer.redirect_link,
|
||||
} for answer in chatbot_message_id.script_step_id.answer_ids]
|
||||
if chatbot_message_id.user_script_answer_id:
|
||||
vals['chatbot_selected_answer_id'] = chatbot_message_id.user_script_answer_id.id
|
||||
return vals_list
|
||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue