mirror of
https://github.com/bringout/oca-ocb-mail.git
synced 2026-04-22 14:22:05 +02:00
Initial commit: Mail packages
This commit is contained in:
commit
4e53507711
1948 changed files with 751201 additions and 0 deletions
56
odoo-bringout-oca-ocb-im_livechat/README.md
Normal file
56
odoo-bringout-oca-ocb-im_livechat/README.md
Normal file
|
|
@ -0,0 +1,56 @@
|
|||
# Live Chat
|
||||
|
||||
|
||||
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.
|
||||
|
||||
|
||||
|
||||
## Installation
|
||||
|
||||
```bash
|
||||
pip install odoo-bringout-oca-ocb-im_livechat
|
||||
```
|
||||
|
||||
## Dependencies
|
||||
|
||||
This addon depends on:
|
||||
- mail
|
||||
- rating
|
||||
- digest
|
||||
- utm
|
||||
|
||||
## Manifest Information
|
||||
|
||||
- **Name**: Live Chat
|
||||
- **Version**: 1.0
|
||||
- **Category**: Website/Live Chat
|
||||
- **License**: LGPL-3
|
||||
- **Installable**: True
|
||||
|
||||
## Source
|
||||
|
||||
Based on [OCA/OCB](https://github.com/OCA/OCB) branch 16.0, addon `im_livechat`.
|
||||
|
||||
## License
|
||||
|
||||
This package maintains the original LGPL-3 license from the upstream Odoo project.
|
||||
|
||||
## Documentation
|
||||
|
||||
- Overview: doc/OVERVIEW.md
|
||||
- Architecture: doc/ARCHITECTURE.md
|
||||
- Models: doc/MODELS.md
|
||||
- Controllers: doc/CONTROLLERS.md
|
||||
- Wizards: doc/WIZARDS.md
|
||||
- Install: doc/INSTALL.md
|
||||
- Usage: doc/USAGE.md
|
||||
- Configuration: doc/CONFIGURATION.md
|
||||
- Dependencies: doc/DEPENDENCIES.md
|
||||
- Troubleshooting: doc/TROUBLESHOOTING.md
|
||||
- FAQ: doc/FAQ.md
|
||||
32
odoo-bringout-oca-ocb-im_livechat/doc/ARCHITECTURE.md
Normal file
32
odoo-bringout-oca-ocb-im_livechat/doc/ARCHITECTURE.md
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
# Architecture
|
||||
|
||||
```mermaid
|
||||
flowchart TD
|
||||
U[Users] -->|HTTP| V[Views and QWeb Templates]
|
||||
V --> C[Controllers]
|
||||
V --> W[Wizards – Transient Models]
|
||||
C --> M[Models and ORM]
|
||||
W --> M
|
||||
M --> R[Reports]
|
||||
DX[Data XML] --> M
|
||||
S[Security – ACLs and Groups] -. enforces .-> M
|
||||
|
||||
subgraph Im_livechat Module - im_livechat
|
||||
direction LR
|
||||
M:::layer
|
||||
W:::layer
|
||||
C:::layer
|
||||
V:::layer
|
||||
R:::layer
|
||||
S:::layer
|
||||
DX:::layer
|
||||
end
|
||||
|
||||
classDef layer fill:#eef8ff,stroke:#6ea8fe,stroke-width:1px
|
||||
```
|
||||
|
||||
Notes
|
||||
- Views include tree/form/kanban templates and report templates.
|
||||
- Controllers provide website/portal routes when present.
|
||||
- Wizards are UI flows implemented with `models.TransientModel`.
|
||||
- Data XML loads data/demo records; Security defines groups and access.
|
||||
3
odoo-bringout-oca-ocb-im_livechat/doc/CONFIGURATION.md
Normal file
3
odoo-bringout-oca-ocb-im_livechat/doc/CONFIGURATION.md
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
# Configuration
|
||||
|
||||
Refer to Odoo settings for im_livechat. Configure related models, access rights, and options as needed.
|
||||
17
odoo-bringout-oca-ocb-im_livechat/doc/CONTROLLERS.md
Normal file
17
odoo-bringout-oca-ocb-im_livechat/doc/CONTROLLERS.md
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
# Controllers
|
||||
|
||||
HTTP routes provided by this module.
|
||||
|
||||
```mermaid
|
||||
sequenceDiagram
|
||||
participant U as User/Client
|
||||
participant C as Module Controllers
|
||||
participant O as ORM/Views
|
||||
|
||||
U->>C: HTTP GET/POST (routes)
|
||||
C->>O: ORM operations, render templates
|
||||
O-->>U: HTML/JSON/PDF
|
||||
```
|
||||
|
||||
Notes
|
||||
- See files in controllers/ for route definitions.
|
||||
8
odoo-bringout-oca-ocb-im_livechat/doc/DEPENDENCIES.md
Normal file
8
odoo-bringout-oca-ocb-im_livechat/doc/DEPENDENCIES.md
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
# Dependencies
|
||||
|
||||
This addon depends on:
|
||||
|
||||
- [mail](../../odoo-bringout-oca-ocb-mail)
|
||||
- [rating](../../odoo-bringout-oca-ocb-rating)
|
||||
- [digest](../../odoo-bringout-oca-ocb-digest)
|
||||
- [utm](../../odoo-bringout-oca-ocb-utm)
|
||||
4
odoo-bringout-oca-ocb-im_livechat/doc/FAQ.md
Normal file
4
odoo-bringout-oca-ocb-im_livechat/doc/FAQ.md
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
# FAQ
|
||||
|
||||
- Q: Which Odoo version? A: 16.0 (OCA/OCB packaged).
|
||||
- Q: How to enable? A: Start server with --addon im_livechat or install in UI.
|
||||
7
odoo-bringout-oca-ocb-im_livechat/doc/INSTALL.md
Normal file
7
odoo-bringout-oca-ocb-im_livechat/doc/INSTALL.md
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
# Install
|
||||
|
||||
```bash
|
||||
pip install odoo-bringout-oca-ocb-im_livechat"
|
||||
# or
|
||||
uv pip install odoo-bringout-oca-ocb-im_livechat"
|
||||
```
|
||||
25
odoo-bringout-oca-ocb-im_livechat/doc/MODELS.md
Normal file
25
odoo-bringout-oca-ocb-im_livechat/doc/MODELS.md
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
# Models
|
||||
|
||||
Detected core models and extensions in im_livechat.
|
||||
|
||||
```mermaid
|
||||
classDiagram
|
||||
class chatbot_message
|
||||
class chatbot_script
|
||||
class chatbot_script_answer
|
||||
class chatbot_script_step
|
||||
class im_livechat_channel
|
||||
class im_livechat_channel_rule
|
||||
class mail_channel
|
||||
class digest_digest
|
||||
class mail_channel_member
|
||||
class mail_message
|
||||
class rating_rating
|
||||
class res_partner
|
||||
class res_users
|
||||
class res_users_settings
|
||||
```
|
||||
|
||||
Notes
|
||||
- Classes show model technical names; fields omitted for brevity.
|
||||
- Items listed under _inherit are extensions of existing models.
|
||||
6
odoo-bringout-oca-ocb-im_livechat/doc/OVERVIEW.md
Normal file
6
odoo-bringout-oca-ocb-im_livechat/doc/OVERVIEW.md
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
# Overview
|
||||
|
||||
Packaged Odoo addon: im_livechat. Provides features documented in upstream Odoo 16 under this addon.
|
||||
|
||||
- Source: OCA/OCB 16.0, addon im_livechat
|
||||
- License: LGPL-3
|
||||
32
odoo-bringout-oca-ocb-im_livechat/doc/REPORTS.md
Normal file
32
odoo-bringout-oca-ocb-im_livechat/doc/REPORTS.md
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
# Reports
|
||||
|
||||
Report definitions and templates in im_livechat.
|
||||
|
||||
```mermaid
|
||||
classDiagram
|
||||
class ImLivechatReportChannel
|
||||
Model <|-- ImLivechatReportChannel
|
||||
class ImLivechatReportOperator
|
||||
Model <|-- ImLivechatReportOperator
|
||||
```
|
||||
|
||||
## Available Reports
|
||||
|
||||
### Analytical/Dashboard Reports
|
||||
- **Operator Analysis** (Analysis/Dashboard)
|
||||
- **Session Statistics** (Analysis/Dashboard)
|
||||
|
||||
|
||||
## Report Files
|
||||
|
||||
- **im_livechat_report_channel.py** (Python logic)
|
||||
- **im_livechat_report_channel_views.xml** (XML template/definition)
|
||||
- **im_livechat_report_operator.py** (Python logic)
|
||||
- **im_livechat_report_operator_views.xml** (XML template/definition)
|
||||
- **__init__.py** (Python logic)
|
||||
|
||||
## Notes
|
||||
- Named reports above are accessible through Odoo's reporting menu
|
||||
- Python files define report logic and data processing
|
||||
- XML files contain report templates, definitions, and formatting
|
||||
- Reports are integrated with Odoo's printing and email systems
|
||||
42
odoo-bringout-oca-ocb-im_livechat/doc/SECURITY.md
Normal file
42
odoo-bringout-oca-ocb-im_livechat/doc/SECURITY.md
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
# Security
|
||||
|
||||
Access control and security definitions in im_livechat.
|
||||
|
||||
## Access Control Lists (ACLs)
|
||||
|
||||
Model access permissions defined in:
|
||||
- **[ir.model.access.csv](../im_livechat/security/ir.model.access.csv)**
|
||||
- 16 model access rules
|
||||
|
||||
## Record Rules
|
||||
|
||||
Row-level security rules defined in:
|
||||
|
||||
## Security Groups & Configuration
|
||||
|
||||
Security groups and permissions defined in:
|
||||
- **[im_livechat_channel_security.xml](../im_livechat/security/im_livechat_channel_security.xml)**
|
||||
- 2 security groups defined
|
||||
|
||||
```mermaid
|
||||
graph TB
|
||||
subgraph "Security Layers"
|
||||
A[Users] --> B[Groups]
|
||||
B --> C[Access Control Lists]
|
||||
C --> D[Models]
|
||||
B --> E[Record Rules]
|
||||
E --> F[Individual Records]
|
||||
end
|
||||
```
|
||||
|
||||
Security files overview:
|
||||
- **[im_livechat_channel_security.xml](../im_livechat/security/im_livechat_channel_security.xml)**
|
||||
- Security groups, categories, and XML-based rules
|
||||
- **[ir.model.access.csv](../im_livechat/security/ir.model.access.csv)**
|
||||
- Model access permissions (CRUD rights)
|
||||
|
||||
Notes
|
||||
- Access Control Lists define which groups can access which models
|
||||
- Record Rules provide row-level security (filter records by user/group)
|
||||
- Security groups organize users and define permission sets
|
||||
- All security is enforced at the ORM level by Odoo
|
||||
5
odoo-bringout-oca-ocb-im_livechat/doc/TROUBLESHOOTING.md
Normal file
5
odoo-bringout-oca-ocb-im_livechat/doc/TROUBLESHOOTING.md
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
# Troubleshooting
|
||||
|
||||
- Ensure Python and Odoo environment matches repo guidance.
|
||||
- Check database connectivity and logs if startup fails.
|
||||
- Validate that dependent addons listed in DEPENDENCIES.md are installed.
|
||||
7
odoo-bringout-oca-ocb-im_livechat/doc/USAGE.md
Normal file
7
odoo-bringout-oca-ocb-im_livechat/doc/USAGE.md
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
# Usage
|
||||
|
||||
Start Odoo including this addon (from repo root):
|
||||
|
||||
```bash
|
||||
python3 scripts/odoo_web_server.py --db-name mydb --addon im_livechat
|
||||
```
|
||||
3
odoo-bringout-oca-ocb-im_livechat/doc/WIZARDS.md
Normal file
3
odoo-bringout-oca-ocb-im_livechat/doc/WIZARDS.md
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
# Wizards
|
||||
|
||||
This module does not include UI wizards.
|
||||
|
|
@ -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
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