mirror of
https://github.com/bringout/oca-ocb-mail.git
synced 2026-04-22 22:41:59 +02:00
Initial commit: Mail packages
This commit is contained in:
commit
4e53507711
1948 changed files with 751201 additions and 0 deletions
|
|
@ -0,0 +1,47 @@
|
|||
# Spreadsheet dashboard for live chat
|
||||
|
||||
Spreadsheet
|
||||
|
||||
## Installation
|
||||
|
||||
```bash
|
||||
pip install odoo-bringout-oca-ocb-spreadsheet_dashboard_im_livechat
|
||||
```
|
||||
|
||||
## Dependencies
|
||||
|
||||
This addon depends on:
|
||||
- spreadsheet_dashboard
|
||||
- im_livechat
|
||||
|
||||
## Manifest Information
|
||||
|
||||
- **Name**: Spreadsheet dashboard for live chat
|
||||
- **Version**: 1.0
|
||||
- **Category**: Hidden
|
||||
- **License**: LGPL-3
|
||||
- **Installable**: True
|
||||
|
||||
## Source
|
||||
|
||||
Based on [OCA/OCB](https://github.com/OCA/OCB) branch 16.0, addon `spreadsheet_dashboard_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
|
||||
- Reports: doc/REPORTS.md
|
||||
- Security: doc/SECURITY.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
|
||||
|
|
@ -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 Spreadsheet_dashboard_im_livechat Module - spreadsheet_dashboard_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.
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
# Configuration
|
||||
|
||||
Refer to Odoo settings for spreadsheet_dashboard_im_livechat. Configure related models, access rights, and options as needed.
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
# Controllers
|
||||
|
||||
This module does not define custom HTTP controllers.
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
# Dependencies
|
||||
|
||||
This addon depends on:
|
||||
|
||||
- [spreadsheet_dashboard](../../odoo-bringout-oca-ocb-spreadsheet_dashboard)
|
||||
- [im_livechat](../../odoo-bringout-oca-ocb-im_livechat)
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
# FAQ
|
||||
|
||||
- Q: Which Odoo version? A: 16.0 (OCA/OCB packaged).
|
||||
- Q: How to enable? A: Start server with --addon spreadsheet_dashboard_im_livechat or install in UI.
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
# Install
|
||||
|
||||
```bash
|
||||
pip install odoo-bringout-oca-ocb-spreadsheet_dashboard_im_livechat"
|
||||
# or
|
||||
uv pip install odoo-bringout-oca-ocb-spreadsheet_dashboard_im_livechat"
|
||||
```
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
# Models
|
||||
|
||||
Detected core models and extensions in spreadsheet_dashboard_im_livechat.
|
||||
|
||||
```mermaid
|
||||
classDiagram
|
||||
```
|
||||
|
||||
Notes
|
||||
- Classes show model technical names; fields omitted for brevity.
|
||||
- Items listed under _inherit are extensions of existing models.
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
# Overview
|
||||
|
||||
Packaged Odoo addon: spreadsheet_dashboard_im_livechat. Provides features documented in upstream Odoo 16 under this addon.
|
||||
|
||||
- Source: OCA/OCB 16.0, addon spreadsheet_dashboard_im_livechat
|
||||
- License: LGPL-3
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
# Reports
|
||||
|
||||
This module does not define custom reports.
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
# Security
|
||||
|
||||
This module does not define custom security rules or access controls beyond Odoo defaults.
|
||||
|
||||
Default Odoo security applies:
|
||||
- Base user access through standard groups
|
||||
- Model access inherited from dependencies
|
||||
- No custom row-level security rules
|
||||
|
|
@ -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.
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
# Usage
|
||||
|
||||
Start Odoo including this addon (from repo root):
|
||||
|
||||
```bash
|
||||
python3 scripts/nix_odoo_web_server.py --db-name mydb --addon spreadsheet_dashboard_im_livechat
|
||||
```
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
# Wizards
|
||||
|
||||
This module does not include UI wizards.
|
||||
|
|
@ -0,0 +1,43 @@
|
|||
[project]
|
||||
name = "odoo-bringout-oca-ocb-spreadsheet_dashboard_im_livechat"
|
||||
version = "16.0.0"
|
||||
description = "Spreadsheet dashboard for live chat - Spreadsheet"
|
||||
authors = [
|
||||
{ name = "Ernad Husremovic", email = "hernad@bring.out.ba" }
|
||||
]
|
||||
dependencies = [
|
||||
"odoo-bringout-oca-ocb-spreadsheet_dashboard>=16.0.0",
|
||||
"odoo-bringout-oca-ocb-im_livechat>=16.0.0",
|
||||
"requests>=2.25.1"
|
||||
]
|
||||
readme = "README.md"
|
||||
requires-python = ">= 3.11"
|
||||
classifiers = [
|
||||
"Development Status :: 5 - Production/Stable",
|
||||
"Intended Audience :: Developers",
|
||||
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
|
||||
"Programming Language :: Python :: 3",
|
||||
"Programming Language :: Python :: 3.11",
|
||||
"Programming Language :: Python :: 3.12",
|
||||
"Topic :: Office/Business",
|
||||
]
|
||||
|
||||
[project.urls]
|
||||
homepage = "https://github.com/bringout/0"
|
||||
repository = "https://github.com/bringout/0"
|
||||
|
||||
[build-system]
|
||||
requires = ["hatchling"]
|
||||
build-backend = "hatchling.build"
|
||||
|
||||
[tool.hatch.metadata]
|
||||
allow-direct-references = true
|
||||
|
||||
[tool.hatch.build.targets.wheel]
|
||||
packages = ["spreadsheet_dashboard_im_livechat"]
|
||||
|
||||
[tool.rye]
|
||||
managed = true
|
||||
dev-dependencies = [
|
||||
"pytest>=8.4.1",
|
||||
]
|
||||
|
|
@ -0,0 +1 @@
|
|||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
|
@ -0,0 +1,18 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
{
|
||||
'name': "Spreadsheet dashboard for live chat",
|
||||
'version': '1.0',
|
||||
'category': 'Hidden',
|
||||
'summary': 'Spreadsheet',
|
||||
'description': 'Spreadsheet',
|
||||
'depends': ['spreadsheet_dashboard', 'im_livechat'],
|
||||
'data': [
|
||||
"data/dashboards.xml",
|
||||
],
|
||||
'demo': [],
|
||||
'installable': True,
|
||||
'auto_install': ['im_livechat'],
|
||||
'license': 'LGPL-3',
|
||||
'assets': {}
|
||||
}
|
||||
|
|
@ -0,0 +1,12 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
|
||||
<record id="spreadsheet_dashboard_livechat" model="spreadsheet.dashboard">
|
||||
<field name="name">Live chat</field>
|
||||
<field name="data" type="base64" file="spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json"/>
|
||||
<field name="dashboard_group_id" ref="spreadsheet_dashboard.spreadsheet_dashboard_group_website"/>
|
||||
<field name="group_ids" eval="[Command.link(ref('im_livechat.im_livechat_group_manager'))]"/>
|
||||
<field name="sequence">100</field>
|
||||
</record>
|
||||
|
||||
</odoo>
|
||||
File diff suppressed because it is too large
Load diff
|
|
@ -0,0 +1,176 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * spreadsheet_dashboard_im_livechat
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-29 09:44+0000\n"
|
||||
"Language-Team: Afrikaans (https://app.transifex.com/odoo/teams/41243/af/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: af\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Average Rating"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Session Duration"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Time to Answer"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. session duration"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. time to answer"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Current"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Daily Sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "KPI"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Livechat Support Statistics by Operator"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Operator"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Period"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Rating"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions by Operator"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Top Operators"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "last period"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - current"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "since last period"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - current"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - previous"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,176 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * spreadsheet_dashboard_im_livechat
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-29 09:44+0000\n"
|
||||
"Language-Team: Amharic (https://app.transifex.com/odoo/teams/41243/am/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: am\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Average Rating"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Session Duration"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Time to Answer"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. session duration"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. time to answer"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Current"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Daily Sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "KPI"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Livechat Support Statistics by Operator"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Operator"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Period"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Rating"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions by Operator"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Top Operators"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "last period"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - current"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "since last period"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - current"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - previous"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,182 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * spreadsheet_dashboard_im_livechat
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Niyas Raphy, 2022
|
||||
# Malaz Abuidris <msea@odoo.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-29 09:44+0000\n"
|
||||
"Last-Translator: Malaz Abuidris <msea@odoo.com>, 2023\n"
|
||||
"Language-Team: Arabic (https://app.transifex.com/odoo/teams/41243/ar/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ar\n"
|
||||
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Average Rating"
|
||||
msgstr "متوسط التقييم "
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Session Duration"
|
||||
msgstr "متوسط مدة الجلسة "
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Time to Answer"
|
||||
msgstr "متوسط الوقت للإجابة "
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. session duration"
|
||||
msgstr "متوسط مدة الجلسة "
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. time to answer"
|
||||
msgstr "متوسط الوقت للإجابة "
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Current"
|
||||
msgstr "الحالي "
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Daily Sessions"
|
||||
msgstr "الجلسات اليومية"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "KPI"
|
||||
msgstr "المؤشرات الرئيسية للأداء "
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Livechat Support Statistics by Operator"
|
||||
msgstr "إحصائيات دعم الدردشة المباشرة حسب الموظف "
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Operator"
|
||||
msgstr "موظف الدعم"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Period"
|
||||
msgstr "الفترة"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Previous"
|
||||
msgstr "السابق"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Rating"
|
||||
msgstr "التقييم"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions"
|
||||
msgstr "الجلسات"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions by Operator"
|
||||
msgstr "الجلسات حسب موظف الدعم "
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Top Operators"
|
||||
msgstr "كبار المشغلين"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "last period"
|
||||
msgstr "الفترة الاخيرة"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - current"
|
||||
msgstr "عدد الجلسات - الحالية "
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - previous"
|
||||
msgstr "عدد الجلسات - السابقة "
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "since last period"
|
||||
msgstr "منذ الفترة الماضية"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - current"
|
||||
msgstr "الإحصائيات 2 - الحالية "
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - previous"
|
||||
msgstr "الإحصائيات 2 - السابق "
|
||||
|
|
@ -0,0 +1,182 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * spreadsheet_dashboard_im_livechat
|
||||
#
|
||||
# Translators:
|
||||
# Jumshud Sultanov <cumshud@gmail.com>, 2022
|
||||
# erpgo translator <jumshud@erpgo.az>, 2022
|
||||
# Nurlan Farajov <coolinuxoid@gmail.com>, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-29 09:44+0000\n"
|
||||
"Last-Translator: Nurlan Farajov <coolinuxoid@gmail.com>, 2024\n"
|
||||
"Language-Team: Azerbaijani (https://app.transifex.com/odoo/teams/41243/az/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: az\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Average Rating"
|
||||
msgstr "Ortalam Reytinq"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Session Duration"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Time to Answer"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. session duration"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. time to answer"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Current"
|
||||
msgstr "Cari"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Daily Sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "KPI"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Livechat Support Statistics by Operator"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Operator"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Period"
|
||||
msgstr "Müddət"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Previous"
|
||||
msgstr "Əvvəlki"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Rating"
|
||||
msgstr "Qiymətləndirmə"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions"
|
||||
msgstr "Seanslar"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions by Operator"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Top Operators"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "last period"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - current"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "since last period"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - current"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - previous"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,176 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * spreadsheet_dashboard_im_livechat
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-29 09:44+0000\n"
|
||||
"Language-Team: Belarusian (https://app.transifex.com/odoo/teams/41243/be/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: be\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Average Rating"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Session Duration"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Time to Answer"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. session duration"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. time to answer"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Current"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Daily Sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "KPI"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Livechat Support Statistics by Operator"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Operator"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Period"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Rating"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions by Operator"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Top Operators"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "last period"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - current"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "since last period"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - current"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - previous"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,184 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * spreadsheet_dashboard_im_livechat
|
||||
#
|
||||
# Translators:
|
||||
# aleksandar ivanov, 2023
|
||||
# Maria Boyadjieva <marabo2000@gmail.com>, 2023
|
||||
# Albena Mincheva <albena_vicheva@abv.bg>, 2023
|
||||
# Petko Karamotchev, 2024
|
||||
# Veselina Slavkova, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-29 09:44+0000\n"
|
||||
"Last-Translator: Veselina Slavkova, 2025\n"
|
||||
"Language-Team: Bulgarian (https://app.transifex.com/odoo/teams/41243/bg/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: bg\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Average Rating"
|
||||
msgstr "Средна оценка"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Session Duration"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Time to Answer"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. session duration"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. time to answer"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Current"
|
||||
msgstr "Настоящ"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Daily Sessions"
|
||||
msgstr "Дневни сесии"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "KPI"
|
||||
msgstr "KPI"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Livechat Support Statistics by Operator"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Operator"
|
||||
msgstr "Оператор"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Period"
|
||||
msgstr "Период"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Previous"
|
||||
msgstr "Предишен"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Rating"
|
||||
msgstr "Оценяване"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions"
|
||||
msgstr "Сесии"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions by Operator"
|
||||
msgstr "Сесии по оператор"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Top Operators"
|
||||
msgstr "Топ оператори"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "last period"
|
||||
msgstr "последен период"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - current"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "since last period"
|
||||
msgstr "от последния период"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - current"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - previous"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,176 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * spreadsheet_dashboard_im_livechat
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2024-02-06 13:32+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Average Rating"
|
||||
msgstr "Prosječna ocjena"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Session Duration"
|
||||
msgstr "Prosječno trajanje sesije"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Time to Answer"
|
||||
msgstr "Prosječno vrijeme odgovora"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. session duration"
|
||||
msgstr "Prosječno trajanje sesije"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. time to answer"
|
||||
msgstr "Prosječno vrijeme odgovora"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Current"
|
||||
msgstr "Trenutno"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Daily Sessions"
|
||||
msgstr "Dnevne sesije"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "KPI"
|
||||
msgstr "KPI"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Livechat Support Statistics by Operator"
|
||||
msgstr "Statistike podrške uživo po operateru"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Operator"
|
||||
msgstr "Operator"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Period"
|
||||
msgstr "Period"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Previous"
|
||||
msgstr "Prethodni"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Rating"
|
||||
msgstr "Ocjena"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions"
|
||||
msgstr "Smjene"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions by Operator"
|
||||
msgstr "Sesije po operateru"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Top Operators"
|
||||
msgstr "Najbolji operateri"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "last period"
|
||||
msgstr "prošli period"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - current"
|
||||
msgstr "broj sesija - trenutni"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - previous"
|
||||
msgstr "broj sesija - prethodni"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "since last period"
|
||||
msgstr "od prošlog perioda"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - current"
|
||||
msgstr "statistike 2 - trenutne"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - previous"
|
||||
msgstr "statistike 2 - prethodne"
|
||||
|
|
@ -0,0 +1,184 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * spreadsheet_dashboard_im_livechat
|
||||
#
|
||||
# Translators:
|
||||
# Josep Anton Belchi, 2022
|
||||
# Quim - eccit <quim@eccit.com>, 2022
|
||||
# M Palau <mpalau@tda.ad>, 2022
|
||||
# Manel Fernandez Ramirez <manelfera@outlook.com>, 2022
|
||||
# Cristian Cruz, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-29 09:44+0000\n"
|
||||
"Last-Translator: Cristian Cruz, 2022\n"
|
||||
"Language-Team: Catalan (https://app.transifex.com/odoo/teams/41243/ca/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ca\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Average Rating"
|
||||
msgstr "Valoració mitjana"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Session Duration"
|
||||
msgstr "Mitjana Durada de la sessió"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Time to Answer"
|
||||
msgstr "Mitjana Hora de respondre"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. session duration"
|
||||
msgstr "Mitjana durada de la sessió"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. time to answer"
|
||||
msgstr "Mitjana hora de respondre"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Current"
|
||||
msgstr "Actiu"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Daily Sessions"
|
||||
msgstr "Sessions diàries"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "KPI"
|
||||
msgstr "KPI"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Livechat Support Statistics by Operator"
|
||||
msgstr "Estadístiques de suport de xat en viu per operador"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Operator"
|
||||
msgstr "Operador"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Period"
|
||||
msgstr "Període"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Previous"
|
||||
msgstr "Anterior"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Rating"
|
||||
msgstr "Valoració"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions"
|
||||
msgstr "Sessions "
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions by Operator"
|
||||
msgstr "Sessions per operador"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Top Operators"
|
||||
msgstr "Operadors principals"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "last period"
|
||||
msgstr "darrer període"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - current"
|
||||
msgstr "recompte de sessions - actual"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - previous"
|
||||
msgstr "compte de sessions - anteriors"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "since last period"
|
||||
msgstr "des de l'últim període"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - current"
|
||||
msgstr "estadístiques 2 - actual"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - previous"
|
||||
msgstr "estadístiques 2 - anterior"
|
||||
|
|
@ -0,0 +1,184 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * spreadsheet_dashboard_im_livechat
|
||||
#
|
||||
# Translators:
|
||||
# Michal Veselý <michal@veselyberanek.net>, 2022
|
||||
# Jiří Podhorecký <jirka.p@volny.cz>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Katerina Horylova, 2024
|
||||
# Aleš Fiala <f.ales1@seznam.cz>, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-29 09:44+0000\n"
|
||||
"Last-Translator: Aleš Fiala <f.ales1@seznam.cz>, 2024\n"
|
||||
"Language-Team: Czech (https://app.transifex.com/odoo/teams/41243/cs/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: cs\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Average Rating"
|
||||
msgstr "Průměrné hodnocení"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Session Duration"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Time to Answer"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. session duration"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. time to answer"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Current"
|
||||
msgstr "Aktuální"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Daily Sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "KPI"
|
||||
msgstr "KPI"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Livechat Support Statistics by Operator"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Operator"
|
||||
msgstr "Operátor"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Period"
|
||||
msgstr "Období"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Previous"
|
||||
msgstr "Předchozí"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Rating"
|
||||
msgstr "Hodnocení"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions"
|
||||
msgstr "Sezení"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions by Operator"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Top Operators"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "last period"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - current"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "since last period"
|
||||
msgstr "od posledního období"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - current"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - previous"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,182 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * spreadsheet_dashboard_im_livechat
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# lhmflexerp <lhm@flexerp.dk>, 2023
|
||||
# Sanne Kristensen <sanne@vkdata.dk>, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-29 09:44+0000\n"
|
||||
"Last-Translator: Sanne Kristensen <sanne@vkdata.dk>, 2024\n"
|
||||
"Language-Team: Danish (https://app.transifex.com/odoo/teams/41243/da/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: da\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Average Rating"
|
||||
msgstr "Gennemsnitsvurdering"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Session Duration"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Time to Answer"
|
||||
msgstr "Gns. tid til at svare"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. session duration"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. time to answer"
|
||||
msgstr "Gns. tid til at svare"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Current"
|
||||
msgstr "Aktuel"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Daily Sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "KPI"
|
||||
msgstr "KPI"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Livechat Support Statistics by Operator"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Operator"
|
||||
msgstr "Operatør"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Period"
|
||||
msgstr "Periode"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Previous"
|
||||
msgstr "Forrige"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Rating"
|
||||
msgstr "Bedømmelse"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions"
|
||||
msgstr "Ekspeditioner"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions by Operator"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Top Operators"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "last period"
|
||||
msgstr "sidste periode"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - current"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "since last period"
|
||||
msgstr "siden sidste periode"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - current"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - previous"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,182 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * spreadsheet_dashboard_im_livechat
|
||||
#
|
||||
# Translators:
|
||||
# Friederike Fasterling-Nesselbosch, 2022
|
||||
# Martin Trigaux, 2023
|
||||
# Larissa Manderfeld, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-29 09:44+0000\n"
|
||||
"Last-Translator: Larissa Manderfeld, 2023\n"
|
||||
"Language-Team: German (https://app.transifex.com/odoo/teams/41243/de/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: de\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Average Rating"
|
||||
msgstr "Durchschnittliche Bewertung"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Session Duration"
|
||||
msgstr "Durchschnittliche Sitzungsdauer"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Time to Answer"
|
||||
msgstr "Durchscnhnittliche Antwortzeit"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. session duration"
|
||||
msgstr "Durchschnittliche Sitzungsdauer"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. time to answer"
|
||||
msgstr "Durchschnittliche Antwortzeit"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Current"
|
||||
msgstr "Aktuell"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Daily Sessions"
|
||||
msgstr "Tägliche Sitzungen"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "KPI"
|
||||
msgstr "KPI"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Livechat Support Statistics by Operator"
|
||||
msgstr "Livechat-Support-Statistiken nach Bediener"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Operator"
|
||||
msgstr "Bediener"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Period"
|
||||
msgstr "Zeitraum"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Previous"
|
||||
msgstr "Vorherig"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Rating"
|
||||
msgstr "Bewertung"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions"
|
||||
msgstr "Sitzungen"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions by Operator"
|
||||
msgstr "Sitzungen nach Bediener"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Top Operators"
|
||||
msgstr "Top-Bediener"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "last period"
|
||||
msgstr "letzter Zeitraum"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - current"
|
||||
msgstr "Anzahl Sitzungen - aktuell"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - previous"
|
||||
msgstr "Anzahl Sitzungen - vorherig"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "since last period"
|
||||
msgstr "seit dem letzten Zeitraum"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - current"
|
||||
msgstr "Statistiken 2 - aktuell"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - previous"
|
||||
msgstr "Statistiken 2 - vorherig"
|
||||
|
|
@ -0,0 +1,184 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * spreadsheet_dashboard_im_livechat
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Leonardo J. Caballero G. <leonardocaballero@gmail.com>, 2022
|
||||
# oscaryuu, 2022
|
||||
# Wil Odoo, 2024
|
||||
# Larissa Manderfeld, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-29 09:44+0000\n"
|
||||
"Last-Translator: Larissa Manderfeld, 2025\n"
|
||||
"Language-Team: Spanish (https://app.transifex.com/odoo/teams/41243/es/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es\n"
|
||||
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Average Rating"
|
||||
msgstr "Calificación promedio"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Session Duration"
|
||||
msgstr "Duración promedio de sesiones"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Time to Answer"
|
||||
msgstr "Tiempo promedio para responder"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. session duration"
|
||||
msgstr "Tiempo promedio de sesiones"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. time to answer"
|
||||
msgstr "Tiempo promedio para responder"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Current"
|
||||
msgstr "Actual"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Daily Sessions"
|
||||
msgstr "Sesiones diarios"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "KPI"
|
||||
msgstr "KPI"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Livechat Support Statistics by Operator"
|
||||
msgstr "Estadísticas de soporte por chat en directo por operador"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Operator"
|
||||
msgstr "Operador"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Period"
|
||||
msgstr "Periodo"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Previous"
|
||||
msgstr "Anterior"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Rating"
|
||||
msgstr "Calificación"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions"
|
||||
msgstr "Sesiones"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions by Operator"
|
||||
msgstr "Sesiones por operador"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Top Operators"
|
||||
msgstr "Operadores principales"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "last period"
|
||||
msgstr "último periodo"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - current"
|
||||
msgstr "número de sesiones - actual"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - previous"
|
||||
msgstr "número de sesiones - anterior"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "since last period"
|
||||
msgstr "desde el último periodo"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - current"
|
||||
msgstr "estadísticas 2 - actual"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - previous"
|
||||
msgstr "estadísticas 2 - anterior"
|
||||
|
|
@ -0,0 +1,183 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * spreadsheet_dashboard_im_livechat
|
||||
#
|
||||
# Translators:
|
||||
# Braulio D. López Vázquez <bdl@odoo.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Patricia Gutiérrez Capetillo <pagc@odoo.com>, 2022
|
||||
# Fernanda Alvarez, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-29 09:44+0000\n"
|
||||
"Last-Translator: Fernanda Alvarez, 2023\n"
|
||||
"Language-Team: Spanish (Mexico) (https://app.transifex.com/odoo/teams/41243/es_MX/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_MX\n"
|
||||
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Average Rating"
|
||||
msgstr "Calificación promedio"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Session Duration"
|
||||
msgstr "Duración promedio de la sesión"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Time to Answer"
|
||||
msgstr "Tiempo promedio para responder"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. session duration"
|
||||
msgstr "Duración promedio de la sesión"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. time to answer"
|
||||
msgstr "Tiempo promedio para responder"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Current"
|
||||
msgstr "Actual"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Daily Sessions"
|
||||
msgstr "Sesiones diarias"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "KPI"
|
||||
msgstr "KPI"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Livechat Support Statistics by Operator"
|
||||
msgstr "Estadísticas de soporte por chat en vivo por operador"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Operator"
|
||||
msgstr "Operador"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Period"
|
||||
msgstr "Periodo"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Previous"
|
||||
msgstr "Anterior"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Rating"
|
||||
msgstr "Calificación"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions"
|
||||
msgstr "Sesiones"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions by Operator"
|
||||
msgstr "Sesiones por operador"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Top Operators"
|
||||
msgstr "Mejores operadores"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "last period"
|
||||
msgstr "último periodo"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - current"
|
||||
msgstr "número de sesiones - actuales"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - previous"
|
||||
msgstr "número de sesiones - previas"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "since last period"
|
||||
msgstr "desde el último periodo"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - current"
|
||||
msgstr "estadísticas 2 - actuales"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - previous"
|
||||
msgstr "estadísticas 2 - previas"
|
||||
|
|
@ -0,0 +1,186 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * spreadsheet_dashboard_im_livechat
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Arma Gedonsky <armagedonsky@hot.ee>, 2022
|
||||
# Triine Aavik <triine@avalah.ee>, 2022
|
||||
# Eneli Õigus <enelioigus@gmail.com>, 2022
|
||||
# Rivo Zängov <eraser@eraser.ee>, 2022
|
||||
# JanaAvalah, 2022
|
||||
# Anna, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-29 09:44+0000\n"
|
||||
"Last-Translator: Anna, 2023\n"
|
||||
"Language-Team: Estonian (https://app.transifex.com/odoo/teams/41243/et/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: et\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Average Rating"
|
||||
msgstr "Keskmine hinne"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Session Duration"
|
||||
msgstr "Keskmine seansi kestus"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Time to Answer"
|
||||
msgstr "Keskmine aeg vastamiseks"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. session duration"
|
||||
msgstr "Keskmine seansi kestus"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. time to answer"
|
||||
msgstr "Keskmine aeg vastamiseks"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Current"
|
||||
msgstr "Praegune"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Daily Sessions"
|
||||
msgstr "Igapäevased seansid"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "KPI"
|
||||
msgstr "KPI"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Livechat Support Statistics by Operator"
|
||||
msgstr "Otsevestluse tugistatistika operaatori järgi"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Operator"
|
||||
msgstr "Operaator"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Period"
|
||||
msgstr "Periood"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Previous"
|
||||
msgstr "Eelmine"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Rating"
|
||||
msgstr "Hinnang"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions"
|
||||
msgstr "Sessioonid"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions by Operator"
|
||||
msgstr "seansid operaatori järgi"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Top Operators"
|
||||
msgstr "Parimad operaatorid"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "last period"
|
||||
msgstr "viimane periood"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - current"
|
||||
msgstr "seansside arv – praegune"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - previous"
|
||||
msgstr "seansside arv – eelmine"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "since last period"
|
||||
msgstr "alates eelmisest perioodist"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - current"
|
||||
msgstr "statistika 2 - praegune"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - previous"
|
||||
msgstr "statistika 2 - eelmine"
|
||||
|
|
@ -0,0 +1,183 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * spreadsheet_dashboard_im_livechat
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
# Hamed Mohammadi <hamed@dehongi.com>, 2023
|
||||
# Hanna Kheradroosta, 2024
|
||||
# Mostafa Barmshory <mostafa.barmshory@gmail.com>, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-29 09:44+0000\n"
|
||||
"Last-Translator: Mostafa Barmshory <mostafa.barmshory@gmail.com>, 2024\n"
|
||||
"Language-Team: Persian (https://app.transifex.com/odoo/teams/41243/fa/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fa\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Average Rating"
|
||||
msgstr "رتبهی متوسط"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Session Duration"
|
||||
msgstr "میانگین مدت زمان جلسه"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Time to Answer"
|
||||
msgstr "میانگین زمان پاسخ"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. session duration"
|
||||
msgstr "میانگین مدت زمان جلس"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. time to answer"
|
||||
msgstr "میانگین زمان پاسخ"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Current"
|
||||
msgstr "جاری"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Daily Sessions"
|
||||
msgstr "جلسات روزانه"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "KPI"
|
||||
msgstr "شاخص کلیدی عملکرد"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Livechat Support Statistics by Operator"
|
||||
msgstr "آمار پشتیبانی چت زنده بر اساس اپراتور"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Operator"
|
||||
msgstr "اپراتور"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Period"
|
||||
msgstr "دوره"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Previous"
|
||||
msgstr "قبلی"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Rating"
|
||||
msgstr "رتبه دهی"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions"
|
||||
msgstr "جلسات"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions by Operator"
|
||||
msgstr "جلسات بر اساس اپراتور"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Top Operators"
|
||||
msgstr "عملگرهای برتر"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "last period"
|
||||
msgstr "دوره قبلی"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - current"
|
||||
msgstr "تعداد نشستها یا جلسات"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - previous"
|
||||
msgstr " تعداد نشستها یا جلسات مربوط به دورهی قبلی"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "since last period"
|
||||
msgstr "از آخرین دوره"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - current"
|
||||
msgstr "مجموعهای از آمار یا دادههای خاص در حال حاضر"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - previous"
|
||||
msgstr "آمار 2 - قبلی"
|
||||
|
|
@ -0,0 +1,184 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * spreadsheet_dashboard_im_livechat
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Kari Lindgren <kari.lindgren@emsystems.fi>, 2022
|
||||
# Tuomo Aura <tuomo.aura@web-veistamo.fi>, 2022
|
||||
# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2022
|
||||
# Ossi Mantylahti <ossi.mantylahti@obs-solutions.fi>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-29 09:44+0000\n"
|
||||
"Last-Translator: Ossi Mantylahti <ossi.mantylahti@obs-solutions.fi>, 2023\n"
|
||||
"Language-Team: Finnish (https://app.transifex.com/odoo/teams/41243/fi/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fi\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Average Rating"
|
||||
msgstr "Keskimääräinen arvio"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Session Duration"
|
||||
msgstr "Keskimääräinen stunnon kesto"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Time to Answer"
|
||||
msgstr "Keskimääräinen vastausaika"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. session duration"
|
||||
msgstr "Istunnon keskimääräinen kesto"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. time to answer"
|
||||
msgstr "Keskimääräinen vastausaika"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Current"
|
||||
msgstr "Nykyinen"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Daily Sessions"
|
||||
msgstr "Päivittäiset istunnot"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "KPI"
|
||||
msgstr "KPI"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Livechat Support Statistics by Operator"
|
||||
msgstr "Livechat-tukitilastot operaattorin mukaan"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Operator"
|
||||
msgstr "Operaattori"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Period"
|
||||
msgstr "Jakso"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Previous"
|
||||
msgstr "Edellinen"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Rating"
|
||||
msgstr "Arvostelu"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions"
|
||||
msgstr "Istunnot"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions by Operator"
|
||||
msgstr "Istunnot operaattorin mukaan"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Top Operators"
|
||||
msgstr "Parhaat operaattorit"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "last period"
|
||||
msgstr "edellinen ajanjakso"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - current"
|
||||
msgstr "istuntojen määrä - nykyinen"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - previous"
|
||||
msgstr "istuntojen määrä - edellinen"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "since last period"
|
||||
msgstr "edellisen kauden jälkeen"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - current"
|
||||
msgstr "tilastot 2 - nykyinen"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - previous"
|
||||
msgstr "tilastot 2 - edellinen"
|
||||
|
|
@ -0,0 +1,183 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * spreadsheet_dashboard_im_livechat
|
||||
#
|
||||
# Translators:
|
||||
# Alexandra Jubert, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Cécile Collart <cco@odoo.com>, 2022
|
||||
# Jolien De Paepe, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-29 09:44+0000\n"
|
||||
"Last-Translator: Jolien De Paepe, 2023\n"
|
||||
"Language-Team: French (https://app.transifex.com/odoo/teams/41243/fr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fr\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Average Rating"
|
||||
msgstr "Évaluation moyenne"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Session Duration"
|
||||
msgstr "Durée moy. de la session"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Time to Answer"
|
||||
msgstr "Temps moy. pour répondre"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. session duration"
|
||||
msgstr "Durée moy. de la session"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. time to answer"
|
||||
msgstr "Temps moy. de réponse"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Current"
|
||||
msgstr "Actuel"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Daily Sessions"
|
||||
msgstr "Sessions quotidiennes"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "KPI"
|
||||
msgstr "KPI"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Livechat Support Statistics by Operator"
|
||||
msgstr "Statistiques du support du Live Chat par opérateur"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Operator"
|
||||
msgstr "Opérateur"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Period"
|
||||
msgstr "Période"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Previous"
|
||||
msgstr "Précedent"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Rating"
|
||||
msgstr "Évaluation"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions"
|
||||
msgstr "Sessions"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions by Operator"
|
||||
msgstr "Sessions par opérateur"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Top Operators"
|
||||
msgstr "Meilleurs opérateurs"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "last period"
|
||||
msgstr "période précédente"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - current"
|
||||
msgstr "nombre de sessions - actuel"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - previous"
|
||||
msgstr "nombre de sessions - précédent"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "since last period"
|
||||
msgstr "depuis la période précédente"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - current"
|
||||
msgstr "stats 2 - actuel"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - previous"
|
||||
msgstr "stats 2 - précédent"
|
||||
|
|
@ -0,0 +1,180 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * spreadsheet_dashboard_im_livechat
|
||||
#
|
||||
# Translators:
|
||||
# Qaidjohar Barbhaya, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-29 09:44+0000\n"
|
||||
"Last-Translator: Qaidjohar Barbhaya, 2023\n"
|
||||
"Language-Team: Gujarati (https://app.transifex.com/odoo/teams/41243/gu/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: gu\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Average Rating"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Session Duration"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Time to Answer"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. session duration"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. time to answer"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Current"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Daily Sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "KPI"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Livechat Support Statistics by Operator"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Operator"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Period"
|
||||
msgstr "Period"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Rating"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions by Operator"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Top Operators"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "last period"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - current"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "since last period"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - current"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - previous"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,187 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * spreadsheet_dashboard_im_livechat
|
||||
#
|
||||
# Translators:
|
||||
# Yihya Hugirat <hugirat@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# ZVI BLONDER <ZVIBLONDER@gmail.com>, 2022
|
||||
# Lilach Gilliam <lilach.gilliam@gmail.com>, 2022
|
||||
# NoaFarkash, 2022
|
||||
# Roy Sayag, 2022
|
||||
# tomerlayline, 2024
|
||||
# or balmas, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-29 09:44+0000\n"
|
||||
"Last-Translator: or balmas, 2025\n"
|
||||
"Language-Team: Hebrew (https://app.transifex.com/odoo/teams/41243/he/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: he\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: 2;\n"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Average Rating"
|
||||
msgstr "דירוג ממוצע"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Session Duration"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Time to Answer"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. session duration"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. time to answer"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Current"
|
||||
msgstr "נוכחי"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Daily Sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "KPI"
|
||||
msgstr "KPI"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Livechat Support Statistics by Operator"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Operator"
|
||||
msgstr "מפעיל"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Period"
|
||||
msgstr "תקופה"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Previous"
|
||||
msgstr "קודם"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Rating"
|
||||
msgstr "דירוג"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions"
|
||||
msgstr "הפעלות"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions by Operator"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Top Operators"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "last period"
|
||||
msgstr "תקופה אחרונה"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - current"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "since last period"
|
||||
msgstr "מאז התקופה האחרונה"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - current"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - previous"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,180 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * spreadsheet_dashboard_im_livechat
|
||||
#
|
||||
# Translators:
|
||||
# Ujjawal Pathak, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-29 09:44+0000\n"
|
||||
"Last-Translator: Ujjawal Pathak, 2025\n"
|
||||
"Language-Team: Hindi (https://app.transifex.com/odoo/teams/41243/hi/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hi\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Average Rating"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Session Duration"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Time to Answer"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. session duration"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. time to answer"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Current"
|
||||
msgstr "करंट"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Daily Sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "KPI"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Livechat Support Statistics by Operator"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Operator"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Period"
|
||||
msgstr "समयावधि"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Rating"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions by Operator"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Top Operators"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "last period"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - current"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "since last period"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - current"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - previous"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,184 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * spreadsheet_dashboard_im_livechat
|
||||
#
|
||||
# Translators:
|
||||
# Vladimir Olujić <olujic.vladimir@storm.hr>, 2022
|
||||
# Bole <bole@dajmi5.com>, 2022
|
||||
# Karolina Tonković <karolina.tonkovic@storm.hr>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Ivica Dimjašević, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-29 09:44+0000\n"
|
||||
"Last-Translator: Ivica Dimjašević, 2025\n"
|
||||
"Language-Team: Croatian (https://app.transifex.com/odoo/teams/41243/hr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hr\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: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Average Rating"
|
||||
msgstr "Prosječna ocjena"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Session Duration"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Time to Answer"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. session duration"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. time to answer"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Current"
|
||||
msgstr "Trenutno"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Daily Sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "KPI"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Livechat Support Statistics by Operator"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Operator"
|
||||
msgstr "Operator"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Period"
|
||||
msgstr "Period"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Previous"
|
||||
msgstr "Prethodni"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Rating"
|
||||
msgstr "Ocjena"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions"
|
||||
msgstr "Smjene"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions by Operator"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Top Operators"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "last period"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - current"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "since last period"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - current"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - previous"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,184 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * spreadsheet_dashboard_im_livechat
|
||||
#
|
||||
# Translators:
|
||||
# Istvan <leki69@gmail.com>, 2022
|
||||
# krnkris, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# gezza <geza.nagy@oregional.hu>, 2025
|
||||
# Pammer József, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-29 09:44+0000\n"
|
||||
"Last-Translator: Pammer József, 2025\n"
|
||||
"Language-Team: Hungarian (https://app.transifex.com/odoo/teams/41243/hu/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hu\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Average Rating"
|
||||
msgstr "Átlag Értékelés"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Session Duration"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Time to Answer"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. session duration"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. time to answer"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Current"
|
||||
msgstr "Jelenlegi"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Daily Sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "KPI"
|
||||
msgstr "KPI"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Livechat Support Statistics by Operator"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Operator"
|
||||
msgstr "Operátor"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Period"
|
||||
msgstr "Időszak"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Previous"
|
||||
msgstr "Előző"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Rating"
|
||||
msgstr "Értékelés"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions"
|
||||
msgstr "Értékesítési folyamatok"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions by Operator"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Top Operators"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "last period"
|
||||
msgstr "utolsó időszak"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - current"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "since last period"
|
||||
msgstr "utolsó időszak óta"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - current"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - previous"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,176 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * spreadsheet_dashboard_im_livechat
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-29 09:44+0000\n"
|
||||
"Language-Team: Armenian (https://app.transifex.com/odoo/teams/41243/hy/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hy\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Average Rating"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Session Duration"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Time to Answer"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. session duration"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. time to answer"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Current"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Daily Sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "KPI"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Livechat Support Statistics by Operator"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Operator"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Period"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Rating"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions by Operator"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Top Operators"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "last period"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - current"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "since last period"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - current"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - previous"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,181 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * spreadsheet_dashboard_im_livechat
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Abe Manyo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-29 09:44+0000\n"
|
||||
"Last-Translator: Abe Manyo, 2023\n"
|
||||
"Language-Team: Indonesian (https://app.transifex.com/odoo/teams/41243/id/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: id\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Average Rating"
|
||||
msgstr "Rata-Rata Rating"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Session Duration"
|
||||
msgstr "Durasi Rata-Rata Sesi"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Time to Answer"
|
||||
msgstr "Waktu Rata-Rata untuk Menjawab"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. session duration"
|
||||
msgstr "Durasi rata-rata sesi"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. time to answer"
|
||||
msgstr "Waktu rata-rata untuk menjawab"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Current"
|
||||
msgstr "Terbaru"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Daily Sessions"
|
||||
msgstr "Sesi Harian"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "KPI"
|
||||
msgstr "KPI"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Livechat Support Statistics by Operator"
|
||||
msgstr "Statistik Livechat Support oleh Operator"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Operator"
|
||||
msgstr "Operator"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Period"
|
||||
msgstr "Periode"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Previous"
|
||||
msgstr "Sebelum"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Rating"
|
||||
msgstr "Rating"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions"
|
||||
msgstr "Sesi"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions by Operator"
|
||||
msgstr "Sesi berdasarkan Operator"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Top Operators"
|
||||
msgstr "Operator-Operator Terbaik"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "last period"
|
||||
msgstr "periode terakhir"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - current"
|
||||
msgstr "jumlah sesi - saat ini"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - previous"
|
||||
msgstr "jumlah sesi - sebelumnya"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "since last period"
|
||||
msgstr "semenjak periode terakhir"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - current"
|
||||
msgstr "stats 2 - saat ini"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - previous"
|
||||
msgstr "stats 2 - sebelumnya"
|
||||
|
|
@ -0,0 +1,180 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * spreadsheet_dashboard_im_livechat
|
||||
#
|
||||
# Translators:
|
||||
# Kristófer Arnþórsson, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-29 09:44+0000\n"
|
||||
"Last-Translator: Kristófer Arnþórsson, 2024\n"
|
||||
"Language-Team: Icelandic (https://app.transifex.com/odoo/teams/41243/is/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: is\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Average Rating"
|
||||
msgstr "Meðaleinkunn"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Session Duration"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Time to Answer"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. session duration"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. time to answer"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Current"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Daily Sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "KPI"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Livechat Support Statistics by Operator"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Operator"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Period"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Rating"
|
||||
msgstr "Einkunn"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions by Operator"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Top Operators"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "last period"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - current"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "since last period"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - current"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - previous"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,183 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * spreadsheet_dashboard_im_livechat
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Luca Carlo, 2023
|
||||
# Marianna Ciofani, 2023
|
||||
# Sergio Zanchetta <primes2h@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-29 09:44+0000\n"
|
||||
"Last-Translator: Sergio Zanchetta <primes2h@gmail.com>, 2023\n"
|
||||
"Language-Team: Italian (https://app.transifex.com/odoo/teams/41243/it/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: it\n"
|
||||
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Average Rating"
|
||||
msgstr "Valutazione media"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Session Duration"
|
||||
msgstr "Media durata sessione"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Time to Answer"
|
||||
msgstr "Media tempo di risposta"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. session duration"
|
||||
msgstr "Media durata sessione"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. time to answer"
|
||||
msgstr "Media tempo di risposta"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Current"
|
||||
msgstr "Attuale"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Daily Sessions"
|
||||
msgstr "Sessioni giornaliere"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "KPI"
|
||||
msgstr "ICP"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Livechat Support Statistics by Operator"
|
||||
msgstr "Statistiche assistenza livechat per operatore"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Operator"
|
||||
msgstr "Operatore"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Period"
|
||||
msgstr "Periodo"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Previous"
|
||||
msgstr "Precedente"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Rating"
|
||||
msgstr "Valutazione"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions"
|
||||
msgstr "Sessioni"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions by Operator"
|
||||
msgstr "Sessioni per operatore"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Top Operators"
|
||||
msgstr "Migliori operatori"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "last period"
|
||||
msgstr "ultimo periodo"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - current"
|
||||
msgstr "numero di sessioni-attuale"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - previous"
|
||||
msgstr "numero di sessioni-precedenti"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "since last period"
|
||||
msgstr "dall'ultimo periodo"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - current"
|
||||
msgstr "statistiche 2-attuale"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - previous"
|
||||
msgstr "statistiche 2-precedente"
|
||||
|
|
@ -0,0 +1,183 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * spreadsheet_dashboard_im_livechat
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Andy Yiu, 2023
|
||||
# Ryoko Tsuda <ryoko@quartile.co>, 2023
|
||||
# Junko Augias, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-29 09:44+0000\n"
|
||||
"Last-Translator: Junko Augias, 2023\n"
|
||||
"Language-Team: Japanese (https://app.transifex.com/odoo/teams/41243/ja/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ja\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Average Rating"
|
||||
msgstr "平均評価"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Session Duration"
|
||||
msgstr "平均セッション時間"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Time to Answer"
|
||||
msgstr "平均回答所要時間"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. session duration"
|
||||
msgstr "平均セッション時間"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. time to answer"
|
||||
msgstr "平均回答所要時間"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Current"
|
||||
msgstr "現在"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Daily Sessions"
|
||||
msgstr "毎日のセッション"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "KPI"
|
||||
msgstr "KPI"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Livechat Support Statistics by Operator"
|
||||
msgstr "オペレーター別ライブチャットサポート分析"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Operator"
|
||||
msgstr "担当者"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Period"
|
||||
msgstr "期間"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Previous"
|
||||
msgstr "前"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Rating"
|
||||
msgstr "評価"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions"
|
||||
msgstr "セッション"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions by Operator"
|
||||
msgstr "オペレーター別セッション"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Top Operators"
|
||||
msgstr "トップオペレーター"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "last period"
|
||||
msgstr "前期"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - current"
|
||||
msgstr "セッション数 - 現在"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - previous"
|
||||
msgstr "セッション数 - 以前"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "since last period"
|
||||
msgstr "前期以降"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - current"
|
||||
msgstr "ステータス2 - 現在"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - previous"
|
||||
msgstr "ステイタス2 - 以前"
|
||||
|
|
@ -0,0 +1,180 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * spreadsheet_dashboard_im_livechat
|
||||
#
|
||||
# Translators:
|
||||
# Lux Sok <sok.lux@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-29 09:44+0000\n"
|
||||
"Last-Translator: Lux Sok <sok.lux@gmail.com>, 2023\n"
|
||||
"Language-Team: Khmer (https://app.transifex.com/odoo/teams/41243/km/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: km\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Average Rating"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Session Duration"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Time to Answer"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. session duration"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. time to answer"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Current"
|
||||
msgstr "បច្ចុប្បន្ន"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Daily Sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "KPI"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Livechat Support Statistics by Operator"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Operator"
|
||||
msgstr "ប្រតិបត្តការណ៌"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Period"
|
||||
msgstr "រយៈពេល"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Previous"
|
||||
msgstr "មុន"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Rating"
|
||||
msgstr "ការវាយតម្លៃ"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions"
|
||||
msgstr "សម័យ"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions by Operator"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Top Operators"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "last period"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - current"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "since last period"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - current"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - previous"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,182 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * spreadsheet_dashboard_im_livechat
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Sarah Park, 2023
|
||||
# Daye Jeong, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-29 09:44+0000\n"
|
||||
"Last-Translator: Daye Jeong, 2023\n"
|
||||
"Language-Team: Korean (https://app.transifex.com/odoo/teams/41243/ko/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ko\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Average Rating"
|
||||
msgstr "평균 평점"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Session Duration"
|
||||
msgstr "평균 세션 지속시간"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Time to Answer"
|
||||
msgstr "평균 답변 시간"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. session duration"
|
||||
msgstr "평균 세션 지속시간"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. time to answer"
|
||||
msgstr "평균 답변 시간"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Current"
|
||||
msgstr "현재"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Daily Sessions"
|
||||
msgstr "일일 세션"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "KPI"
|
||||
msgstr "KPI"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Livechat Support Statistics by Operator"
|
||||
msgstr "상담사별 실시간 채팅 지원 통계"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Operator"
|
||||
msgstr "운영자"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Period"
|
||||
msgstr "기간"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Previous"
|
||||
msgstr "이전"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Rating"
|
||||
msgstr "평가"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions"
|
||||
msgstr "세션"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions by Operator"
|
||||
msgstr "운영자별 세션"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Top Operators"
|
||||
msgstr "운영자 순위"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "last period"
|
||||
msgstr "이전 기간"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - current"
|
||||
msgstr "세션 수 - 당기"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - previous"
|
||||
msgstr "세션 수 - 전기"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "since last period"
|
||||
msgstr "전기 대비"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - current"
|
||||
msgstr "통계 2 - 당기"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - previous"
|
||||
msgstr "통계 2 - 전기"
|
||||
|
|
@ -0,0 +1,180 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * spreadsheet_dashboard_im_livechat
|
||||
#
|
||||
# Translators:
|
||||
# ສີສຸວັນ ສັງບົວບຸລົມ <sisouvan@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-29 09:44+0000\n"
|
||||
"Last-Translator: ສີສຸວັນ ສັງບົວບຸລົມ <sisouvan@gmail.com>, 2023\n"
|
||||
"Language-Team: Lao (https://app.transifex.com/odoo/teams/41243/lo/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: lo\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Average Rating"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Session Duration"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Time to Answer"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. session duration"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. time to answer"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Current"
|
||||
msgstr "ລາຍຮັບເປັນເງິນ"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Daily Sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "KPI"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Livechat Support Statistics by Operator"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Operator"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Period"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Rating"
|
||||
msgstr "ຈັດລຳດັບ"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions by Operator"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Top Operators"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "last period"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - current"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "since last period"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - current"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - previous"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,183 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * spreadsheet_dashboard_im_livechat
|
||||
#
|
||||
# Translators:
|
||||
# Linas Versada <linaskrisiukenas@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Gailius Kazlauskas <gailius@vialaurea.lt>, 2024
|
||||
# Greta Šeštokė, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-29 09:44+0000\n"
|
||||
"Last-Translator: Greta Šeštokė, 2024\n"
|
||||
"Language-Team: Lithuanian (https://app.transifex.com/odoo/teams/41243/lt/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: lt\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Average Rating"
|
||||
msgstr "Vidutinis įvertinimas"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Session Duration"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Time to Answer"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. session duration"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. time to answer"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Current"
|
||||
msgstr "Esamas"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Daily Sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "KPI"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Livechat Support Statistics by Operator"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Operator"
|
||||
msgstr "Operatorius"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Period"
|
||||
msgstr "Laikotarpis"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Previous"
|
||||
msgstr "Ankstesnis"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Rating"
|
||||
msgstr "Įvertinimas"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions"
|
||||
msgstr "Sesijos"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions by Operator"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Top Operators"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "last period"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - current"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "since last period"
|
||||
msgstr "nuo praėjusio laikotarpio"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - current"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - previous"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,184 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * spreadsheet_dashboard_im_livechat
|
||||
#
|
||||
# Translators:
|
||||
# Arnis Putniņš <arnis@allegro.lv>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# ievaputnina <ievai.putninai@gmail.com>, 2022
|
||||
# Will Sensors, 2025
|
||||
# Armīns Jeltajevs <armins.jeltajevs@gmail.com>, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-29 09:44+0000\n"
|
||||
"Last-Translator: Armīns Jeltajevs <armins.jeltajevs@gmail.com>, 2025\n"
|
||||
"Language-Team: Latvian (https://app.transifex.com/odoo/teams/41243/lv/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: lv\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Average Rating"
|
||||
msgstr "Vidējais vērtējums"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Session Duration"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Time to Answer"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. session duration"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. time to answer"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Current"
|
||||
msgstr "Tekošais"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Daily Sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "KPI"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Livechat Support Statistics by Operator"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Operator"
|
||||
msgstr "Operators"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Period"
|
||||
msgstr "Periods"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Previous"
|
||||
msgstr "Iepriekšējais"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Rating"
|
||||
msgstr "Vērtējums"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions"
|
||||
msgstr "Sessijass"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions by Operator"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Top Operators"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "last period"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - current"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "since last period"
|
||||
msgstr "kopš pēdējā perioda"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - current"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - previous"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,180 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * spreadsheet_dashboard_im_livechat
|
||||
#
|
||||
# Translators:
|
||||
# Niyas Raphy, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-29 09:44+0000\n"
|
||||
"Last-Translator: Niyas Raphy, 2023\n"
|
||||
"Language-Team: Malayalam (https://app.transifex.com/odoo/teams/41243/ml/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ml\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Average Rating"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Session Duration"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Time to Answer"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. session duration"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. time to answer"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Current"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Daily Sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "KPI"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Livechat Support Statistics by Operator"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Operator"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Period"
|
||||
msgstr "പീരീഡ്"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Rating"
|
||||
msgstr "റേറ്റിംഗ്"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions"
|
||||
msgstr "സെഷനുകൾ"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions by Operator"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Top Operators"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "last period"
|
||||
msgstr "അവസാന പീരീഡ്"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - current"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "since last period"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - current"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - previous"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,182 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * spreadsheet_dashboard_im_livechat
|
||||
#
|
||||
# Translators:
|
||||
# Batmunkh Ganbat <batmunkh2522@gmail.com>, 2022
|
||||
# tumenjargal hadbaatar <tumenjargal7903@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-29 09:44+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\n"
|
||||
"Language-Team: Mongolian (https://app.transifex.com/odoo/teams/41243/mn/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: mn\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Average Rating"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Session Duration"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Time to Answer"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. session duration"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. time to answer"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Current"
|
||||
msgstr "Одоогийн"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Daily Sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "KPI"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Livechat Support Statistics by Operator"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Operator"
|
||||
msgstr "Оператор"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Period"
|
||||
msgstr "Үргэлжлэх хугацаа"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Previous"
|
||||
msgstr "Өмнөх"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Rating"
|
||||
msgstr "Үнэлгээ"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions"
|
||||
msgstr "Сэшнүүд"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions by Operator"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Top Operators"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "last period"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - current"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "since last period"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - current"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - previous"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,180 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * spreadsheet_dashboard_im_livechat
|
||||
#
|
||||
# Translators:
|
||||
# Mehjabin Farsana, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-29 09:44+0000\n"
|
||||
"Last-Translator: Mehjabin Farsana, 2023\n"
|
||||
"Language-Team: Malay (https://app.transifex.com/odoo/teams/41243/ms/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ms\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Average Rating"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Session Duration"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Time to Answer"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. session duration"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. time to answer"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Current"
|
||||
msgstr "Semasa"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Daily Sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "KPI"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Livechat Support Statistics by Operator"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Operator"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Period"
|
||||
msgstr "Tempoh"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Previous"
|
||||
msgstr "Sebelumnya"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Rating"
|
||||
msgstr "Penilaian"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions by Operator"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Top Operators"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "last period"
|
||||
msgstr "tempoh terakhir"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - current"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "since last period"
|
||||
msgstr "sejak period lepas"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - current"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - previous"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,182 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * spreadsheet_dashboard_im_livechat
|
||||
#
|
||||
# Translators:
|
||||
# Marius Stedjan <marius@stedjan.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Rune Restad, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-29 09:44+0000\n"
|
||||
"Last-Translator: Rune Restad, 2025\n"
|
||||
"Language-Team: Norwegian Bokmål (https://app.transifex.com/odoo/teams/41243/nb/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: nb\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Average Rating"
|
||||
msgstr "Gjennomsnittlig rating"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Session Duration"
|
||||
msgstr "Gj.snittlig sesjonsvarighet"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Time to Answer"
|
||||
msgstr "Gj.snittlig tid til svar"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. session duration"
|
||||
msgstr "Gj.snittlig sesjonsvarighet"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. time to answer"
|
||||
msgstr "Gj.snittlig tid til svar"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Current"
|
||||
msgstr "Nåværende"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Daily Sessions"
|
||||
msgstr "Daglige sesjoner"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "KPI"
|
||||
msgstr "KPI"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Livechat Support Statistics by Operator"
|
||||
msgstr "Statistikk for livechat-støtte etter operatør"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Operator"
|
||||
msgstr "Operatør"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Period"
|
||||
msgstr "Periode"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Previous"
|
||||
msgstr "Tilbake"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Rating"
|
||||
msgstr "Vurdering"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions"
|
||||
msgstr "Økter"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions by Operator"
|
||||
msgstr "Sesjoner pr operatør"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Top Operators"
|
||||
msgstr "Topp operatør"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "last period"
|
||||
msgstr "siste periode"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - current"
|
||||
msgstr "sesjonsantall - nåværende"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - previous"
|
||||
msgstr "sesjonsantall - forrige"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "since last period"
|
||||
msgstr "siden forrige periode"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - current"
|
||||
msgstr "stats 2 - nåværende"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - previous"
|
||||
msgstr "stats 2 - forrige"
|
||||
|
|
@ -0,0 +1,182 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * spreadsheet_dashboard_im_livechat
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Erwin van der Ploeg <erwin@odooexperts.nl>, 2022
|
||||
# Jolien De Paepe, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-29 09:44+0000\n"
|
||||
"Last-Translator: Jolien De Paepe, 2023\n"
|
||||
"Language-Team: Dutch (https://app.transifex.com/odoo/teams/41243/nl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: nl\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Average Rating"
|
||||
msgstr "Gemiddelde beoordeling"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Session Duration"
|
||||
msgstr "Gem. sessie duur"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Time to Answer"
|
||||
msgstr "Gem. tijd om te reageren"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. session duration"
|
||||
msgstr "Gem. sessie duur"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. time to answer"
|
||||
msgstr "Gem. tijd om te reageren"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Current"
|
||||
msgstr "Huidig"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Daily Sessions"
|
||||
msgstr "Dagelijkse sessies"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "KPI"
|
||||
msgstr "KPI"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Livechat Support Statistics by Operator"
|
||||
msgstr "Livechat ondersteuningsstatistieken per Operator"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Operator"
|
||||
msgstr "Operator"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Period"
|
||||
msgstr "Periode"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Previous"
|
||||
msgstr "Vorige"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Rating"
|
||||
msgstr "Beoordeling"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions"
|
||||
msgstr "Sessies"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions by Operator"
|
||||
msgstr "Sessies per Operator"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Top Operators"
|
||||
msgstr "Topoperatoren"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "last period"
|
||||
msgstr "laatste periode"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - current"
|
||||
msgstr "aantal sessies - huidig"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - previous"
|
||||
msgstr "aantal sessies - vorige"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "since last period"
|
||||
msgstr "sinds vorige periode"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - current"
|
||||
msgstr "stats 2 - huidig"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - previous"
|
||||
msgstr "stats 2 - vorige"
|
||||
|
|
@ -0,0 +1,176 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * spreadsheet_dashboard_im_livechat
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-29 09:44+0000\n"
|
||||
"Language-Team: Norwegian (https://app.transifex.com/odoo/teams/41243/no/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: no\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Average Rating"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Session Duration"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Time to Answer"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. session duration"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. time to answer"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Current"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Daily Sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "KPI"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Livechat Support Statistics by Operator"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Operator"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Period"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Rating"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions by Operator"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Top Operators"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "last period"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - current"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "since last period"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - current"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - previous"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,186 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * spreadsheet_dashboard_im_livechat
|
||||
#
|
||||
# Translators:
|
||||
# Mariusz, 2022
|
||||
# Judyta Kaźmierczak <judyta.kazmierczak@openglobe.pl>, 2022
|
||||
# Paweł Wodyński <pw@myodoo.pl>, 2022
|
||||
# Dariusz Żbikowski <darek@krokus.com.pl>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Krzysztof Przygoda, 2022
|
||||
# Maksym <ms@myodoo.pl>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-29 09:44+0000\n"
|
||||
"Last-Translator: Maksym <ms@myodoo.pl>, 2023\n"
|
||||
"Language-Team: Polish (https://app.transifex.com/odoo/teams/41243/pl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: pl\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Average Rating"
|
||||
msgstr "Średnia ocena"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Session Duration"
|
||||
msgstr "Śr. czas trwania sesji"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Time to Answer"
|
||||
msgstr "Sr. czas na odpowiedź"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. session duration"
|
||||
msgstr "Śr. czas trwania sesji"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. time to answer"
|
||||
msgstr "Śr. czas na odpowiedź"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Current"
|
||||
msgstr "Bieżące"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Daily Sessions"
|
||||
msgstr "Sesje dzienne"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "KPI"
|
||||
msgstr "KPI"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Livechat Support Statistics by Operator"
|
||||
msgstr "Statystki wsparcia dla czatu według operatora"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Operator"
|
||||
msgstr "Operator"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Period"
|
||||
msgstr "Okres"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Previous"
|
||||
msgstr "Poprzedni"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Rating"
|
||||
msgstr "Ocena"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions"
|
||||
msgstr "Sesje"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions by Operator"
|
||||
msgstr "Sesje według operatora"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Top Operators"
|
||||
msgstr "Najlepsi operatorzy"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "last period"
|
||||
msgstr "ostatni okres"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - current"
|
||||
msgstr "liczba sesji - aktualna"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - previous"
|
||||
msgstr "liczba sesji - poprzednia"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "since last period"
|
||||
msgstr "od ostatniego okresu"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - current"
|
||||
msgstr "statystyki 2 - aktualne"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - previous"
|
||||
msgstr "statystyki 2 - poprzednie"
|
||||
|
|
@ -0,0 +1,185 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * spreadsheet_dashboard_im_livechat
|
||||
#
|
||||
# Translators:
|
||||
# Pedro Filipe <pedro2.10@hotmail.com>, 2022
|
||||
# Nuno Silva <nuno.silva@arxi.pt>, 2022
|
||||
# Manuela Silva <mmsrs@sky.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Reinaldo Ramos <reinaldo.ramos@arxi.pt>, 2022
|
||||
# Rita Bastos, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-29 09:44+0000\n"
|
||||
"Last-Translator: Rita Bastos, 2024\n"
|
||||
"Language-Team: Portuguese (https://app.transifex.com/odoo/teams/41243/pt/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: pt\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Average Rating"
|
||||
msgstr "Classificação Média"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Session Duration"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Time to Answer"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. session duration"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. time to answer"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Current"
|
||||
msgstr "Atual"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Daily Sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "KPI"
|
||||
msgstr "KPI"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Livechat Support Statistics by Operator"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Operator"
|
||||
msgstr "Operador"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Period"
|
||||
msgstr "Período"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Previous"
|
||||
msgstr "Anterior"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Rating"
|
||||
msgstr "Classificação"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions"
|
||||
msgstr "Sessões"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions by Operator"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Top Operators"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "last period"
|
||||
msgstr "último perído"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - current"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "since last period"
|
||||
msgstr "desde o período anterior"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - current"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - previous"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,183 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * spreadsheet_dashboard_im_livechat
|
||||
#
|
||||
# Translators:
|
||||
# Marcel Savegnago <marcel.savegnago@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Kevilyn Rosa, 2023
|
||||
# a75f12d3d37ea5bf159c4b3e85eb30e7_0fa6927, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-29 09:44+0000\n"
|
||||
"Last-Translator: a75f12d3d37ea5bf159c4b3e85eb30e7_0fa6927, 2023\n"
|
||||
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/odoo/teams/41243/pt_BR/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: pt_BR\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Average Rating"
|
||||
msgstr "Avaliação média"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Session Duration"
|
||||
msgstr "Duração média da sessão"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Time to Answer"
|
||||
msgstr "Tempo médio para resposta"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. session duration"
|
||||
msgstr "Duração média da sessão"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. time to answer"
|
||||
msgstr "Tempo médio para resposta"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Current"
|
||||
msgstr "Atual"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Daily Sessions"
|
||||
msgstr "Sessões diárias"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "KPI"
|
||||
msgstr "KPI"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Livechat Support Statistics by Operator"
|
||||
msgstr "Estatísticas de suporte do Chat ao Vivo por operador"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Operator"
|
||||
msgstr "Operador"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Period"
|
||||
msgstr "Período"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Previous"
|
||||
msgstr "Anterior"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Rating"
|
||||
msgstr "Avaliação"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions"
|
||||
msgstr "Sessões"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions by Operator"
|
||||
msgstr "Sessões por operador"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Top Operators"
|
||||
msgstr "Principais operadores"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "last period"
|
||||
msgstr "último período"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - current"
|
||||
msgstr "contagem de sessões - atuais"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - previous"
|
||||
msgstr "contagem de sessões - anterior"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "since last period"
|
||||
msgstr "desde o período anterior"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - current"
|
||||
msgstr "estatísticas 2 - atual"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - previous"
|
||||
msgstr "estatísticas 2 - anteriores"
|
||||
|
|
@ -0,0 +1,183 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * spreadsheet_dashboard_im_livechat
|
||||
#
|
||||
# Translators:
|
||||
# Dorin Hongu <dhongu@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Cozmin Candea <office@terrabit.ro>, 2023
|
||||
# Alin Miclea, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-29 09:44+0000\n"
|
||||
"Last-Translator: Alin Miclea, 2024\n"
|
||||
"Language-Team: Romanian (https://app.transifex.com/odoo/teams/41243/ro/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ro\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Average Rating"
|
||||
msgstr "Rating mediu"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Session Duration"
|
||||
msgstr "Durata Medie Sesiune"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Time to Answer"
|
||||
msgstr "Timp mediu de răspuns"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. session duration"
|
||||
msgstr "Durata medie sesiune"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. time to answer"
|
||||
msgstr "Timp mediu de răspuns"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Current"
|
||||
msgstr "Curent(ă)"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Daily Sessions"
|
||||
msgstr "Sesiuni zilnice"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "KPI"
|
||||
msgstr "KPI"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Livechat Support Statistics by Operator"
|
||||
msgstr "Statistici de asistență livechat în funcție de operator"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Operator"
|
||||
msgstr "Operator"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Period"
|
||||
msgstr "Perioadă"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Previous"
|
||||
msgstr "Anterior"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Rating"
|
||||
msgstr "Evaluare"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions"
|
||||
msgstr "Sesiuni"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions by Operator"
|
||||
msgstr "Sesiuni în funcție de operator"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Top Operators"
|
||||
msgstr "Top Operatori"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "last period"
|
||||
msgstr "ultima perioadă"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - current"
|
||||
msgstr "număr de sesiuni - curente"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - previous"
|
||||
msgstr "numărul de sesiuni - anterioare"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "since last period"
|
||||
msgstr "de la ultima perioadă"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - current"
|
||||
msgstr "statistici 2 - curente"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - previous"
|
||||
msgstr "statistici 2 - anterioare"
|
||||
|
|
@ -0,0 +1,184 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * spreadsheet_dashboard_im_livechat
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# ILMIR <karamov@it-projects.info>, 2022
|
||||
# Сергей Шебанин <sergey@shebanin.ru>, 2022
|
||||
# Alena Vlasova, 2023
|
||||
# alenafairy, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-29 09:44+0000\n"
|
||||
"Last-Translator: alenafairy, 2023\n"
|
||||
"Language-Team: Russian (https://app.transifex.com/odoo/teams/41243/ru/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ru\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Average Rating"
|
||||
msgstr "Средний показатель"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Session Duration"
|
||||
msgstr "Средняя продолжительность сессии"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Time to Answer"
|
||||
msgstr "Среднее время для ответа"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. session duration"
|
||||
msgstr "Средняя продолжительность сессии"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. time to answer"
|
||||
msgstr "Среднее время для ответа"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Current"
|
||||
msgstr "Текущий"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Daily Sessions"
|
||||
msgstr "Ежедневные сессии"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "KPI"
|
||||
msgstr "KPI"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Livechat Support Statistics by Operator"
|
||||
msgstr "Статистика поддержки в онлайн режиме по операторам"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Operator"
|
||||
msgstr "Оператор"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Period"
|
||||
msgstr "Период"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Previous"
|
||||
msgstr "Назад"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Rating"
|
||||
msgstr "Оценка"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions"
|
||||
msgstr "Сессии"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions by Operator"
|
||||
msgstr "Сессии по оператору"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Top Operators"
|
||||
msgstr "Ведущие операторы"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "last period"
|
||||
msgstr "прошлый период"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - current"
|
||||
msgstr "количество сеансов - текущее"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - previous"
|
||||
msgstr "количество сеансов - предыдущее"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "since last period"
|
||||
msgstr "с прошлого периода"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - current"
|
||||
msgstr "статистика 2 - текущая"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - previous"
|
||||
msgstr "статистика 2 - предыдущая"
|
||||
|
|
@ -0,0 +1,182 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * spreadsheet_dashboard_im_livechat
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Damian Brencic <brencicdamian12313@gmail.com>, 2023
|
||||
# Tomáš Píšek, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-29 09:44+0000\n"
|
||||
"Last-Translator: Tomáš Píšek, 2025\n"
|
||||
"Language-Team: Slovak (https://app.transifex.com/odoo/teams/41243/sk/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sk\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Average Rating"
|
||||
msgstr "Priemerné hodnotenie"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Session Duration"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Time to Answer"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. session duration"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. time to answer"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Current"
|
||||
msgstr "Aktuálne"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Daily Sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "KPI"
|
||||
msgstr "KPI"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Livechat Support Statistics by Operator"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Operator"
|
||||
msgstr "Operátor"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Period"
|
||||
msgstr "Obdobie"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Previous"
|
||||
msgstr "Predchádzajúce"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Rating"
|
||||
msgstr "Hodnotenie"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions"
|
||||
msgstr "Relácie"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions by Operator"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Top Operators"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "last period"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - current"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "since last period"
|
||||
msgstr "od posledného obdobia"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - current"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - previous"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,183 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * spreadsheet_dashboard_im_livechat
|
||||
#
|
||||
# Translators:
|
||||
# Jasmina Macur <jasmina@hbs.si>, 2022
|
||||
# Matjaz Mozetic <m.mozetic@matmoz.si>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Tomaž Jug <tomaz@editor.si>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-29 09:44+0000\n"
|
||||
"Last-Translator: Tomaž Jug <tomaz@editor.si>, 2023\n"
|
||||
"Language-Team: Slovenian (https://app.transifex.com/odoo/teams/41243/sl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sl\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Average Rating"
|
||||
msgstr "Povprečna ocena"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Session Duration"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Time to Answer"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. session duration"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. time to answer"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Current"
|
||||
msgstr "Trenutno"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Daily Sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "KPI"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Livechat Support Statistics by Operator"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Operator"
|
||||
msgstr "Operater"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Period"
|
||||
msgstr "Obdobje"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Previous"
|
||||
msgstr "Nazaj"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Rating"
|
||||
msgstr "Ocena"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions"
|
||||
msgstr "Seje"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions by Operator"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Top Operators"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "last period"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - current"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "since last period"
|
||||
msgstr "od zadnjega obdobja"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - current"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - previous"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,176 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * spreadsheet_dashboard_im_livechat
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2024-02-06 13:32+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Average Rating"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Session Duration"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Time to Answer"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. session duration"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. time to answer"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Current"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Daily Sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "KPI"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Livechat Support Statistics by Operator"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Operator"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Period"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Rating"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions by Operator"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Top Operators"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "last period"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - current"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "since last period"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - current"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - previous"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,176 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * spreadsheet_dashboard_im_livechat
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-29 09:44+0000\n"
|
||||
"Language-Team: Albanian (https://app.transifex.com/odoo/teams/41243/sq/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sq\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Average Rating"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Session Duration"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Time to Answer"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. session duration"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. time to answer"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Current"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Daily Sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "KPI"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Livechat Support Statistics by Operator"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Operator"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Period"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Rating"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions by Operator"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Top Operators"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "last period"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - current"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "since last period"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - current"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - previous"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,181 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * spreadsheet_dashboard_im_livechat
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Dragan Vukosavljevic <dragan.vukosavljevic@gmail.com>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-29 09:44+0000\n"
|
||||
"Last-Translator: Dragan Vukosavljevic <dragan.vukosavljevic@gmail.com>, 2022\n"
|
||||
"Language-Team: Serbian (https://app.transifex.com/odoo/teams/41243/sr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sr\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: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Average Rating"
|
||||
msgstr "Prosečna ocena"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Session Duration"
|
||||
msgstr "Prosečno trajanje sesije"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Time to Answer"
|
||||
msgstr "Prosečno vreme za odgovor"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. session duration"
|
||||
msgstr "Prosečno trajanje sesije"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. time to answer"
|
||||
msgstr "Prosečno vreme za odgovor"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Current"
|
||||
msgstr "Trenutni"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Daily Sessions"
|
||||
msgstr "Dnevne sesije"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "KPI"
|
||||
msgstr "KPI"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Livechat Support Statistics by Operator"
|
||||
msgstr "Statistika Livechat podrške po operateru"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Operator"
|
||||
msgstr "Operator"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Period"
|
||||
msgstr "Period"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Previous"
|
||||
msgstr "Prethodno"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Rating"
|
||||
msgstr "Ocene"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions"
|
||||
msgstr "Sesije"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions by Operator"
|
||||
msgstr "Sesije po operateru"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Top Operators"
|
||||
msgstr "Najbolji operateri"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "last period"
|
||||
msgstr "prethodni period"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - current"
|
||||
msgstr "brojač sesija - trenutno"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - previous"
|
||||
msgstr "brojač sesija - prethodno"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "since last period"
|
||||
msgstr "od prošlog perioda"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - current"
|
||||
msgstr "stats 2 - trenutno"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - previous"
|
||||
msgstr "stats 2 - prethodno"
|
||||
|
|
@ -0,0 +1,186 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * spreadsheet_dashboard_im_livechat
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Kristoffer Grundström <lovaren@gmail.com>, 2022
|
||||
# Anders Wallenquist <anders.wallenquist@vertel.se>, 2022
|
||||
# Chrille Hedberg <hedberg.chrille@gmail.com>, 2022
|
||||
# Kim Asplund <kim.asplund@gmail.com>, 2022
|
||||
# Lasse L, 2023
|
||||
# Jakob Krabbe <jakob.krabbe@vertel.se>, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-29 09:44+0000\n"
|
||||
"Last-Translator: Jakob Krabbe <jakob.krabbe@vertel.se>, 2024\n"
|
||||
"Language-Team: Swedish (https://app.transifex.com/odoo/teams/41243/sv/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sv\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Average Rating"
|
||||
msgstr "Snittbetyg"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Session Duration"
|
||||
msgstr "Snittbetyg"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Time to Answer"
|
||||
msgstr "Genomsnittlig tid att svara"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. session duration"
|
||||
msgstr "Genomsnittlig sessionslängd"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. time to answer"
|
||||
msgstr "Genomsnittlig tid att svara"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Current"
|
||||
msgstr "Aktuellt"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Daily Sessions"
|
||||
msgstr "Dagliga sessioner"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "KPI"
|
||||
msgstr "Nyckeltalsindikator"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Livechat Support Statistics by Operator"
|
||||
msgstr "Statistik för Livechat-support per operatör"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Operator"
|
||||
msgstr "Operatör"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Period"
|
||||
msgstr "Period"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Previous"
|
||||
msgstr "Föregående"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Rating"
|
||||
msgstr "Omdöme"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions"
|
||||
msgstr "Sessioner"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions by Operator"
|
||||
msgstr "Sessioner per operatör"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Top Operators"
|
||||
msgstr "De bästa operatörerna"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "last period"
|
||||
msgstr "förra perioden"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - current"
|
||||
msgstr "antal sessioner - nuvarande"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - previous"
|
||||
msgstr "antal sessioner - tidigare"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "since last period"
|
||||
msgstr "sedan föregående period"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - current"
|
||||
msgstr "statistik 2 - aktuell"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - previous"
|
||||
msgstr "statistik 2 - tidigare"
|
||||
|
|
@ -0,0 +1,176 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * spreadsheet_dashboard_im_livechat
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-29 09:44+0000\n"
|
||||
"Language-Team: Swahili (https://app.transifex.com/odoo/teams/41243/sw/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sw\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Average Rating"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Session Duration"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Time to Answer"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. session duration"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. time to answer"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Current"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Daily Sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "KPI"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Livechat Support Statistics by Operator"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Operator"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Period"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Rating"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions by Operator"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Top Operators"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "last period"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - current"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "since last period"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - current"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - previous"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,176 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * spreadsheet_dashboard_im_livechat
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-29 09:44+0000\n"
|
||||
"Language-Team: Tamil (https://app.transifex.com/odoo/teams/41243/ta/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ta\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Average Rating"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Session Duration"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Time to Answer"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. session duration"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. time to answer"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Current"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Daily Sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "KPI"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Livechat Support Statistics by Operator"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Operator"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Period"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Rating"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions by Operator"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Top Operators"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "last period"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - current"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "since last period"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - current"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - previous"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,182 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * spreadsheet_dashboard_im_livechat
|
||||
#
|
||||
# Translators:
|
||||
# Wichanon Jamwutthipreecha, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Rasareeyar Lappiam, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-29 09:44+0000\n"
|
||||
"Last-Translator: Rasareeyar Lappiam, 2023\n"
|
||||
"Language-Team: Thai (https://app.transifex.com/odoo/teams/41243/th/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: th\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Average Rating"
|
||||
msgstr "คะแนนเฉลี่ย"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Session Duration"
|
||||
msgstr "ระยะเวลาเซสชันเฉลี่ย"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Time to Answer"
|
||||
msgstr "เวลาในการตอบเฉลี่ย"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. session duration"
|
||||
msgstr "ระยะเวลาเซสชันเฉลี่ย"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. time to answer"
|
||||
msgstr "ระยะเวลาในการตอบเฉลี่ย"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Current"
|
||||
msgstr "ปัจจุบัน"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Daily Sessions"
|
||||
msgstr "เซสชันรายวัน"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "KPI"
|
||||
msgstr "KPI"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Livechat Support Statistics by Operator"
|
||||
msgstr "สถิติการช่วยเหลือไลฟ์แชทโดยผู้ให้บริการ"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Operator"
|
||||
msgstr "ผู้ปฏิบัติการ"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Period"
|
||||
msgstr "ช่วงเวลา"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Previous"
|
||||
msgstr "ก่อนหน้า"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Rating"
|
||||
msgstr "การให้คะแนน"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions"
|
||||
msgstr "เซสชั่น"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions by Operator"
|
||||
msgstr "เซสชันโดยตัวดำเนินการ"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Top Operators"
|
||||
msgstr "ผู้ดำเนินการยอดนิยม"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "last period"
|
||||
msgstr "ช่วงสุดท้าย"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - current"
|
||||
msgstr "จำนวนเซสชัน - ปัจจุบัน"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - previous"
|
||||
msgstr "จำนวนเซสชัน - ก่อนหน้า"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "since last period"
|
||||
msgstr "ตั้งแต่ช่วงที่แล้ว"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - current"
|
||||
msgstr "สถิติ 2 - ปัจจุบัน"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - previous"
|
||||
msgstr "สถิติ 2 - ก่อนหน้า"
|
||||
|
|
@ -0,0 +1,184 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * spreadsheet_dashboard_im_livechat
|
||||
#
|
||||
# Translators:
|
||||
# Levent Karakaş <levent@mektup.at>, 2022
|
||||
# Murat Kaplan <muratk@projetgrup.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Halil, 2023
|
||||
# Deniz Guvener_Odoo <degu@odoo.com>, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-29 09:44+0000\n"
|
||||
"Last-Translator: Deniz Guvener_Odoo <degu@odoo.com>, 2025\n"
|
||||
"Language-Team: Turkish (https://app.transifex.com/odoo/teams/41243/tr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: tr\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Average Rating"
|
||||
msgstr "Ortalama puanı"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Session Duration"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Time to Answer"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. session duration"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. time to answer"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Current"
|
||||
msgstr "Güncel Değer"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Daily Sessions"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "KPI"
|
||||
msgstr "Temel Performans Göstergesi"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Livechat Support Statistics by Operator"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Operator"
|
||||
msgstr "Operatör"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Period"
|
||||
msgstr "Dönem"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Previous"
|
||||
msgstr "Önceki"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Rating"
|
||||
msgstr "Değerlendirme"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions"
|
||||
msgstr "Oturumlar"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions by Operator"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Top Operators"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "last period"
|
||||
msgstr "son dönem"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - current"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - previous"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "since last period"
|
||||
msgstr "son dönemden bu yana"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - current"
|
||||
msgstr ""
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - previous"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,181 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * spreadsheet_dashboard_im_livechat
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Alina Lisnenko <alina.lisnenko@erp.co.ua>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-29 09:44+0000\n"
|
||||
"Last-Translator: Alina Lisnenko <alina.lisnenko@erp.co.ua>, 2023\n"
|
||||
"Language-Team: Ukrainian (https://app.transifex.com/odoo/teams/41243/uk/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: uk\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Average Rating"
|
||||
msgstr "Середня оцінка"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Session Duration"
|
||||
msgstr "Сер. тривалість сесії"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Time to Answer"
|
||||
msgstr "Сер. час на відповідь"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. session duration"
|
||||
msgstr "Сер. тривалість сесії"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. time to answer"
|
||||
msgstr "Сер. час на відповідь"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Current"
|
||||
msgstr "Поточний"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Daily Sessions"
|
||||
msgstr "Щоденні сесії"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "KPI"
|
||||
msgstr "KPI"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Livechat Support Statistics by Operator"
|
||||
msgstr "Статистика підтримки Livechat за операторами"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Operator"
|
||||
msgstr "Оператор"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Period"
|
||||
msgstr "Період"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Previous"
|
||||
msgstr "Попередній"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Rating"
|
||||
msgstr "Оцінка"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions"
|
||||
msgstr "Сесії"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions by Operator"
|
||||
msgstr "Сесії за оператором"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Top Operators"
|
||||
msgstr "Топ операторів"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "last period"
|
||||
msgstr "останній період"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - current"
|
||||
msgstr "підрахунок сесій - поточний"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - previous"
|
||||
msgstr "підрахунок сесій - попередній"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "since last period"
|
||||
msgstr "з попереднього періоду"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - current"
|
||||
msgstr "статус 2 - поточний"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - previous"
|
||||
msgstr "статус 2 - попередній"
|
||||
|
|
@ -0,0 +1,181 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * spreadsheet_dashboard_im_livechat
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Thi Huong Nguyen, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-29 09:44+0000\n"
|
||||
"Last-Translator: Thi Huong Nguyen, 2025\n"
|
||||
"Language-Team: Vietnamese (https://app.transifex.com/odoo/teams/41243/vi/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: vi\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Average Rating"
|
||||
msgstr "Đánh giá trung bình"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Session Duration"
|
||||
msgstr "Thời lượng phiên TB"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Time to Answer"
|
||||
msgstr "Thời gian TB để trả lời"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. session duration"
|
||||
msgstr "Thời lượng phiên TB"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. time to answer"
|
||||
msgstr "Thời gian TB để trả lời"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Current"
|
||||
msgstr "Hiện tại"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Daily Sessions"
|
||||
msgstr "Phiên hàng ngày"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "KPI"
|
||||
msgstr "KPI"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Livechat Support Statistics by Operator"
|
||||
msgstr "Thống kê hỗ trợ trò chuyện trực tiếp theo tổng đài viên"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Operator"
|
||||
msgstr "Tổng đài viên"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Period"
|
||||
msgstr "Chu kỳ"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Previous"
|
||||
msgstr "Trước đó"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Rating"
|
||||
msgstr "Đánh giá"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions"
|
||||
msgstr "Phiên"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions by Operator"
|
||||
msgstr "Phiên theo tổng đài viên"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Top Operators"
|
||||
msgstr "Top tổng đài viên"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "last period"
|
||||
msgstr "giai đoạn trước"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - current"
|
||||
msgstr "số phiên - hiện tại"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - previous"
|
||||
msgstr "số phiên - trước đó"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "since last period"
|
||||
msgstr "kể từ giai đoạn trước"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - current"
|
||||
msgstr "thống kê 2 - hiện tại"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - previous"
|
||||
msgstr "thống kê 2 - trước đó"
|
||||
|
|
@ -0,0 +1,182 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * spreadsheet_dashboard_im_livechat
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Raymond Yu <cl_yu@hotmail.com>, 2022
|
||||
# digitalliuzg8888, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-29 09:44+0000\n"
|
||||
"Last-Translator: digitalliuzg8888, 2022\n"
|
||||
"Language-Team: Chinese (China) (https://app.transifex.com/odoo/teams/41243/zh_CN/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: zh_CN\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Average Rating"
|
||||
msgstr "平均评价"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Session Duration"
|
||||
msgstr "平均会话持续时间"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Time to Answer"
|
||||
msgstr "平均 回答时间"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. session duration"
|
||||
msgstr "平均会话持续时间"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. time to answer"
|
||||
msgstr "平均 回答时间"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Current"
|
||||
msgstr "当前"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Daily Sessions"
|
||||
msgstr "日常会话"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "KPI"
|
||||
msgstr "KPI"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Livechat Support Statistics by Operator"
|
||||
msgstr "按操作员分类的即时聊天支持统计"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Operator"
|
||||
msgstr "操作员"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Period"
|
||||
msgstr "期间"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Previous"
|
||||
msgstr "上一页"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Rating"
|
||||
msgstr "点评"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions"
|
||||
msgstr "会话"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions by Operator"
|
||||
msgstr "操作会话"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Top Operators"
|
||||
msgstr "高级运营"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "last period"
|
||||
msgstr "上期"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - current"
|
||||
msgstr "会话计数-当前"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - previous"
|
||||
msgstr "会议计数-以前"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "since last period"
|
||||
msgstr "从上期以来"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - current"
|
||||
msgstr "统计 2 - 当前"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - previous"
|
||||
msgstr "统计 2 - 以前"
|
||||
|
|
@ -0,0 +1,183 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * spreadsheet_dashboard_im_livechat
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# 敬雲 林 <chingyun@yuanchih-consult.com>, 2023
|
||||
# Wil Odoo, 2024
|
||||
# Tony Ng, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:32+0000\n"
|
||||
"PO-Revision-Date: 2022-09-29 09:44+0000\n"
|
||||
"Last-Translator: Tony Ng, 2025\n"
|
||||
"Language-Team: Chinese (Taiwan) (https://app.transifex.com/odoo/teams/41243/zh_TW/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: zh_TW\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Average Rating"
|
||||
msgstr "平均評分"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Session Duration"
|
||||
msgstr "平均工作階段時間長度"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. Time to Answer"
|
||||
msgstr "平均回答時間"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. session duration"
|
||||
msgstr "平均對話持續時間"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Avg. time to answer"
|
||||
msgstr "平均回答時間"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Current"
|
||||
msgstr "目前"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Daily Sessions"
|
||||
msgstr "每日對話"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "KPI"
|
||||
msgstr "KPI"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Livechat Support Statistics by Operator"
|
||||
msgstr "按運營商劃分的實時對話支持統計數據"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Operator"
|
||||
msgstr "操作員"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Period"
|
||||
msgstr "會計期間"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Previous"
|
||||
msgstr "前一頁"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Rating"
|
||||
msgstr "評分"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions"
|
||||
msgstr "營業點"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Sessions by Operator"
|
||||
msgstr "按操作員劃分的對話"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "Top Operators"
|
||||
msgstr "客服排行"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "last period"
|
||||
msgstr "上個時段"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - current"
|
||||
msgstr "對話數 - 當前"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "sessions count - previous"
|
||||
msgstr "對話數 - 之前"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "since last period"
|
||||
msgstr "自上一期以來"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - current"
|
||||
msgstr "統計數據 2 - 當前"
|
||||
|
||||
#. module: spreadsheet_dashboard_im_livechat
|
||||
#. odoo-javascript
|
||||
#: code:addons/spreadsheet_dashboard_im_livechat/data/files/livechat_dashboard.json:0
|
||||
#, python-format
|
||||
msgid "stats 2 - previous"
|
||||
msgstr "統計數據 2 - 上一個"
|
||||
Loading…
Add table
Add a link
Reference in a new issue