Initial commit: Core packages
49
odoo-bringout-oca-ocb-board/README.md
Normal file
|
|
@ -0,0 +1,49 @@
|
|||
# Dashboards
|
||||
|
||||
|
||||
Lets the user create a custom dashboard.
|
||||
========================================
|
||||
|
||||
Allows users to create custom dashboard.
|
||||
|
||||
|
||||
## Installation
|
||||
|
||||
```bash
|
||||
pip install odoo-bringout-oca-ocb-board
|
||||
```
|
||||
|
||||
## Dependencies
|
||||
|
||||
This addon depends on:
|
||||
- spreadsheet_dashboard
|
||||
|
||||
## Manifest Information
|
||||
|
||||
- **Name**: Dashboards
|
||||
- **Version**: 1.0
|
||||
- **Category**: Productivity
|
||||
- **License**: LGPL-3
|
||||
- **Installable**: False
|
||||
|
||||
## Source
|
||||
|
||||
Based on [OCA/OCB](https://github.com/OCA/OCB) branch 16.0, addon `board`.
|
||||
|
||||
## License
|
||||
|
||||
This package maintains the original LGPL-3 license from the upstream Odoo project.
|
||||
|
||||
## Documentation
|
||||
|
||||
- Overview: doc/OVERVIEW.md
|
||||
- Architecture: doc/ARCHITECTURE.md
|
||||
- Models: doc/MODELS.md
|
||||
- Controllers: doc/CONTROLLERS.md
|
||||
- Wizards: doc/WIZARDS.md
|
||||
- Install: doc/INSTALL.md
|
||||
- Usage: doc/USAGE.md
|
||||
- Configuration: doc/CONFIGURATION.md
|
||||
- Dependencies: doc/DEPENDENCIES.md
|
||||
- Troubleshooting: doc/TROUBLESHOOTING.md
|
||||
- FAQ: doc/FAQ.md
|
||||
5
odoo-bringout-oca-ocb-board/board/__init__.py
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import controllers
|
||||
from . import models
|
||||
37
odoo-bringout-oca-ocb-board/board/__manifest__.py
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
{
|
||||
'name': 'Dashboards',
|
||||
'version': '1.0',
|
||||
'category': 'Productivity',
|
||||
'sequence': 225,
|
||||
'summary': 'Build your own dashboards',
|
||||
'description': """
|
||||
Lets the user create a custom dashboard.
|
||||
========================================
|
||||
|
||||
Allows users to create custom dashboard.
|
||||
""",
|
||||
'depends': ['spreadsheet_dashboard'],
|
||||
'data': [
|
||||
'security/ir.model.access.csv',
|
||||
'views/board_views.xml',
|
||||
],
|
||||
'application': False,
|
||||
'assets': {
|
||||
'web.assets_backend': [
|
||||
'board/static/src/**/*.scss',
|
||||
'board/static/src/**/*.js',
|
||||
'board/static/src/**/*.xml',
|
||||
],
|
||||
'web.qunit_suite_tests': [
|
||||
'board/static/tests/**/*',
|
||||
('remove', 'board/static/tests/mobile/**/*'), # mobile test
|
||||
],
|
||||
'web.qunit_mobile_suite_tests': [
|
||||
'board/static/tests/mobile/**/*',
|
||||
],
|
||||
},
|
||||
'license': 'LGPL-3',
|
||||
}
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import main
|
||||
44
odoo-bringout-oca-ocb-board/board/controllers/main.py
Normal file
|
|
@ -0,0 +1,44 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from lxml import etree as ElementTree
|
||||
|
||||
from odoo.http import Controller, route, request
|
||||
|
||||
|
||||
class Board(Controller):
|
||||
|
||||
@route('/board/add_to_dashboard', type='json', auth='user')
|
||||
def add_to_dashboard(self, action_id, context_to_save, domain, view_mode, name=''):
|
||||
# Retrieve the 'My Dashboard' action from its xmlid
|
||||
action = request.env.ref('board.open_board_my_dash_action').sudo()
|
||||
|
||||
if action and action['res_model'] == 'board.board' and action['views'][0][1] == 'form' and action_id:
|
||||
# Maybe should check the content instead of model board.board ?
|
||||
view_id = action['views'][0][0]
|
||||
board_view = request.env['board.board'].get_view(view_id, 'form')
|
||||
if board_view and 'arch' in board_view:
|
||||
board_arch = ElementTree.fromstring(board_view['arch'])
|
||||
column = board_arch.find('./board/column')
|
||||
if column is not None:
|
||||
# We don't want to save allowed_company_ids
|
||||
# Otherwise on dashboard, the multi-company widget does not filter the records
|
||||
if 'allowed_company_ids' in context_to_save:
|
||||
context_to_save.pop('allowed_company_ids')
|
||||
new_action = ElementTree.Element('action', {
|
||||
'name': str(action_id),
|
||||
'string': name,
|
||||
'view_mode': view_mode,
|
||||
'context': str(context_to_save),
|
||||
'domain': str(domain)
|
||||
})
|
||||
column.insert(0, new_action)
|
||||
arch = ElementTree.tostring(board_arch, encoding='unicode')
|
||||
request.env['ir.ui.view.custom'].create({
|
||||
'user_id': request.session.uid,
|
||||
'ref_id': view_id,
|
||||
'arch': arch
|
||||
})
|
||||
return True
|
||||
|
||||
return False
|
||||
154
odoo-bringout-oca-ocb-board/board/i18n/af.po
Normal file
|
|
@ -0,0 +1,154 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * board
|
||||
#
|
||||
# Translators:
|
||||
# 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-22 05:45+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\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: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "\"%s\" added to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"Add to\n"
|
||||
" Dashboard\""
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "'%s' added to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr "Voeg by"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add to my dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.js:0
|
||||
#, python-format
|
||||
msgid "Are you sure that you want to remove this item?"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_view.js:0
|
||||
#: model:ir.model,name:board.model_board_board
|
||||
#, python-format
|
||||
msgid "Board"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Change Layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Could not add filter to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_action.xml:0
|
||||
#, python-format
|
||||
msgid "Invalid action"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.actions.act_window,name:board.open_board_my_dash_action
|
||||
#: model:ir.ui.menu,name:board.menu_board_my_dash
|
||||
#: model_terms:ir.ui.view,arch_db:board.board_my_dash_view
|
||||
msgid "My Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Please refresh your browser for the changes to take effect."
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"To add your first report into this dashboard, go to any\n"
|
||||
" menu, switch to list or graph view, and click"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can filter and group data before inserting into the\n"
|
||||
" dashboard using the search options."
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Your personal dashboard is empty"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "in the extended search options."
|
||||
msgstr ""
|
||||
150
odoo-bringout-oca-ocb-board/board/i18n/am.po
Normal file
|
|
@ -0,0 +1,150 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * board
|
||||
#
|
||||
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-22 05:45+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: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "\"%s\" added to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"Add to\n"
|
||||
" Dashboard\""
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "'%s' added to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add to my dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.js:0
|
||||
#, python-format
|
||||
msgid "Are you sure that you want to remove this item?"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_view.js:0
|
||||
#: model:ir.model,name:board.model_board_board
|
||||
#, python-format
|
||||
msgid "Board"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Change Layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Could not add filter to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_action.xml:0
|
||||
#, python-format
|
||||
msgid "Invalid action"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.actions.act_window,name:board.open_board_my_dash_action
|
||||
#: model:ir.ui.menu,name:board.menu_board_my_dash
|
||||
#: model_terms:ir.ui.view,arch_db:board.board_my_dash_view
|
||||
msgid "My Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Please refresh your browser for the changes to take effect."
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"To add your first report into this dashboard, go to any\n"
|
||||
" menu, switch to list or graph view, and click"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can filter and group data before inserting into the\n"
|
||||
" dashboard using the search options."
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Your personal dashboard is empty"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "in the extended search options."
|
||||
msgstr ""
|
||||
161
odoo-bringout-oca-ocb-board/board/i18n/ar.po
Normal file
|
|
@ -0,0 +1,161 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * board
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 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-22 05:45+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: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "\"%s\" added to dashboard"
|
||||
msgstr "تمت إضافة \"%s\" إلى لوحة البيانات "
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"Add to\n"
|
||||
" Dashboard\""
|
||||
msgstr ""
|
||||
"\"إضافة إلى\n"
|
||||
" لوحة البيانات\" "
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "'%s' added to dashboard"
|
||||
msgstr "تم إضافة '%s' إلى لوحة البيانات "
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr "إضافة"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add to my dashboard"
|
||||
msgstr "إضافة إلى لوحة بياناتي "
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.js:0
|
||||
#, python-format
|
||||
msgid "Are you sure that you want to remove this item?"
|
||||
msgstr "هل أنت متأكد من أنك ترغب في إزالة هذا العنصر؟ "
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_view.js:0
|
||||
#: model:ir.model,name:board.model_board_board
|
||||
#, python-format
|
||||
msgid "Board"
|
||||
msgstr "لوحة "
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Change Layout"
|
||||
msgstr "تغيير المخطط"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Could not add filter to dashboard"
|
||||
msgstr "تعذر إضافة عامل تصفية إلى لوحة البيانات "
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board__id
|
||||
msgid "ID"
|
||||
msgstr "المُعرف"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_action.xml:0
|
||||
#, python-format
|
||||
msgid "Invalid action"
|
||||
msgstr "إجراء غير صالح "
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Layout"
|
||||
msgstr "مخطط"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.actions.act_window,name:board.open_board_my_dash_action
|
||||
#: model:ir.ui.menu,name:board.menu_board_my_dash
|
||||
#: model_terms:ir.ui.view,arch_db:board.board_my_dash_view
|
||||
msgid "My Dashboard"
|
||||
msgstr "لوحة بياناتي "
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Please refresh your browser for the changes to take effect."
|
||||
msgstr "الرجاء تحديث متصفحك حتى يتم تطبيق التغييرات. "
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"To add your first report into this dashboard, go to any\n"
|
||||
" menu, switch to list or graph view, and click"
|
||||
msgstr ""
|
||||
"لإضافة تقريرك الأول في لوحة البيانات هذه، اذهب إلى أي\n"
|
||||
" قائمة، انتقل لطريقة العرض بالقائمة أو بالرسم البياني، واضغط "
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can filter and group data before inserting into the\n"
|
||||
" dashboard using the search options."
|
||||
msgstr ""
|
||||
"يمكنك تصفية وتجميع البيانات قبل إدراجها في\n"
|
||||
" لوحة بياناتك باستخدام خيارات البحث. "
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Your personal dashboard is empty"
|
||||
msgstr "لوحة بياناتك الخاصة فارغة "
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "in the extended search options."
|
||||
msgstr "في خيارات البحث التفصيلية. "
|
||||
155
odoo-bringout-oca-ocb-board/board/i18n/az.po
Normal file
|
|
@ -0,0 +1,155 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * board
|
||||
#
|
||||
# Translators:
|
||||
# Jumshud Sultanov <cumshud@gmail.com>, 2022
|
||||
# erpgo translator <jumshud@erpgo.az>, 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-22 05:45+0000\n"
|
||||
"Last-Translator: erpgo translator <jumshud@erpgo.az>, 2023\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: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "\"%s\" added to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"Add to\n"
|
||||
" Dashboard\""
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "'%s' added to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr "Əlavə edin"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add to my dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.js:0
|
||||
#, python-format
|
||||
msgid "Are you sure that you want to remove this item?"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_view.js:0
|
||||
#: model:ir.model,name:board.model_board_board
|
||||
#, python-format
|
||||
msgid "Board"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Change Layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Could not add filter to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_action.xml:0
|
||||
#, python-format
|
||||
msgid "Invalid action"
|
||||
msgstr "Xətalı Əməliyyat"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Layout"
|
||||
msgstr "Sxem"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.actions.act_window,name:board.open_board_my_dash_action
|
||||
#: model:ir.ui.menu,name:board.menu_board_my_dash
|
||||
#: model_terms:ir.ui.view,arch_db:board.board_my_dash_view
|
||||
msgid "My Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Please refresh your browser for the changes to take effect."
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"To add your first report into this dashboard, go to any\n"
|
||||
" menu, switch to list or graph view, and click"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can filter and group data before inserting into the\n"
|
||||
" dashboard using the search options."
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Your personal dashboard is empty"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "in the extended search options."
|
||||
msgstr ""
|
||||
154
odoo-bringout-oca-ocb-board/board/i18n/be.po
Normal file
|
|
@ -0,0 +1,154 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * board
|
||||
#
|
||||
# Translators:
|
||||
# Ivan Shakh, 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-22 05:45+0000\n"
|
||||
"Last-Translator: Ivan Shakh, 2024\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: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "\"%s\" added to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"Add to\n"
|
||||
" Dashboard\""
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "'%s' added to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr "Дадаць"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add to my dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.js:0
|
||||
#, python-format
|
||||
msgid "Are you sure that you want to remove this item?"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_view.js:0
|
||||
#: model:ir.model,name:board.model_board_board
|
||||
#, python-format
|
||||
msgid "Board"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Change Layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Could not add filter to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_action.xml:0
|
||||
#, python-format
|
||||
msgid "Invalid action"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.actions.act_window,name:board.open_board_my_dash_action
|
||||
#: model:ir.ui.menu,name:board.menu_board_my_dash
|
||||
#: model_terms:ir.ui.view,arch_db:board.board_my_dash_view
|
||||
msgid "My Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Please refresh your browser for the changes to take effect."
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"To add your first report into this dashboard, go to any\n"
|
||||
" menu, switch to list or graph view, and click"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can filter and group data before inserting into the\n"
|
||||
" dashboard using the search options."
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Your personal dashboard is empty"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "in the extended search options."
|
||||
msgstr ""
|
||||
163
odoo-bringout-oca-ocb-board/board/i18n/bg.po
Normal file
|
|
@ -0,0 +1,163 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * board
|
||||
#
|
||||
# Translators:
|
||||
# KeyVillage, 2023
|
||||
# Maria Boyadjieva <marabo2000@gmail.com>, 2023
|
||||
# Александра Николова <alexandra1nikolova@gmail.com>, 2023
|
||||
# Elena Varbanova, 2024
|
||||
# Milena Georgieva, 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-22 05:45+0000\n"
|
||||
"Last-Translator: Milena Georgieva, 2024\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: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "\"%s\" added to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"Add to\n"
|
||||
" Dashboard\""
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "'%s' added to dashboard"
|
||||
msgstr "'%s' добавено към табло за управление"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr "Добави"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add to my dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.js:0
|
||||
#, python-format
|
||||
msgid "Are you sure that you want to remove this item?"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_view.js:0
|
||||
#: model:ir.model,name:board.model_board_board
|
||||
#, python-format
|
||||
msgid "Board"
|
||||
msgstr "Табло за управление"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Change Layout"
|
||||
msgstr "Променете оформлението"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Could not add filter to dashboard"
|
||||
msgstr "Не успяхте да добавите филтър към таблото за управление"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_action.xml:0
|
||||
#, python-format
|
||||
msgid "Invalid action"
|
||||
msgstr "Невалидно действие"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Layout"
|
||||
msgstr "Редайтирай изгледа"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.actions.act_window,name:board.open_board_my_dash_action
|
||||
#: model:ir.ui.menu,name:board.menu_board_my_dash
|
||||
#: model_terms:ir.ui.view,arch_db:board.board_my_dash_view
|
||||
msgid "My Dashboard"
|
||||
msgstr "Моето табло за управление"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Please refresh your browser for the changes to take effect."
|
||||
msgstr "Моля, опреснете браузъра си, за да влязат в сила промените."
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"To add your first report into this dashboard, go to any\n"
|
||||
" menu, switch to list or graph view, and click"
|
||||
msgstr ""
|
||||
"За да добавите първия си отчет в това табло за управление, отидете на което и да е меню, \n"
|
||||
"превключете към изглед на списък или графика и щракнете върху"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can filter and group data before inserting into the\n"
|
||||
" dashboard using the search options."
|
||||
msgstr ""
|
||||
"Можете да филтрирате и групирате данни, \n"
|
||||
"преди да ги вмъкнете в таблото за управление,\n"
|
||||
"като използвате опциите за търсене."
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Your personal dashboard is empty"
|
||||
msgstr "Вашият персонален табло е празен."
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "in the extended search options."
|
||||
msgstr "в разширените опции за търсене."
|
||||
195
odoo-bringout-oca-ocb-board/board/i18n/bn.po
Normal file
|
|
@ -0,0 +1,195 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * board
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-08-18 14:07+0000\n"
|
||||
"PO-Revision-Date: 2015-09-07 16:40+0000\n"
|
||||
"Last-Translator: Martin Trigaux\n"
|
||||
"Language-Team: Bengali (http://www.transifex.com/odoo/odoo-9/language/bn/)\n"
|
||||
"Language: bn\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:24
|
||||
#, python-format
|
||||
msgid " "
|
||||
msgstr " "
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/dashboard.js:407
|
||||
#, python-format
|
||||
msgid "'%s' added to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model_terms:ir.actions.act_window,help:board.open_board_my_dash_action
|
||||
msgid "<b>Your personal dashboard is empty.</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:70
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr "যোগ করুন"
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:64
|
||||
#, python-format
|
||||
msgid "Add to my Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/dashboard.js:139
|
||||
#, python-format
|
||||
msgid "Are you sure you want to remove this item ?"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model,name:board.model_board_board
|
||||
msgid "Board"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model,name:board.model_board_create
|
||||
msgid "Board Creation"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_create_name
|
||||
msgid "Board Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model_terms:ir.ui.view,arch_db:board.view_board_create
|
||||
msgid "Cancel"
|
||||
msgstr "বাতিল"
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:6
|
||||
#, python-format
|
||||
msgid "Change Layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:4
|
||||
#, python-format
|
||||
msgid "Change Layout.."
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:36
|
||||
#, python-format
|
||||
msgid "Choose dashboard layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/dashboard.js:409
|
||||
#, python-format
|
||||
msgid "Could not add filter to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model_terms:ir.ui.view,arch_db:board.view_board_create
|
||||
msgid "Create"
|
||||
msgstr "তৈরি করুন"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.actions.act_window,name:board.action_board_create
|
||||
#: model:ir.ui.menu,name:board.menu_board_create
|
||||
msgid "Create Board"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model_terms:ir.ui.view,arch_db:board.view_board_create
|
||||
msgid "Create New Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_create_create_uid
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_create_create_date
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board_display_name
|
||||
#: model:ir.model.fields,field_description:board.field_board_create_display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/dashboard.js:94
|
||||
#, python-format
|
||||
msgid "Edit Layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board_id
|
||||
#: model:ir.model.fields,field_description:board.field_board_create_id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board___last_update
|
||||
#: model:ir.model.fields,field_description:board.field_board_create___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_create_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_create_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.actions.act_window,name:board.open_board_my_dash_action
|
||||
#: model:ir.ui.menu,name:board.menu_board_my_dash
|
||||
#: model_terms:ir.ui.view,arch_db:board.board_my_dash_view
|
||||
msgid "My Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_create_menu_parent_id
|
||||
msgid "Parent Menu"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model_terms:ir.actions.act_window,help:board.open_board_my_dash_action
|
||||
msgid ""
|
||||
"To add your first report into this dashboard, go to any\n"
|
||||
" menu, switch to list or graph view, and click <i>'Add "
|
||||
"to\n"
|
||||
" Dashboard'</i> in the extended search options."
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model_terms:ir.actions.act_window,help:board.open_board_my_dash_action
|
||||
msgid ""
|
||||
"You can filter and group data before inserting into the\n"
|
||||
" dashboard using the search options."
|
||||
msgstr ""
|
||||
150
odoo-bringout-oca-ocb-board/board/i18n/board.pot
Normal file
|
|
@ -0,0 +1,150 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * board
|
||||
#
|
||||
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: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "\"%s\" added to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"Add to\n"
|
||||
" Dashboard\""
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "'%s' added to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add to my dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.js:0
|
||||
#, python-format
|
||||
msgid "Are you sure that you want to remove this item?"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_view.js:0
|
||||
#: model:ir.model,name:board.model_board_board
|
||||
#, python-format
|
||||
msgid "Board"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Change Layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Could not add filter to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_action.xml:0
|
||||
#, python-format
|
||||
msgid "Invalid action"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.actions.act_window,name:board.open_board_my_dash_action
|
||||
#: model:ir.ui.menu,name:board.menu_board_my_dash
|
||||
#: model_terms:ir.ui.view,arch_db:board.board_my_dash_view
|
||||
msgid "My Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Please refresh your browser for the changes to take effect."
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"To add your first report into this dashboard, go to any\n"
|
||||
" menu, switch to list or graph view, and click"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can filter and group data before inserting into the\n"
|
||||
" dashboard using the search options."
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Your personal dashboard is empty"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "in the extended search options."
|
||||
msgstr ""
|
||||
150
odoo-bringout-oca-ocb-board/board/i18n/bs.po
Normal file
|
|
@ -0,0 +1,150 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * board
|
||||
#
|
||||
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: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "\"%s\" added to dashboard"
|
||||
msgstr "\"%s\" dodan na nadzornu ploču"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"Add to\n"
|
||||
" Dashboard\""
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "'%s' added to dashboard"
|
||||
msgstr "'%s' dodan na kontrolnu tablu"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr "Dodaj"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add to my dashboard"
|
||||
msgstr "Dodaj na moju ploču"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.js:0
|
||||
#, python-format
|
||||
msgid "Are you sure that you want to remove this item?"
|
||||
msgstr "\"Dodaj u\n kontrolnu tablu\""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_view.js:0
|
||||
#: model:ir.model,name:board.model_board_board
|
||||
#, python-format
|
||||
msgid "Board"
|
||||
msgstr "You can Filter and Grupa Podaci Pre inserting into the\n Kontrolna tabla using the Pretraga options."
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Change Layout"
|
||||
msgstr "Promjeni raspored"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Could not add filter to dashboard"
|
||||
msgstr "Nije bilo moguće dodati filter na kontrolnu tablu"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_action.xml:0
|
||||
#, python-format
|
||||
msgid "Invalid action"
|
||||
msgstr "Neispravna radnja"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Layout"
|
||||
msgstr "Da li ste sigurni da želite da uklonite ovu stavku?"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.actions.act_window,name:board.open_board_my_dash_action
|
||||
#: model:ir.ui.menu,name:board.menu_board_my_dash
|
||||
#: model_terms:ir.ui.view,arch_db:board.board_my_dash_view
|
||||
msgid "My Dashboard"
|
||||
msgstr "Moja kontrolna tabla"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Please refresh your browser for the changes to take effect."
|
||||
msgstr "Molimo osvježite vaš preglednik kako bi izmjene bile vidljive."
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"To add your first report into this dashboard, go to any\n"
|
||||
" menu, switch to list or graph view, and click"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can filter and group data before inserting into the\n"
|
||||
" dashboard using the search options."
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Your personal dashboard is empty"
|
||||
msgstr "Vaša nadzorna ploča je prazna"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "in the extended search options."
|
||||
msgstr "To Dodaj your Prvi Izveštaj into this Kontrolna tabla, go to any\n Meni, Prekidač to Lista or graph Prikaz, and click"
|
||||
165
odoo-bringout-oca-ocb-board/board/i18n/ca.po
Normal file
|
|
@ -0,0 +1,165 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * board
|
||||
#
|
||||
# Translators:
|
||||
# marcescu, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Arnau Ros, 2022
|
||||
# Manel Fernandez Ramirez <manelfera@outlook.com>, 2022
|
||||
# Josep Anton Belchi, 2022
|
||||
# Ivan Espinola, 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-22 05:45+0000\n"
|
||||
"Last-Translator: Ivan Espinola, 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: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "\"%s\" added to dashboard"
|
||||
msgstr "\"%s\" afegit al tauler de control"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"Add to\n"
|
||||
" Dashboard\""
|
||||
msgstr ""
|
||||
"\"Afegeix a\n"
|
||||
" Tauler\""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "'%s' added to dashboard"
|
||||
msgstr "'%s' afegit al tauler"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr "Afegir"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add to my dashboard"
|
||||
msgstr "Afegir al meu tauler"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.js:0
|
||||
#, python-format
|
||||
msgid "Are you sure that you want to remove this item?"
|
||||
msgstr "Esteu segur que voleu eliminar aquest element?"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_view.js:0
|
||||
#: model:ir.model,name:board.model_board_board
|
||||
#, python-format
|
||||
msgid "Board"
|
||||
msgstr "Tauler"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Change Layout"
|
||||
msgstr "Canviar la disposició"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Could not add filter to dashboard"
|
||||
msgstr "No s'ha pogut afegir el filtre al tauler"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_action.xml:0
|
||||
#, python-format
|
||||
msgid "Invalid action"
|
||||
msgstr "Acció no vàlida"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Layout"
|
||||
msgstr "Disseny"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.actions.act_window,name:board.open_board_my_dash_action
|
||||
#: model:ir.ui.menu,name:board.menu_board_my_dash
|
||||
#: model_terms:ir.ui.view,arch_db:board.board_my_dash_view
|
||||
msgid "My Dashboard"
|
||||
msgstr "El meu tauler"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Please refresh your browser for the changes to take effect."
|
||||
msgstr "Si us plau, refresca el navegador per que els canvis prenguin efecte."
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"To add your first report into this dashboard, go to any\n"
|
||||
" menu, switch to list or graph view, and click"
|
||||
msgstr ""
|
||||
"Per afegir el vostre primer informe a aquest tauler, aneu a qualsevol\n"
|
||||
" menú, canvieu a la vista de llista o de gràfic i feu clic a"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can filter and group data before inserting into the\n"
|
||||
" dashboard using the search options."
|
||||
msgstr ""
|
||||
"Podeu filtrar i agrupar les dades abans d'inserir-les a\n"
|
||||
" Tauler utilitzant les opcions de cerca."
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Your personal dashboard is empty"
|
||||
msgstr "El teu tauler personal és buit"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "in the extended search options."
|
||||
msgstr "a les opcions de cerca avançades."
|
||||
158
odoo-bringout-oca-ocb-board/board/i18n/cs.po
Normal file
|
|
@ -0,0 +1,158 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * board
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Rastislav Brencic <rastislav.brencic@azet.sk>, 2022
|
||||
# Jiří Podhorecký, 2022
|
||||
# Michal Veselý <michal@veselyberanek.net>, 2022
|
||||
# Jakub Smolka, 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-22 05:45+0000\n"
|
||||
"Last-Translator: Jakub Smolka, 2023\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: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "\"%s\" added to dashboard"
|
||||
msgstr "\"%s\" přidán na dashboard"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"Add to\n"
|
||||
" Dashboard\""
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "'%s' added to dashboard"
|
||||
msgstr "'%s' přidán na dashboard"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr "Přidat"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add to my dashboard"
|
||||
msgstr "Přidat na můj dashboard"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.js:0
|
||||
#, python-format
|
||||
msgid "Are you sure that you want to remove this item?"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_view.js:0
|
||||
#: model:ir.model,name:board.model_board_board
|
||||
#, python-format
|
||||
msgid "Board"
|
||||
msgstr "Přehled"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Change Layout"
|
||||
msgstr "Změnit rozložení"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Could not add filter to dashboard"
|
||||
msgstr "Nelze přidat filtr do ovládacího panelu"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_action.xml:0
|
||||
#, python-format
|
||||
msgid "Invalid action"
|
||||
msgstr "Neplatná akce"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Layout"
|
||||
msgstr "Rozvržení"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.actions.act_window,name:board.open_board_my_dash_action
|
||||
#: model:ir.ui.menu,name:board.menu_board_my_dash
|
||||
#: model_terms:ir.ui.view,arch_db:board.board_my_dash_view
|
||||
msgid "My Dashboard"
|
||||
msgstr "Můj dashboard"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Please refresh your browser for the changes to take effect."
|
||||
msgstr "Obnovte svůj prohlížeč, aby se změny projevily."
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"To add your first report into this dashboard, go to any\n"
|
||||
" menu, switch to list or graph view, and click"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can filter and group data before inserting into the\n"
|
||||
" dashboard using the search options."
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Your personal dashboard is empty"
|
||||
msgstr "Váš osobní dashboard je prázdný"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "in the extended search options."
|
||||
msgstr "v rozšířených možnostech vyhledávání."
|
||||
157
odoo-bringout-oca-ocb-board/board/i18n/da.po
Normal file
|
|
@ -0,0 +1,157 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * board
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# lhmflexerp <lhm@flexerp.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-22 05:45+0000\n"
|
||||
"Last-Translator: lhmflexerp <lhm@flexerp.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: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "\"%s\" added to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"Add to\n"
|
||||
" Dashboard\""
|
||||
msgstr ""
|
||||
"\"Tilføj til\n"
|
||||
" Dashboard\""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "'%s' added to dashboard"
|
||||
msgstr "'%s' tilføjet til dashboard"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr "Tilføj"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add to my dashboard"
|
||||
msgstr "Tilføj til mit instrumentbræt"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.js:0
|
||||
#, python-format
|
||||
msgid "Are you sure that you want to remove this item?"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_view.js:0
|
||||
#: model:ir.model,name:board.model_board_board
|
||||
#, python-format
|
||||
msgid "Board"
|
||||
msgstr "Panel"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Change Layout"
|
||||
msgstr "Skift layout"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Could not add filter to dashboard"
|
||||
msgstr "Kunne ikke tilføje filter til dashboard"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_action.xml:0
|
||||
#, python-format
|
||||
msgid "Invalid action"
|
||||
msgstr "Ugyldig handling"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Layout"
|
||||
msgstr "Layout"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.actions.act_window,name:board.open_board_my_dash_action
|
||||
#: model:ir.ui.menu,name:board.menu_board_my_dash
|
||||
#: model_terms:ir.ui.view,arch_db:board.board_my_dash_view
|
||||
msgid "My Dashboard"
|
||||
msgstr "Mit dashboard"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Please refresh your browser for the changes to take effect."
|
||||
msgstr "Opdater venligst din browser for at ændringerne træder i kraft."
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"To add your first report into this dashboard, go to any\n"
|
||||
" menu, switch to list or graph view, and click"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can filter and group data before inserting into the\n"
|
||||
" dashboard using the search options."
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Your personal dashboard is empty"
|
||||
msgstr "Dit personlige dashboard er tomt"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "in the extended search options."
|
||||
msgstr "i de udvidede søgeindstillinger."
|
||||
162
odoo-bringout-oca-ocb-board/board/i18n/de.po
Normal file
|
|
@ -0,0 +1,162 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * board
|
||||
#
|
||||
# Translators:
|
||||
# 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-22 05:45+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: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "\"%s\" added to dashboard"
|
||||
msgstr "„%s“ zum Dashboard hinzugefügt"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"Add to\n"
|
||||
" Dashboard\""
|
||||
msgstr ""
|
||||
"„Zum Dashboard\n"
|
||||
" hinzufügen“"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "'%s' added to dashboard"
|
||||
msgstr "„%s“ zum Dashboard hinzugefügt"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr "Hinzufügen"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add to my dashboard"
|
||||
msgstr "Zu meinem Dashboard hinzufügen"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.js:0
|
||||
#, python-format
|
||||
msgid "Are you sure that you want to remove this item?"
|
||||
msgstr "Sind Sie sicher, dass Sie dieses Element löschen möchten?"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_view.js:0
|
||||
#: model:ir.model,name:board.model_board_board
|
||||
#, python-format
|
||||
msgid "Board"
|
||||
msgstr "Dashboard"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Change Layout"
|
||||
msgstr "Layout ändern"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Could not add filter to dashboard"
|
||||
msgstr "Es konnte kein Filter zum Dashboard hinzugefügt werden"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_action.xml:0
|
||||
#, python-format
|
||||
msgid "Invalid action"
|
||||
msgstr "Ungültige Aktion"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Layout"
|
||||
msgstr "Layout"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.actions.act_window,name:board.open_board_my_dash_action
|
||||
#: model:ir.ui.menu,name:board.menu_board_my_dash
|
||||
#: model_terms:ir.ui.view,arch_db:board.board_my_dash_view
|
||||
msgid "My Dashboard"
|
||||
msgstr "Mein Dashboard"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Please refresh your browser for the changes to take effect."
|
||||
msgstr ""
|
||||
"Bitte aktualisieren Sie Ihren Browser, damit die Änderungen wirksam werden."
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"To add your first report into this dashboard, go to any\n"
|
||||
" menu, switch to list or graph view, and click"
|
||||
msgstr ""
|
||||
"Um Ihren ersten Bericht zu diesem Dashboard hinzuzufügen,\n"
|
||||
" gehen Sie in ein beliebiges Menü, wechseln Sie zur Listen- oder Diagramm-Ansicht und klicken Sie auf"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can filter and group data before inserting into the\n"
|
||||
" dashboard using the search options."
|
||||
msgstr ""
|
||||
"Sie können Daten mithilfe der Suchoptionen filtern und gruppieren,\n"
|
||||
" bevor Sie sie zum Dashboard hinzufügen."
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Your personal dashboard is empty"
|
||||
msgstr "Ihr persönliches Dashboard ist leer"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "in the extended search options."
|
||||
msgstr "in den erweiterten Suchoptionen."
|
||||
179
odoo-bringout-oca-ocb-board/board/i18n/el.po
Normal file
|
|
@ -0,0 +1,179 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * board
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2018
|
||||
# Kostas Goutoudis <goutoudis@gmail.com>, 2018
|
||||
# George Tarasidis <george_tarasidis@yahoo.com>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~11.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-09-18 09:49+0000\n"
|
||||
"PO-Revision-Date: 2018-09-18 09:49+0000\n"
|
||||
"Last-Translator: George Tarasidis <george_tarasidis@yahoo.com>, 2018\n"
|
||||
"Language-Team: Greek (https://www.transifex.com/odoo/teams/41243/el/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: el\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:53
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"Add to\n"
|
||||
" Dashboard\""
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:25
|
||||
#, python-format
|
||||
msgid " "
|
||||
msgstr " "
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/favorite_menu.js:103
|
||||
#, python-format
|
||||
msgid "'%s' added to dashboard"
|
||||
msgstr "'%s' προστέθηκε στο Ταμπλό"
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:83
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr "Προσθήκη"
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:78
|
||||
#, python-format
|
||||
msgid "Add to my Dashboard"
|
||||
msgstr "Πρόσθεση στο Ταμπλό μου"
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/board_view.js:362
|
||||
#, python-format
|
||||
msgid "Are you sure you want to remove this item?"
|
||||
msgstr "Είστε βέβαιοι ότι θέλετε να καταργήσετε αυτό το στοιχείο;"
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/board_view.js:439
|
||||
#: model:ir.model,name:board.model_board_board
|
||||
#, python-format
|
||||
msgid "Board"
|
||||
msgstr "Ταμπλό"
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:7
|
||||
#, python-format
|
||||
msgid "Change Layout"
|
||||
msgstr "Αλλαγή Εμφάνισης"
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:5
|
||||
#, python-format
|
||||
msgid "Change Layout.."
|
||||
msgstr "Αλλαγή Εμφάνισης.."
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:36
|
||||
#, python-format
|
||||
msgid "Choose dashboard layout"
|
||||
msgstr "Επιλογή Εμφάνισης Ταμπλό"
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/favorite_menu.js:107
|
||||
#, python-format
|
||||
msgid "Could not add filter to dashboard"
|
||||
msgstr "Δεν μπορεί να προστεθεί φίλτρο στο Ταμπλό"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Εμφάνιση Ονόματος"
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/board_view.js:80
|
||||
#, python-format
|
||||
msgid "Edit Layout"
|
||||
msgstr "Επεξεργασία Εμφάνισης"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board__id
|
||||
msgid "ID"
|
||||
msgstr "Κωδικός"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Τελευταία τροποποίηση στις"
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:41
|
||||
#, python-format
|
||||
msgid "Layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/board_view.js:43
|
||||
#: model:ir.actions.act_window,name:board.open_board_my_dash_action
|
||||
#: model:ir.ui.menu,name:board.menu_board_my_dash
|
||||
#: model_terms:ir.ui.view,arch_db:board.board_my_dash_view
|
||||
#, python-format
|
||||
msgid "My Dashboard"
|
||||
msgstr "Το Ταμπλό μου"
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/favorite_menu.js:104
|
||||
#, python-format
|
||||
msgid "Please refresh your browser for the changes to take effect."
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:51
|
||||
#, python-format
|
||||
msgid ""
|
||||
"To add your first report into this dashboard, go to any\n"
|
||||
" menu, switch to list or graph view, and click"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:55
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can filter and group data before inserting into the\n"
|
||||
" dashboard using the search options."
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:49
|
||||
#, python-format
|
||||
msgid "Your personal dashboard is empty"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:53
|
||||
#, python-format
|
||||
msgid "in the extended search options."
|
||||
msgstr ""
|
||||
196
odoo-bringout-oca-ocb-board/board/i18n/en_AU.po
Normal file
|
|
@ -0,0 +1,196 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * board
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-08-18 14:07+0000\n"
|
||||
"PO-Revision-Date: 2015-09-07 16:41+0000\n"
|
||||
"Last-Translator: Martin Trigaux\n"
|
||||
"Language-Team: English (Australia) (http://www.transifex.com/odoo/odoo-9/"
|
||||
"language/en_AU/)\n"
|
||||
"Language: en_AU\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:24
|
||||
#, python-format
|
||||
msgid " "
|
||||
msgstr " "
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/dashboard.js:407
|
||||
#, python-format
|
||||
msgid "'%s' added to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model_terms:ir.actions.act_window,help:board.open_board_my_dash_action
|
||||
msgid "<b>Your personal dashboard is empty.</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:70
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr "Add"
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:64
|
||||
#, python-format
|
||||
msgid "Add to my Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/dashboard.js:139
|
||||
#, python-format
|
||||
msgid "Are you sure you want to remove this item ?"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model,name:board.model_board_board
|
||||
msgid "Board"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model,name:board.model_board_create
|
||||
msgid "Board Creation"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_create_name
|
||||
msgid "Board Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model_terms:ir.ui.view,arch_db:board.view_board_create
|
||||
msgid "Cancel"
|
||||
msgstr "Cancel"
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:6
|
||||
#, python-format
|
||||
msgid "Change Layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:4
|
||||
#, python-format
|
||||
msgid "Change Layout.."
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:36
|
||||
#, python-format
|
||||
msgid "Choose dashboard layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/dashboard.js:409
|
||||
#, python-format
|
||||
msgid "Could not add filter to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model_terms:ir.ui.view,arch_db:board.view_board_create
|
||||
msgid "Create"
|
||||
msgstr "Create"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.actions.act_window,name:board.action_board_create
|
||||
#: model:ir.ui.menu,name:board.menu_board_create
|
||||
msgid "Create Board"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model_terms:ir.ui.view,arch_db:board.view_board_create
|
||||
msgid "Create New Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_create_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Created by"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_create_create_date
|
||||
msgid "Created on"
|
||||
msgstr "Created on"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board_display_name
|
||||
#: model:ir.model.fields,field_description:board.field_board_create_display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Display Name"
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/dashboard.js:94
|
||||
#, python-format
|
||||
msgid "Edit Layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board_id
|
||||
#: model:ir.model.fields,field_description:board.field_board_create_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board___last_update
|
||||
#: model:ir.model.fields,field_description:board.field_board_create___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Last Modified on"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_create_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Last Updated by"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_create_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Last Updated on"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.actions.act_window,name:board.open_board_my_dash_action
|
||||
#: model:ir.ui.menu,name:board.menu_board_my_dash
|
||||
#: model_terms:ir.ui.view,arch_db:board.board_my_dash_view
|
||||
msgid "My Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_create_menu_parent_id
|
||||
msgid "Parent Menu"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model_terms:ir.actions.act_window,help:board.open_board_my_dash_action
|
||||
msgid ""
|
||||
"To add your first report into this dashboard, go to any\n"
|
||||
" menu, switch to list or graph view, and click <i>'Add "
|
||||
"to\n"
|
||||
" Dashboard'</i> in the extended search options."
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model_terms:ir.actions.act_window,help:board.open_board_my_dash_action
|
||||
msgid ""
|
||||
"You can filter and group data before inserting into the\n"
|
||||
" dashboard using the search options."
|
||||
msgstr ""
|
||||
139
odoo-bringout-oca-ocb-board/board/i18n/en_GB.po
Normal file
|
|
@ -0,0 +1,139 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * board
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: English (United Kingdom) (https://www.transifex.com/odoo/teams/41243/en_GB/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: en_GB\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:25
|
||||
#, python-format
|
||||
msgid " "
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/favorite_menu.js:97
|
||||
#, python-format
|
||||
msgid "'%s' added to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model_terms:ir.actions.act_window,help:board.open_board_my_dash_action
|
||||
msgid "<b>Your personal dashboard is empty.</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:69
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:63
|
||||
#, python-format
|
||||
msgid "Add to my Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/dashboard.js:335
|
||||
#, python-format
|
||||
msgid "Are you sure you want to remove this item?"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model,name:board.model_board_board
|
||||
msgid "Board"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:7
|
||||
#, python-format
|
||||
msgid "Change Layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:5
|
||||
#, python-format
|
||||
msgid "Change Layout.."
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:36
|
||||
#, python-format
|
||||
msgid "Choose dashboard layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/favorite_menu.js:99
|
||||
#, python-format
|
||||
msgid "Could not add filter to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board_display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Display Name"
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/dashboard.js:85
|
||||
#, python-format
|
||||
msgid "Edit Layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Last Modified on"
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/dashboard.js:48
|
||||
#: model:ir.actions.act_window,name:board.open_board_my_dash_action
|
||||
#: model:ir.ui.menu,name:board.menu_board_my_dash
|
||||
#: model_terms:ir.ui.view,arch_db:board.board_my_dash_view
|
||||
#, python-format
|
||||
msgid "My Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model_terms:ir.actions.act_window,help:board.open_board_my_dash_action
|
||||
msgid ""
|
||||
"To add your first report into this dashboard, go to any\n"
|
||||
" menu, switch to list or graph view, and click <i>'Add to\n"
|
||||
" Dashboard'</i> in the extended search options."
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model_terms:ir.actions.act_window,help:board.open_board_my_dash_action
|
||||
msgid ""
|
||||
"You can filter and group data before inserting into the\n"
|
||||
" dashboard using the search options."
|
||||
msgstr ""
|
||||
162
odoo-bringout-oca-ocb-board/board/i18n/es.po
Normal file
|
|
@ -0,0 +1,162 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * board
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Wil Odoo, 2024
|
||||
# Larissa Manderfeld, 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-22 05:45+0000\n"
|
||||
"Last-Translator: Larissa Manderfeld, 2024\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: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "\"%s\" added to dashboard"
|
||||
msgstr "\"%s\" añadido al tablero"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"Add to\n"
|
||||
" Dashboard\""
|
||||
msgstr ""
|
||||
"\"Añadir al\n"
|
||||
" tablero\""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "'%s' added to dashboard"
|
||||
msgstr "'%s' añadido al tablero"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr "Añadir"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add to my dashboard"
|
||||
msgstr "Añadir a mi tablero"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.js:0
|
||||
#, python-format
|
||||
msgid "Are you sure that you want to remove this item?"
|
||||
msgstr "¿Está seguro de que desea eliminar este elemento?"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_view.js:0
|
||||
#: model:ir.model,name:board.model_board_board
|
||||
#, python-format
|
||||
msgid "Board"
|
||||
msgstr "Tablero"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Change Layout"
|
||||
msgstr "Cambiar diseño"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Could not add filter to dashboard"
|
||||
msgstr "No se puede añadir un filtro al tablero"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_action.xml:0
|
||||
#, python-format
|
||||
msgid "Invalid action"
|
||||
msgstr "Acción no válida"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Layout"
|
||||
msgstr "Diseño"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.actions.act_window,name:board.open_board_my_dash_action
|
||||
#: model:ir.ui.menu,name:board.menu_board_my_dash
|
||||
#: model_terms:ir.ui.view,arch_db:board.board_my_dash_view
|
||||
msgid "My Dashboard"
|
||||
msgstr "Mi tablero"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Please refresh your browser for the changes to take effect."
|
||||
msgstr "Vuelva a cargar su navegador para ver los cambios."
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"To add your first report into this dashboard, go to any\n"
|
||||
" menu, switch to list or graph view, and click"
|
||||
msgstr ""
|
||||
"Para añadir su primer informe a este tablero, vaya a cualquier\n"
|
||||
" menú, cambie a la vista de lista o gráfico y haga clic en"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can filter and group data before inserting into the\n"
|
||||
" dashboard using the search options."
|
||||
msgstr ""
|
||||
"Puede filtrar y agrupar datos antes de agregarlos al\n"
|
||||
" tablero mediante las opciones de búsqueda."
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Your personal dashboard is empty"
|
||||
msgstr "Su tablero está vacío"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "in the extended search options."
|
||||
msgstr "en las opciones de búsqueda extendida."
|
||||
139
odoo-bringout-oca-ocb-board/board/i18n/es_BO.po
Normal file
|
|
@ -0,0 +1,139 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * board
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Spanish (Bolivia) (https://www.transifex.com/odoo/teams/41243/es_BO/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_BO\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:25
|
||||
#, python-format
|
||||
msgid " "
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/favorite_menu.js:97
|
||||
#, python-format
|
||||
msgid "'%s' added to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model_terms:ir.actions.act_window,help:board.open_board_my_dash_action
|
||||
msgid "<b>Your personal dashboard is empty.</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:69
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:63
|
||||
#, python-format
|
||||
msgid "Add to my Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/dashboard.js:335
|
||||
#, python-format
|
||||
msgid "Are you sure you want to remove this item?"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model,name:board.model_board_board
|
||||
msgid "Board"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:7
|
||||
#, python-format
|
||||
msgid "Change Layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:5
|
||||
#, python-format
|
||||
msgid "Change Layout.."
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:36
|
||||
#, python-format
|
||||
msgid "Choose dashboard layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/favorite_menu.js:99
|
||||
#, python-format
|
||||
msgid "Could not add filter to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board_display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/dashboard.js:85
|
||||
#, python-format
|
||||
msgid "Edit Layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/dashboard.js:48
|
||||
#: model:ir.actions.act_window,name:board.open_board_my_dash_action
|
||||
#: model:ir.ui.menu,name:board.menu_board_my_dash
|
||||
#: model_terms:ir.ui.view,arch_db:board.board_my_dash_view
|
||||
#, python-format
|
||||
msgid "My Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model_terms:ir.actions.act_window,help:board.open_board_my_dash_action
|
||||
msgid ""
|
||||
"To add your first report into this dashboard, go to any\n"
|
||||
" menu, switch to list or graph view, and click <i>'Add to\n"
|
||||
" Dashboard'</i> in the extended search options."
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model_terms:ir.actions.act_window,help:board.open_board_my_dash_action
|
||||
msgid ""
|
||||
"You can filter and group data before inserting into the\n"
|
||||
" dashboard using the search options."
|
||||
msgstr ""
|
||||
139
odoo-bringout-oca-ocb-board/board/i18n/es_CL.po
Normal file
|
|
@ -0,0 +1,139 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * board
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Spanish (Chile) (https://www.transifex.com/odoo/teams/41243/es_CL/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_CL\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:25
|
||||
#, python-format
|
||||
msgid " "
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/favorite_menu.js:97
|
||||
#, python-format
|
||||
msgid "'%s' added to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model_terms:ir.actions.act_window,help:board.open_board_my_dash_action
|
||||
msgid "<b>Your personal dashboard is empty.</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:69
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:63
|
||||
#, python-format
|
||||
msgid "Add to my Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/dashboard.js:335
|
||||
#, python-format
|
||||
msgid "Are you sure you want to remove this item?"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model,name:board.model_board_board
|
||||
msgid "Board"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:7
|
||||
#, python-format
|
||||
msgid "Change Layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:5
|
||||
#, python-format
|
||||
msgid "Change Layout.."
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:36
|
||||
#, python-format
|
||||
msgid "Choose dashboard layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/favorite_menu.js:99
|
||||
#, python-format
|
||||
msgid "Could not add filter to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board_display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre mostrado"
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/dashboard.js:85
|
||||
#, python-format
|
||||
msgid "Edit Layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board_id
|
||||
msgid "ID"
|
||||
msgstr "ID (identificación)"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificación en"
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/dashboard.js:48
|
||||
#: model:ir.actions.act_window,name:board.open_board_my_dash_action
|
||||
#: model:ir.ui.menu,name:board.menu_board_my_dash
|
||||
#: model_terms:ir.ui.view,arch_db:board.board_my_dash_view
|
||||
#, python-format
|
||||
msgid "My Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model_terms:ir.actions.act_window,help:board.open_board_my_dash_action
|
||||
msgid ""
|
||||
"To add your first report into this dashboard, go to any\n"
|
||||
" menu, switch to list or graph view, and click <i>'Add to\n"
|
||||
" Dashboard'</i> in the extended search options."
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model_terms:ir.actions.act_window,help:board.open_board_my_dash_action
|
||||
msgid ""
|
||||
"You can filter and group data before inserting into the\n"
|
||||
" dashboard using the search options."
|
||||
msgstr ""
|
||||
139
odoo-bringout-oca-ocb-board/board/i18n/es_CO.po
Normal file
|
|
@ -0,0 +1,139 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * board
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Spanish (Colombia) (https://www.transifex.com/odoo/teams/41243/es_CO/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_CO\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:25
|
||||
#, python-format
|
||||
msgid " "
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/favorite_menu.js:97
|
||||
#, python-format
|
||||
msgid "'%s' added to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model_terms:ir.actions.act_window,help:board.open_board_my_dash_action
|
||||
msgid "<b>Your personal dashboard is empty.</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:69
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:63
|
||||
#, python-format
|
||||
msgid "Add to my Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/dashboard.js:335
|
||||
#, python-format
|
||||
msgid "Are you sure you want to remove this item?"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model,name:board.model_board_board
|
||||
msgid "Board"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:7
|
||||
#, python-format
|
||||
msgid "Change Layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:5
|
||||
#, python-format
|
||||
msgid "Change Layout.."
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:36
|
||||
#, python-format
|
||||
msgid "Choose dashboard layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/favorite_menu.js:99
|
||||
#, python-format
|
||||
msgid "Could not add filter to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board_display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre Público"
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/dashboard.js:85
|
||||
#, python-format
|
||||
msgid "Edit Layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última Modificación el"
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/dashboard.js:48
|
||||
#: model:ir.actions.act_window,name:board.open_board_my_dash_action
|
||||
#: model:ir.ui.menu,name:board.menu_board_my_dash
|
||||
#: model_terms:ir.ui.view,arch_db:board.board_my_dash_view
|
||||
#, python-format
|
||||
msgid "My Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model_terms:ir.actions.act_window,help:board.open_board_my_dash_action
|
||||
msgid ""
|
||||
"To add your first report into this dashboard, go to any\n"
|
||||
" menu, switch to list or graph view, and click <i>'Add to\n"
|
||||
" Dashboard'</i> in the extended search options."
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model_terms:ir.actions.act_window,help:board.open_board_my_dash_action
|
||||
msgid ""
|
||||
"You can filter and group data before inserting into the\n"
|
||||
" dashboard using the search options."
|
||||
msgstr ""
|
||||
139
odoo-bringout-oca-ocb-board/board/i18n/es_CR.po
Normal file
|
|
@ -0,0 +1,139 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * board
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/odoo/teams/41243/es_CR/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_CR\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:25
|
||||
#, python-format
|
||||
msgid " "
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/favorite_menu.js:97
|
||||
#, python-format
|
||||
msgid "'%s' added to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model_terms:ir.actions.act_window,help:board.open_board_my_dash_action
|
||||
msgid "<b>Your personal dashboard is empty.</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:69
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:63
|
||||
#, python-format
|
||||
msgid "Add to my Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/dashboard.js:335
|
||||
#, python-format
|
||||
msgid "Are you sure you want to remove this item?"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model,name:board.model_board_board
|
||||
msgid "Board"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:7
|
||||
#, python-format
|
||||
msgid "Change Layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:5
|
||||
#, python-format
|
||||
msgid "Change Layout.."
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:36
|
||||
#, python-format
|
||||
msgid "Choose dashboard layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/favorite_menu.js:99
|
||||
#, python-format
|
||||
msgid "Could not add filter to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board_display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/dashboard.js:85
|
||||
#, python-format
|
||||
msgid "Edit Layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/dashboard.js:48
|
||||
#: model:ir.actions.act_window,name:board.open_board_my_dash_action
|
||||
#: model:ir.ui.menu,name:board.menu_board_my_dash
|
||||
#: model_terms:ir.ui.view,arch_db:board.board_my_dash_view
|
||||
#, python-format
|
||||
msgid "My Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model_terms:ir.actions.act_window,help:board.open_board_my_dash_action
|
||||
msgid ""
|
||||
"To add your first report into this dashboard, go to any\n"
|
||||
" menu, switch to list or graph view, and click <i>'Add to\n"
|
||||
" Dashboard'</i> in the extended search options."
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model_terms:ir.actions.act_window,help:board.open_board_my_dash_action
|
||||
msgid ""
|
||||
"You can filter and group data before inserting into the\n"
|
||||
" dashboard using the search options."
|
||||
msgstr ""
|
||||
139
odoo-bringout-oca-ocb-board/board/i18n/es_DO.po
Normal file
|
|
@ -0,0 +1,139 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * board
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/odoo/teams/41243/es_DO/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_DO\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:25
|
||||
#, python-format
|
||||
msgid " "
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/favorite_menu.js:97
|
||||
#, python-format
|
||||
msgid "'%s' added to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model_terms:ir.actions.act_window,help:board.open_board_my_dash_action
|
||||
msgid "<b>Your personal dashboard is empty.</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:69
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:63
|
||||
#, python-format
|
||||
msgid "Add to my Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/dashboard.js:335
|
||||
#, python-format
|
||||
msgid "Are you sure you want to remove this item?"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model,name:board.model_board_board
|
||||
msgid "Board"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:7
|
||||
#, python-format
|
||||
msgid "Change Layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:5
|
||||
#, python-format
|
||||
msgid "Change Layout.."
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:36
|
||||
#, python-format
|
||||
msgid "Choose dashboard layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/favorite_menu.js:99
|
||||
#, python-format
|
||||
msgid "Could not add filter to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board_display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre mostrado"
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/dashboard.js:85
|
||||
#, python-format
|
||||
msgid "Edit Layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board_id
|
||||
msgid "ID"
|
||||
msgstr "ID (identificación)"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificación en"
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/dashboard.js:48
|
||||
#: model:ir.actions.act_window,name:board.open_board_my_dash_action
|
||||
#: model:ir.ui.menu,name:board.menu_board_my_dash
|
||||
#: model_terms:ir.ui.view,arch_db:board.board_my_dash_view
|
||||
#, python-format
|
||||
msgid "My Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model_terms:ir.actions.act_window,help:board.open_board_my_dash_action
|
||||
msgid ""
|
||||
"To add your first report into this dashboard, go to any\n"
|
||||
" menu, switch to list or graph view, and click <i>'Add to\n"
|
||||
" Dashboard'</i> in the extended search options."
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model_terms:ir.actions.act_window,help:board.open_board_my_dash_action
|
||||
msgid ""
|
||||
"You can filter and group data before inserting into the\n"
|
||||
" dashboard using the search options."
|
||||
msgstr ""
|
||||
139
odoo-bringout-oca-ocb-board/board/i18n/es_EC.po
Normal file
|
|
@ -0,0 +1,139 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * board
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Spanish (Ecuador) (https://www.transifex.com/odoo/teams/41243/es_EC/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_EC\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:25
|
||||
#, python-format
|
||||
msgid " "
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/favorite_menu.js:97
|
||||
#, python-format
|
||||
msgid "'%s' added to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model_terms:ir.actions.act_window,help:board.open_board_my_dash_action
|
||||
msgid "<b>Your personal dashboard is empty.</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:69
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:63
|
||||
#, python-format
|
||||
msgid "Add to my Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/dashboard.js:335
|
||||
#, python-format
|
||||
msgid "Are you sure you want to remove this item?"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model,name:board.model_board_board
|
||||
msgid "Board"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:7
|
||||
#, python-format
|
||||
msgid "Change Layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:5
|
||||
#, python-format
|
||||
msgid "Change Layout.."
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:36
|
||||
#, python-format
|
||||
msgid "Choose dashboard layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/favorite_menu.js:99
|
||||
#, python-format
|
||||
msgid "Could not add filter to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board_display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre a Mostrar"
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/dashboard.js:85
|
||||
#, python-format
|
||||
msgid "Edit Layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Fecha de modificación"
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/dashboard.js:48
|
||||
#: model:ir.actions.act_window,name:board.open_board_my_dash_action
|
||||
#: model:ir.ui.menu,name:board.menu_board_my_dash
|
||||
#: model_terms:ir.ui.view,arch_db:board.board_my_dash_view
|
||||
#, python-format
|
||||
msgid "My Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model_terms:ir.actions.act_window,help:board.open_board_my_dash_action
|
||||
msgid ""
|
||||
"To add your first report into this dashboard, go to any\n"
|
||||
" menu, switch to list or graph view, and click <i>'Add to\n"
|
||||
" Dashboard'</i> in the extended search options."
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model_terms:ir.actions.act_window,help:board.open_board_my_dash_action
|
||||
msgid ""
|
||||
"You can filter and group data before inserting into the\n"
|
||||
" dashboard using the search options."
|
||||
msgstr ""
|
||||
162
odoo-bringout-oca-ocb-board/board/i18n/es_MX.po
Normal file
|
|
@ -0,0 +1,162 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * board
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Lucia Pacheco, 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-22 05:45+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: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "\"%s\" added to dashboard"
|
||||
msgstr "Se agregó \"%s\" al tablero"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"Add to\n"
|
||||
" Dashboard\""
|
||||
msgstr ""
|
||||
"\"Agregar al\n"
|
||||
" tablero\""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "'%s' added to dashboard"
|
||||
msgstr "Se agregó '%s' al tablero"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr "Agregar"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add to my dashboard"
|
||||
msgstr "Agregar a mi tablero"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.js:0
|
||||
#, python-format
|
||||
msgid "Are you sure that you want to remove this item?"
|
||||
msgstr "¿Está seguro de que desea eliminar esta sección?"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_view.js:0
|
||||
#: model:ir.model,name:board.model_board_board
|
||||
#, python-format
|
||||
msgid "Board"
|
||||
msgstr "Tablero"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Change Layout"
|
||||
msgstr "Cambiar diseño"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Could not add filter to dashboard"
|
||||
msgstr "No se puede agregar un filtro al tablero"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_action.xml:0
|
||||
#, python-format
|
||||
msgid "Invalid action"
|
||||
msgstr "Acción no válida"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Layout"
|
||||
msgstr "Diseño"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.actions.act_window,name:board.open_board_my_dash_action
|
||||
#: model:ir.ui.menu,name:board.menu_board_my_dash
|
||||
#: model_terms:ir.ui.view,arch_db:board.board_my_dash_view
|
||||
msgid "My Dashboard"
|
||||
msgstr "Mi tablero"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Please refresh your browser for the changes to take effect."
|
||||
msgstr "Vuelva a cargar su navegador para ver los cambios."
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"To add your first report into this dashboard, go to any\n"
|
||||
" menu, switch to list or graph view, and click"
|
||||
msgstr ""
|
||||
"Para agregar su primer reporte a este tablero, vaya a cualquier\n"
|
||||
" menú, cambie a la vista de lista o gráfico y haga clic en"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can filter and group data before inserting into the\n"
|
||||
" dashboard using the search options."
|
||||
msgstr ""
|
||||
"Puede filtrar y agrupar datos antes de añadirlos al\n"
|
||||
" tablero usando las opciones de búsqueda."
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Your personal dashboard is empty"
|
||||
msgstr "Su tablero está vacío"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "in the extended search options."
|
||||
msgstr "en las opciones de búsqueda avanzada."
|
||||
196
odoo-bringout-oca-ocb-board/board/i18n/es_PA.po
Normal file
|
|
@ -0,0 +1,196 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * board
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-08-18 14:07+0000\n"
|
||||
"PO-Revision-Date: 2015-09-07 16:41+0000\n"
|
||||
"Last-Translator: Martin Trigaux\n"
|
||||
"Language-Team: Spanish (Panama) (http://www.transifex.com/odoo/odoo-9/"
|
||||
"language/es_PA/)\n"
|
||||
"Language: es_PA\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:24
|
||||
#, python-format
|
||||
msgid " "
|
||||
msgstr " "
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/dashboard.js:407
|
||||
#, python-format
|
||||
msgid "'%s' added to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model_terms:ir.actions.act_window,help:board.open_board_my_dash_action
|
||||
msgid "<b>Your personal dashboard is empty.</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:70
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:64
|
||||
#, python-format
|
||||
msgid "Add to my Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/dashboard.js:139
|
||||
#, python-format
|
||||
msgid "Are you sure you want to remove this item ?"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model,name:board.model_board_board
|
||||
msgid "Board"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model,name:board.model_board_create
|
||||
msgid "Board Creation"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_create_name
|
||||
msgid "Board Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model_terms:ir.ui.view,arch_db:board.view_board_create
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:6
|
||||
#, python-format
|
||||
msgid "Change Layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:4
|
||||
#, python-format
|
||||
msgid "Change Layout.."
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:36
|
||||
#, python-format
|
||||
msgid "Choose dashboard layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/dashboard.js:409
|
||||
#, python-format
|
||||
msgid "Could not add filter to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model_terms:ir.ui.view,arch_db:board.view_board_create
|
||||
msgid "Create"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.actions.act_window,name:board.action_board_create
|
||||
#: model:ir.ui.menu,name:board.menu_board_create
|
||||
msgid "Create Board"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model_terms:ir.ui.view,arch_db:board.view_board_create
|
||||
msgid "Create New Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_create_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_create_create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board_display_name
|
||||
#: model:ir.model.fields,field_description:board.field_board_create_display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/dashboard.js:94
|
||||
#, python-format
|
||||
msgid "Edit Layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board_id
|
||||
#: model:ir.model.fields,field_description:board.field_board_create_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board___last_update
|
||||
#: model:ir.model.fields,field_description:board.field_board_create___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_create_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización de"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_create_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización en"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.actions.act_window,name:board.open_board_my_dash_action
|
||||
#: model:ir.ui.menu,name:board.menu_board_my_dash
|
||||
#: model_terms:ir.ui.view,arch_db:board.board_my_dash_view
|
||||
msgid "My Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_create_menu_parent_id
|
||||
msgid "Parent Menu"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model_terms:ir.actions.act_window,help:board.open_board_my_dash_action
|
||||
msgid ""
|
||||
"To add your first report into this dashboard, go to any\n"
|
||||
" menu, switch to list or graph view, and click <i>'Add "
|
||||
"to\n"
|
||||
" Dashboard'</i> in the extended search options."
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model_terms:ir.actions.act_window,help:board.open_board_my_dash_action
|
||||
msgid ""
|
||||
"You can filter and group data before inserting into the\n"
|
||||
" dashboard using the search options."
|
||||
msgstr ""
|
||||
139
odoo-bringout-oca-ocb-board/board/i18n/es_PE.po
Normal file
|
|
@ -0,0 +1,139 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * board
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Spanish (Peru) (https://www.transifex.com/odoo/teams/41243/es_PE/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_PE\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:25
|
||||
#, python-format
|
||||
msgid " "
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/favorite_menu.js:97
|
||||
#, python-format
|
||||
msgid "'%s' added to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model_terms:ir.actions.act_window,help:board.open_board_my_dash_action
|
||||
msgid "<b>Your personal dashboard is empty.</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:69
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:63
|
||||
#, python-format
|
||||
msgid "Add to my Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/dashboard.js:335
|
||||
#, python-format
|
||||
msgid "Are you sure you want to remove this item?"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model,name:board.model_board_board
|
||||
msgid "Board"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:7
|
||||
#, python-format
|
||||
msgid "Change Layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:5
|
||||
#, python-format
|
||||
msgid "Change Layout.."
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:36
|
||||
#, python-format
|
||||
msgid "Choose dashboard layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/favorite_menu.js:99
|
||||
#, python-format
|
||||
msgid "Could not add filter to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board_display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre a Mostrar"
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/dashboard.js:85
|
||||
#, python-format
|
||||
msgid "Edit Layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Ultima Modificación en"
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/dashboard.js:48
|
||||
#: model:ir.actions.act_window,name:board.open_board_my_dash_action
|
||||
#: model:ir.ui.menu,name:board.menu_board_my_dash
|
||||
#: model_terms:ir.ui.view,arch_db:board.board_my_dash_view
|
||||
#, python-format
|
||||
msgid "My Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model_terms:ir.actions.act_window,help:board.open_board_my_dash_action
|
||||
msgid ""
|
||||
"To add your first report into this dashboard, go to any\n"
|
||||
" menu, switch to list or graph view, and click <i>'Add to\n"
|
||||
" Dashboard'</i> in the extended search options."
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model_terms:ir.actions.act_window,help:board.open_board_my_dash_action
|
||||
msgid ""
|
||||
"You can filter and group data before inserting into the\n"
|
||||
" dashboard using the search options."
|
||||
msgstr ""
|
||||
139
odoo-bringout-oca-ocb-board/board/i18n/es_PY.po
Normal file
|
|
@ -0,0 +1,139 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * board
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Spanish (Paraguay) (https://www.transifex.com/odoo/teams/41243/es_PY/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_PY\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:25
|
||||
#, python-format
|
||||
msgid " "
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/favorite_menu.js:97
|
||||
#, python-format
|
||||
msgid "'%s' added to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model_terms:ir.actions.act_window,help:board.open_board_my_dash_action
|
||||
msgid "<b>Your personal dashboard is empty.</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:69
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:63
|
||||
#, python-format
|
||||
msgid "Add to my Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/dashboard.js:335
|
||||
#, python-format
|
||||
msgid "Are you sure you want to remove this item?"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model,name:board.model_board_board
|
||||
msgid "Board"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:7
|
||||
#, python-format
|
||||
msgid "Change Layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:5
|
||||
#, python-format
|
||||
msgid "Change Layout.."
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:36
|
||||
#, python-format
|
||||
msgid "Choose dashboard layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/favorite_menu.js:99
|
||||
#, python-format
|
||||
msgid "Could not add filter to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board_display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/dashboard.js:85
|
||||
#, python-format
|
||||
msgid "Edit Layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/dashboard.js:48
|
||||
#: model:ir.actions.act_window,name:board.open_board_my_dash_action
|
||||
#: model:ir.ui.menu,name:board.menu_board_my_dash
|
||||
#: model_terms:ir.ui.view,arch_db:board.board_my_dash_view
|
||||
#, python-format
|
||||
msgid "My Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model_terms:ir.actions.act_window,help:board.open_board_my_dash_action
|
||||
msgid ""
|
||||
"To add your first report into this dashboard, go to any\n"
|
||||
" menu, switch to list or graph view, and click <i>'Add to\n"
|
||||
" Dashboard'</i> in the extended search options."
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model_terms:ir.actions.act_window,help:board.open_board_my_dash_action
|
||||
msgid ""
|
||||
"You can filter and group data before inserting into the\n"
|
||||
" dashboard using the search options."
|
||||
msgstr ""
|
||||
139
odoo-bringout-oca-ocb-board/board/i18n/es_VE.po
Normal file
|
|
@ -0,0 +1,139 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * board
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Spanish (Venezuela) (https://www.transifex.com/odoo/teams/41243/es_VE/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_VE\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:25
|
||||
#, python-format
|
||||
msgid " "
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/favorite_menu.js:97
|
||||
#, python-format
|
||||
msgid "'%s' added to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model_terms:ir.actions.act_window,help:board.open_board_my_dash_action
|
||||
msgid "<b>Your personal dashboard is empty.</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:69
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:63
|
||||
#, python-format
|
||||
msgid "Add to my Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/dashboard.js:335
|
||||
#, python-format
|
||||
msgid "Are you sure you want to remove this item?"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model,name:board.model_board_board
|
||||
msgid "Board"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:7
|
||||
#, python-format
|
||||
msgid "Change Layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:5
|
||||
#, python-format
|
||||
msgid "Change Layout.."
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:36
|
||||
#, python-format
|
||||
msgid "Choose dashboard layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/favorite_menu.js:99
|
||||
#, python-format
|
||||
msgid "Could not add filter to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board_display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Mostrar nombre"
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/dashboard.js:85
|
||||
#, python-format
|
||||
msgid "Edit Layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Modificada por última vez"
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/dashboard.js:48
|
||||
#: model:ir.actions.act_window,name:board.open_board_my_dash_action
|
||||
#: model:ir.ui.menu,name:board.menu_board_my_dash
|
||||
#: model_terms:ir.ui.view,arch_db:board.board_my_dash_view
|
||||
#, python-format
|
||||
msgid "My Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model_terms:ir.actions.act_window,help:board.open_board_my_dash_action
|
||||
msgid ""
|
||||
"To add your first report into this dashboard, go to any\n"
|
||||
" menu, switch to list or graph view, and click <i>'Add to\n"
|
||||
" Dashboard'</i> in the extended search options."
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model_terms:ir.actions.act_window,help:board.open_board_my_dash_action
|
||||
msgid ""
|
||||
"You can filter and group data before inserting into the\n"
|
||||
" dashboard using the search options."
|
||||
msgstr ""
|
||||
164
odoo-bringout-oca-ocb-board/board/i18n/et.po
Normal file
|
|
@ -0,0 +1,164 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * board
|
||||
#
|
||||
# Translators:
|
||||
# Marek Pontus, 2022
|
||||
# Rivo Zängov <eraser@eraser.ee>, 2022
|
||||
# Algo Kärp <algokarp@gmail.com>, 2022
|
||||
# Triine Aavik <triine@avalah.ee>, 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-22 05:45+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: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "\"%s\" added to dashboard"
|
||||
msgstr "\"%s\" lisatud töölauale"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"Add to\n"
|
||||
" Dashboard\""
|
||||
msgstr ""
|
||||
"\"Lisa\n"
|
||||
" töölauale\""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "'%s' added to dashboard"
|
||||
msgstr "'%s' lisatud töölauale"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr "Lisa"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add to my dashboard"
|
||||
msgstr "Lisa minu töölauale"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.js:0
|
||||
#, python-format
|
||||
msgid "Are you sure that you want to remove this item?"
|
||||
msgstr "Olete kindel, et soovite seda üksust eemaldada?"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_view.js:0
|
||||
#: model:ir.model,name:board.model_board_board
|
||||
#, python-format
|
||||
msgid "Board"
|
||||
msgstr "Juhtkond"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Change Layout"
|
||||
msgstr "Muuda paigutust"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Could not add filter to dashboard"
|
||||
msgstr "Ei saa lisada filtrit töölauale"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_action.xml:0
|
||||
#, python-format
|
||||
msgid "Invalid action"
|
||||
msgstr "Kehtetu toiming"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Layout"
|
||||
msgstr "Paigutus"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.actions.act_window,name:board.open_board_my_dash_action
|
||||
#: model:ir.ui.menu,name:board.menu_board_my_dash
|
||||
#: model_terms:ir.ui.view,arch_db:board.board_my_dash_view
|
||||
msgid "My Dashboard"
|
||||
msgstr "Minu töölaud"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Please refresh your browser for the changes to take effect."
|
||||
msgstr "Palun värskendage oma brauserit, et muutused jõustuksid."
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"To add your first report into this dashboard, go to any\n"
|
||||
" menu, switch to list or graph view, and click"
|
||||
msgstr ""
|
||||
"Esimese raporti töölauale lisamiseks, minge ükskõik millisesse\n"
|
||||
" menüüsse, valige graafiline või listi vaade ja klõpsake"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can filter and group data before inserting into the\n"
|
||||
" dashboard using the search options."
|
||||
msgstr ""
|
||||
"Otsinguvalikutes saate andmeid filtreerida ja rühmitada\n"
|
||||
" enne töölauale sisestamist."
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Your personal dashboard is empty"
|
||||
msgstr "Teie isiklik töölaud on tühi"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "in the extended search options."
|
||||
msgstr "laiendatud otinguvalikutes."
|
||||
139
odoo-bringout-oca-ocb-board/board/i18n/eu.po
Normal file
|
|
@ -0,0 +1,139 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * board
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Basque (https://www.transifex.com/odoo/teams/41243/eu/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: eu\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:25
|
||||
#, python-format
|
||||
msgid " "
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/favorite_menu.js:97
|
||||
#, python-format
|
||||
msgid "'%s' added to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model_terms:ir.actions.act_window,help:board.open_board_my_dash_action
|
||||
msgid "<b>Your personal dashboard is empty.</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:69
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:63
|
||||
#, python-format
|
||||
msgid "Add to my Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/dashboard.js:335
|
||||
#, python-format
|
||||
msgid "Are you sure you want to remove this item?"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model,name:board.model_board_board
|
||||
msgid "Board"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:7
|
||||
#, python-format
|
||||
msgid "Change Layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:5
|
||||
#, python-format
|
||||
msgid "Change Layout.."
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:36
|
||||
#, python-format
|
||||
msgid "Choose dashboard layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/favorite_menu.js:99
|
||||
#, python-format
|
||||
msgid "Could not add filter to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board_display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Izena erakutsi"
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/dashboard.js:85
|
||||
#, python-format
|
||||
msgid "Edit Layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/dashboard.js:48
|
||||
#: model:ir.actions.act_window,name:board.open_board_my_dash_action
|
||||
#: model:ir.ui.menu,name:board.menu_board_my_dash
|
||||
#: model_terms:ir.ui.view,arch_db:board.board_my_dash_view
|
||||
#, python-format
|
||||
msgid "My Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model_terms:ir.actions.act_window,help:board.open_board_my_dash_action
|
||||
msgid ""
|
||||
"To add your first report into this dashboard, go to any\n"
|
||||
" menu, switch to list or graph view, and click <i>'Add to\n"
|
||||
" Dashboard'</i> in the extended search options."
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model_terms:ir.actions.act_window,help:board.open_board_my_dash_action
|
||||
msgid ""
|
||||
"You can filter and group data before inserting into the\n"
|
||||
" dashboard using the search options."
|
||||
msgstr ""
|
||||
165
odoo-bringout-oca-ocb-board/board/i18n/fa.po
Normal file
|
|
@ -0,0 +1,165 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * board
|
||||
#
|
||||
# Translators:
|
||||
# Mohammad Tahmasebi <hit.tah75@gmail.com>, 2023
|
||||
# Mohsen Mohammadi <iammohsen.123@gmail.com>, 2023
|
||||
# Hamid Darabi, 2023
|
||||
# Hanna Kheradroosta, 2023
|
||||
# Hamed Mohammadi <hamed@dehongi.com>, 2023
|
||||
# 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-22 05:45+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: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "\"%s\" added to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"Add to\n"
|
||||
" Dashboard\""
|
||||
msgstr ""
|
||||
"\"اضافه به\n"
|
||||
" داشبورد\""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "'%s' added to dashboard"
|
||||
msgstr "'%s' به داشبورد افزوده شد"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr "افزودن"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add to my dashboard"
|
||||
msgstr "افزودن به داشبورد من"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.js:0
|
||||
#, python-format
|
||||
msgid "Are you sure that you want to remove this item?"
|
||||
msgstr "آیا مطمئن هستید که میخواهید این مورد را حذف کنید؟"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_view.js:0
|
||||
#: model:ir.model,name:board.model_board_board
|
||||
#, python-format
|
||||
msgid "Board"
|
||||
msgstr "بورد"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Change Layout"
|
||||
msgstr "تغییر طرح بندی"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Could not add filter to dashboard"
|
||||
msgstr "نمیتوان فیلتر را به داشبورد افزود"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board__id
|
||||
msgid "ID"
|
||||
msgstr "شناسه"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_action.xml:0
|
||||
#, python-format
|
||||
msgid "Invalid action"
|
||||
msgstr "اقدام نامعتبر"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Layout"
|
||||
msgstr "طرح بندی"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.actions.act_window,name:board.open_board_my_dash_action
|
||||
#: model:ir.ui.menu,name:board.menu_board_my_dash
|
||||
#: model_terms:ir.ui.view,arch_db:board.board_my_dash_view
|
||||
msgid "My Dashboard"
|
||||
msgstr "داشبورد من"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Please refresh your browser for the changes to take effect."
|
||||
msgstr "لطفا مرورگر خود را رفرش کنید تا تغییرات انجام شود."
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"To add your first report into this dashboard, go to any\n"
|
||||
" menu, switch to list or graph view, and click"
|
||||
msgstr ""
|
||||
"برای افزودن گزارش اول خود به این داشبورد، به هر \n"
|
||||
" منویی بروید، به نمای لیست یا نمودار سوئیچ کنید، و کلیک کنید"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can filter and group data before inserting into the\n"
|
||||
" dashboard using the search options."
|
||||
msgstr ""
|
||||
"شما میتوانید دادهها را قبل از قرار دادن در داشبورد با استفاده از گزینههای"
|
||||
" جستجو فیلتر و گروهبندی کنید."
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Your personal dashboard is empty"
|
||||
msgstr "داشبورد شخصی شما خالی است"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "in the extended search options."
|
||||
msgstr "در گزینههای جستجوی گسترش داده شده."
|
||||
164
odoo-bringout-oca-ocb-board/board/i18n/fi.po
Normal file
|
|
@ -0,0 +1,164 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * board
|
||||
#
|
||||
# Translators:
|
||||
# artol <arto.leskinen@tek.fi>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2022
|
||||
# Tuomas Lyyra <tuomas.lyyra@legenda.fi>, 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-22 05:45+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: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "\"%s\" added to dashboard"
|
||||
msgstr "\"%s\" lisätty kojelautaan"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"Add to\n"
|
||||
" Dashboard\""
|
||||
msgstr ""
|
||||
"\"Lisää\n"
|
||||
" kojelautaan\""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "'%s' added to dashboard"
|
||||
msgstr "'%s' lisätty työpöydällesi"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr "Lisää"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add to my dashboard"
|
||||
msgstr "Lisää omaan kojelautaan"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.js:0
|
||||
#, python-format
|
||||
msgid "Are you sure that you want to remove this item?"
|
||||
msgstr "Haluatko varmasti poistaa tämän kohteen?"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_view.js:0
|
||||
#: model:ir.model,name:board.model_board_board
|
||||
#, python-format
|
||||
msgid "Board"
|
||||
msgstr "Työpöytä"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Change Layout"
|
||||
msgstr "Muuta asettelu"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Could not add filter to dashboard"
|
||||
msgstr "Suodatinta ei pystytty lisäämään työpöydälle"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_action.xml:0
|
||||
#, python-format
|
||||
msgid "Invalid action"
|
||||
msgstr "Virheellinen toiminto"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Layout"
|
||||
msgstr "Ulkoasu"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.actions.act_window,name:board.open_board_my_dash_action
|
||||
#: model:ir.ui.menu,name:board.menu_board_my_dash
|
||||
#: model_terms:ir.ui.view,arch_db:board.board_my_dash_view
|
||||
msgid "My Dashboard"
|
||||
msgstr "Oma työpöytä"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Please refresh your browser for the changes to take effect."
|
||||
msgstr "Virkistä selaimesi, jotta muutokset tulevat voimaan."
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"To add your first report into this dashboard, go to any\n"
|
||||
" menu, switch to list or graph view, and click"
|
||||
msgstr ""
|
||||
"Jos haluat lisätä ensimmäisen raporttisi tähän kojelautaan, siirry mihin tahansa osoitteessa\n"
|
||||
" valikkoon, vaihda luettelo- tai graafinäkymään ja napsauta sitten"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can filter and group data before inserting into the\n"
|
||||
" dashboard using the search options."
|
||||
msgstr ""
|
||||
"Voit suodattaa ja ryhmitellä tietoja ennen niiden lisäämistä\n"
|
||||
" kojelautaan hakuvaihtoehtojen avulla."
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Your personal dashboard is empty"
|
||||
msgstr "Henkilökohtainen ilmoitustaulusi on tyhjä"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "in the extended search options."
|
||||
msgstr "laajennetuissa hakuvaihtoehdoissa."
|
||||
139
odoo-bringout-oca-ocb-board/board/i18n/fo.po
Normal file
|
|
@ -0,0 +1,139 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * board
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Faroese (https://www.transifex.com/odoo/teams/41243/fo/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fo\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:25
|
||||
#, python-format
|
||||
msgid " "
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/favorite_menu.js:97
|
||||
#, python-format
|
||||
msgid "'%s' added to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model_terms:ir.actions.act_window,help:board.open_board_my_dash_action
|
||||
msgid "<b>Your personal dashboard is empty.</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:69
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:63
|
||||
#, python-format
|
||||
msgid "Add to my Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/dashboard.js:335
|
||||
#, python-format
|
||||
msgid "Are you sure you want to remove this item?"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model,name:board.model_board_board
|
||||
msgid "Board"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:7
|
||||
#, python-format
|
||||
msgid "Change Layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:5
|
||||
#, python-format
|
||||
msgid "Change Layout.."
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:36
|
||||
#, python-format
|
||||
msgid "Choose dashboard layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/favorite_menu.js:99
|
||||
#, python-format
|
||||
msgid "Could not add filter to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board_display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Vís navn"
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/dashboard.js:85
|
||||
#, python-format
|
||||
msgid "Edit Layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Seinast rættað tann"
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/dashboard.js:48
|
||||
#: model:ir.actions.act_window,name:board.open_board_my_dash_action
|
||||
#: model:ir.ui.menu,name:board.menu_board_my_dash
|
||||
#: model_terms:ir.ui.view,arch_db:board.board_my_dash_view
|
||||
#, python-format
|
||||
msgid "My Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model_terms:ir.actions.act_window,help:board.open_board_my_dash_action
|
||||
msgid ""
|
||||
"To add your first report into this dashboard, go to any\n"
|
||||
" menu, switch to list or graph view, and click <i>'Add to\n"
|
||||
" Dashboard'</i> in the extended search options."
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model_terms:ir.actions.act_window,help:board.open_board_my_dash_action
|
||||
msgid ""
|
||||
"You can filter and group data before inserting into the\n"
|
||||
" dashboard using the search options."
|
||||
msgstr ""
|
||||
162
odoo-bringout-oca-ocb-board/board/i18n/fr.po
Normal file
|
|
@ -0,0 +1,162 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * board
|
||||
#
|
||||
# Translators:
|
||||
# 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-22 05:45+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: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "\"%s\" added to dashboard"
|
||||
msgstr "\"%s\" ajouté au tableau de bord"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"Add to\n"
|
||||
" Dashboard\""
|
||||
msgstr ""
|
||||
"\"Ajouter au\n"
|
||||
" tableau de bord\""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "'%s' added to dashboard"
|
||||
msgstr " %s Ajouter au tableau de bord"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr "Ajouter"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add to my dashboard"
|
||||
msgstr "Ajouter à mon tableau de bord"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.js:0
|
||||
#, python-format
|
||||
msgid "Are you sure that you want to remove this item?"
|
||||
msgstr "Êtes-vous sûr de vouloir supprimer cet élément ?"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_view.js:0
|
||||
#: model:ir.model,name:board.model_board_board
|
||||
#, python-format
|
||||
msgid "Board"
|
||||
msgstr "Tableau"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Change Layout"
|
||||
msgstr "Modifier l'agencement"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Could not add filter to dashboard"
|
||||
msgstr "Impossible d'ajouter le filtre au tableau de bord"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_action.xml:0
|
||||
#, python-format
|
||||
msgid "Invalid action"
|
||||
msgstr "Action invalide"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Layout"
|
||||
msgstr "Agencement"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.actions.act_window,name:board.open_board_my_dash_action
|
||||
#: model:ir.ui.menu,name:board.menu_board_my_dash
|
||||
#: model_terms:ir.ui.view,arch_db:board.board_my_dash_view
|
||||
msgid "My Dashboard"
|
||||
msgstr "Mon tableau de bord"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Please refresh your browser for the changes to take effect."
|
||||
msgstr "Veuillez rafraîchir votre navigateur pour appliquer les changements."
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"To add your first report into this dashboard, go to any\n"
|
||||
" menu, switch to list or graph view, and click"
|
||||
msgstr ""
|
||||
"Pour ajouter votre premier rapport à ce tableau de bord, allez à n'importe quel\n"
|
||||
" menu, basculez entre vue liste ou vue graphique, et cliquez sur"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can filter and group data before inserting into the\n"
|
||||
" dashboard using the search options."
|
||||
msgstr ""
|
||||
"Vous pouvez filtrer et regrouper les données avant de les ajouter à votre\n"
|
||||
" tableau de bord, en utilisant les options de recherche avancées."
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Your personal dashboard is empty"
|
||||
msgstr "Votre tableau de bord personnel est vide"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "in the extended search options."
|
||||
msgstr "dans le menu \"Favoris\" des options de recherches."
|
||||
196
odoo-bringout-oca-ocb-board/board/i18n/fr_BE.po
Normal file
|
|
@ -0,0 +1,196 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * board
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-08-18 14:07+0000\n"
|
||||
"PO-Revision-Date: 2015-09-07 16:41+0000\n"
|
||||
"Last-Translator: Martin Trigaux\n"
|
||||
"Language-Team: French (Belgium) (http://www.transifex.com/odoo/odoo-9/"
|
||||
"language/fr_BE/)\n"
|
||||
"Language: fr_BE\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:24
|
||||
#, python-format
|
||||
msgid " "
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/dashboard.js:407
|
||||
#, python-format
|
||||
msgid "'%s' added to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model_terms:ir.actions.act_window,help:board.open_board_my_dash_action
|
||||
msgid "<b>Your personal dashboard is empty.</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:70
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:64
|
||||
#, python-format
|
||||
msgid "Add to my Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/dashboard.js:139
|
||||
#, python-format
|
||||
msgid "Are you sure you want to remove this item ?"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model,name:board.model_board_board
|
||||
msgid "Board"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model,name:board.model_board_create
|
||||
msgid "Board Creation"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_create_name
|
||||
msgid "Board Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model_terms:ir.ui.view,arch_db:board.view_board_create
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:6
|
||||
#, python-format
|
||||
msgid "Change Layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:4
|
||||
#, python-format
|
||||
msgid "Change Layout.."
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:36
|
||||
#, python-format
|
||||
msgid "Choose dashboard layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/dashboard.js:409
|
||||
#, python-format
|
||||
msgid "Could not add filter to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model_terms:ir.ui.view,arch_db:board.view_board_create
|
||||
msgid "Create"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.actions.act_window,name:board.action_board_create
|
||||
#: model:ir.ui.menu,name:board.menu_board_create
|
||||
msgid "Create Board"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model_terms:ir.ui.view,arch_db:board.view_board_create
|
||||
msgid "Create New Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_create_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Créé par"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_create_create_date
|
||||
msgid "Created on"
|
||||
msgstr "Créé le"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board_display_name
|
||||
#: model:ir.model.fields,field_description:board.field_board_create_display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/dashboard.js:94
|
||||
#, python-format
|
||||
msgid "Edit Layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board_id
|
||||
#: model:ir.model.fields,field_description:board.field_board_create_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board___last_update
|
||||
#: model:ir.model.fields,field_description:board.field_board_create___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_create_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Derniere fois mis à jour par"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_create_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Dernière mis à jour le"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.actions.act_window,name:board.open_board_my_dash_action
|
||||
#: model:ir.ui.menu,name:board.menu_board_my_dash
|
||||
#: model_terms:ir.ui.view,arch_db:board.board_my_dash_view
|
||||
msgid "My Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_create_menu_parent_id
|
||||
msgid "Parent Menu"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model_terms:ir.actions.act_window,help:board.open_board_my_dash_action
|
||||
msgid ""
|
||||
"To add your first report into this dashboard, go to any\n"
|
||||
" menu, switch to list or graph view, and click <i>'Add "
|
||||
"to\n"
|
||||
" Dashboard'</i> in the extended search options."
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model_terms:ir.actions.act_window,help:board.open_board_my_dash_action
|
||||
msgid ""
|
||||
"You can filter and group data before inserting into the\n"
|
||||
" dashboard using the search options."
|
||||
msgstr ""
|
||||
139
odoo-bringout-oca-ocb-board/board/i18n/fr_CA.po
Normal file
|
|
@ -0,0 +1,139 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * board
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: French (Canada) (https://www.transifex.com/odoo/teams/41243/fr_CA/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fr_CA\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:25
|
||||
#, python-format
|
||||
msgid " "
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/favorite_menu.js:97
|
||||
#, python-format
|
||||
msgid "'%s' added to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model_terms:ir.actions.act_window,help:board.open_board_my_dash_action
|
||||
msgid "<b>Your personal dashboard is empty.</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:69
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:63
|
||||
#, python-format
|
||||
msgid "Add to my Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/dashboard.js:335
|
||||
#, python-format
|
||||
msgid "Are you sure you want to remove this item?"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model,name:board.model_board_board
|
||||
msgid "Board"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:7
|
||||
#, python-format
|
||||
msgid "Change Layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:5
|
||||
#, python-format
|
||||
msgid "Change Layout.."
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:36
|
||||
#, python-format
|
||||
msgid "Choose dashboard layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/favorite_menu.js:99
|
||||
#, python-format
|
||||
msgid "Could not add filter to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board_display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nom affiché"
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/dashboard.js:85
|
||||
#, python-format
|
||||
msgid "Edit Layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board_id
|
||||
msgid "ID"
|
||||
msgstr "Identifiant"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Dernière modification le"
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/dashboard.js:48
|
||||
#: model:ir.actions.act_window,name:board.open_board_my_dash_action
|
||||
#: model:ir.ui.menu,name:board.menu_board_my_dash
|
||||
#: model_terms:ir.ui.view,arch_db:board.board_my_dash_view
|
||||
#, python-format
|
||||
msgid "My Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model_terms:ir.actions.act_window,help:board.open_board_my_dash_action
|
||||
msgid ""
|
||||
"To add your first report into this dashboard, go to any\n"
|
||||
" menu, switch to list or graph view, and click <i>'Add to\n"
|
||||
" Dashboard'</i> in the extended search options."
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model_terms:ir.actions.act_window,help:board.open_board_my_dash_action
|
||||
msgid ""
|
||||
"You can filter and group data before inserting into the\n"
|
||||
" dashboard using the search options."
|
||||
msgstr ""
|
||||
139
odoo-bringout-oca-ocb-board/board/i18n/gl.po
Normal file
|
|
@ -0,0 +1,139 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * board
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Galician (https://www.transifex.com/odoo/teams/41243/gl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: gl\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:25
|
||||
#, python-format
|
||||
msgid " "
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/favorite_menu.js:97
|
||||
#, python-format
|
||||
msgid "'%s' added to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model_terms:ir.actions.act_window,help:board.open_board_my_dash_action
|
||||
msgid "<b>Your personal dashboard is empty.</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:69
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:63
|
||||
#, python-format
|
||||
msgid "Add to my Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/dashboard.js:335
|
||||
#, python-format
|
||||
msgid "Are you sure you want to remove this item?"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model,name:board.model_board_board
|
||||
msgid "Board"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:7
|
||||
#, python-format
|
||||
msgid "Change Layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:5
|
||||
#, python-format
|
||||
msgid "Change Layout.."
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:36
|
||||
#, python-format
|
||||
msgid "Choose dashboard layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/favorite_menu.js:99
|
||||
#, python-format
|
||||
msgid "Could not add filter to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board_display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/dashboard.js:85
|
||||
#, python-format
|
||||
msgid "Edit Layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/dashboard.js:48
|
||||
#: model:ir.actions.act_window,name:board.open_board_my_dash_action
|
||||
#: model:ir.ui.menu,name:board.menu_board_my_dash
|
||||
#: model_terms:ir.ui.view,arch_db:board.board_my_dash_view
|
||||
#, python-format
|
||||
msgid "My Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model_terms:ir.actions.act_window,help:board.open_board_my_dash_action
|
||||
msgid ""
|
||||
"To add your first report into this dashboard, go to any\n"
|
||||
" menu, switch to list or graph view, and click <i>'Add to\n"
|
||||
" Dashboard'</i> in the extended search options."
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model_terms:ir.actions.act_window,help:board.open_board_my_dash_action
|
||||
msgid ""
|
||||
"You can filter and group data before inserting into the\n"
|
||||
" dashboard using the search options."
|
||||
msgstr ""
|
||||
154
odoo-bringout-oca-ocb-board/board/i18n/gu.po
Normal file
|
|
@ -0,0 +1,154 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * board
|
||||
#
|
||||
# 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-22 05:45+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: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "\"%s\" added to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"Add to\n"
|
||||
" Dashboard\""
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "'%s' added to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr "Add"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add to my dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.js:0
|
||||
#, python-format
|
||||
msgid "Are you sure that you want to remove this item?"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_view.js:0
|
||||
#: model:ir.model,name:board.model_board_board
|
||||
#, python-format
|
||||
msgid "Board"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Change Layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Could not add filter to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_action.xml:0
|
||||
#, python-format
|
||||
msgid "Invalid action"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.actions.act_window,name:board.open_board_my_dash_action
|
||||
#: model:ir.ui.menu,name:board.menu_board_my_dash
|
||||
#: model_terms:ir.ui.view,arch_db:board.board_my_dash_view
|
||||
msgid "My Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Please refresh your browser for the changes to take effect."
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"To add your first report into this dashboard, go to any\n"
|
||||
" menu, switch to list or graph view, and click"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can filter and group data before inserting into the\n"
|
||||
" dashboard using the search options."
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Your personal dashboard is empty"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "in the extended search options."
|
||||
msgstr ""
|
||||
164
odoo-bringout-oca-ocb-board/board/i18n/he.po
Normal file
|
|
@ -0,0 +1,164 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * board
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Jonathan Spier, 2022
|
||||
# Lilach Gilliam <lilach.gilliam@gmail.com>, 2022
|
||||
# ZVI BLONDER <ZVIBLONDER@gmail.com>, 2022
|
||||
# Ha Ketem <haketem@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-22 05:45+0000\n"
|
||||
"Last-Translator: Ha Ketem <haketem@gmail.com>, 2024\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: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "\"%s\" added to dashboard"
|
||||
msgstr "\"%s\" התווסף ללוח הבקרה"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"Add to\n"
|
||||
" Dashboard\""
|
||||
msgstr ""
|
||||
"\"הוספה ל\n"
|
||||
" לוח בקרה\""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "'%s' added to dashboard"
|
||||
msgstr "'%s' התווסף ללוח הבקרה"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr "הוסף"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add to my dashboard"
|
||||
msgstr "הוסף ללוח הבקרה שלי"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.js:0
|
||||
#, python-format
|
||||
msgid "Are you sure that you want to remove this item?"
|
||||
msgstr "בטוח שברצונך להסיר פריט זה?"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_view.js:0
|
||||
#: model:ir.model,name:board.model_board_board
|
||||
#, python-format
|
||||
msgid "Board"
|
||||
msgstr "לוח"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Change Layout"
|
||||
msgstr "שנה פריסה"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Could not add filter to dashboard"
|
||||
msgstr "לא היה ניתן להוסיף מסנן ללוח הבקרה"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board__id
|
||||
msgid "ID"
|
||||
msgstr "מזהה"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_action.xml:0
|
||||
#, python-format
|
||||
msgid "Invalid action"
|
||||
msgstr "פעולה שגויה"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Layout"
|
||||
msgstr "עיצוב"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.actions.act_window,name:board.open_board_my_dash_action
|
||||
#: model:ir.ui.menu,name:board.menu_board_my_dash
|
||||
#: model_terms:ir.ui.view,arch_db:board.board_my_dash_view
|
||||
msgid "My Dashboard"
|
||||
msgstr "לוח הבקרה שלי"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Please refresh your browser for the changes to take effect."
|
||||
msgstr "רענן את הדפדפן שלך כדי שהשינויים ייכנסו לתוקף."
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"To add your first report into this dashboard, go to any\n"
|
||||
" menu, switch to list or graph view, and click"
|
||||
msgstr ""
|
||||
"כדי להוסיף את הדוח הראשון שלך ללוח הבקרה הזה, יש ללחוץ על אחד התפריטים, "
|
||||
"לעבור לתצוגה רשימה או גרף, וללחוץ"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can filter and group data before inserting into the\n"
|
||||
" dashboard using the search options."
|
||||
msgstr ""
|
||||
"אפשר לסנן ולקבץ נתונים לפני הוספה\n"
|
||||
"ללוח הבקרה באמצעות אפשרויות החיפוש"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Your personal dashboard is empty"
|
||||
msgstr "לוח הבקרה האישי שלך ריק"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "in the extended search options."
|
||||
msgstr "באפשרויות החיפוש המורחבות."
|
||||
155
odoo-bringout-oca-ocb-board/board/i18n/hi.po
Normal file
|
|
@ -0,0 +1,155 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * board
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
# 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-22 05:45+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: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "\"%s\" added to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"Add to\n"
|
||||
" Dashboard\""
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "'%s' added to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr "जोड़ना"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add to my dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.js:0
|
||||
#, python-format
|
||||
msgid "Are you sure that you want to remove this item?"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_view.js:0
|
||||
#: model:ir.model,name:board.model_board_board
|
||||
#, python-format
|
||||
msgid "Board"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Change Layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Could not add filter to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board__id
|
||||
msgid "ID"
|
||||
msgstr "आईडी"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_action.xml:0
|
||||
#, python-format
|
||||
msgid "Invalid action"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.actions.act_window,name:board.open_board_my_dash_action
|
||||
#: model:ir.ui.menu,name:board.menu_board_my_dash
|
||||
#: model_terms:ir.ui.view,arch_db:board.board_my_dash_view
|
||||
msgid "My Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Please refresh your browser for the changes to take effect."
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"To add your first report into this dashboard, go to any\n"
|
||||
" menu, switch to list or graph view, and click"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can filter and group data before inserting into the\n"
|
||||
" dashboard using the search options."
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Your personal dashboard is empty"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "in the extended search options."
|
||||
msgstr ""
|
||||
163
odoo-bringout-oca-ocb-board/board/i18n/hr.po
Normal file
|
|
@ -0,0 +1,163 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * board
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# hrvoje sić <hrvoje.sic@gmail.com>, 2022
|
||||
# Ivica Dimjašević <ivica.dimjasevic@storm.hr>, 2022
|
||||
# Bole <bole@dajmi5.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-22 05:45+0000\n"
|
||||
"Last-Translator: Bole <bole@dajmi5.com>, 2023\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: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "\"%s\" added to dashboard"
|
||||
msgstr "\"%s\" dodan na nadzornu ploču"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"Add to\n"
|
||||
" Dashboard\""
|
||||
msgstr ""
|
||||
"\"Dodaj na\n"
|
||||
" Nadzornu ploču\""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "'%s' added to dashboard"
|
||||
msgstr "'%s' dodano na nadzornu ploču"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr "Dodaj"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add to my dashboard"
|
||||
msgstr "Dodaj na moju ploču"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.js:0
|
||||
#, python-format
|
||||
msgid "Are you sure that you want to remove this item?"
|
||||
msgstr "Jeste li sigurni da želite ukloniti ovu stavku?"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_view.js:0
|
||||
#: model:ir.model,name:board.model_board_board
|
||||
#, python-format
|
||||
msgid "Board"
|
||||
msgstr "Ploča"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Change Layout"
|
||||
msgstr "Promjeni raspored"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Could not add filter to dashboard"
|
||||
msgstr "Ne može se dodati filtar na nadzornu ploču"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_action.xml:0
|
||||
#, python-format
|
||||
msgid "Invalid action"
|
||||
msgstr "Neispravna radnja"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Layout"
|
||||
msgstr "Izgled"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.actions.act_window,name:board.open_board_my_dash_action
|
||||
#: model:ir.ui.menu,name:board.menu_board_my_dash
|
||||
#: model_terms:ir.ui.view,arch_db:board.board_my_dash_view
|
||||
msgid "My Dashboard"
|
||||
msgstr "Moja nadzorna ploča"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Please refresh your browser for the changes to take effect."
|
||||
msgstr "Molimo osvježite vaš preglednik kako bi izmjene bile vidljive."
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"To add your first report into this dashboard, go to any\n"
|
||||
" menu, switch to list or graph view, and click"
|
||||
msgstr ""
|
||||
"Za dodavanje prvog izvještaja na nadzornu ploču, , otiđite na\n"
|
||||
" bolokoji izbornik, prebacite se u graf pogled i kliknite"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can filter and group data before inserting into the\n"
|
||||
" dashboard using the search options."
|
||||
msgstr ""
|
||||
"Možete filtrirati i grupirati podatke prije dodavanja na\n"
|
||||
" nadzornu ploču korištenjem ocija pretaživanja i grupiranja."
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Your personal dashboard is empty"
|
||||
msgstr "Vaša nadzorna ploča je prazna"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "in the extended search options."
|
||||
msgstr "U opcijama naprednog pretraživanja."
|
||||
158
odoo-bringout-oca-ocb-board/board/i18n/hu.po
Normal file
|
|
@ -0,0 +1,158 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * board
|
||||
#
|
||||
# Translators:
|
||||
# gezza <geza.nagy@oregional.hu>, 2022
|
||||
# Ákos Nagy <akos.nagy@oregional.hu>, 2022
|
||||
# Tamás Németh <ntomasz81@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-22 05:45+0000\n"
|
||||
"Last-Translator: Tamás Németh <ntomasz81@gmail.com>, 2022\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: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "\"%s\" added to dashboard"
|
||||
msgstr "\"%s\" hozzáadva az irányítópulthoz"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"Add to\n"
|
||||
" Dashboard\""
|
||||
msgstr ""
|
||||
"\"Hozzáadás az\n"
|
||||
" Irányítópulthoz\""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "'%s' added to dashboard"
|
||||
msgstr "'%s' hozzáadva a irányítópulthoz"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr "Hozzáadás"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add to my dashboard"
|
||||
msgstr "Hozzáadás az irányítópultomhoz"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.js:0
|
||||
#, python-format
|
||||
msgid "Are you sure that you want to remove this item?"
|
||||
msgstr "biztos benne, hogy eltávolítja ezt az elemet?"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_view.js:0
|
||||
#: model:ir.model,name:board.model_board_board
|
||||
#, python-format
|
||||
msgid "Board"
|
||||
msgstr "Irányítópult"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Change Layout"
|
||||
msgstr "Elrendezés megváltoztatása"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Could not add filter to dashboard"
|
||||
msgstr "Nem lehetett hozzáadni a szűrőt a irányítópulthoz"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board__id
|
||||
msgid "ID"
|
||||
msgstr "Azonosító"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_action.xml:0
|
||||
#, python-format
|
||||
msgid "Invalid action"
|
||||
msgstr "Érvénytelen akció"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Layout"
|
||||
msgstr "Elrendezés"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.actions.act_window,name:board.open_board_my_dash_action
|
||||
#: model:ir.ui.menu,name:board.menu_board_my_dash
|
||||
#: model_terms:ir.ui.view,arch_db:board.board_my_dash_view
|
||||
msgid "My Dashboard"
|
||||
msgstr "Irányítópultom"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Please refresh your browser for the changes to take effect."
|
||||
msgstr "Kérem, frissítse a böngészőjét a változtatások érvénybe léptetéséhez."
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"To add your first report into this dashboard, go to any\n"
|
||||
" menu, switch to list or graph view, and click"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can filter and group data before inserting into the\n"
|
||||
" dashboard using the search options."
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Your personal dashboard is empty"
|
||||
msgstr "Az Ön személyes irányítópultja üres"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "in the extended search options."
|
||||
msgstr "a bővített keresési lehetőségekben."
|
||||
150
odoo-bringout-oca-ocb-board/board/i18n/hy.po
Normal file
|
|
@ -0,0 +1,150 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * board
|
||||
#
|
||||
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-22 05:45+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: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "\"%s\" added to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"Add to\n"
|
||||
" Dashboard\""
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "'%s' added to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add to my dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.js:0
|
||||
#, python-format
|
||||
msgid "Are you sure that you want to remove this item?"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_view.js:0
|
||||
#: model:ir.model,name:board.model_board_board
|
||||
#, python-format
|
||||
msgid "Board"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Change Layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Could not add filter to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_action.xml:0
|
||||
#, python-format
|
||||
msgid "Invalid action"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.actions.act_window,name:board.open_board_my_dash_action
|
||||
#: model:ir.ui.menu,name:board.menu_board_my_dash
|
||||
#: model_terms:ir.ui.view,arch_db:board.board_my_dash_view
|
||||
msgid "My Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Please refresh your browser for the changes to take effect."
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"To add your first report into this dashboard, go to any\n"
|
||||
" menu, switch to list or graph view, and click"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can filter and group data before inserting into the\n"
|
||||
" dashboard using the search options."
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Your personal dashboard is empty"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "in the extended search options."
|
||||
msgstr ""
|
||||
162
odoo-bringout-oca-ocb-board/board/i18n/id.po
Normal file
|
|
@ -0,0 +1,162 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * board
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# arfa simoncelli, 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-22 05:45+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: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "\"%s\" added to dashboard"
|
||||
msgstr "\"%s\" ditambahkan ke dashboard"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"Add to\n"
|
||||
" Dashboard\""
|
||||
msgstr ""
|
||||
"\"Tambahkan ke\n"
|
||||
" Dashboard\""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "'%s' added to dashboard"
|
||||
msgstr "'%s' ditambahkan ke dashboard"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr "Tambah"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add to my dashboard"
|
||||
msgstr "Tambah ke dashboard saya"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.js:0
|
||||
#, python-format
|
||||
msgid "Are you sure that you want to remove this item?"
|
||||
msgstr "Apakah Anda yakin ingin menghapus item ini?"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_view.js:0
|
||||
#: model:ir.model,name:board.model_board_board
|
||||
#, python-format
|
||||
msgid "Board"
|
||||
msgstr "Papan"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Change Layout"
|
||||
msgstr "Ubah Tata Letak"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Could not add filter to dashboard"
|
||||
msgstr "Tidak bisa menambahkan filter untuk dashboard"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_action.xml:0
|
||||
#, python-format
|
||||
msgid "Invalid action"
|
||||
msgstr "Action tidak valid"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Layout"
|
||||
msgstr "Layout"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.actions.act_window,name:board.open_board_my_dash_action
|
||||
#: model:ir.ui.menu,name:board.menu_board_my_dash
|
||||
#: model_terms:ir.ui.view,arch_db:board.board_my_dash_view
|
||||
msgid "My Dashboard"
|
||||
msgstr "Dashboard Saya"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Please refresh your browser for the changes to take effect."
|
||||
msgstr "Harap pulihkan browser Anda agar perubahan diterapkan."
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"To add your first report into this dashboard, go to any\n"
|
||||
" menu, switch to list or graph view, and click"
|
||||
msgstr ""
|
||||
"Untuk menambahkan laporan pertama Anda ke dasbor ini, buka menu \n"
|
||||
"apa saja, alihkan ke tampilan daftar atau grafik, dan klik"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can filter and group data before inserting into the\n"
|
||||
" dashboard using the search options."
|
||||
msgstr ""
|
||||
"Anda dapat memfilter dan mengelompokkan data sebelum dimasukkan \n"
|
||||
"ke dasbor menggunakan opsi pencarian."
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Your personal dashboard is empty"
|
||||
msgstr "Dasbor pribadi Anda kosong"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "in the extended search options."
|
||||
msgstr "dalam opsi pencarian yang diperluas."
|
||||
154
odoo-bringout-oca-ocb-board/board/i18n/is.po
Normal file
|
|
@ -0,0 +1,154 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * board
|
||||
#
|
||||
# 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-22 05:45+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: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "\"%s\" added to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"Add to\n"
|
||||
" Dashboard\""
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "'%s' added to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr "Bæta við"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add to my dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.js:0
|
||||
#, python-format
|
||||
msgid "Are you sure that you want to remove this item?"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_view.js:0
|
||||
#: model:ir.model,name:board.model_board_board
|
||||
#, python-format
|
||||
msgid "Board"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Change Layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Could not add filter to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board__id
|
||||
msgid "ID"
|
||||
msgstr "Auðkenni (ID)"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_action.xml:0
|
||||
#, python-format
|
||||
msgid "Invalid action"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Layout"
|
||||
msgstr "Skipulag"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.actions.act_window,name:board.open_board_my_dash_action
|
||||
#: model:ir.ui.menu,name:board.menu_board_my_dash
|
||||
#: model_terms:ir.ui.view,arch_db:board.board_my_dash_view
|
||||
msgid "My Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Please refresh your browser for the changes to take effect."
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"To add your first report into this dashboard, go to any\n"
|
||||
" menu, switch to list or graph view, and click"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can filter and group data before inserting into the\n"
|
||||
" dashboard using the search options."
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Your personal dashboard is empty"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "in the extended search options."
|
||||
msgstr ""
|
||||
162
odoo-bringout-oca-ocb-board/board/i18n/it.po
Normal file
|
|
@ -0,0 +1,162 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * board
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# 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-22 05:45+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: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "\"%s\" added to dashboard"
|
||||
msgstr "\"%s\" aggiunto alla bacheca"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"Add to\n"
|
||||
" Dashboard\""
|
||||
msgstr ""
|
||||
"\"Aggiungi alla\n"
|
||||
" bacheca\""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "'%s' added to dashboard"
|
||||
msgstr "\"%s\" aggiunto alla bacheca"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr "Aggiungi"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add to my dashboard"
|
||||
msgstr "Aggiungi alla bacheca"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.js:0
|
||||
#, python-format
|
||||
msgid "Are you sure that you want to remove this item?"
|
||||
msgstr "Sei sicuro di voler eliminare questo articolo?"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_view.js:0
|
||||
#: model:ir.model,name:board.model_board_board
|
||||
#, python-format
|
||||
msgid "Board"
|
||||
msgstr "Bacheca"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Change Layout"
|
||||
msgstr "Cambia struttura"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Could not add filter to dashboard"
|
||||
msgstr "Impossibile aggiungere il filtro alla bacheca"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_action.xml:0
|
||||
#, python-format
|
||||
msgid "Invalid action"
|
||||
msgstr "Azione non valida"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Layout"
|
||||
msgstr "Struttura"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.actions.act_window,name:board.open_board_my_dash_action
|
||||
#: model:ir.ui.menu,name:board.menu_board_my_dash
|
||||
#: model_terms:ir.ui.view,arch_db:board.board_my_dash_view
|
||||
msgid "My Dashboard"
|
||||
msgstr "La mia bacheca"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Please refresh your browser for the changes to take effect."
|
||||
msgstr "Aggiornare il browser per applicare i cambiamenti."
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"To add your first report into this dashboard, go to any\n"
|
||||
" menu, switch to list or graph view, and click"
|
||||
msgstr ""
|
||||
"Per aggiungere il primo report alla bacheca, vai in un menù\n"
|
||||
" qualsiasi, passa alla vista elenco o grafico e fai clic su"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can filter and group data before inserting into the\n"
|
||||
" dashboard using the search options."
|
||||
msgstr ""
|
||||
"Utilizzando le opzioni di ricerca è possibile filtrare e raggruppare\n"
|
||||
" i dati prima di inserirli nella bacheca."
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Your personal dashboard is empty"
|
||||
msgstr "La bacheca personale è vuota"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "in the extended search options."
|
||||
msgstr "nelle opzioni di ricerca estese."
|
||||
159
odoo-bringout-oca-ocb-board/board/i18n/ja.po
Normal file
|
|
@ -0,0 +1,159 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * board
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# 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-22 05:45+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: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "\"%s\" added to dashboard"
|
||||
msgstr "'%s' をダッシュボードに追加"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"Add to\n"
|
||||
" Dashboard\""
|
||||
msgstr ""
|
||||
"\"ダッシュボードに\n"
|
||||
" 追加\""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "'%s' added to dashboard"
|
||||
msgstr "'%s' をダッシュボードに追加"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr "追加"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add to my dashboard"
|
||||
msgstr "自分のダッシュボードに追加"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.js:0
|
||||
#, python-format
|
||||
msgid "Are you sure that you want to remove this item?"
|
||||
msgstr "この項目を本当に削除しますか?"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_view.js:0
|
||||
#: model:ir.model,name:board.model_board_board
|
||||
#, python-format
|
||||
msgid "Board"
|
||||
msgstr "ボード"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Change Layout"
|
||||
msgstr "レイアウトを変更"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Could not add filter to dashboard"
|
||||
msgstr "ダッシュボードにフィルタが追加できません"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_action.xml:0
|
||||
#, python-format
|
||||
msgid "Invalid action"
|
||||
msgstr "無効なアクション"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Layout"
|
||||
msgstr "レイアウト"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.actions.act_window,name:board.open_board_my_dash_action
|
||||
#: model:ir.ui.menu,name:board.menu_board_my_dash
|
||||
#: model_terms:ir.ui.view,arch_db:board.board_my_dash_view
|
||||
msgid "My Dashboard"
|
||||
msgstr "マイダッシュボード"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Please refresh your browser for the changes to take effect."
|
||||
msgstr "変更を反映させるためブラウザをリフレッシュしてください。"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"To add your first report into this dashboard, go to any\n"
|
||||
" menu, switch to list or graph view, and click"
|
||||
msgstr "このダッシュボードに最初のレポートを追加するには、いづれかのメニューへ行き、リストまたはグラフ表示に変更し、"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can filter and group data before inserting into the\n"
|
||||
" dashboard using the search options."
|
||||
msgstr ""
|
||||
"ダッシュボードに挿入する前に、検索オプションを使用して\n"
|
||||
" データをフィルタリングや、グループ化することができます。"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Your personal dashboard is empty"
|
||||
msgstr "あなたの個人ダッシュボードは空です。"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "in the extended search options."
|
||||
msgstr "を拡張検索オプションでクリックします"
|
||||
139
odoo-bringout-oca-ocb-board/board/i18n/ka.po
Normal file
|
|
@ -0,0 +1,139 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * board
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Georgian (https://www.transifex.com/odoo/teams/41243/ka/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ka\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:25
|
||||
#, python-format
|
||||
msgid " "
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/favorite_menu.js:97
|
||||
#, python-format
|
||||
msgid "'%s' added to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model_terms:ir.actions.act_window,help:board.open_board_my_dash_action
|
||||
msgid "<b>Your personal dashboard is empty.</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:69
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:63
|
||||
#, python-format
|
||||
msgid "Add to my Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/dashboard.js:335
|
||||
#, python-format
|
||||
msgid "Are you sure you want to remove this item?"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model,name:board.model_board_board
|
||||
msgid "Board"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:7
|
||||
#, python-format
|
||||
msgid "Change Layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:5
|
||||
#, python-format
|
||||
msgid "Change Layout.."
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:36
|
||||
#, python-format
|
||||
msgid "Choose dashboard layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/favorite_menu.js:99
|
||||
#, python-format
|
||||
msgid "Could not add filter to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board_display_name
|
||||
msgid "Display Name"
|
||||
msgstr "სახელი"
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/dashboard.js:85
|
||||
#, python-format
|
||||
msgid "Edit Layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board_id
|
||||
msgid "ID"
|
||||
msgstr "იდენტიფიკატორი"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "ბოლოს განახლებულია"
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/dashboard.js:48
|
||||
#: model:ir.actions.act_window,name:board.open_board_my_dash_action
|
||||
#: model:ir.ui.menu,name:board.menu_board_my_dash
|
||||
#: model_terms:ir.ui.view,arch_db:board.board_my_dash_view
|
||||
#, python-format
|
||||
msgid "My Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model_terms:ir.actions.act_window,help:board.open_board_my_dash_action
|
||||
msgid ""
|
||||
"To add your first report into this dashboard, go to any\n"
|
||||
" menu, switch to list or graph view, and click <i>'Add to\n"
|
||||
" Dashboard'</i> in the extended search options."
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model_terms:ir.actions.act_window,help:board.open_board_my_dash_action
|
||||
msgid ""
|
||||
"You can filter and group data before inserting into the\n"
|
||||
" dashboard using the search options."
|
||||
msgstr ""
|
||||
139
odoo-bringout-oca-ocb-board/board/i18n/kab.po
Normal file
|
|
@ -0,0 +1,139 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * board
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Kabyle (https://www.transifex.com/odoo/teams/41243/kab/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: kab\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:25
|
||||
#, python-format
|
||||
msgid " "
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/favorite_menu.js:97
|
||||
#, python-format
|
||||
msgid "'%s' added to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model_terms:ir.actions.act_window,help:board.open_board_my_dash_action
|
||||
msgid "<b>Your personal dashboard is empty.</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:69
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:63
|
||||
#, python-format
|
||||
msgid "Add to my Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/dashboard.js:335
|
||||
#, python-format
|
||||
msgid "Are you sure you want to remove this item?"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model,name:board.model_board_board
|
||||
msgid "Board"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:7
|
||||
#, python-format
|
||||
msgid "Change Layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:5
|
||||
#, python-format
|
||||
msgid "Change Layout.."
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:36
|
||||
#, python-format
|
||||
msgid "Choose dashboard layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/favorite_menu.js:99
|
||||
#, python-format
|
||||
msgid "Could not add filter to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board_display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/dashboard.js:85
|
||||
#, python-format
|
||||
msgid "Edit Layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board_id
|
||||
msgid "ID"
|
||||
msgstr "Asulay"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Aleqqem aneggaru di"
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/dashboard.js:48
|
||||
#: model:ir.actions.act_window,name:board.open_board_my_dash_action
|
||||
#: model:ir.ui.menu,name:board.menu_board_my_dash
|
||||
#: model_terms:ir.ui.view,arch_db:board.board_my_dash_view
|
||||
#, python-format
|
||||
msgid "My Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model_terms:ir.actions.act_window,help:board.open_board_my_dash_action
|
||||
msgid ""
|
||||
"To add your first report into this dashboard, go to any\n"
|
||||
" menu, switch to list or graph view, and click <i>'Add to\n"
|
||||
" Dashboard'</i> in the extended search options."
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model_terms:ir.actions.act_window,help:board.open_board_my_dash_action
|
||||
msgid ""
|
||||
"You can filter and group data before inserting into the\n"
|
||||
" dashboard using the search options."
|
||||
msgstr ""
|
||||
156
odoo-bringout-oca-ocb-board/board/i18n/km.po
Normal file
|
|
@ -0,0 +1,156 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * board
|
||||
#
|
||||
# Translators:
|
||||
# Sengtha Chay <sengtha@gmail.com>, 2023
|
||||
# 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-22 05:45+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: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "\"%s\" added to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"Add to\n"
|
||||
" Dashboard\""
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "'%s' added to dashboard"
|
||||
msgstr "%sបានបន្ថែមទៅផ្ទៃតាប្លូ"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr "បន្ថែម"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add to my dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.js:0
|
||||
#, python-format
|
||||
msgid "Are you sure that you want to remove this item?"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_view.js:0
|
||||
#: model:ir.model,name:board.model_board_board
|
||||
#, python-format
|
||||
msgid "Board"
|
||||
msgstr "ក្រុមប្រឹក្សាភិបាល"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Change Layout"
|
||||
msgstr "ប្តូរប្លង់"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Could not add filter to dashboard"
|
||||
msgstr "មិនអាចបន្ថែមតម្រងទៅផ្ទាំងព័ត៌មានបានទេ"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board__id
|
||||
msgid "ID"
|
||||
msgstr "អត្តសញ្ញាណ"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_action.xml:0
|
||||
#, python-format
|
||||
msgid "Invalid action"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Layout"
|
||||
msgstr "ប្លង់"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.actions.act_window,name:board.open_board_my_dash_action
|
||||
#: model:ir.ui.menu,name:board.menu_board_my_dash
|
||||
#: model_terms:ir.ui.view,arch_db:board.board_my_dash_view
|
||||
msgid "My Dashboard"
|
||||
msgstr "ផ្ទាំងគ្រប់គ្រងរបស់ខ្ញុំ"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Please refresh your browser for the changes to take effect."
|
||||
msgstr ""
|
||||
"សូមផ្ទុកកម្មវិធីរុករករបស់អ្នកឡើងវិញដើម្បីឱ្យការផ្លាស់ប្តូរមានប្រសិទ្ធភាព។"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"To add your first report into this dashboard, go to any\n"
|
||||
" menu, switch to list or graph view, and click"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can filter and group data before inserting into the\n"
|
||||
" dashboard using the search options."
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Your personal dashboard is empty"
|
||||
msgstr "ផ្ទៃតាប្លូផ្ទាល់ខ្លួនរបស់អ្នកគឺទទេ"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "in the extended search options."
|
||||
msgstr "នៅក្នុងជម្រើសស្វែងរកដែលបានពង្រីក។"
|
||||
161
odoo-bringout-oca-ocb-board/board/i18n/ko.po
Normal file
|
|
@ -0,0 +1,161 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * board
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Sarah Park, 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-22 05:45+0000\n"
|
||||
"Last-Translator: Sarah Park, 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: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "\"%s\" added to dashboard"
|
||||
msgstr "현황판에 \"%s\" 추가"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"Add to\n"
|
||||
" Dashboard\""
|
||||
msgstr ""
|
||||
"\"현황판\n"
|
||||
" 추가\""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "'%s' added to dashboard"
|
||||
msgstr "'%s' 현황판에 추가됨"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr "추가"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add to my dashboard"
|
||||
msgstr "내 현황판에 추가"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.js:0
|
||||
#, python-format
|
||||
msgid "Are you sure that you want to remove this item?"
|
||||
msgstr "이 항목을 삭제하시겠습니까?"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_view.js:0
|
||||
#: model:ir.model,name:board.model_board_board
|
||||
#, python-format
|
||||
msgid "Board"
|
||||
msgstr "대시보드"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Change Layout"
|
||||
msgstr "배치 변경"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Could not add filter to dashboard"
|
||||
msgstr "현황판에 필터를 추가할 수 없습니다."
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_action.xml:0
|
||||
#, python-format
|
||||
msgid "Invalid action"
|
||||
msgstr "잘못된 작업입니다"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Layout"
|
||||
msgstr "배치"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.actions.act_window,name:board.open_board_my_dash_action
|
||||
#: model:ir.ui.menu,name:board.menu_board_my_dash
|
||||
#: model_terms:ir.ui.view,arch_db:board.board_my_dash_view
|
||||
msgid "My Dashboard"
|
||||
msgstr "내 현황판"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Please refresh your browser for the changes to take effect."
|
||||
msgstr "변경 사항을 적용하려면 브라우저를 새로 고침하십시오."
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"To add your first report into this dashboard, go to any\n"
|
||||
" menu, switch to list or graph view, and click"
|
||||
msgstr ""
|
||||
"현황판에 첫 보고서를 추가하려면, 메뉴로 이동하여\n"
|
||||
" 목록이나 그래프 화면으로 전환한 후 클릭하세요."
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can filter and group data before inserting into the\n"
|
||||
" dashboard using the search options."
|
||||
msgstr ""
|
||||
"검색 옵션을 사용하여 현황판에 삽입하기 전에\n"
|
||||
" 데이터에 필터와 그룹을 적용할 수 있습니다."
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Your personal dashboard is empty"
|
||||
msgstr "개인 현황판이 비어 있습니다."
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "in the extended search options."
|
||||
msgstr "확장된 검색 옵션."
|
||||
176
odoo-bringout-oca-ocb-board/board/i18n/lb.po
Normal file
|
|
@ -0,0 +1,176 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * board
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~12.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-08-12 11:32+0000\n"
|
||||
"PO-Revision-Date: 2019-08-26 09:09+0000\n"
|
||||
"Language-Team: Luxembourgish (https://www.transifex.com/odoo/teams/41243/lb/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: lb\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:58
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"Add to\n"
|
||||
" Dashboard\""
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:30
|
||||
#, python-format
|
||||
msgid " "
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/add_to_board_menu.js:132
|
||||
#, python-format
|
||||
msgid "'%s' added to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:88
|
||||
#: code:addons/board/static/src/xml/board.xml:98
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:83
|
||||
#: code:addons/board/static/src/xml/board.xml:93
|
||||
#, python-format
|
||||
msgid "Add to my Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/board_view.js:378
|
||||
#, python-format
|
||||
msgid "Are you sure you want to remove this item?"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/board_view.js:432
|
||||
#: model:ir.model,name:board.model_board_board
|
||||
#, python-format
|
||||
msgid "Board"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:11
|
||||
#, python-format
|
||||
msgid "Change Layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:9
|
||||
#, python-format
|
||||
msgid "Change Layout.."
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:41
|
||||
#, python-format
|
||||
msgid "Choose dashboard layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/add_to_board_menu.js:136
|
||||
#, python-format
|
||||
msgid "Could not add filter to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/board_view.js:83
|
||||
#, python-format
|
||||
msgid "Edit Layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:46
|
||||
#, python-format
|
||||
msgid "Layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/board_view.js:46
|
||||
#: model:ir.actions.act_window,name:board.open_board_my_dash_action
|
||||
#: model:ir.ui.menu,name:board.menu_board_my_dash
|
||||
#: model_terms:ir.ui.view,arch_db:board.board_my_dash_view
|
||||
#, python-format
|
||||
msgid "My Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/add_to_board_menu.js:133
|
||||
#, python-format
|
||||
msgid "Please refresh your browser for the changes to take effect."
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:56
|
||||
#, python-format
|
||||
msgid ""
|
||||
"To add your first report into this dashboard, go to any\n"
|
||||
" menu, switch to list or graph view, and click"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:60
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can filter and group data before inserting into the\n"
|
||||
" dashboard using the search options."
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:54
|
||||
#, python-format
|
||||
msgid "Your personal dashboard is empty"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:58
|
||||
#, python-format
|
||||
msgid "in the extended search options."
|
||||
msgstr ""
|
||||
154
odoo-bringout-oca-ocb-board/board/i18n/lo.po
Normal file
|
|
@ -0,0 +1,154 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * board
|
||||
#
|
||||
# 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-22 05:45+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: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "\"%s\" added to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"Add to\n"
|
||||
" Dashboard\""
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "'%s' added to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr "ເພີ່ມເຂົ້າ"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add to my dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.js:0
|
||||
#, python-format
|
||||
msgid "Are you sure that you want to remove this item?"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_view.js:0
|
||||
#: model:ir.model,name:board.model_board_board
|
||||
#, python-format
|
||||
msgid "Board"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Change Layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Could not add filter to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board__id
|
||||
msgid "ID"
|
||||
msgstr "ເລກລຳດັບ"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_action.xml:0
|
||||
#, python-format
|
||||
msgid "Invalid action"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.actions.act_window,name:board.open_board_my_dash_action
|
||||
#: model:ir.ui.menu,name:board.menu_board_my_dash
|
||||
#: model_terms:ir.ui.view,arch_db:board.board_my_dash_view
|
||||
msgid "My Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Please refresh your browser for the changes to take effect."
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"To add your first report into this dashboard, go to any\n"
|
||||
" menu, switch to list or graph view, and click"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can filter and group data before inserting into the\n"
|
||||
" dashboard using the search options."
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Your personal dashboard is empty"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "in the extended search options."
|
||||
msgstr ""
|
||||
156
odoo-bringout-oca-ocb-board/board/i18n/lt.po
Normal file
|
|
@ -0,0 +1,156 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * board
|
||||
#
|
||||
# Translators:
|
||||
# Silvija Butko <silvija.butko@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Linas Versada <linaskrisiukenas@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-22 05:45+0000\n"
|
||||
"Last-Translator: Linas Versada <linaskrisiukenas@gmail.com>, 2022\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: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "\"%s\" added to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"Add to\n"
|
||||
" Dashboard\""
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "'%s' added to dashboard"
|
||||
msgstr "'%s' pridėta į skydelį"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr "Pridėti"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add to my dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.js:0
|
||||
#, python-format
|
||||
msgid "Are you sure that you want to remove this item?"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_view.js:0
|
||||
#: model:ir.model,name:board.model_board_board
|
||||
#, python-format
|
||||
msgid "Board"
|
||||
msgstr "Lenta"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Change Layout"
|
||||
msgstr "Keisti išdėstymą"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Could not add filter to dashboard"
|
||||
msgstr "Filtro į skydelį pridėti nepavyko"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_action.xml:0
|
||||
#, python-format
|
||||
msgid "Invalid action"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Layout"
|
||||
msgstr "Išdėstymas"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.actions.act_window,name:board.open_board_my_dash_action
|
||||
#: model:ir.ui.menu,name:board.menu_board_my_dash
|
||||
#: model_terms:ir.ui.view,arch_db:board.board_my_dash_view
|
||||
msgid "My Dashboard"
|
||||
msgstr "Mano skydelis"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Please refresh your browser for the changes to take effect."
|
||||
msgstr "Perkraukite savo naršyklės langą, kad pokyčiai įsigaliotų."
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"To add your first report into this dashboard, go to any\n"
|
||||
" menu, switch to list or graph view, and click"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can filter and group data before inserting into the\n"
|
||||
" dashboard using the search options."
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Your personal dashboard is empty"
|
||||
msgstr "Jūsų asmeninis skydelis yra tuščias"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "in the extended search options."
|
||||
msgstr "išplėstiniuose paieškos nustatymuose."
|
||||
155
odoo-bringout-oca-ocb-board/board/i18n/lv.po
Normal file
|
|
@ -0,0 +1,155 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * board
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# ievaputnina <ievai.putninai@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-22 05:45+0000\n"
|
||||
"Last-Translator: ievaputnina <ievai.putninai@gmail.com>, 2022\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: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "\"%s\" added to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"Add to\n"
|
||||
" Dashboard\""
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "'%s' added to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr "Pievienot"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add to my dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.js:0
|
||||
#, python-format
|
||||
msgid "Are you sure that you want to remove this item?"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_view.js:0
|
||||
#: model:ir.model,name:board.model_board_board
|
||||
#, python-format
|
||||
msgid "Board"
|
||||
msgstr "Panelis"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Change Layout"
|
||||
msgstr "Mainīt Izkārtojumu"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Could not add filter to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_action.xml:0
|
||||
#, python-format
|
||||
msgid "Invalid action"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Layout"
|
||||
msgstr "Izkārtojums"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.actions.act_window,name:board.open_board_my_dash_action
|
||||
#: model:ir.ui.menu,name:board.menu_board_my_dash
|
||||
#: model_terms:ir.ui.view,arch_db:board.board_my_dash_view
|
||||
msgid "My Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Please refresh your browser for the changes to take effect."
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"To add your first report into this dashboard, go to any\n"
|
||||
" menu, switch to list or graph view, and click"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can filter and group data before inserting into the\n"
|
||||
" dashboard using the search options."
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Your personal dashboard is empty"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "in the extended search options."
|
||||
msgstr ""
|
||||
139
odoo-bringout-oca-ocb-board/board/i18n/mk.po
Normal file
|
|
@ -0,0 +1,139 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * board
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Macedonian (https://www.transifex.com/odoo/teams/41243/mk/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: mk\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n"
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:25
|
||||
#, python-format
|
||||
msgid " "
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/favorite_menu.js:97
|
||||
#, python-format
|
||||
msgid "'%s' added to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model_terms:ir.actions.act_window,help:board.open_board_my_dash_action
|
||||
msgid "<b>Your personal dashboard is empty.</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:69
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:63
|
||||
#, python-format
|
||||
msgid "Add to my Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/dashboard.js:335
|
||||
#, python-format
|
||||
msgid "Are you sure you want to remove this item?"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model,name:board.model_board_board
|
||||
msgid "Board"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:7
|
||||
#, python-format
|
||||
msgid "Change Layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:5
|
||||
#, python-format
|
||||
msgid "Change Layout.."
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:36
|
||||
#, python-format
|
||||
msgid "Choose dashboard layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/favorite_menu.js:99
|
||||
#, python-format
|
||||
msgid "Could not add filter to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board_display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Прикажи име"
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/dashboard.js:85
|
||||
#, python-format
|
||||
msgid "Edit Layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Последна промена на"
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/dashboard.js:48
|
||||
#: model:ir.actions.act_window,name:board.open_board_my_dash_action
|
||||
#: model:ir.ui.menu,name:board.menu_board_my_dash
|
||||
#: model_terms:ir.ui.view,arch_db:board.board_my_dash_view
|
||||
#, python-format
|
||||
msgid "My Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model_terms:ir.actions.act_window,help:board.open_board_my_dash_action
|
||||
msgid ""
|
||||
"To add your first report into this dashboard, go to any\n"
|
||||
" menu, switch to list or graph view, and click <i>'Add to\n"
|
||||
" Dashboard'</i> in the extended search options."
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model_terms:ir.actions.act_window,help:board.open_board_my_dash_action
|
||||
msgid ""
|
||||
"You can filter and group data before inserting into the\n"
|
||||
" dashboard using the search options."
|
||||
msgstr ""
|
||||
154
odoo-bringout-oca-ocb-board/board/i18n/ml.po
Normal file
|
|
@ -0,0 +1,154 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * board
|
||||
#
|
||||
# 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-22 05:45+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: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "\"%s\" added to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"Add to\n"
|
||||
" Dashboard\""
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "'%s' added to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr "ചേർക്കുക"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add to my dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.js:0
|
||||
#, python-format
|
||||
msgid "Are you sure that you want to remove this item?"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_view.js:0
|
||||
#: model:ir.model,name:board.model_board_board
|
||||
#, python-format
|
||||
msgid "Board"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Change Layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Could not add filter to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board__id
|
||||
msgid "ID"
|
||||
msgstr "ഐഡി"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_action.xml:0
|
||||
#, python-format
|
||||
msgid "Invalid action"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Layout"
|
||||
msgstr "ലേഔട്ട്"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.actions.act_window,name:board.open_board_my_dash_action
|
||||
#: model:ir.ui.menu,name:board.menu_board_my_dash
|
||||
#: model_terms:ir.ui.view,arch_db:board.board_my_dash_view
|
||||
msgid "My Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Please refresh your browser for the changes to take effect."
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"To add your first report into this dashboard, go to any\n"
|
||||
" menu, switch to list or graph view, and click"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can filter and group data before inserting into the\n"
|
||||
" dashboard using the search options."
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Your personal dashboard is empty"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "in the extended search options."
|
||||
msgstr ""
|
||||
196
odoo-bringout-oca-ocb-board/board/i18n/ml_IN.po
Normal file
|
|
@ -0,0 +1,196 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * board
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-08-18 14:07+0000\n"
|
||||
"PO-Revision-Date: 2015-08-25 10:11+0000\n"
|
||||
"Last-Translator: <>\n"
|
||||
"Language-Team: Malayalam (India) (http://www.transifex.com/odoo/odoo-9/"
|
||||
"language/ml_IN/)\n"
|
||||
"Language: ml_IN\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:24
|
||||
#, python-format
|
||||
msgid " "
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/dashboard.js:407
|
||||
#, python-format
|
||||
msgid "'%s' added to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model_terms:ir.actions.act_window,help:board.open_board_my_dash_action
|
||||
msgid "<b>Your personal dashboard is empty.</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:70
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:64
|
||||
#, python-format
|
||||
msgid "Add to my Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/dashboard.js:139
|
||||
#, python-format
|
||||
msgid "Are you sure you want to remove this item ?"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model,name:board.model_board_board
|
||||
msgid "Board"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model,name:board.model_board_create
|
||||
msgid "Board Creation"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_create_name
|
||||
msgid "Board Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model_terms:ir.ui.view,arch_db:board.view_board_create
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:6
|
||||
#, python-format
|
||||
msgid "Change Layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:4
|
||||
#, python-format
|
||||
msgid "Change Layout.."
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:36
|
||||
#, python-format
|
||||
msgid "Choose dashboard layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/dashboard.js:409
|
||||
#, python-format
|
||||
msgid "Could not add filter to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model_terms:ir.ui.view,arch_db:board.view_board_create
|
||||
msgid "Create"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.actions.act_window,name:board.action_board_create
|
||||
#: model:ir.ui.menu,name:board.menu_board_create
|
||||
msgid "Create Board"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model_terms:ir.ui.view,arch_db:board.view_board_create
|
||||
msgid "Create New Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_create_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "രൂപപ്പെടുത്തിയത്"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_create_create_date
|
||||
msgid "Created on"
|
||||
msgstr "നിർമിച്ച ദിവസം"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board_display_name
|
||||
#: model:ir.model.fields,field_description:board.field_board_create_display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/dashboard.js:94
|
||||
#, python-format
|
||||
msgid "Edit Layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board_id
|
||||
#: model:ir.model.fields,field_description:board.field_board_create_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board___last_update
|
||||
#: model:ir.model.fields,field_description:board.field_board_create___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_create_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "അവസാനം അപ്ഡേറ്റ് ചെയ്തത്"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_create_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "അവസാനം അപ്ഡേറ്റ് ചെയ്ത ദിവസം"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.actions.act_window,name:board.open_board_my_dash_action
|
||||
#: model:ir.ui.menu,name:board.menu_board_my_dash
|
||||
#: model_terms:ir.ui.view,arch_db:board.board_my_dash_view
|
||||
msgid "My Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_create_menu_parent_id
|
||||
msgid "Parent Menu"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model_terms:ir.actions.act_window,help:board.open_board_my_dash_action
|
||||
msgid ""
|
||||
"To add your first report into this dashboard, go to any\n"
|
||||
" menu, switch to list or graph view, and click <i>'Add "
|
||||
"to\n"
|
||||
" Dashboard'</i> in the extended search options."
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model_terms:ir.actions.act_window,help:board.open_board_my_dash_action
|
||||
msgid ""
|
||||
"You can filter and group data before inserting into the\n"
|
||||
" dashboard using the search options."
|
||||
msgstr ""
|
||||
156
odoo-bringout-oca-ocb-board/board/i18n/mn.po
Normal file
|
|
@ -0,0 +1,156 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * board
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Baskhuu Lodoikhuu <baskhuujacara@gmail.com>, 2022
|
||||
# Batmunkh Ganbat <batmunkh.g@bumanit.mn>, 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-22 05:45+0000\n"
|
||||
"Last-Translator: Batmunkh Ganbat <batmunkh.g@bumanit.mn>, 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: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "\"%s\" added to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"Add to\n"
|
||||
" Dashboard\""
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "'%s' added to dashboard"
|
||||
msgstr "'%s' хяналтын самбарт нэмэгдсэн"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr "Нэмэх"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add to my dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.js:0
|
||||
#, python-format
|
||||
msgid "Are you sure that you want to remove this item?"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_view.js:0
|
||||
#: model:ir.model,name:board.model_board_board
|
||||
#, python-format
|
||||
msgid "Board"
|
||||
msgstr "Самбар"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Change Layout"
|
||||
msgstr "Зохиомжийг Солих"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Could not add filter to dashboard"
|
||||
msgstr "Шүүлтүүрийг хянах самбарруу нэмж чадсангүй"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_action.xml:0
|
||||
#, python-format
|
||||
msgid "Invalid action"
|
||||
msgstr "Буруу үйлдэл"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Layout"
|
||||
msgstr "Хэв загвар"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.actions.act_window,name:board.open_board_my_dash_action
|
||||
#: model:ir.ui.menu,name:board.menu_board_my_dash
|
||||
#: model_terms:ir.ui.view,arch_db:board.board_my_dash_view
|
||||
msgid "My Dashboard"
|
||||
msgstr "Миний хянах самбар"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Please refresh your browser for the changes to take effect."
|
||||
msgstr "Өөрчлөлтийг ажиллуулахын тулд өөрийн хөтчийг шинэчилнэ үү."
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"To add your first report into this dashboard, go to any\n"
|
||||
" menu, switch to list or graph view, and click"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can filter and group data before inserting into the\n"
|
||||
" dashboard using the search options."
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Your personal dashboard is empty"
|
||||
msgstr "Таны хувийн хянах самбар хоосон байна."
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "in the extended search options."
|
||||
msgstr "өргөтгөсөн хайлтын сонголтуудад."
|
||||
154
odoo-bringout-oca-ocb-board/board/i18n/ms.po
Normal file
|
|
@ -0,0 +1,154 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * board
|
||||
#
|
||||
# Translators:
|
||||
# Mehjabin Farsana, 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-22 05:45+0000\n"
|
||||
"Last-Translator: Mehjabin Farsana, 2022\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: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "\"%s\" added to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"Add to\n"
|
||||
" Dashboard\""
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "'%s' added to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr "Tambah"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add to my dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.js:0
|
||||
#, python-format
|
||||
msgid "Are you sure that you want to remove this item?"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_view.js:0
|
||||
#: model:ir.model,name:board.model_board_board
|
||||
#, python-format
|
||||
msgid "Board"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Change Layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Could not add filter to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_action.xml:0
|
||||
#, python-format
|
||||
msgid "Invalid action"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.actions.act_window,name:board.open_board_my_dash_action
|
||||
#: model:ir.ui.menu,name:board.menu_board_my_dash
|
||||
#: model_terms:ir.ui.view,arch_db:board.board_my_dash_view
|
||||
msgid "My Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Please refresh your browser for the changes to take effect."
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"To add your first report into this dashboard, go to any\n"
|
||||
" menu, switch to list or graph view, and click"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can filter and group data before inserting into the\n"
|
||||
" dashboard using the search options."
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Your personal dashboard is empty"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "in the extended search options."
|
||||
msgstr ""
|
||||
156
odoo-bringout-oca-ocb-board/board/i18n/nb.po
Normal file
|
|
@ -0,0 +1,156 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * board
|
||||
#
|
||||
# Translators:
|
||||
# Marius Stedjan <marius@stedjan.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Fredrik Ahlsen <fredrik@gdx.no>, 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-22 05:45+0000\n"
|
||||
"Last-Translator: Fredrik Ahlsen <fredrik@gdx.no>, 2023\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: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "\"%s\" added to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"Add to\n"
|
||||
" Dashboard\""
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "'%s' added to dashboard"
|
||||
msgstr "'%s' lagt til på dashbordet"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr "Legg til"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add to my dashboard"
|
||||
msgstr "Legg til i dashbord"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.js:0
|
||||
#, python-format
|
||||
msgid "Are you sure that you want to remove this item?"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_view.js:0
|
||||
#: model:ir.model,name:board.model_board_board
|
||||
#, python-format
|
||||
msgid "Board"
|
||||
msgstr "Brett"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Change Layout"
|
||||
msgstr "Endre layout"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Could not add filter to dashboard"
|
||||
msgstr "Kunne ikke legge til filter på dashbordet"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_action.xml:0
|
||||
#, python-format
|
||||
msgid "Invalid action"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Layout"
|
||||
msgstr "Layout"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.actions.act_window,name:board.open_board_my_dash_action
|
||||
#: model:ir.ui.menu,name:board.menu_board_my_dash
|
||||
#: model_terms:ir.ui.view,arch_db:board.board_my_dash_view
|
||||
msgid "My Dashboard"
|
||||
msgstr "Dashbordet mitt"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Please refresh your browser for the changes to take effect."
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"To add your first report into this dashboard, go to any\n"
|
||||
" menu, switch to list or graph view, and click"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can filter and group data before inserting into the\n"
|
||||
" dashboard using the search options."
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Your personal dashboard is empty"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "in the extended search options."
|
||||
msgstr ""
|
||||
136
odoo-bringout-oca-ocb-board/board/i18n/ne.po
Normal file
|
|
@ -0,0 +1,136 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * board
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Language-Team: Nepali (https://www.transifex.com/odoo/teams/41243/ne/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ne\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:25
|
||||
#, python-format
|
||||
msgid " "
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/favorite_menu.js:97
|
||||
#, python-format
|
||||
msgid "'%s' added to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model_terms:ir.actions.act_window,help:board.open_board_my_dash_action
|
||||
msgid "<b>Your personal dashboard is empty.</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:69
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:63
|
||||
#, python-format
|
||||
msgid "Add to my Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/dashboard.js:335
|
||||
#, python-format
|
||||
msgid "Are you sure you want to remove this item?"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model,name:board.model_board_board
|
||||
msgid "Board"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:7
|
||||
#, python-format
|
||||
msgid "Change Layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:5
|
||||
#, python-format
|
||||
msgid "Change Layout.."
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:36
|
||||
#, python-format
|
||||
msgid "Choose dashboard layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/favorite_menu.js:99
|
||||
#, python-format
|
||||
msgid "Could not add filter to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board_display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/dashboard.js:85
|
||||
#, python-format
|
||||
msgid "Edit Layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board_id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/dashboard.js:48
|
||||
#: model:ir.actions.act_window,name:board.open_board_my_dash_action
|
||||
#: model:ir.ui.menu,name:board.menu_board_my_dash
|
||||
#: model_terms:ir.ui.view,arch_db:board.board_my_dash_view
|
||||
#, python-format
|
||||
msgid "My Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model_terms:ir.actions.act_window,help:board.open_board_my_dash_action
|
||||
msgid ""
|
||||
"To add your first report into this dashboard, go to any\n"
|
||||
" menu, switch to list or graph view, and click <i>'Add to\n"
|
||||
" Dashboard'</i> in the extended search options."
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model_terms:ir.actions.act_window,help:board.open_board_my_dash_action
|
||||
msgid ""
|
||||
"You can filter and group data before inserting into the\n"
|
||||
" dashboard using the search options."
|
||||
msgstr ""
|
||||
161
odoo-bringout-oca-ocb-board/board/i18n/nl.po
Normal file
|
|
@ -0,0 +1,161 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * board
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Gunther Clauwaert <gclauwae@hotmail.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-22 05:45+0000\n"
|
||||
"Last-Translator: Gunther Clauwaert <gclauwae@hotmail.com>, 2022\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: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "\"%s\" added to dashboard"
|
||||
msgstr "\"%s\" toegevoegd aan dashboard"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"Add to\n"
|
||||
" Dashboard\""
|
||||
msgstr ""
|
||||
"\"Toevoegen aan\n"
|
||||
" Dashboard\""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "'%s' added to dashboard"
|
||||
msgstr "'%s' toegevoegd aan dashboard"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr "Toevoegen"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add to my dashboard"
|
||||
msgstr "Aan mijn dashboard toevoegen"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.js:0
|
||||
#, python-format
|
||||
msgid "Are you sure that you want to remove this item?"
|
||||
msgstr "Weet je zeker dat je dit item wilt verwijderen?"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_view.js:0
|
||||
#: model:ir.model,name:board.model_board_board
|
||||
#, python-format
|
||||
msgid "Board"
|
||||
msgstr "Board"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Change Layout"
|
||||
msgstr "Opmaak wijzigen"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Could not add filter to dashboard"
|
||||
msgstr "Kan geen filter aan het dashboard toevoegen"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_action.xml:0
|
||||
#, python-format
|
||||
msgid "Invalid action"
|
||||
msgstr "Ongeldige actie"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Layout"
|
||||
msgstr "Layout"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.actions.act_window,name:board.open_board_my_dash_action
|
||||
#: model:ir.ui.menu,name:board.menu_board_my_dash
|
||||
#: model_terms:ir.ui.view,arch_db:board.board_my_dash_view
|
||||
msgid "My Dashboard"
|
||||
msgstr "Mijn dashboard"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Please refresh your browser for the changes to take effect."
|
||||
msgstr "Ververs je browser om de wijzigingen door te voeren."
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"To add your first report into this dashboard, go to any\n"
|
||||
" menu, switch to list or graph view, and click"
|
||||
msgstr ""
|
||||
"Om een eerste rapport aan dit dashboard toe te voegen, ga naar een willekeurig menu,\n"
|
||||
" kies de lijst- of grafiekweergave, en klik"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can filter and group data before inserting into the\n"
|
||||
" dashboard using the search options."
|
||||
msgstr ""
|
||||
"Je kunt gegevens filteren en groeperen voor ze aan het\n"
|
||||
"dashboard toe te voegen met behulp van de zoekopties."
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Your personal dashboard is empty"
|
||||
msgstr "Jouw persoonlijk dashboard is leeg"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "in the extended search options."
|
||||
msgstr "in de uitgebreide zoek opties."
|
||||
150
odoo-bringout-oca-ocb-board/board/i18n/no.po
Normal file
|
|
@ -0,0 +1,150 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * board
|
||||
#
|
||||
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-22 05:45+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: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "\"%s\" added to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"Add to\n"
|
||||
" Dashboard\""
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "'%s' added to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add to my dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.js:0
|
||||
#, python-format
|
||||
msgid "Are you sure that you want to remove this item?"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_view.js:0
|
||||
#: model:ir.model,name:board.model_board_board
|
||||
#, python-format
|
||||
msgid "Board"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Change Layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Could not add filter to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_action.xml:0
|
||||
#, python-format
|
||||
msgid "Invalid action"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.actions.act_window,name:board.open_board_my_dash_action
|
||||
#: model:ir.ui.menu,name:board.menu_board_my_dash
|
||||
#: model_terms:ir.ui.view,arch_db:board.board_my_dash_view
|
||||
msgid "My Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Please refresh your browser for the changes to take effect."
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"To add your first report into this dashboard, go to any\n"
|
||||
" menu, switch to list or graph view, and click"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can filter and group data before inserting into the\n"
|
||||
" dashboard using the search options."
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Your personal dashboard is empty"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "in the extended search options."
|
||||
msgstr ""
|
||||
168
odoo-bringout-oca-ocb-board/board/i18n/pl.po
Normal file
|
|
@ -0,0 +1,168 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * board
|
||||
#
|
||||
# Translators:
|
||||
# Rafał Kozak <rafal.kozak@openglobe.pl>, 2022
|
||||
# Grzegorz Grzelak <grzegorz.grzelak@openglobe.pl>, 2022
|
||||
# Marcin Młynarczyk <mlynarczyk@gmail.com>, 2022
|
||||
# Karol Rybak <karolrybak85@gmail.com>, 2022
|
||||
# Piotr Strębski <strebski@gmail.com>, 2022
|
||||
# Wiktor Kaźmierczak <wik92tor@wp.pl>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Natalia Gros <nag@odoo.com>, 2022
|
||||
# Tadeusz Karpiński <tadeuszkarpinski@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-22 05:45+0000\n"
|
||||
"Last-Translator: Tadeusz Karpiński <tadeuszkarpinski@gmail.com>, 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: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "\"%s\" added to dashboard"
|
||||
msgstr "\"%s\" dodane do konsoli"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"Add to\n"
|
||||
" Dashboard\""
|
||||
msgstr ""
|
||||
"\"Dodaj do\n"
|
||||
"Konsoli\""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "'%s' added to dashboard"
|
||||
msgstr "'%s' dodane do konsoli"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr "Dodaj"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add to my dashboard"
|
||||
msgstr "Dodaj do mojej konsoli"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.js:0
|
||||
#, python-format
|
||||
msgid "Are you sure that you want to remove this item?"
|
||||
msgstr "Jesteś pewien, że chcesz usunąć ten element?"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_view.js:0
|
||||
#: model:ir.model,name:board.model_board_board
|
||||
#, python-format
|
||||
msgid "Board"
|
||||
msgstr "Konsola"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Change Layout"
|
||||
msgstr "Zmień układ"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Could not add filter to dashboard"
|
||||
msgstr "Nie można dodać filtra do konsoli"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_action.xml:0
|
||||
#, python-format
|
||||
msgid "Invalid action"
|
||||
msgstr "Nieprawidłowa akcja"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Layout"
|
||||
msgstr "Układ"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.actions.act_window,name:board.open_board_my_dash_action
|
||||
#: model:ir.ui.menu,name:board.menu_board_my_dash
|
||||
#: model_terms:ir.ui.view,arch_db:board.board_my_dash_view
|
||||
msgid "My Dashboard"
|
||||
msgstr "Moja konsola"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Please refresh your browser for the changes to take effect."
|
||||
msgstr "Odśwież przeglądarkę, aby zmiany odniosły skutek."
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"To add your first report into this dashboard, go to any\n"
|
||||
" menu, switch to list or graph view, and click"
|
||||
msgstr ""
|
||||
"Aby dodać swój pierwszy raport do tej konsoli, przejdź do dowolnego\n"
|
||||
"menu, przełącz się na widok listy lub wykresu i kliknij"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can filter and group data before inserting into the\n"
|
||||
" dashboard using the search options."
|
||||
msgstr ""
|
||||
"Możesz filtrować i grupować dane przed wprowadzeniem do\n"
|
||||
"konsoli, używając opcji wyszukiwania."
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Your personal dashboard is empty"
|
||||
msgstr "Twoja osobista konsola jest pusta"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "in the extended search options."
|
||||
msgstr "w rozszerzonych opcjach wyszukiwania."
|
||||
157
odoo-bringout-oca-ocb-board/board/i18n/pt.po
Normal file
|
|
@ -0,0 +1,157 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * board
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Reinaldo Ramos <reinaldo.ramos@arxi.pt>, 2022
|
||||
# Diogo Fonseca <dsf@thinkopensolutions.pt>, 2022
|
||||
# Manuela Silva <mmsrs@sky.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-22 05:45+0000\n"
|
||||
"Last-Translator: Manuela Silva <mmsrs@sky.com>, 2022\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: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "\"%s\" added to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"Add to\n"
|
||||
" Dashboard\""
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "'%s' added to dashboard"
|
||||
msgstr "'%s' adicionado ao painel"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr "Adicionar"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add to my dashboard"
|
||||
msgstr "Adicionar ao meu painel"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.js:0
|
||||
#, python-format
|
||||
msgid "Are you sure that you want to remove this item?"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_view.js:0
|
||||
#: model:ir.model,name:board.model_board_board
|
||||
#, python-format
|
||||
msgid "Board"
|
||||
msgstr "Quadro"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Change Layout"
|
||||
msgstr "Mudar aspeto"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Could not add filter to dashboard"
|
||||
msgstr "Não foi possível adicionar o filtro ao painel"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_action.xml:0
|
||||
#, python-format
|
||||
msgid "Invalid action"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Layout"
|
||||
msgstr "Aspeto"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.actions.act_window,name:board.open_board_my_dash_action
|
||||
#: model:ir.ui.menu,name:board.menu_board_my_dash
|
||||
#: model_terms:ir.ui.view,arch_db:board.board_my_dash_view
|
||||
msgid "My Dashboard"
|
||||
msgstr "O Meu Painel"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Please refresh your browser for the changes to take effect."
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"To add your first report into this dashboard, go to any\n"
|
||||
" menu, switch to list or graph view, and click"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can filter and group data before inserting into the\n"
|
||||
" dashboard using the search options."
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Your personal dashboard is empty"
|
||||
msgstr "O seu Painel Pessoal está vazio"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "in the extended search options."
|
||||
msgstr ""
|
||||
162
odoo-bringout-oca-ocb-board/board/i18n/pt_BR.po
Normal file
|
|
@ -0,0 +1,162 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * board
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Kevilyn Rosa, 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-22 05:45+0000\n"
|
||||
"Last-Translator: Kevilyn Rosa, 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: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "\"%s\" added to dashboard"
|
||||
msgstr "\"%s\" adicionado ao painel"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"Add to\n"
|
||||
" Dashboard\""
|
||||
msgstr ""
|
||||
"\"Adicionar ao\n"
|
||||
" painel\""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "'%s' added to dashboard"
|
||||
msgstr "'%s' adicionado ao painel"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr "Adicionar"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add to my dashboard"
|
||||
msgstr "Adicionar ao meu painel"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.js:0
|
||||
#, python-format
|
||||
msgid "Are you sure that you want to remove this item?"
|
||||
msgstr "Tem certeza de que deseja remover este item?"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_view.js:0
|
||||
#: model:ir.model,name:board.model_board_board
|
||||
#, python-format
|
||||
msgid "Board"
|
||||
msgstr "Painel"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Change Layout"
|
||||
msgstr "Alterar Layout"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Could not add filter to dashboard"
|
||||
msgstr "Não foi possível adicionar o filtro ao painel"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_action.xml:0
|
||||
#, python-format
|
||||
msgid "Invalid action"
|
||||
msgstr "Ação Inválida"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Layout"
|
||||
msgstr "Layout"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.actions.act_window,name:board.open_board_my_dash_action
|
||||
#: model:ir.ui.menu,name:board.menu_board_my_dash
|
||||
#: model_terms:ir.ui.view,arch_db:board.board_my_dash_view
|
||||
msgid "My Dashboard"
|
||||
msgstr "Meu Painel"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Please refresh your browser for the changes to take effect."
|
||||
msgstr ""
|
||||
"Por gentileza, recarregue a página para que as alterações surtam efeito."
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"To add your first report into this dashboard, go to any\n"
|
||||
" menu, switch to list or graph view, and click"
|
||||
msgstr ""
|
||||
"Para adicionar seu primeiro relatório a esse painel, vá para qualquer menu\n"
|
||||
" menu, mude para a visualização de lista ou gráfico e clique em"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can filter and group data before inserting into the\n"
|
||||
" dashboard using the search options."
|
||||
msgstr ""
|
||||
"Você pode filtrar e agrupar dados antes de inseri-los no\n"
|
||||
" painel usando as opções de pesquisa."
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Your personal dashboard is empty"
|
||||
msgstr "Seu Painel Pessoal está vazio"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "in the extended search options."
|
||||
msgstr "nas opções estendidas de pesquisa."
|
||||
163
odoo-bringout-oca-ocb-board/board/i18n/ro.po
Normal file
|
|
@ -0,0 +1,163 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * board
|
||||
#
|
||||
# Translators:
|
||||
# Foldi Robert <foldirobert@nexterp.ro>, 2022
|
||||
# Hongu Cosmin <cosmin513@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Dorin Hongu <dhongu@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-22 05:45+0000\n"
|
||||
"Last-Translator: Dorin Hongu <dhongu@gmail.com>, 2023\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: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "\"%s\" added to dashboard"
|
||||
msgstr "\"%s\" adăugat la tabloul de bord"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"Add to\n"
|
||||
" Dashboard\""
|
||||
msgstr ""
|
||||
"\"Adaugă la\n"
|
||||
" Tabloul de bord\""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "'%s' added to dashboard"
|
||||
msgstr "'%s' adăugat la tabloul de bord"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr "Adaugă"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add to my dashboard"
|
||||
msgstr "Adaugă la tabloul meu de bord"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.js:0
|
||||
#, python-format
|
||||
msgid "Are you sure that you want to remove this item?"
|
||||
msgstr "Sunteți sigur că doriți să eliminați acest element?"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_view.js:0
|
||||
#: model:ir.model,name:board.model_board_board
|
||||
#, python-format
|
||||
msgid "Board"
|
||||
msgstr "Panou"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Change Layout"
|
||||
msgstr "Modifică aspect"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Could not add filter to dashboard"
|
||||
msgstr "Nu s-a putut adăuga filtru la tablou de bord"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_action.xml:0
|
||||
#, python-format
|
||||
msgid "Invalid action"
|
||||
msgstr "Acțiune nevalidă"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Layout"
|
||||
msgstr "Aspect"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.actions.act_window,name:board.open_board_my_dash_action
|
||||
#: model:ir.ui.menu,name:board.menu_board_my_dash
|
||||
#: model_terms:ir.ui.view,arch_db:board.board_my_dash_view
|
||||
msgid "My Dashboard"
|
||||
msgstr "Tabloul meu de bord"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Please refresh your browser for the changes to take effect."
|
||||
msgstr "Actualizați browserul pentru ca modificările să aibă efect."
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"To add your first report into this dashboard, go to any\n"
|
||||
" menu, switch to list or graph view, and click"
|
||||
msgstr ""
|
||||
"Pentru a adăuga primul raport în acest tablou de bord, mergeți la orice\n"
|
||||
" meniu, comutați la vizualizarea listă sau grafic și faceți clic"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can filter and group data before inserting into the\n"
|
||||
" dashboard using the search options."
|
||||
msgstr ""
|
||||
"Puteți filtra și grupa date înainte de a le insera în\n"
|
||||
" tabloul de bord folosind opțiunile de căutare."
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Your personal dashboard is empty"
|
||||
msgstr "Tabloul de bord personal este gol."
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "in the extended search options."
|
||||
msgstr "în opțiunile de căutare extinsă."
|
||||
165
odoo-bringout-oca-ocb-board/board/i18n/ru.po
Normal file
|
|
@ -0,0 +1,165 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * board
|
||||
#
|
||||
# Translators:
|
||||
# Vasiliy Korobatov <korobatov@gmail.com>, 2022
|
||||
# ILMIR <karamov@it-projects.info>, 2022
|
||||
# Ivan Kropotkin <yelizariev@itpp.dev>, 2022
|
||||
# Сергей Шебанин <sergey@shebanin.ru>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Wil Odoo, 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-22 05:45+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2024\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: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "\"%s\" added to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"Add to\n"
|
||||
" Dashboard\""
|
||||
msgstr ""
|
||||
"\"Добавить в\n"
|
||||
" Приборная панель\""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "'%s' added to dashboard"
|
||||
msgstr "« %s » добавлено на панель"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr "Добавить"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add to my dashboard"
|
||||
msgstr "Добавить в мою рабочую панель"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.js:0
|
||||
#, python-format
|
||||
msgid "Are you sure that you want to remove this item?"
|
||||
msgstr "Вы уверены, что хотите удалить этот элемент?"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_view.js:0
|
||||
#: model:ir.model,name:board.model_board_board
|
||||
#, python-format
|
||||
msgid "Board"
|
||||
msgstr "Панель"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Change Layout"
|
||||
msgstr "Изменить макет"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Could not add filter to dashboard"
|
||||
msgstr "Невозможно добавить фильтр к доске"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board__id
|
||||
msgid "ID"
|
||||
msgstr "Идентификатор"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_action.xml:0
|
||||
#, python-format
|
||||
msgid "Invalid action"
|
||||
msgstr "Недопустимое действие"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Layout"
|
||||
msgstr "Макет"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.actions.act_window,name:board.open_board_my_dash_action
|
||||
#: model:ir.ui.menu,name:board.menu_board_my_dash
|
||||
#: model_terms:ir.ui.view,arch_db:board.board_my_dash_view
|
||||
msgid "My Dashboard"
|
||||
msgstr "Моя панель"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Please refresh your browser for the changes to take effect."
|
||||
msgstr "Пожалуйста, обновите свой браузер, чтобы изменения вступили в силу."
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"To add your first report into this dashboard, go to any\n"
|
||||
" menu, switch to list or graph view, and click"
|
||||
msgstr ""
|
||||
"Чтобы добавить свой первый отчет в эту приборную панель, перейдите в любое\n"
|
||||
" меню, переключитесь в режим просмотра списка или графика и нажмите кнопку"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can filter and group data before inserting into the\n"
|
||||
" dashboard using the search options."
|
||||
msgstr ""
|
||||
"Вы можете фильтровать и группировать данные перед вставкой в\n"
|
||||
" приборной панели с помощью параметров поиска."
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Your personal dashboard is empty"
|
||||
msgstr "Ваша персональная панель приборов пуста"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "in the extended search options."
|
||||
msgstr "в расширенных параметрах поиска."
|
||||
156
odoo-bringout-oca-ocb-board/board/i18n/sk.po
Normal file
|
|
@ -0,0 +1,156 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * board
|
||||
#
|
||||
# Translators:
|
||||
# Rastislav Brencic <rastislav.brencic@azet.sk>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# 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-22 05:45+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: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "\"%s\" added to dashboard"
|
||||
msgstr "\"%s\" pridané na riadiaci panel"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"Add to\n"
|
||||
" Dashboard\""
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "'%s' added to dashboard"
|
||||
msgstr "'%s' pridané na riadiaci panel"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr "Pridať"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add to my dashboard"
|
||||
msgstr "Pridať na môj riadiaci panel"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.js:0
|
||||
#, python-format
|
||||
msgid "Are you sure that you want to remove this item?"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_view.js:0
|
||||
#: model:ir.model,name:board.model_board_board
|
||||
#, python-format
|
||||
msgid "Board"
|
||||
msgstr "Nástenka"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Change Layout"
|
||||
msgstr "Zmeniť rozmiestnenie"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Could not add filter to dashboard"
|
||||
msgstr "Nepodarilo sa pridať filter na riadiaci panel"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_action.xml:0
|
||||
#, python-format
|
||||
msgid "Invalid action"
|
||||
msgstr "Neplatná akcia"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Layout"
|
||||
msgstr "Usporiadanie"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.actions.act_window,name:board.open_board_my_dash_action
|
||||
#: model:ir.ui.menu,name:board.menu_board_my_dash
|
||||
#: model_terms:ir.ui.view,arch_db:board.board_my_dash_view
|
||||
msgid "My Dashboard"
|
||||
msgstr "Môj riadiaci panel"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Please refresh your browser for the changes to take effect."
|
||||
msgstr "Pre prejavenie zmien, prosím obnovte svoj prehliadač."
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"To add your first report into this dashboard, go to any\n"
|
||||
" menu, switch to list or graph view, and click"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can filter and group data before inserting into the\n"
|
||||
" dashboard using the search options."
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Your personal dashboard is empty"
|
||||
msgstr "Váš osobný riadiaci panel je prázdny"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "in the extended search options."
|
||||
msgstr "V rozšírených vyhľadávacích možnostiach."
|
||||
165
odoo-bringout-oca-ocb-board/board/i18n/sl.po
Normal file
|
|
@ -0,0 +1,165 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * board
|
||||
#
|
||||
# Translators:
|
||||
# matjaz k <matjaz@mentis.si>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Tadej Lupšina <tadej@hbs.si>, 2022
|
||||
# Jasmina Macur <jasmina@hbs.si>, 2022
|
||||
# Katja Deržič, 2024
|
||||
# Aleš Pipan, 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-22 05:45+0000\n"
|
||||
"Last-Translator: Aleš Pipan, 2025\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: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "\"%s\" added to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"Add to\n"
|
||||
" Dashboard\""
|
||||
msgstr ""
|
||||
"\"Dodaj v\n"
|
||||
" Nadzorno ploščo\""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "'%s' added to dashboard"
|
||||
msgstr "'%s' doda nadzorno ploščo"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr "Dodaj"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add to my dashboard"
|
||||
msgstr "Dodaj v mojo nadzorno ploščo"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.js:0
|
||||
#, python-format
|
||||
msgid "Are you sure that you want to remove this item?"
|
||||
msgstr "Ali ste prepričani, da želite odstraniti ta element?"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_view.js:0
|
||||
#: model:ir.model,name:board.model_board_board
|
||||
#, python-format
|
||||
msgid "Board"
|
||||
msgstr "Plošča"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Change Layout"
|
||||
msgstr "Spremeni postavitev"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Could not add filter to dashboard"
|
||||
msgstr "Filtra ni bilo mogoče dodati nadzorni plošči"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_action.xml:0
|
||||
#, python-format
|
||||
msgid "Invalid action"
|
||||
msgstr "Neveljavno delovanje"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Layout"
|
||||
msgstr "Postavitev"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.actions.act_window,name:board.open_board_my_dash_action
|
||||
#: model:ir.ui.menu,name:board.menu_board_my_dash
|
||||
#: model_terms:ir.ui.view,arch_db:board.board_my_dash_view
|
||||
msgid "My Dashboard"
|
||||
msgstr "Moja nadzorna plošča"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Please refresh your browser for the changes to take effect."
|
||||
msgstr "Osvežite brskalnik, da spremembe začnejo veljati."
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"To add your first report into this dashboard, go to any\n"
|
||||
" menu, switch to list or graph view, and click"
|
||||
msgstr ""
|
||||
"Če želite na to nadzorno ploščo dodati svoje prvo poročilo, pojdite na katerikoli\n"
|
||||
" meni, preklopite na seznam ali grafični pogled in kliknite"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can filter and group data before inserting into the\n"
|
||||
" dashboard using the search options."
|
||||
msgstr ""
|
||||
"Podatke lahko pred vstavljanjem v \n"
|
||||
" nadzorno ploščo filtrirate in združujete z možnostmi iskanja."
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Your personal dashboard is empty"
|
||||
msgstr "Vaša osebna nadzorna plošča je prazna"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "in the extended search options."
|
||||
msgstr "v možnostih razširjenega iskanja."
|
||||
150
odoo-bringout-oca-ocb-board/board/i18n/sq.po
Normal file
|
|
@ -0,0 +1,150 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * board
|
||||
#
|
||||
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-22 05:45+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: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "\"%s\" added to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"Add to\n"
|
||||
" Dashboard\""
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "'%s' added to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add to my dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.js:0
|
||||
#, python-format
|
||||
msgid "Are you sure that you want to remove this item?"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_view.js:0
|
||||
#: model:ir.model,name:board.model_board_board
|
||||
#, python-format
|
||||
msgid "Board"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Change Layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Could not add filter to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_action.xml:0
|
||||
#, python-format
|
||||
msgid "Invalid action"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.actions.act_window,name:board.open_board_my_dash_action
|
||||
#: model:ir.ui.menu,name:board.menu_board_my_dash
|
||||
#: model_terms:ir.ui.view,arch_db:board.board_my_dash_view
|
||||
msgid "My Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Please refresh your browser for the changes to take effect."
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"To add your first report into this dashboard, go to any\n"
|
||||
" menu, switch to list or graph view, and click"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can filter and group data before inserting into the\n"
|
||||
" dashboard using the search options."
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Your personal dashboard is empty"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "in the extended search options."
|
||||
msgstr ""
|
||||
162
odoo-bringout-oca-ocb-board/board/i18n/sr.po
Normal file
|
|
@ -0,0 +1,162 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * board
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Dragan Vukosavljevic <dragan.vukosavljevic@gmail.com>, 2022
|
||||
# コフスタジオ, 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-22 05:45+0000\n"
|
||||
"Last-Translator: コフスタジオ, 2024\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: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "\"%s\" added to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"Add to\n"
|
||||
" Dashboard\""
|
||||
msgstr ""
|
||||
"Dodaj na\n"
|
||||
" Nadzornu tablu''"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "'%s' added to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr "Dodaj"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add to my dashboard"
|
||||
msgstr "Dodaj na moju kontrolnu tablu"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.js:0
|
||||
#, python-format
|
||||
msgid "Are you sure that you want to remove this item?"
|
||||
msgstr "Da li ste sigurni da želite da uklonite ovu stavku?"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_view.js:0
|
||||
#: model:ir.model,name:board.model_board_board
|
||||
#, python-format
|
||||
msgid "Board"
|
||||
msgstr "Tabla"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Change Layout"
|
||||
msgstr "Promeni raspored"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Could not add filter to dashboard"
|
||||
msgstr "Nije bilo moguće dodati filter na kontrolnu tablu."
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_action.xml:0
|
||||
#, python-format
|
||||
msgid "Invalid action"
|
||||
msgstr "Nevažeća radnja"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Layout"
|
||||
msgstr "Izgled"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.actions.act_window,name:board.open_board_my_dash_action
|
||||
#: model:ir.ui.menu,name:board.menu_board_my_dash
|
||||
#: model_terms:ir.ui.view,arch_db:board.board_my_dash_view
|
||||
msgid "My Dashboard"
|
||||
msgstr "Moj kontrolni panel"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Please refresh your browser for the changes to take effect."
|
||||
msgstr "Molim osvežite svoj pregledač da biste promene primenili."
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"To add your first report into this dashboard, go to any\n"
|
||||
" menu, switch to list or graph view, and click"
|
||||
msgstr ""
|
||||
"Da biste dodali svoj prvi izveštaj u ovaj kontrolni panel, idite na bilo \n"
|
||||
"koji meni, prebacite se na prikaz liste ili grafikona i kliknite."
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can filter and group data before inserting into the\n"
|
||||
" dashboard using the search options."
|
||||
msgstr ""
|
||||
"Možete filtrirati i grupisati podatke pre nego što ih ubacite u \n"
|
||||
"kontrolnu tablu koristeći opcije pretrage."
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Your personal dashboard is empty"
|
||||
msgstr "Vaš lični kontrolni panel je prazan"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "in the extended search options."
|
||||
msgstr "u proširenim opcijama pretrage."
|
||||
140
odoo-bringout-oca-ocb-board/board/i18n/sr@latin.po
Normal file
|
|
@ -0,0 +1,140 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * board
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
# Djordje Marjanovic <djordje_m@yahoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Djordje Marjanovic <djordje_m@yahoo.com>, 2017\n"
|
||||
"Language-Team: Serbian (Latin) (https://www.transifex.com/odoo/teams/41243/sr%40latin/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sr@latin\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:25
|
||||
#, python-format
|
||||
msgid " "
|
||||
msgstr " "
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/favorite_menu.js:97
|
||||
#, python-format
|
||||
msgid "'%s' added to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model_terms:ir.actions.act_window,help:board.open_board_my_dash_action
|
||||
msgid "<b>Your personal dashboard is empty.</b>"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:69
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr "Dodaj"
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:63
|
||||
#, python-format
|
||||
msgid "Add to my Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/dashboard.js:335
|
||||
#, python-format
|
||||
msgid "Are you sure you want to remove this item?"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model,name:board.model_board_board
|
||||
msgid "Board"
|
||||
msgstr "Tabla"
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:7
|
||||
#, python-format
|
||||
msgid "Change Layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:5
|
||||
#, python-format
|
||||
msgid "Change Layout.."
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/xml/board.xml:36
|
||||
#, python-format
|
||||
msgid "Choose dashboard layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/favorite_menu.js:99
|
||||
#, python-format
|
||||
msgid "Could not add filter to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board_display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Naziv za prikaz"
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/dashboard.js:85
|
||||
#, python-format
|
||||
msgid "Edit Layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Zadnja promena"
|
||||
|
||||
#. module: board
|
||||
#. openerp-web
|
||||
#: code:addons/board/static/src/js/dashboard.js:48
|
||||
#: model:ir.actions.act_window,name:board.open_board_my_dash_action
|
||||
#: model:ir.ui.menu,name:board.menu_board_my_dash
|
||||
#: model_terms:ir.ui.view,arch_db:board.board_my_dash_view
|
||||
#, python-format
|
||||
msgid "My Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model_terms:ir.actions.act_window,help:board.open_board_my_dash_action
|
||||
msgid ""
|
||||
"To add your first report into this dashboard, go to any\n"
|
||||
" menu, switch to list or graph view, and click <i>'Add to\n"
|
||||
" Dashboard'</i> in the extended search options."
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model_terms:ir.actions.act_window,help:board.open_board_my_dash_action
|
||||
msgid ""
|
||||
"You can filter and group data before inserting into the\n"
|
||||
" dashboard using the search options."
|
||||
msgstr ""
|
||||
164
odoo-bringout-oca-ocb-board/board/i18n/sv.po
Normal file
|
|
@ -0,0 +1,164 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * board
|
||||
#
|
||||
# Translators:
|
||||
# Simon S, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Kim Asplund <kim.asplund@gmail.com>, 2022
|
||||
# Mikael Åkerberg <mikael.akerberg@mariaakerberg.com>, 2022
|
||||
# Lasse L, 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-22 05:45+0000\n"
|
||||
"Last-Translator: Lasse L, 2023\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: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "\"%s\" added to dashboard"
|
||||
msgstr "\"%s\" läggs till i instrumentpanelen"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"Add to\n"
|
||||
" Dashboard\""
|
||||
msgstr ""
|
||||
"\"Lägg till i\n"
|
||||
" Instrumentpanel\""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "'%s' added to dashboard"
|
||||
msgstr "'%s' har lagts till i instrumentpanelen"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr "Lägg till"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add to my dashboard"
|
||||
msgstr "Lägg till min instrumentpanelen"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.js:0
|
||||
#, python-format
|
||||
msgid "Are you sure that you want to remove this item?"
|
||||
msgstr "Är du säker på att du vill ta bort den här frågan?"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_view.js:0
|
||||
#: model:ir.model,name:board.model_board_board
|
||||
#, python-format
|
||||
msgid "Board"
|
||||
msgstr "Instrumentpanelen"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Change Layout"
|
||||
msgstr "Ändra layout"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Could not add filter to dashboard"
|
||||
msgstr "Kunde inte lägga till filter till instrumentpanelen"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_action.xml:0
|
||||
#, python-format
|
||||
msgid "Invalid action"
|
||||
msgstr "Ogiltig åtgärd"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Layout"
|
||||
msgstr "Layout"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.actions.act_window,name:board.open_board_my_dash_action
|
||||
#: model:ir.ui.menu,name:board.menu_board_my_dash
|
||||
#: model_terms:ir.ui.view,arch_db:board.board_my_dash_view
|
||||
msgid "My Dashboard"
|
||||
msgstr "Min kontrollpanel"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Please refresh your browser for the changes to take effect."
|
||||
msgstr "Uppdatera din webbläsare för att ändringarna ska träda i kraft."
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"To add your first report into this dashboard, go to any\n"
|
||||
" menu, switch to list or graph view, and click"
|
||||
msgstr ""
|
||||
"För att lägga till din första rapport i denna instrumentpanel, gå till valfri\n"
|
||||
" meny, växla till list- eller grafvy och klicka på"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can filter and group data before inserting into the\n"
|
||||
" dashboard using the search options."
|
||||
msgstr ""
|
||||
"Du kan filtrera och gruppera data innan du infogar dem i\n"
|
||||
" instrumentpanelen med hjälp av sökalternativen."
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Your personal dashboard is empty"
|
||||
msgstr "Din personliga instrumentpanelen är tom"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "in the extended search options."
|
||||
msgstr "i de utökade sökalternativen."
|
||||
150
odoo-bringout-oca-ocb-board/board/i18n/sw.po
Normal file
|
|
@ -0,0 +1,150 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * board
|
||||
#
|
||||
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-22 05:45+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: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "\"%s\" added to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"Add to\n"
|
||||
" Dashboard\""
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "'%s' added to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add to my dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.js:0
|
||||
#, python-format
|
||||
msgid "Are you sure that you want to remove this item?"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_view.js:0
|
||||
#: model:ir.model,name:board.model_board_board
|
||||
#, python-format
|
||||
msgid "Board"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Change Layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Could not add filter to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_action.xml:0
|
||||
#, python-format
|
||||
msgid "Invalid action"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.actions.act_window,name:board.open_board_my_dash_action
|
||||
#: model:ir.ui.menu,name:board.menu_board_my_dash
|
||||
#: model_terms:ir.ui.view,arch_db:board.board_my_dash_view
|
||||
msgid "My Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Please refresh your browser for the changes to take effect."
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"To add your first report into this dashboard, go to any\n"
|
||||
" menu, switch to list or graph view, and click"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can filter and group data before inserting into the\n"
|
||||
" dashboard using the search options."
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Your personal dashboard is empty"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "in the extended search options."
|
||||
msgstr ""
|
||||
150
odoo-bringout-oca-ocb-board/board/i18n/ta.po
Normal file
|
|
@ -0,0 +1,150 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * board
|
||||
#
|
||||
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-22 05:45+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: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "\"%s\" added to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"Add to\n"
|
||||
" Dashboard\""
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "'%s' added to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add to my dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.js:0
|
||||
#, python-format
|
||||
msgid "Are you sure that you want to remove this item?"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_view.js:0
|
||||
#: model:ir.model,name:board.model_board_board
|
||||
#, python-format
|
||||
msgid "Board"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Change Layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Could not add filter to dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_action.xml:0
|
||||
#, python-format
|
||||
msgid "Invalid action"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Layout"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#: model:ir.actions.act_window,name:board.open_board_my_dash_action
|
||||
#: model:ir.ui.menu,name:board.menu_board_my_dash
|
||||
#: model_terms:ir.ui.view,arch_db:board.board_my_dash_view
|
||||
msgid "My Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Please refresh your browser for the changes to take effect."
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"To add your first report into this dashboard, go to any\n"
|
||||
" menu, switch to list or graph view, and click"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can filter and group data before inserting into the\n"
|
||||
" dashboard using the search options."
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Your personal dashboard is empty"
|
||||
msgstr ""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "in the extended search options."
|
||||
msgstr ""
|
||||
162
odoo-bringout-oca-ocb-board/board/i18n/th.po
Normal file
|
|
@ -0,0 +1,162 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * board
|
||||
#
|
||||
# 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-22 05:45+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: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "\"%s\" added to dashboard"
|
||||
msgstr "\"%s\" เพิ่มลงในแดชบอร์ดแล้ว"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"Add to\n"
|
||||
" Dashboard\""
|
||||
msgstr ""
|
||||
"\"เพิ่มลงใน\n"
|
||||
" แดชบอร์ดแล้ว\""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "'%s' added to dashboard"
|
||||
msgstr "'%s' เพิ่มลงในแดชบอร์ดแล้ว"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr "เพิ่ม"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add to my dashboard"
|
||||
msgstr "เพิ่มลงในแดชบอร์ดของฉัน"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.js:0
|
||||
#, python-format
|
||||
msgid "Are you sure that you want to remove this item?"
|
||||
msgstr "คุณแน่ใจหรือไม่ว่าต้องการลบรายการนี้?"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_view.js:0
|
||||
#: model:ir.model,name:board.model_board_board
|
||||
#, python-format
|
||||
msgid "Board"
|
||||
msgstr "กระดาน"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Change Layout"
|
||||
msgstr "เปลี่ยนเค้าโครง"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Could not add filter to dashboard"
|
||||
msgstr "ไม่สามารถเพิ่มตัวกรองในแดชบอร์ด"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board__id
|
||||
msgid "ID"
|
||||
msgstr "ไอดี"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_action.xml:0
|
||||
#, python-format
|
||||
msgid "Invalid action"
|
||||
msgstr "การดำเนินการไม่ถูกต้อง"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Layout"
|
||||
msgstr "เลย์เอาต์"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.actions.act_window,name:board.open_board_my_dash_action
|
||||
#: model:ir.ui.menu,name:board.menu_board_my_dash
|
||||
#: model_terms:ir.ui.view,arch_db:board.board_my_dash_view
|
||||
msgid "My Dashboard"
|
||||
msgstr "กระดานส่วนตัว"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Please refresh your browser for the changes to take effect."
|
||||
msgstr "โปรดรีเฟรชเบราว์เซอร์ของคุณเพื่อให้การเปลี่ยนแปลงมีผล."
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"To add your first report into this dashboard, go to any\n"
|
||||
" menu, switch to list or graph view, and click"
|
||||
msgstr ""
|
||||
"หากต้องการเพิ่มรายงานแรกของคุณลงในแดชบอร์ดนี้ ให้ไปที่เมนูใดก็ได้\n"
|
||||
" สลับไปที่มุมมองรายการหรือกราฟ แล้วคลิก"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can filter and group data before inserting into the\n"
|
||||
" dashboard using the search options."
|
||||
msgstr ""
|
||||
"คุณสามารถกรองและจัดกลุ่มข้อมูลก่อนที่จะแทรกลงใน\n"
|
||||
" แดชบอร์ดโดยใช้ตัวเลือกการค้นหา"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Your personal dashboard is empty"
|
||||
msgstr "แดชบอร์ดส่วนตัวของคุณว่างเปล่า"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "in the extended search options."
|
||||
msgstr "ในตัวเลือกการค้นหาเพิ่มเติม"
|
||||
164
odoo-bringout-oca-ocb-board/board/i18n/tr.po
Normal file
|
|
@ -0,0 +1,164 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * board
|
||||
#
|
||||
# Translators:
|
||||
# Nadir Gazioglu <nadirgazioglu@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Ediz Duman <neps1192@gmail.com>, 2022
|
||||
# Umur Akın <umura@projetgrup.com>, 2022
|
||||
# abc Def <hdogan1974@gmail.com>, 2022
|
||||
# Murat Kaplan <muratk@projetgrup.com>, 2022
|
||||
# Tugay Hatıl <tugayh@projetgrup.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-22 05:45+0000\n"
|
||||
"Last-Translator: Tugay Hatıl <tugayh@projetgrup.com>, 2023\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: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "\"%s\" added to dashboard"
|
||||
msgstr "\"%s\" yönetim paneline eklendi"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"Add to\n"
|
||||
" Dashboard\""
|
||||
msgstr "\"Kontrol Paneline Ekle\""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "'%s' added to dashboard"
|
||||
msgstr "'%s' yönetim paneline eklendi"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr "Ekle"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add to my dashboard"
|
||||
msgstr "Yönetim Panelime Ekle"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.js:0
|
||||
#, python-format
|
||||
msgid "Are you sure that you want to remove this item?"
|
||||
msgstr "Bu öğeyi kaldırmak istediğinizden emin misiniz?"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_view.js:0
|
||||
#: model:ir.model,name:board.model_board_board
|
||||
#, python-format
|
||||
msgid "Board"
|
||||
msgstr "Yönetim Paneli"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Change Layout"
|
||||
msgstr "Yerleşim Planını Değiştir"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Could not add filter to dashboard"
|
||||
msgstr "Yönetim paneline filtre eklenemiyor"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_action.xml:0
|
||||
#, python-format
|
||||
msgid "Invalid action"
|
||||
msgstr "Invalid action"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Layout"
|
||||
msgstr "Düzen"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.actions.act_window,name:board.open_board_my_dash_action
|
||||
#: model:ir.ui.menu,name:board.menu_board_my_dash
|
||||
#: model_terms:ir.ui.view,arch_db:board.board_my_dash_view
|
||||
msgid "My Dashboard"
|
||||
msgstr "Yönetim Panelim"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Please refresh your browser for the changes to take effect."
|
||||
msgstr "Değişikliklerin etkili olması için lütfen tarayıcınızı yenileyin."
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"To add your first report into this dashboard, go to any\n"
|
||||
" menu, switch to list or graph view, and click"
|
||||
msgstr ""
|
||||
"İlk raporunuzu bu kontrol paneline eklemek için herhangi bir menüye gidin, "
|
||||
"liste veya grafik görünümüne geçin."
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can filter and group data before inserting into the\n"
|
||||
" dashboard using the search options."
|
||||
msgstr ""
|
||||
"Arama seçeneklerini kullanarak panoya eklemeden önce verileri "
|
||||
"filtreleyebilir ve gruplandırabilirsiniz."
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Your personal dashboard is empty"
|
||||
msgstr "Kişisel kontrol paneli boş"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "in the extended search options."
|
||||
msgstr "gelişmiş arama seçeneklerinde"
|
||||
161
odoo-bringout-oca-ocb-board/board/i18n/uk.po
Normal file
|
|
@ -0,0 +1,161 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * board
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Alina Lisnenko <alina.lisnenko@erp.co.ua>, 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-22 05:45+0000\n"
|
||||
"Last-Translator: Alina Lisnenko <alina.lisnenko@erp.co.ua>, 2022\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: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "\"%s\" added to dashboard"
|
||||
msgstr "\"%s\" додано до панелі приладів"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"Add to\n"
|
||||
" Dashboard\""
|
||||
msgstr ""
|
||||
"\"Додати в\n"
|
||||
" Дашборд\""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "'%s' added to dashboard"
|
||||
msgstr "'%s' додано до панелі приладів"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr "Додати"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add to my dashboard"
|
||||
msgstr "Додати до моєї панелі приладів"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.js:0
|
||||
#, python-format
|
||||
msgid "Are you sure that you want to remove this item?"
|
||||
msgstr "Ви впевнені, що хочете видалити цей елемент?"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_view.js:0
|
||||
#: model:ir.model,name:board.model_board_board
|
||||
#, python-format
|
||||
msgid "Board"
|
||||
msgstr "Панель"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Change Layout"
|
||||
msgstr "Змінити макет"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Could not add filter to dashboard"
|
||||
msgstr "Не можливо додати фільтр до панелі"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_action.xml:0
|
||||
#, python-format
|
||||
msgid "Invalid action"
|
||||
msgstr "Недійсна дія"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Layout"
|
||||
msgstr "Макет"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.actions.act_window,name:board.open_board_my_dash_action
|
||||
#: model:ir.ui.menu,name:board.menu_board_my_dash
|
||||
#: model_terms:ir.ui.view,arch_db:board.board_my_dash_view
|
||||
msgid "My Dashboard"
|
||||
msgstr "Моя панель приладів"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Please refresh your browser for the changes to take effect."
|
||||
msgstr "Оновіть свій веб-браузер, щоби зміни вступили в силу."
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"To add your first report into this dashboard, go to any\n"
|
||||
" menu, switch to list or graph view, and click"
|
||||
msgstr ""
|
||||
"Щоб додати свій перший звіт на цю панель приладів, \n"
|
||||
"перейдіть до будь-якого меню, переключіться на список або графік і натисніть"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can filter and group data before inserting into the\n"
|
||||
" dashboard using the search options."
|
||||
msgstr ""
|
||||
"Ви можете фільтрувати та групувати дані перед \n"
|
||||
"вставленням на панель приладів за допомогою параметрів пошуку."
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Your personal dashboard is empty"
|
||||
msgstr "Ваша персональна панель приладів порожня"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "in the extended search options."
|
||||
msgstr "в розширених параметрах пошуку."
|
||||
162
odoo-bringout-oca-ocb-board/board/i18n/vi.po
Normal file
|
|
@ -0,0 +1,162 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * board
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Duy BQ <duybq86@gmail.com>, 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-22 05:45+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: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "\"%s\" added to dashboard"
|
||||
msgstr "\"%s\" đã thêm vào dashboard"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"Add to\n"
|
||||
" Dashboard\""
|
||||
msgstr ""
|
||||
"\"Thêm vào\n"
|
||||
" Dashboard\""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "'%s' added to dashboard"
|
||||
msgstr "'%s' được thêm vào bảng điều khiển"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr "Thêm"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add to my dashboard"
|
||||
msgstr "Thêm vào Bảng điều khiển của tôi"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.js:0
|
||||
#, python-format
|
||||
msgid "Are you sure that you want to remove this item?"
|
||||
msgstr "Bạn có chắc muốn xóa nó?"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_view.js:0
|
||||
#: model:ir.model,name:board.model_board_board
|
||||
#, python-format
|
||||
msgid "Board"
|
||||
msgstr "Trang tổng quan"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Change Layout"
|
||||
msgstr "Thay đổi bố cục"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Could not add filter to dashboard"
|
||||
msgstr "Không thể thêm bộ lọc vào bảng điều khiển"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_action.xml:0
|
||||
#, python-format
|
||||
msgid "Invalid action"
|
||||
msgstr "Tác vụ không hợp lệ"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Layout"
|
||||
msgstr "Bố cục"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.actions.act_window,name:board.open_board_my_dash_action
|
||||
#: model:ir.ui.menu,name:board.menu_board_my_dash
|
||||
#: model_terms:ir.ui.view,arch_db:board.board_my_dash_view
|
||||
msgid "My Dashboard"
|
||||
msgstr "Bảng điều khiển của Tôi"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Please refresh your browser for the changes to take effect."
|
||||
msgstr "Vui lòng tải lại trình duyệt của bạn để thấy được những sự thay đổi."
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"To add your first report into this dashboard, go to any\n"
|
||||
" menu, switch to list or graph view, and click"
|
||||
msgstr ""
|
||||
"Để thêm báo cáo đầu tiên của bạn tới dashboard này, hãy đi\n"
|
||||
" đến menu bất kỳ, chuyển dạng hiển thị sang danh sách hoặc biểu đồ, và bấm"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can filter and group data before inserting into the\n"
|
||||
" dashboard using the search options."
|
||||
msgstr ""
|
||||
"Bạn có thể lọc và nhóm các dữ liệu trước khi thêm nó vào\n"
|
||||
" dashboard để dùng cho tùy chọn tìm kiếm."
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Your personal dashboard is empty"
|
||||
msgstr "Bản thông tin cá nhân của bạn hiện đang trống"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "in the extended search options."
|
||||
msgstr "trong các tùy chọn tìm kiếm mở rộng."
|
||||
162
odoo-bringout-oca-ocb-board/board/i18n/zh_CN.po
Normal file
|
|
@ -0,0 +1,162 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * board
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# 稀饭~~ <wangwhai@qq.com>, 2022
|
||||
# Jeffery CHEN <jeffery9@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-22 05:45+0000\n"
|
||||
"Last-Translator: Jeffery CHEN <jeffery9@gmail.com>, 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: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "\"%s\" added to dashboard"
|
||||
msgstr "\"%s\" 被添加到仪表板"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"Add to\n"
|
||||
" Dashboard\""
|
||||
msgstr ""
|
||||
"\"添加到\n"
|
||||
" 仪表板\""
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "'%s' added to dashboard"
|
||||
msgstr "'%s' 添加到仪表板"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr "添加"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add to my dashboard"
|
||||
msgstr "添加到我的仪表板"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.js:0
|
||||
#, python-format
|
||||
msgid "Are you sure that you want to remove this item?"
|
||||
msgstr "是否确实要移除此项目?"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_view.js:0
|
||||
#: model:ir.model,name:board.model_board_board
|
||||
#, python-format
|
||||
msgid "Board"
|
||||
msgstr "仪表板"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Change Layout"
|
||||
msgstr "更改布局"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Could not add filter to dashboard"
|
||||
msgstr "无法添加筛选到仪表板"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_action.xml:0
|
||||
#, python-format
|
||||
msgid "Invalid action"
|
||||
msgstr "无效动作"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Layout"
|
||||
msgstr "布局"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.actions.act_window,name:board.open_board_my_dash_action
|
||||
#: model:ir.ui.menu,name:board.menu_board_my_dash
|
||||
#: model_terms:ir.ui.view,arch_db:board.board_my_dash_view
|
||||
msgid "My Dashboard"
|
||||
msgstr "我的仪表板"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Please refresh your browser for the changes to take effect."
|
||||
msgstr "请刷新您的浏览器以使更改生效。"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"To add your first report into this dashboard, go to any\n"
|
||||
" menu, switch to list or graph view, and click"
|
||||
msgstr ""
|
||||
"若要将第一个报表添加到此仪表板,请转到“任何\n"
|
||||
" 菜单中,切换到列表或图形视图,然后单击"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can filter and group data before inserting into the\n"
|
||||
" dashboard using the search options."
|
||||
msgstr ""
|
||||
"使用搜素选项插入到仪表板之前\n"
|
||||
" 可以对数据进行筛选和分组。."
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Your personal dashboard is empty"
|
||||
msgstr "您的个人仪表板是空的"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "in the extended search options."
|
||||
msgstr "在扩展搜索选项。"
|
||||
161
odoo-bringout-oca-ocb-board/board/i18n/zh_TW.po
Normal file
|
|
@ -0,0 +1,161 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * board
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Tony Ng, 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-22 05:45+0000\n"
|
||||
"Last-Translator: Tony Ng, 2024\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: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "\"%s\" added to dashboard"
|
||||
msgstr "“%s”已添加到儀表板"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"Add to\n"
|
||||
" Dashboard\""
|
||||
msgstr ""
|
||||
"「加入至\n"
|
||||
" Dashboard」"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "'%s' added to dashboard"
|
||||
msgstr "'%s' 添加到儀表板"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add"
|
||||
msgstr "增加"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.xml:0
|
||||
#, python-format
|
||||
msgid "Add to my dashboard"
|
||||
msgstr "添加到我的儀表板"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.js:0
|
||||
#, python-format
|
||||
msgid "Are you sure that you want to remove this item?"
|
||||
msgstr "確定要移除此項目?"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_view.js:0
|
||||
#: model:ir.model,name:board.model_board_board
|
||||
#, python-format
|
||||
msgid "Board"
|
||||
msgstr "板"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Change Layout"
|
||||
msgstr "更改佈局"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Could not add filter to dashboard"
|
||||
msgstr "無法增加篩選到儀表板"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.model.fields,field_description:board.field_board_board__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_action.xml:0
|
||||
#, python-format
|
||||
msgid "Invalid action"
|
||||
msgstr "無效動作"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Layout"
|
||||
msgstr "佈局"
|
||||
|
||||
#. module: board
|
||||
#: model:ir.actions.act_window,name:board.open_board_my_dash_action
|
||||
#: model:ir.ui.menu,name:board.menu_board_my_dash
|
||||
#: model_terms:ir.ui.view,arch_db:board.board_my_dash_view
|
||||
msgid "My Dashboard"
|
||||
msgstr "我的儀表板"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/add_to_board/add_to_board.js:0
|
||||
#: code:addons/board/static/src/add_to_board/legacy_add_to_board.js:0
|
||||
#, python-format
|
||||
msgid "Please refresh your browser for the changes to take effect."
|
||||
msgstr "請刷新瀏覽器以使更改生效。"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"To add your first report into this dashboard, go to any\n"
|
||||
" menu, switch to list or graph view, and click"
|
||||
msgstr ""
|
||||
"若要將第一個報表添加到此Dashboard,請前往任何\n"
|
||||
" 選單中,切換成列表或圖表檢視,然後點擊"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can filter and group data before inserting into the\n"
|
||||
" dashboard using the search options."
|
||||
msgstr ""
|
||||
"資料匯入Dashboard之前,你可使用搜尋選項,\n"
|
||||
" 對資料先作篩選及組合處理。"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "Your personal dashboard is empty"
|
||||
msgstr "您的個人儀表板是空的"
|
||||
|
||||
#. module: board
|
||||
#. odoo-javascript
|
||||
#: code:addons/board/static/src/board_controller.xml:0
|
||||
#, python-format
|
||||
msgid "in the extended search options."
|
||||
msgstr "在進階搜尋選項中。"
|
||||
4
odoo-bringout-oca-ocb-board/board/models/__init__.py
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import board
|
||||
61
odoo-bringout-oca-ocb-board/board/models/board.py
Normal file
|
|
@ -0,0 +1,61 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import api, fields, models
|
||||
|
||||
|
||||
class Board(models.AbstractModel):
|
||||
_name = 'board.board'
|
||||
_description = "Board"
|
||||
_auto = False
|
||||
|
||||
# This is necessary for when the web client opens a dashboard. Technically
|
||||
# speaking, the dashboard is a form view, and opening it makes the client
|
||||
# initialize a dummy record by invoking onchange(). And the latter requires
|
||||
# an 'id' field to work properly...
|
||||
id = fields.Id()
|
||||
|
||||
@api.model_create_multi
|
||||
def create(self, vals_list):
|
||||
return self
|
||||
|
||||
@api.model
|
||||
def get_view(self, view_id=None, view_type='form', **options):
|
||||
"""
|
||||
Overrides orm field_view_get.
|
||||
@return: Dictionary of Fields, arch and toolbar.
|
||||
"""
|
||||
|
||||
res = super().get_view(view_id, view_type, **options)
|
||||
|
||||
custom_view = self.env['ir.ui.view.custom'].search([('user_id', '=', self.env.uid), ('ref_id', '=', view_id)], limit=1)
|
||||
if custom_view:
|
||||
res.update({'custom_view_id': custom_view.id,
|
||||
'arch': custom_view.arch})
|
||||
res['arch'] = self._arch_preprocessing(res['arch'])
|
||||
return res
|
||||
|
||||
@api.model
|
||||
def get_views(self, views, options=None):
|
||||
res = super().get_views(views, options)
|
||||
for view in res['views'].values():
|
||||
view['toolbar'] = {'print': [], 'action': [], 'relate': []}
|
||||
return res
|
||||
|
||||
@api.model
|
||||
def _arch_preprocessing(self, arch):
|
||||
from lxml import etree
|
||||
|
||||
def remove_unauthorized_children(node):
|
||||
for child in node.iterchildren():
|
||||
if child.tag == 'action' and child.get('invisible'):
|
||||
node.remove(child)
|
||||
else:
|
||||
remove_unauthorized_children(child)
|
||||
return node
|
||||
|
||||
archnode = etree.fromstring(arch)
|
||||
# add the js_class 'board' on the fly to force the webclient to
|
||||
# instantiate a BoardView instead of FormView
|
||||
archnode.set('js_class', 'board')
|
||||
return etree.tostring(remove_unauthorized_children(archnode), pretty_print=True, encoding='unicode')
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink
|
||||
access_board_board_all,board.board,model_board_board,,1,0,0,0
|
||||
|
BIN
odoo-bringout-oca-ocb-board/board/static/description/icon.png
Normal file
|
After Width: | Height: | Size: 5.9 KiB |
|
|
@ -0,0 +1,23 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="70" height="70" viewBox="0 0 70 70">
|
||||
<defs>
|
||||
<path id="icon-a" d="M4,5.35309892e-14 C36.4160122,9.87060235e-15 58.0836068,-3.97961823e-14 65,5.07020818e-14 C69,6.733808e-14 70,1 70,5 C70,43.0488877 70,62.4235458 70,65 C70,69 69,70 65,70 C61,70 9,70 4,70 C1,70 7.10542736e-15,69 7.10542736e-15,65 C7.25721566e-15,62.4676575 3.83358709e-14,41.8005206 3.60818146e-14,5 C-1.13686838e-13,1 1,5.75716207e-14 4,5.35309892e-14 Z"/>
|
||||
<linearGradient id="icon-c" x1="100%" x2="0%" y1="0%" y2="100%">
|
||||
<stop offset="0%" stop-color="#CD7690"/>
|
||||
<stop offset="100%" stop-color="#CA5377"/>
|
||||
</linearGradient>
|
||||
<path id="icon-d" d="M18.0450069,57.225 C16.6239398,57.2249541 15.319401,56.4292666 14.6550625,55.1573449 C12.9601701,51.9125391 12,48.2137078 12,44.2875 C12,31.4261695 22.2974514,21 35,21 C47.7025486,21 58,31.4261695 58,44.2875 C58,48.2137078 57.0398299,51.9125391 55.3449375,55.1573449 C54.6806259,56.4292924 53.3760701,57.2249902 51.9549931,57.225 L18.0450069,57.225 Z M52.8888889,41.7 C51.4775035,41.7 50.3333333,42.8584723 50.3333333,44.2875 C50.3333333,45.7165277 51.4775035,46.875 52.8888889,46.875 C54.3002743,46.875 55.4444444,45.7165277 55.4444444,44.2875 C55.4444444,42.8584723 54.3002743,41.7 52.8888889,41.7 Z M35,28.7625 C36.4113854,28.7625 37.5555556,27.6040277 37.5555556,26.175 C37.5555556,24.7459723 36.4113854,23.5875 35,23.5875 C33.5886146,23.5875 32.4444444,24.7459723 32.4444444,26.175 C32.4444444,27.6040277 33.5886146,28.7625 35,28.7625 Z M17.1111111,41.7 C15.6997257,41.7 14.5555556,42.8584723 14.5555556,44.2875 C14.5555556,45.7165277 15.6997257,46.875 17.1111111,46.875 C18.5224965,46.875 19.6666667,45.7165277 19.6666667,44.2875 C19.6666667,42.8584723 18.5224965,41.7 17.1111111,41.7 Z M22.3506389,28.8925219 C20.9392535,28.8925219 19.7950833,30.0509941 19.7950833,31.4800219 C19.7950833,32.9090496 20.9392535,34.0675219 22.3506389,34.0675219 C23.7620243,34.0675219 24.9061944,32.9090496 24.9061944,31.4800219 C24.9061944,30.0509941 23.7620243,28.8925219 22.3506389,28.8925219 Z M47.6493611,28.8925219 C46.2379757,28.8925219 45.0938056,30.0509941 45.0938056,31.4800219 C45.0938056,32.9090496 46.2379757,34.0675219 47.6493611,34.0675219 C49.0607465,34.0675219 50.2049167,32.9090496 50.2049167,31.4800219 C50.2049167,30.0509941 49.0607465,28.8925219 47.6493611,28.8925219 Z M40.6952153,31.4423414 C39.686809,31.1156695 38.6082049,31.6784508 38.285566,32.6992195 L34.6181042,44.3034293 C31.9739028,44.501373 29.8888889,46.7346281 29.8888889,49.4625 C29.8888889,52.3205555 32.1772292,54.6375 35,54.6375 C37.8227708,54.6375 40.1111111,52.3205555 40.1111111,49.4625 C40.1111111,47.8636676 39.3946771,46.434559 38.269434,45.4852699 L41.9365764,33.8821113 C42.2591354,32.8612617 41.7033819,31.7690133 40.6952153,31.4423414 Z"/>
|
||||
</defs>
|
||||
<g fill="none" fill-rule="evenodd">
|
||||
<mask id="icon-b" fill="#fff">
|
||||
<use xlink:href="#icon-a"/>
|
||||
</mask>
|
||||
<g mask="url(#icon-b)">
|
||||
<rect width="70" height="70" fill="url(#icon-c)"/>
|
||||
<path fill="#FFF" fill-opacity=".383" d="M4,1.8 L65,1.8 C67.6666667,1.8 69.3333333,1.13333333 70,-0.2 C70,2.46666667 70,3.46666667 70,2.8 L1.10547097e-14,2.8 C-1.65952376e-14,3.46666667 -2.9161925e-14,2.46666667 -2.66453526e-14,-0.2 C0.666666667,1.13333333 2,1.8 4,1.8 Z" transform="matrix(1 0 0 -1 0 2.8)"/>
|
||||
<path fill="#393939" d="M4,50 C2,50 -7.10542736e-15,49.851312 0,45.8367347 L0,26.3942795 L16.3536575,8.86200565 C29.4512192,-0.488174988 39.6666667,-2.3877551 47,3.16326531 C54.3333333,8.71428571 58,14.9591837 58,21.8979592 C55.8677728,29.7827578 54.7719047,33.7755585 54.7123959,33.8763613 C54.6528871,33.9771642 49.9857922,39.3517104 40.7111111,50 L4,50 Z" opacity=".324" transform="translate(0 20)"/>
|
||||
<path fill="#000" fill-opacity=".383" d="M4,4 L65,4 C67.6666667,4 69.3333333,3 70,1 C70,3.66666667 70,5 70,5 L1.77635684e-15,5 C1.77635684e-15,5 1.77635684e-15,3.66666667 1.77635684e-15,1 C0.666666667,3 2,4 4,4 Z" transform="translate(0 65)"/>
|
||||
<use fill="#000" fill-rule="nonzero" opacity=".3" xlink:href="#icon-d"/>
|
||||
<path fill="#FFF" fill-rule="nonzero" d="M18.0450069,55.225 C16.6239398,55.2249541 15.319401,54.4292666 14.6550625,53.1573449 C12.9601701,49.9125391 12,46.2137078 12,42.2875 C12,29.4261695 22.2974514,19 35,19 C47.7025486,19 58,29.4261695 58,42.2875 C58,46.2137078 57.0398299,49.9125391 55.3449375,53.1573449 C54.6806259,54.4292924 53.3760701,55.2249902 51.9549931,55.225 L18.0450069,55.225 Z M52.8888889,39.7 C51.4775035,39.7 50.3333333,40.8584723 50.3333333,42.2875 C50.3333333,43.7165277 51.4775035,44.875 52.8888889,44.875 C54.3002743,44.875 55.4444444,43.7165277 55.4444444,42.2875 C55.4444444,40.8584723 54.3002743,39.7 52.8888889,39.7 Z M35,26.7625 C36.4113854,26.7625 37.5555556,25.6040277 37.5555556,24.175 C37.5555556,22.7459723 36.4113854,21.5875 35,21.5875 C33.5886146,21.5875 32.4444444,22.7459723 32.4444444,24.175 C32.4444444,25.6040277 33.5886146,26.7625 35,26.7625 Z M17.1111111,39.7 C15.6997257,39.7 14.5555556,40.8584723 14.5555556,42.2875 C14.5555556,43.7165277 15.6997257,44.875 17.1111111,44.875 C18.5224965,44.875 19.6666667,43.7165277 19.6666667,42.2875 C19.6666667,40.8584723 18.5224965,39.7 17.1111111,39.7 Z M22.3506389,26.8925219 C20.9392535,26.8925219 19.7950833,28.0509941 19.7950833,29.4800219 C19.7950833,30.9090496 20.9392535,32.0675219 22.3506389,32.0675219 C23.7620243,32.0675219 24.9061944,30.9090496 24.9061944,29.4800219 C24.9061944,28.0509941 23.7620243,26.8925219 22.3506389,26.8925219 Z M47.6493611,26.8925219 C46.2379757,26.8925219 45.0938056,28.0509941 45.0938056,29.4800219 C45.0938056,30.9090496 46.2379757,32.0675219 47.6493611,32.0675219 C49.0607465,32.0675219 50.2049167,30.9090496 50.2049167,29.4800219 C50.2049167,28.0509941 49.0607465,26.8925219 47.6493611,26.8925219 Z M40.6952153,29.4423414 C39.686809,29.1156695 38.6082049,29.6784508 38.285566,30.6992195 L34.6181042,42.3034293 C31.9739028,42.501373 29.8888889,44.7346281 29.8888889,47.4625 C29.8888889,50.3205555 32.1772292,52.6375 35,52.6375 C37.8227708,52.6375 40.1111111,50.3205555 40.1111111,47.4625 C40.1111111,45.8636676 39.3946771,44.434559 38.269434,43.4852699 L41.9365764,31.8821113 C42.2591354,30.8612617 41.7033819,29.7690133 40.6952153,29.4423414 Z"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 6.3 KiB |
BIN
odoo-bringout-oca-ocb-board/board/static/img/layout_1-1-1.png
Normal file
|
After Width: | Height: | Size: 306 B |
BIN
odoo-bringout-oca-ocb-board/board/static/img/layout_1-1.png
Normal file
|
After Width: | Height: | Size: 313 B |
BIN
odoo-bringout-oca-ocb-board/board/static/img/layout_1-2.png
Normal file
|
After Width: | Height: | Size: 313 B |
BIN
odoo-bringout-oca-ocb-board/board/static/img/layout_1.png
Normal file
|
After Width: | Height: | Size: 292 B |
BIN
odoo-bringout-oca-ocb-board/board/static/img/layout_2-1.png
Normal file
|
After Width: | Height: | Size: 304 B |
BIN
odoo-bringout-oca-ocb-board/board/static/img/view_todo_arrow.png
Normal file
|
After Width: | Height: | Size: 3.3 KiB |
|
|
@ -0,0 +1,104 @@
|
|||
/** @odoo-module **/
|
||||
|
||||
import { Dropdown } from "@web/core/dropdown/dropdown";
|
||||
import { registry } from "@web/core/registry";
|
||||
import { useAutofocus, useService } from "@web/core/utils/hooks";
|
||||
import { sprintf } from "@web/core/utils/strings";
|
||||
|
||||
const { Component, useState } = owl;
|
||||
const favoriteMenuRegistry = registry.category("favoriteMenu");
|
||||
|
||||
/**
|
||||
* 'Add to board' menu
|
||||
*
|
||||
* Component consisiting of a toggle button, a text input and an 'Add' button.
|
||||
* The first button is simply used to toggle the component and will determine
|
||||
* whether the other elements should be rendered.
|
||||
* The input will be given the name (or title) of the view that will be added.
|
||||
* Finally, the last button will send the name as well as some of the action
|
||||
* properties to the server to add the current view (and its context) to the
|
||||
* user's dashboard.
|
||||
* This component is only available in actions of type 'ir.actions.act_window'.
|
||||
* @extends Component
|
||||
*/
|
||||
export class AddToBoard extends Component {
|
||||
setup() {
|
||||
this.notification = useService("notification");
|
||||
this.rpc = useService("rpc");
|
||||
this.state = useState({ name: this.env.config.getDisplayName() });
|
||||
|
||||
useAutofocus();
|
||||
}
|
||||
|
||||
//---------------------------------------------------------------------
|
||||
// Protected
|
||||
//---------------------------------------------------------------------
|
||||
|
||||
async addToBoard() {
|
||||
const { domain, globalContext } = this.env.searchModel;
|
||||
const { context, groupBys, orderBy } = this.env.searchModel.getPreFavoriteValues();
|
||||
const comparison = this.env.searchModel.comparison;
|
||||
const contextToSave = {
|
||||
...Object.fromEntries(
|
||||
Object.entries(globalContext).filter(
|
||||
(entry) => !entry[0].startsWith("search_default_")
|
||||
)
|
||||
),
|
||||
...context,
|
||||
orderedBy: orderBy,
|
||||
group_by: groupBys,
|
||||
dashboard_merge_domains_contexts: false,
|
||||
};
|
||||
if (comparison) {
|
||||
contextToSave.comparison = comparison;
|
||||
}
|
||||
|
||||
const result = await this.rpc("/board/add_to_dashboard", {
|
||||
action_id: this.env.config.actionId || false,
|
||||
context_to_save: contextToSave,
|
||||
domain,
|
||||
name: this.state.name,
|
||||
view_mode: this.env.config.viewType,
|
||||
});
|
||||
|
||||
if (result) {
|
||||
this.notification.add(
|
||||
this.env._t("Please refresh your browser for the changes to take effect."),
|
||||
{
|
||||
title: sprintf(this.env._t(`"%s" added to dashboard`), this.state.name),
|
||||
type: "warning",
|
||||
}
|
||||
);
|
||||
this.state.name = this.env.config.getDisplayName();
|
||||
} else {
|
||||
this.notification.add(this.env._t("Could not add filter to dashboard"), {
|
||||
type: "danger",
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
//---------------------------------------------------------------------
|
||||
// Handlers
|
||||
//---------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* @param {KeyboardEvent} ev
|
||||
*/
|
||||
onInputKeydown(ev) {
|
||||
if (ev.key === "Enter") {
|
||||
ev.preventDefault();
|
||||
this.addToBoard();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
AddToBoard.template = "board.AddToBoard";
|
||||
AddToBoard.components = { Dropdown };
|
||||
|
||||
export const addToBoardItem = {
|
||||
Component: AddToBoard,
|
||||
groupNumber: 4,
|
||||
isDisplayed: ({ config }) => config.actionType === "ir.actions.act_window" && config.actionId,
|
||||
};
|
||||
|
||||
favoriteMenuRegistry.add("add-to-board", addToBoardItem, { sequence: 10 });
|
||||