Начальное наполнение
This commit is contained in:
parent
5ffcfc864e
commit
9ae9faf496
4
__init__.py
Normal file
4
__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 models
|
37
__manifest__.py
Normal file
37
__manifest__.py
Normal file
@ -0,0 +1,37 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
{
|
||||
'name': 'Transifex integration',
|
||||
'version': '1.0',
|
||||
'summary': 'Add a link to edit a translation in Transifex',
|
||||
'category': 'Hidden/Tools',
|
||||
'description':
|
||||
"""
|
||||
Transifex integration
|
||||
=====================
|
||||
This module will add a link to the Transifex project in the translation view.
|
||||
The purpose of this module is to speed up translations of the main modules.
|
||||
|
||||
To work, Odoo uses Transifex configuration files `.tx/config` to detect the
|
||||
project source. Custom modules will not be translated (as not published on
|
||||
the main Transifex project).
|
||||
|
||||
The language the user tries to translate must be activated on the Transifex
|
||||
project.
|
||||
""",
|
||||
'data': [
|
||||
'data/transifex_data.xml',
|
||||
'views/code_translation_views.xml',
|
||||
'security/ir.model.access.csv'
|
||||
],
|
||||
'assets': {
|
||||
'web.assets_backend': [
|
||||
'transifex/static/src/views/fields/translation_dialog.xml',
|
||||
'transifex/static/src/views/*.js',
|
||||
'transifex/static/src/views/*.xml',
|
||||
],
|
||||
},
|
||||
'depends': ['base', 'web'],
|
||||
'license': 'LGPL-3',
|
||||
}
|
20
data/transifex_data.xml
Normal file
20
data/transifex_data.xml
Normal file
@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo noupdate="1">
|
||||
|
||||
<record id="transifex_project_url" model="ir.config_parameter">
|
||||
<field name="key">transifex.project_url</field>
|
||||
<field name="value">https://app.transifex.com/odoo</field>
|
||||
</record>
|
||||
|
||||
<record id="transifex_code_translation_reload" model="ir.cron">
|
||||
<field name="name">Transifex: Reload code translations</field>
|
||||
<field name="model_id" ref="model_transifex_code_translation"/>
|
||||
<field name="state">code</field>
|
||||
<field name="code">model.reload()</field>
|
||||
<field name='interval_number'>7</field>
|
||||
<field name='interval_type'>days</field>
|
||||
<field name="numbercall">-1</field>
|
||||
<field name="doall" eval="True"/>
|
||||
</record>
|
||||
|
||||
</odoo>
|
132
i18n/ar.po
Normal file
132
i18n/ar.po
Normal file
@ -0,0 +1,132 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * transifex
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 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: transifex
|
||||
#: model:ir.model,name:transifex.model_base
|
||||
msgid "Base"
|
||||
msgstr "قاعدة "
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__source
|
||||
msgid "Code"
|
||||
msgstr "رمز "
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model,name:transifex.model_transifex_code_translation
|
||||
msgid "Code Translation"
|
||||
msgstr "ترجمة الكود "
|
||||
|
||||
#. module: transifex
|
||||
#. odoo-javascript
|
||||
#: code:addons/transifex/static/src/views/fields/translation_dialog.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
#, python-format
|
||||
msgid "Contribute"
|
||||
msgstr "المساهمة "
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "اسم العرض "
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Group By"
|
||||
msgstr "تجميع حسب"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__id
|
||||
msgid "ID"
|
||||
msgstr "المُعرف"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__lang
|
||||
msgid "Language"
|
||||
msgstr "اللغة"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__module
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Module"
|
||||
msgstr "التطبيق "
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,help:transifex.field_transifex_code_translation__module
|
||||
msgid "Module this term belongs to"
|
||||
msgstr "التطبيق الذي ينتمي إليه هذا الشرط "
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Not Translated"
|
||||
msgstr "غير مترجم "
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,help:transifex.field_transifex_code_translation__transifex_url
|
||||
msgid "Propose a modification in the official version of Odoo"
|
||||
msgstr "اقتراح تعديل في النسخة الرسمية لأودو "
|
||||
|
||||
#. module: transifex
|
||||
#. odoo-javascript
|
||||
#: code:addons/transifex/static/src/views/reload_code_translations_views.xml:0
|
||||
#, python-format
|
||||
msgid "Reload"
|
||||
msgstr "إعادة تحميل"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Search Code Translations"
|
||||
msgstr "البحث في ترجمات الكود "
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
msgid "Transifex"
|
||||
msgstr "Transifex"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
msgid "Transifex Code Translation"
|
||||
msgstr "ترجمات كود Transifex "
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.actions.server,name:transifex.action_code_translations
|
||||
#: model:ir.ui.menu,name:transifex.menu_transifex_code_translations
|
||||
msgid "Transifex Code Translations"
|
||||
msgstr "ترجمات كود Transifex "
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model,name:transifex.model_transifex_translation
|
||||
msgid "Transifex Translation"
|
||||
msgstr "ترجمة Transifex "
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__transifex_url
|
||||
msgid "Transifex URL"
|
||||
msgstr "رابط Transifex"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.actions.server,name:transifex.transifex_code_translation_reload_ir_actions_server
|
||||
msgid "Transifex: Reload code translations"
|
||||
msgstr "Transifex: إعادة تحميل ترجمات الكود "
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__value
|
||||
msgid "Translation Value"
|
||||
msgstr "قيمة الترجمة"
|
136
i18n/bg.po
Normal file
136
i18n/bg.po
Normal file
@ -0,0 +1,136 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * transifex
|
||||
#
|
||||
# Translators:
|
||||
# aleksandar ivanov, 2023
|
||||
# KeyVillage, 2023
|
||||
# Boris Stefanov <borkata@gmail.com>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Maria Boyadjieva <marabo2000@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Maria Boyadjieva <marabo2000@gmail.com>, 2023\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: transifex
|
||||
#: model:ir.model,name:transifex.model_base
|
||||
msgid "Base"
|
||||
msgstr "Основа"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__source
|
||||
msgid "Code"
|
||||
msgstr "Код"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model,name:transifex.model_transifex_code_translation
|
||||
msgid "Code Translation"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#. odoo-javascript
|
||||
#: code:addons/transifex/static/src/views/fields/translation_dialog.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
#, python-format
|
||||
msgid "Contribute"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Име за Показване"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Group By"
|
||||
msgstr "Групиране по"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__lang
|
||||
msgid "Language"
|
||||
msgstr "Език"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__module
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Module"
|
||||
msgstr "Модул"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,help:transifex.field_transifex_code_translation__module
|
||||
msgid "Module this term belongs to"
|
||||
msgstr "Модул, към който принадлежи този срок"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Not Translated"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,help:transifex.field_transifex_code_translation__transifex_url
|
||||
msgid "Propose a modification in the official version of Odoo"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#. odoo-javascript
|
||||
#: code:addons/transifex/static/src/views/reload_code_translations_views.xml:0
|
||||
#, python-format
|
||||
msgid "Reload"
|
||||
msgstr "Презаредете"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Search Code Translations"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
msgid "Transifex"
|
||||
msgstr "Transifex"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
msgid "Transifex Code Translation"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.actions.server,name:transifex.action_code_translations
|
||||
#: model:ir.ui.menu,name:transifex.menu_transifex_code_translations
|
||||
msgid "Transifex Code Translations"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model,name:transifex.model_transifex_translation
|
||||
msgid "Transifex Translation"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__transifex_url
|
||||
msgid "Transifex URL"
|
||||
msgstr "Transifex URL"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.actions.server,name:transifex.transifex_code_translation_reload_ir_actions_server
|
||||
msgid "Transifex: Reload code translations"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__value
|
||||
msgid "Translation Value"
|
||||
msgstr "Стойност на превод"
|
137
i18n/ca.po
Normal file
137
i18n/ca.po
Normal file
@ -0,0 +1,137 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * transifex
|
||||
#
|
||||
# Translators:
|
||||
# Óscar Fonseca <tecnico@pyming.com>, 2023
|
||||
# Manel Fernandez Ramirez <manelfera@outlook.com>, 2023
|
||||
# José Cabrera Lozano <jose.cabrera@edukative.es>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# marcescu, 2023
|
||||
# martioodo hola, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: martioodo hola, 2023\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: transifex
|
||||
#: model:ir.model,name:transifex.model_base
|
||||
msgid "Base"
|
||||
msgstr "Base"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__source
|
||||
msgid "Code"
|
||||
msgstr "Codi"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model,name:transifex.model_transifex_code_translation
|
||||
msgid "Code Translation"
|
||||
msgstr "Traducció del codi"
|
||||
|
||||
#. module: transifex
|
||||
#. odoo-javascript
|
||||
#: code:addons/transifex/static/src/views/fields/translation_dialog.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
#, python-format
|
||||
msgid "Contribute"
|
||||
msgstr "Contribueix"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nom mostrat"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Group By"
|
||||
msgstr "Agrupar per"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__lang
|
||||
msgid "Language"
|
||||
msgstr "Idioma"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__module
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Module"
|
||||
msgstr "Mòdul"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,help:transifex.field_transifex_code_translation__module
|
||||
msgid "Module this term belongs to"
|
||||
msgstr "Mòdul al qual pertany aquest terme"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Not Translated"
|
||||
msgstr "No Traduït"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,help:transifex.field_transifex_code_translation__transifex_url
|
||||
msgid "Propose a modification in the official version of Odoo"
|
||||
msgstr "Proposar una modificació a la versió oficial d’Odoo"
|
||||
|
||||
#. module: transifex
|
||||
#. odoo-javascript
|
||||
#: code:addons/transifex/static/src/views/reload_code_translations_views.xml:0
|
||||
#, python-format
|
||||
msgid "Reload"
|
||||
msgstr "Torna a carregar"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Search Code Translations"
|
||||
msgstr "Cerca Traduccions del codi"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
msgid "Transifex"
|
||||
msgstr "Transifex"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
msgid "Transifex Code Translation"
|
||||
msgstr "Traducció de codi Transifex"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.actions.server,name:transifex.action_code_translations
|
||||
#: model:ir.ui.menu,name:transifex.menu_transifex_code_translations
|
||||
msgid "Transifex Code Translations"
|
||||
msgstr "Transifex Traduccions de codi"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model,name:transifex.model_transifex_translation
|
||||
msgid "Transifex Translation"
|
||||
msgstr "Transifex Traducció"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__transifex_url
|
||||
msgid "Transifex URL"
|
||||
msgstr "Transifex URL"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.actions.server,name:transifex.transifex_code_translation_reload_ir_actions_server
|
||||
msgid "Transifex: Reload code translations"
|
||||
msgstr "Transifex: Torna a carregar les traduccions del codi"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__value
|
||||
msgid "Translation Value"
|
||||
msgstr "Traducció"
|
137
i18n/cs.po
Normal file
137
i18n/cs.po
Normal file
@ -0,0 +1,137 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * transifex
|
||||
#
|
||||
# Translators:
|
||||
# Ivana Bartonkova, 2023
|
||||
# Wil Odoo, 2023
|
||||
# Jakub Smolka, 2023
|
||||
# Jiří Podhorecký, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Aleš Fiala <f.ales1@seznam.cz>, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Aleš Fiala <f.ales1@seznam.cz>, 2024\n"
|
||||
"Language-Team: Czech (https://app.transifex.com/odoo/teams/41243/cs/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: cs\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model,name:transifex.model_base
|
||||
msgid "Base"
|
||||
msgstr "Jádro"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__source
|
||||
msgid "Code"
|
||||
msgstr "Kód"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model,name:transifex.model_transifex_code_translation
|
||||
msgid "Code Translation"
|
||||
msgstr "Kód překladu"
|
||||
|
||||
#. module: transifex
|
||||
#. odoo-javascript
|
||||
#: code:addons/transifex/static/src/views/fields/translation_dialog.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
#, python-format
|
||||
msgid "Contribute"
|
||||
msgstr "Přispět"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Zobrazovací název"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Group By"
|
||||
msgstr "Seskupit podle"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__lang
|
||||
msgid "Language"
|
||||
msgstr "Jazyk"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__module
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Module"
|
||||
msgstr "Modul"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,help:transifex.field_transifex_code_translation__module
|
||||
msgid "Module this term belongs to"
|
||||
msgstr "Modul, do kterého tento termín patří"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Not Translated"
|
||||
msgstr "Nepřeloženo"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,help:transifex.field_transifex_code_translation__transifex_url
|
||||
msgid "Propose a modification in the official version of Odoo"
|
||||
msgstr "Navrhněte změnu v oficiální verzi Odoo"
|
||||
|
||||
#. module: transifex
|
||||
#. odoo-javascript
|
||||
#: code:addons/transifex/static/src/views/reload_code_translations_views.xml:0
|
||||
#, python-format
|
||||
msgid "Reload"
|
||||
msgstr "Obnovit"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Search Code Translations"
|
||||
msgstr "Vyhledat překlad kódu"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
msgid "Transifex"
|
||||
msgstr "Transifex"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
msgid "Transifex Code Translation"
|
||||
msgstr "Transifex překlad kódu"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.actions.server,name:transifex.action_code_translations
|
||||
#: model:ir.ui.menu,name:transifex.menu_transifex_code_translations
|
||||
msgid "Transifex Code Translations"
|
||||
msgstr "Transifex překlady kódu"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model,name:transifex.model_transifex_translation
|
||||
msgid "Transifex Translation"
|
||||
msgstr "Transifex překlad"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__transifex_url
|
||||
msgid "Transifex URL"
|
||||
msgstr "Transifex URL"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.actions.server,name:transifex.transifex_code_translation_reload_ir_actions_server
|
||||
msgid "Transifex: Reload code translations"
|
||||
msgstr "Transifex: Načíst překlady kódu znovu"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__value
|
||||
msgid "Translation Value"
|
||||
msgstr "Hodnota překladu"
|
133
i18n/da.po
Normal file
133
i18n/da.po
Normal file
@ -0,0 +1,133 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * transifex
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
# Sanne Kristensen <sanne@vkdata.dk>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Sanne Kristensen <sanne@vkdata.dk>, 2023\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: transifex
|
||||
#: model:ir.model,name:transifex.model_base
|
||||
msgid "Base"
|
||||
msgstr "Basis"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__source
|
||||
msgid "Code"
|
||||
msgstr "Kode"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model,name:transifex.model_transifex_code_translation
|
||||
msgid "Code Translation"
|
||||
msgstr "Kodeoversættelse"
|
||||
|
||||
#. module: transifex
|
||||
#. odoo-javascript
|
||||
#: code:addons/transifex/static/src/views/fields/translation_dialog.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
#, python-format
|
||||
msgid "Contribute"
|
||||
msgstr "Bidrage"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Vis navn"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Group By"
|
||||
msgstr "Sortér efter"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__lang
|
||||
msgid "Language"
|
||||
msgstr "Sprog"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__module
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Module"
|
||||
msgstr "Modul"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,help:transifex.field_transifex_code_translation__module
|
||||
msgid "Module this term belongs to"
|
||||
msgstr "Modul som denne term tilhører"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Not Translated"
|
||||
msgstr "Ikke oversat"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,help:transifex.field_transifex_code_translation__transifex_url
|
||||
msgid "Propose a modification in the official version of Odoo"
|
||||
msgstr "Foreslå en modifikation i den officielle Odoo version"
|
||||
|
||||
#. module: transifex
|
||||
#. odoo-javascript
|
||||
#: code:addons/transifex/static/src/views/reload_code_translations_views.xml:0
|
||||
#, python-format
|
||||
msgid "Reload"
|
||||
msgstr "Opdater"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Search Code Translations"
|
||||
msgstr "Søg efter kodeoversættelser"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
msgid "Transifex"
|
||||
msgstr "Transifex"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
msgid "Transifex Code Translation"
|
||||
msgstr "Transifex kodeoversættelse"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.actions.server,name:transifex.action_code_translations
|
||||
#: model:ir.ui.menu,name:transifex.menu_transifex_code_translations
|
||||
msgid "Transifex Code Translations"
|
||||
msgstr "Transifex kodeoversættelser"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model,name:transifex.model_transifex_translation
|
||||
msgid "Transifex Translation"
|
||||
msgstr "Transifex oversættelse"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__transifex_url
|
||||
msgid "Transifex URL"
|
||||
msgstr "Transifex URL"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.actions.server,name:transifex.transifex_code_translation_reload_ir_actions_server
|
||||
msgid "Transifex: Reload code translations"
|
||||
msgstr "Transifex: Genindlæs kodeoversættelser"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__value
|
||||
msgid "Translation Value"
|
||||
msgstr "Oversættelse"
|
132
i18n/de.po
Normal file
132
i18n/de.po
Normal file
@ -0,0 +1,132 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * transifex
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 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: transifex
|
||||
#: model:ir.model,name:transifex.model_base
|
||||
msgid "Base"
|
||||
msgstr "Basis"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__source
|
||||
msgid "Code"
|
||||
msgstr "Code"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model,name:transifex.model_transifex_code_translation
|
||||
msgid "Code Translation"
|
||||
msgstr "Code-Übersetzung"
|
||||
|
||||
#. module: transifex
|
||||
#. odoo-javascript
|
||||
#: code:addons/transifex/static/src/views/fields/translation_dialog.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
#, python-format
|
||||
msgid "Contribute"
|
||||
msgstr "Beitragen"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Anzeigename"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Group By"
|
||||
msgstr "Gruppieren nach"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__lang
|
||||
msgid "Language"
|
||||
msgstr "Sprache"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__module
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Module"
|
||||
msgstr "Modul"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,help:transifex.field_transifex_code_translation__module
|
||||
msgid "Module this term belongs to"
|
||||
msgstr "Modul, zu dem dieser Begriff gehört"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Not Translated"
|
||||
msgstr "Nicht übersetzt"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,help:transifex.field_transifex_code_translation__transifex_url
|
||||
msgid "Propose a modification in the official version of Odoo"
|
||||
msgstr "Eine Änderung in der offiziellen Version von Odoo vorschlagen"
|
||||
|
||||
#. module: transifex
|
||||
#. odoo-javascript
|
||||
#: code:addons/transifex/static/src/views/reload_code_translations_views.xml:0
|
||||
#, python-format
|
||||
msgid "Reload"
|
||||
msgstr "Erneut laden"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Search Code Translations"
|
||||
msgstr "Code-Übersetzungen suchen"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
msgid "Transifex"
|
||||
msgstr "Transifex"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
msgid "Transifex Code Translation"
|
||||
msgstr "Transifex-Code-Übersetzung"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.actions.server,name:transifex.action_code_translations
|
||||
#: model:ir.ui.menu,name:transifex.menu_transifex_code_translations
|
||||
msgid "Transifex Code Translations"
|
||||
msgstr "Transifex-Code-Übersetzungen"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model,name:transifex.model_transifex_translation
|
||||
msgid "Transifex Translation"
|
||||
msgstr "Transifex-Übersetzung"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__transifex_url
|
||||
msgid "Transifex URL"
|
||||
msgstr "Transifex-URL"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.actions.server,name:transifex.transifex_code_translation_reload_ir_actions_server
|
||||
msgid "Transifex: Reload code translations"
|
||||
msgstr "Transifex: Code-Übersetzungen neu laden"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__value
|
||||
msgid "Translation Value"
|
||||
msgstr "Übersetzungswert"
|
133
i18n/es.po
Normal file
133
i18n/es.po
Normal file
@ -0,0 +1,133 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * transifex
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Larissa Manderfeld, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Larissa Manderfeld, 2023\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: transifex
|
||||
#: model:ir.model,name:transifex.model_base
|
||||
msgid "Base"
|
||||
msgstr "Base"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__source
|
||||
msgid "Code"
|
||||
msgstr "Código"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model,name:transifex.model_transifex_code_translation
|
||||
msgid "Code Translation"
|
||||
msgstr "Traducción de códigos"
|
||||
|
||||
#. module: transifex
|
||||
#. odoo-javascript
|
||||
#: code:addons/transifex/static/src/views/fields/translation_dialog.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
#, python-format
|
||||
msgid "Contribute"
|
||||
msgstr "Contribuir"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre mostrado"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Group By"
|
||||
msgstr "Agrupar por"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__lang
|
||||
msgid "Language"
|
||||
msgstr "Idioma"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__module
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Module"
|
||||
msgstr "Módulo"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,help:transifex.field_transifex_code_translation__module
|
||||
msgid "Module this term belongs to"
|
||||
msgstr "Módulo al que pertenece este término"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Not Translated"
|
||||
msgstr "No traducido"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,help:transifex.field_transifex_code_translation__transifex_url
|
||||
msgid "Propose a modification in the official version of Odoo"
|
||||
msgstr "Proponer una modificación en la versión oficial de Odoo"
|
||||
|
||||
#. module: transifex
|
||||
#. odoo-javascript
|
||||
#: code:addons/transifex/static/src/views/reload_code_translations_views.xml:0
|
||||
#, python-format
|
||||
msgid "Reload"
|
||||
msgstr "Recargar"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Search Code Translations"
|
||||
msgstr "Buscar traducciones de códigos"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
msgid "Transifex"
|
||||
msgstr "Transifex"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
msgid "Transifex Code Translation"
|
||||
msgstr "Traducción de códigos de Transifex"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.actions.server,name:transifex.action_code_translations
|
||||
#: model:ir.ui.menu,name:transifex.menu_transifex_code_translations
|
||||
msgid "Transifex Code Translations"
|
||||
msgstr "Traducciones de códigos de Transifex"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model,name:transifex.model_transifex_translation
|
||||
msgid "Transifex Translation"
|
||||
msgstr "Traducción de Transifex"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__transifex_url
|
||||
msgid "Transifex URL"
|
||||
msgstr "URL de Transifex"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.actions.server,name:transifex.transifex_code_translation_reload_ir_actions_server
|
||||
msgid "Transifex: Reload code translations"
|
||||
msgstr "Transifex: volver a cargar las traducciones de códigos"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__value
|
||||
msgid "Translation Value"
|
||||
msgstr "Valor de Traducción"
|
132
i18n/es_419.po
Normal file
132
i18n/es_419.po
Normal file
@ -0,0 +1,132 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * transifex
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Spanish (Latin America) (https://app.transifex.com/odoo/teams/41243/es_419/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_419\n"
|
||||
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model,name:transifex.model_base
|
||||
msgid "Base"
|
||||
msgstr "Base"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__source
|
||||
msgid "Code"
|
||||
msgstr "Código"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model,name:transifex.model_transifex_code_translation
|
||||
msgid "Code Translation"
|
||||
msgstr "Traducción de códigos"
|
||||
|
||||
#. module: transifex
|
||||
#. odoo-javascript
|
||||
#: code:addons/transifex/static/src/views/fields/translation_dialog.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
#, python-format
|
||||
msgid "Contribute"
|
||||
msgstr "Contribuir"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre en pantalla"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Group By"
|
||||
msgstr "Agrupar por"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__lang
|
||||
msgid "Language"
|
||||
msgstr "Idioma"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__module
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Module"
|
||||
msgstr "Módulo"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,help:transifex.field_transifex_code_translation__module
|
||||
msgid "Module this term belongs to"
|
||||
msgstr "Módulo al que pertenece este término"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Not Translated"
|
||||
msgstr "No traducido"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,help:transifex.field_transifex_code_translation__transifex_url
|
||||
msgid "Propose a modification in the official version of Odoo"
|
||||
msgstr "Proponer una modificación en la versión oficial de Odoo"
|
||||
|
||||
#. module: transifex
|
||||
#. odoo-javascript
|
||||
#: code:addons/transifex/static/src/views/reload_code_translations_views.xml:0
|
||||
#, python-format
|
||||
msgid "Reload"
|
||||
msgstr "Volver a cargar"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Search Code Translations"
|
||||
msgstr "Buscar traducciones de códigos"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
msgid "Transifex"
|
||||
msgstr "Transifex"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
msgid "Transifex Code Translation"
|
||||
msgstr "Traducción de códigos de Transifex"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.actions.server,name:transifex.action_code_translations
|
||||
#: model:ir.ui.menu,name:transifex.menu_transifex_code_translations
|
||||
msgid "Transifex Code Translations"
|
||||
msgstr "Traducción de códigos de Transifex"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model,name:transifex.model_transifex_translation
|
||||
msgid "Transifex Translation"
|
||||
msgstr "Traducción en Transifex"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__transifex_url
|
||||
msgid "Transifex URL"
|
||||
msgstr "URL de Transifex"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.actions.server,name:transifex.transifex_code_translation_reload_ir_actions_server
|
||||
msgid "Transifex: Reload code translations"
|
||||
msgstr "Transifex: volver a cargar las traducciones de códigos"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__value
|
||||
msgid "Translation Value"
|
||||
msgstr "Valor de traducción"
|
138
i18n/et.po
Normal file
138
i18n/et.po
Normal file
@ -0,0 +1,138 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * transifex
|
||||
#
|
||||
# Translators:
|
||||
# Patrick-Jordan Kiudorv, 2023
|
||||
# Triine Aavik <triine@avalah.ee>, 2023
|
||||
# Leaanika Randmets, 2023
|
||||
# Piia Paurson <piia@avalah.ee>, 2023
|
||||
# Anna, 2023
|
||||
# Rivo Zängov <eraser@eraser.ee>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 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: transifex
|
||||
#: model:ir.model,name:transifex.model_base
|
||||
msgid "Base"
|
||||
msgstr "Baas"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__source
|
||||
msgid "Code"
|
||||
msgstr "Kood"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model,name:transifex.model_transifex_code_translation
|
||||
msgid "Code Translation"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#. odoo-javascript
|
||||
#: code:addons/transifex/static/src/views/fields/translation_dialog.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
#, python-format
|
||||
msgid "Contribute"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Kuvatav nimi"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Group By"
|
||||
msgstr "Rühmitamine"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__lang
|
||||
msgid "Language"
|
||||
msgstr "Keel"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__module
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Module"
|
||||
msgstr "Moodul"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,help:transifex.field_transifex_code_translation__module
|
||||
msgid "Module this term belongs to"
|
||||
msgstr "Moodul, millele see termin kuulub"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Not Translated"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,help:transifex.field_transifex_code_translation__transifex_url
|
||||
msgid "Propose a modification in the official version of Odoo"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#. odoo-javascript
|
||||
#: code:addons/transifex/static/src/views/reload_code_translations_views.xml:0
|
||||
#, python-format
|
||||
msgid "Reload"
|
||||
msgstr "Laadi uuesti"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Search Code Translations"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
msgid "Transifex"
|
||||
msgstr "Transifex"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
msgid "Transifex Code Translation"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.actions.server,name:transifex.action_code_translations
|
||||
#: model:ir.ui.menu,name:transifex.menu_transifex_code_translations
|
||||
msgid "Transifex Code Translations"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model,name:transifex.model_transifex_translation
|
||||
msgid "Transifex Translation"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__transifex_url
|
||||
msgid "Transifex URL"
|
||||
msgstr "Transifexi URL"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.actions.server,name:transifex.transifex_code_translation_reload_ir_actions_server
|
||||
msgid "Transifex: Reload code translations"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__value
|
||||
msgid "Translation Value"
|
||||
msgstr "Tõlge"
|
135
i18n/fa.po
Normal file
135
i18n/fa.po
Normal file
@ -0,0 +1,135 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * transifex
|
||||
#
|
||||
# Translators:
|
||||
# Hanna Kheradroosta, 2023
|
||||
# Hamid Darabi, 2023
|
||||
# Yousef Shadmanesh <y.shadmanesh@gmail.com>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2023\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: transifex
|
||||
#: model:ir.model,name:transifex.model_base
|
||||
msgid "Base"
|
||||
msgstr "پایه"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__source
|
||||
msgid "Code"
|
||||
msgstr "کد"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model,name:transifex.model_transifex_code_translation
|
||||
msgid "Code Translation"
|
||||
msgstr "ترجمه کد"
|
||||
|
||||
#. module: transifex
|
||||
#. odoo-javascript
|
||||
#: code:addons/transifex/static/src/views/fields/translation_dialog.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
#, python-format
|
||||
msgid "Contribute"
|
||||
msgstr "همکاری"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "نام نمایش داده شده"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Group By"
|
||||
msgstr "گروهبندی برمبنای"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__id
|
||||
msgid "ID"
|
||||
msgstr "شناسه"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__lang
|
||||
msgid "Language"
|
||||
msgstr "زبان"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__module
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Module"
|
||||
msgstr "ماژول"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,help:transifex.field_transifex_code_translation__module
|
||||
msgid "Module this term belongs to"
|
||||
msgstr "ماژولی که این واژه به آن تعلق دارد"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Not Translated"
|
||||
msgstr "ترجمه نشده"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,help:transifex.field_transifex_code_translation__transifex_url
|
||||
msgid "Propose a modification in the official version of Odoo"
|
||||
msgstr "پیشنهاد یک اصلاح در نسخه رسمی اودوو"
|
||||
|
||||
#. module: transifex
|
||||
#. odoo-javascript
|
||||
#: code:addons/transifex/static/src/views/reload_code_translations_views.xml:0
|
||||
#, python-format
|
||||
msgid "Reload"
|
||||
msgstr "بارگزاری مجدد"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Search Code Translations"
|
||||
msgstr "جستجوی ترجمه کد ها"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
msgid "Transifex"
|
||||
msgstr "ترنسیفکس"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
msgid "Transifex Code Translation"
|
||||
msgstr "ترجمه کد ترنیسیفکس"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.actions.server,name:transifex.action_code_translations
|
||||
#: model:ir.ui.menu,name:transifex.menu_transifex_code_translations
|
||||
msgid "Transifex Code Translations"
|
||||
msgstr "ترجمه های کد ترنسیفکس"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model,name:transifex.model_transifex_translation
|
||||
msgid "Transifex Translation"
|
||||
msgstr "ترجمه ترنسیفکس"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__transifex_url
|
||||
msgid "Transifex URL"
|
||||
msgstr "آدرس ترنسیفکس"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.actions.server,name:transifex.transifex_code_translation_reload_ir_actions_server
|
||||
msgid "Transifex: Reload code translations"
|
||||
msgstr "ترنسیفکس: بارگزاری ترجمه های کدها"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__value
|
||||
msgid "Translation Value"
|
||||
msgstr "مقدار ترجمه"
|
137
i18n/fi.po
Normal file
137
i18n/fi.po
Normal file
@ -0,0 +1,137 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * transifex
|
||||
#
|
||||
# Translators:
|
||||
# Veikko Väätäjä <veikko.vaataja@gmail.com>, 2023
|
||||
# Miku Laitinen <miku.laitinen@gmail.com>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2023
|
||||
# Tuomo Aura <tuomo.aura@web-veistamo.fi>, 2023
|
||||
# Ossi Mantylahti <ossi.mantylahti@obs-solutions.fi>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+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: transifex
|
||||
#: model:ir.model,name:transifex.model_base
|
||||
msgid "Base"
|
||||
msgstr "Pohja"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__source
|
||||
msgid "Code"
|
||||
msgstr "Koodi"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model,name:transifex.model_transifex_code_translation
|
||||
msgid "Code Translation"
|
||||
msgstr "Koodin käännös"
|
||||
|
||||
#. module: transifex
|
||||
#. odoo-javascript
|
||||
#: code:addons/transifex/static/src/views/fields/translation_dialog.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
#, python-format
|
||||
msgid "Contribute"
|
||||
msgstr "Osallistu"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Näyttönimi"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Group By"
|
||||
msgstr "Ryhmittely"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__lang
|
||||
msgid "Language"
|
||||
msgstr "Kieli"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__module
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Module"
|
||||
msgstr "Moduuli"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,help:transifex.field_transifex_code_translation__module
|
||||
msgid "Module this term belongs to"
|
||||
msgstr "Moduuli johon tämä termi kuuluu"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Not Translated"
|
||||
msgstr "Ei käännetty"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,help:transifex.field_transifex_code_translation__transifex_url
|
||||
msgid "Propose a modification in the official version of Odoo"
|
||||
msgstr "Ehdota muutosta Odoon viralliseen versioon"
|
||||
|
||||
#. module: transifex
|
||||
#. odoo-javascript
|
||||
#: code:addons/transifex/static/src/views/reload_code_translations_views.xml:0
|
||||
#, python-format
|
||||
msgid "Reload"
|
||||
msgstr "Lataa uudelleen"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Search Code Translations"
|
||||
msgstr "Etsi koodin käännöksiä"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
msgid "Transifex"
|
||||
msgstr "Transifex"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
msgid "Transifex Code Translation"
|
||||
msgstr "Transifex-koodin käännös"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.actions.server,name:transifex.action_code_translations
|
||||
#: model:ir.ui.menu,name:transifex.menu_transifex_code_translations
|
||||
msgid "Transifex Code Translations"
|
||||
msgstr "Transifex-koodin käännökset"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model,name:transifex.model_transifex_translation
|
||||
msgid "Transifex Translation"
|
||||
msgstr "Transifex-käännös"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__transifex_url
|
||||
msgid "Transifex URL"
|
||||
msgstr "Transifex URL"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.actions.server,name:transifex.transifex_code_translation_reload_ir_actions_server
|
||||
msgid "Transifex: Reload code translations"
|
||||
msgstr "Transifex: Käännösten uudelleenlataaminen"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__value
|
||||
msgid "Translation Value"
|
||||
msgstr "Käännös"
|
132
i18n/fr.po
Normal file
132
i18n/fr.po
Normal file
@ -0,0 +1,132 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * transifex
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 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: transifex
|
||||
#: model:ir.model,name:transifex.model_base
|
||||
msgid "Base"
|
||||
msgstr "Base"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__source
|
||||
msgid "Code"
|
||||
msgstr "Code"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model,name:transifex.model_transifex_code_translation
|
||||
msgid "Code Translation"
|
||||
msgstr "Traduction de code"
|
||||
|
||||
#. module: transifex
|
||||
#. odoo-javascript
|
||||
#: code:addons/transifex/static/src/views/fields/translation_dialog.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
#, python-format
|
||||
msgid "Contribute"
|
||||
msgstr "Contribuer"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nom d'affichage"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Group By"
|
||||
msgstr "Regrouper par"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__lang
|
||||
msgid "Language"
|
||||
msgstr "Langue"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__module
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Module"
|
||||
msgstr "Module"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,help:transifex.field_transifex_code_translation__module
|
||||
msgid "Module this term belongs to"
|
||||
msgstr "Le module auquel appartient ce mot"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Not Translated"
|
||||
msgstr "Non traduit"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,help:transifex.field_transifex_code_translation__transifex_url
|
||||
msgid "Propose a modification in the official version of Odoo"
|
||||
msgstr "Proposez une modification dans la version officielle d'Odoo"
|
||||
|
||||
#. module: transifex
|
||||
#. odoo-javascript
|
||||
#: code:addons/transifex/static/src/views/reload_code_translations_views.xml:0
|
||||
#, python-format
|
||||
msgid "Reload"
|
||||
msgstr "Recharger"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Search Code Translations"
|
||||
msgstr "Rechercher les traductions de code"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
msgid "Transifex"
|
||||
msgstr "Transifex"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
msgid "Transifex Code Translation"
|
||||
msgstr "Transifex traduction de code"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.actions.server,name:transifex.action_code_translations
|
||||
#: model:ir.ui.menu,name:transifex.menu_transifex_code_translations
|
||||
msgid "Transifex Code Translations"
|
||||
msgstr "Transifex traductions de code"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model,name:transifex.model_transifex_translation
|
||||
msgid "Transifex Translation"
|
||||
msgstr "Transifex traduction"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__transifex_url
|
||||
msgid "Transifex URL"
|
||||
msgstr "URL Transifex"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.actions.server,name:transifex.transifex_code_translation_reload_ir_actions_server
|
||||
msgid "Transifex: Reload code translations"
|
||||
msgstr "Transifex : recharger les traductions de code"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__value
|
||||
msgid "Translation Value"
|
||||
msgstr "Valeur de la traduction"
|
136
i18n/he.po
Normal file
136
i18n/he.po
Normal file
@ -0,0 +1,136 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * transifex
|
||||
#
|
||||
# Translators:
|
||||
# Lilach Gilliam <lilach.gilliam@gmail.com>, 2023
|
||||
# דודי מלכה <Dudimalka6@gmail.com>, 2023
|
||||
# Ha Ketem <haketem@gmail.com>, 2023
|
||||
# Yihya Hugirat <hugirat@gmail.com>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2023\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=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model,name:transifex.model_base
|
||||
msgid "Base"
|
||||
msgstr "בסיס"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__source
|
||||
msgid "Code"
|
||||
msgstr "קוד"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model,name:transifex.model_transifex_code_translation
|
||||
msgid "Code Translation"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#. odoo-javascript
|
||||
#: code:addons/transifex/static/src/views/fields/translation_dialog.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
#, python-format
|
||||
msgid "Contribute"
|
||||
msgstr "לתרום"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "שם לתצוגה"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Group By"
|
||||
msgstr "קבץ לפי"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__id
|
||||
msgid "ID"
|
||||
msgstr "מזהה"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__lang
|
||||
msgid "Language"
|
||||
msgstr "שפה"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__module
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Module"
|
||||
msgstr "מודול"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,help:transifex.field_transifex_code_translation__module
|
||||
msgid "Module this term belongs to"
|
||||
msgstr "מודול זה שייך למונח"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Not Translated"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,help:transifex.field_transifex_code_translation__transifex_url
|
||||
msgid "Propose a modification in the official version of Odoo"
|
||||
msgstr "להציע שינוי לגרסא הרשמית של Odoo"
|
||||
|
||||
#. module: transifex
|
||||
#. odoo-javascript
|
||||
#: code:addons/transifex/static/src/views/reload_code_translations_views.xml:0
|
||||
#, python-format
|
||||
msgid "Reload"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Search Code Translations"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
msgid "Transifex"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
msgid "Transifex Code Translation"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.actions.server,name:transifex.action_code_translations
|
||||
#: model:ir.ui.menu,name:transifex.menu_transifex_code_translations
|
||||
msgid "Transifex Code Translations"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model,name:transifex.model_transifex_translation
|
||||
msgid "Transifex Translation"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__transifex_url
|
||||
msgid "Transifex URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.actions.server,name:transifex.transifex_code_translation_reload_ir_actions_server
|
||||
msgid "Transifex: Reload code translations"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__value
|
||||
msgid "Translation Value"
|
||||
msgstr "ערך תרגום"
|
137
i18n/hu.po
Normal file
137
i18n/hu.po
Normal file
@ -0,0 +1,137 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * transifex
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
# Tamás Dombos, 2023
|
||||
# Ákos Nagy <akos.nagy@oregional.hu>, 2023
|
||||
# Kovács Tibor <kovika@gmail.com>, 2023
|
||||
# Tamás Németh <ntomasz81@gmail.com>, 2023
|
||||
# krnkris, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: krnkris, 2023\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: transifex
|
||||
#: model:ir.model,name:transifex.model_base
|
||||
msgid "Base"
|
||||
msgstr "Alap"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__source
|
||||
msgid "Code"
|
||||
msgstr "Kód"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model,name:transifex.model_transifex_code_translation
|
||||
msgid "Code Translation"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#. odoo-javascript
|
||||
#: code:addons/transifex/static/src/views/fields/translation_dialog.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
#, python-format
|
||||
msgid "Contribute"
|
||||
msgstr "Közreműködés"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Megjelenített név"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Group By"
|
||||
msgstr "Csoportosítás"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__id
|
||||
msgid "ID"
|
||||
msgstr "Azonosító"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__lang
|
||||
msgid "Language"
|
||||
msgstr "Nyelv"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__module
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Module"
|
||||
msgstr "Modul"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,help:transifex.field_transifex_code_translation__module
|
||||
msgid "Module this term belongs to"
|
||||
msgstr "A modul ezen feltételei ennek a tulajdona"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Not Translated"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,help:transifex.field_transifex_code_translation__transifex_url
|
||||
msgid "Propose a modification in the official version of Odoo"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#. odoo-javascript
|
||||
#: code:addons/transifex/static/src/views/reload_code_translations_views.xml:0
|
||||
#, python-format
|
||||
msgid "Reload"
|
||||
msgstr "Újratöltés"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Search Code Translations"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
msgid "Transifex"
|
||||
msgstr "Transifex"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
msgid "Transifex Code Translation"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.actions.server,name:transifex.action_code_translations
|
||||
#: model:ir.ui.menu,name:transifex.menu_transifex_code_translations
|
||||
msgid "Transifex Code Translations"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model,name:transifex.model_transifex_translation
|
||||
msgid "Transifex Translation"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__transifex_url
|
||||
msgid "Transifex URL"
|
||||
msgstr "Transifex webcím"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.actions.server,name:transifex.transifex_code_translation_reload_ir_actions_server
|
||||
msgid "Transifex: Reload code translations"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__value
|
||||
msgid "Translation Value"
|
||||
msgstr "Fordítási érték"
|
132
i18n/id.po
Normal file
132
i18n/id.po
Normal file
@ -0,0 +1,132 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * transifex
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 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: transifex
|
||||
#: model:ir.model,name:transifex.model_base
|
||||
msgid "Base"
|
||||
msgstr "Base"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__source
|
||||
msgid "Code"
|
||||
msgstr "Kode"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model,name:transifex.model_transifex_code_translation
|
||||
msgid "Code Translation"
|
||||
msgstr "Terjemahan Kode"
|
||||
|
||||
#. module: transifex
|
||||
#. odoo-javascript
|
||||
#: code:addons/transifex/static/src/views/fields/translation_dialog.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
#, python-format
|
||||
msgid "Contribute"
|
||||
msgstr "Contribute"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nama Tampilan"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Group By"
|
||||
msgstr "Dikelompokkan berdasarkan"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__lang
|
||||
msgid "Language"
|
||||
msgstr "Bahasa"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__module
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Module"
|
||||
msgstr "Modul"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,help:transifex.field_transifex_code_translation__module
|
||||
msgid "Module this term belongs to"
|
||||
msgstr "Modul yang merupakan asal istilah ini"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Not Translated"
|
||||
msgstr "Tidak Diterjemahkan"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,help:transifex.field_transifex_code_translation__transifex_url
|
||||
msgid "Propose a modification in the official version of Odoo"
|
||||
msgstr "Ajukan modifikasi di versi resmi Odoo"
|
||||
|
||||
#. module: transifex
|
||||
#. odoo-javascript
|
||||
#: code:addons/transifex/static/src/views/reload_code_translations_views.xml:0
|
||||
#, python-format
|
||||
msgid "Reload"
|
||||
msgstr "Muat ulang"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Search Code Translations"
|
||||
msgstr "Cari Terjemahan Kode"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
msgid "Transifex"
|
||||
msgstr "Transifex"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
msgid "Transifex Code Translation"
|
||||
msgstr "Terjemahan Kode Transifex"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.actions.server,name:transifex.action_code_translations
|
||||
#: model:ir.ui.menu,name:transifex.menu_transifex_code_translations
|
||||
msgid "Transifex Code Translations"
|
||||
msgstr "Terjemahan-Terjemahan Kode Transifex"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model,name:transifex.model_transifex_translation
|
||||
msgid "Transifex Translation"
|
||||
msgstr "Terjemahan Transifex"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__transifex_url
|
||||
msgid "Transifex URL"
|
||||
msgstr "URL Transifex"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.actions.server,name:transifex.transifex_code_translation_reload_ir_actions_server
|
||||
msgid "Transifex: Reload code translations"
|
||||
msgstr "Transifex: Muat ulang terjemahan kode"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__value
|
||||
msgid "Translation Value"
|
||||
msgstr "Nilai Terjemahan"
|
132
i18n/it.po
Normal file
132
i18n/it.po
Normal file
@ -0,0 +1,132 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * transifex
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 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: transifex
|
||||
#: model:ir.model,name:transifex.model_base
|
||||
msgid "Base"
|
||||
msgstr "Imponibile"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__source
|
||||
msgid "Code"
|
||||
msgstr "Codice"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model,name:transifex.model_transifex_code_translation
|
||||
msgid "Code Translation"
|
||||
msgstr "Codifica una traduzione"
|
||||
|
||||
#. module: transifex
|
||||
#. odoo-javascript
|
||||
#: code:addons/transifex/static/src/views/fields/translation_dialog.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
#, python-format
|
||||
msgid "Contribute"
|
||||
msgstr "Contribuisci"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nome visualizzato"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Group By"
|
||||
msgstr "Raggruppa per"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__lang
|
||||
msgid "Language"
|
||||
msgstr "Lingua"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__module
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Module"
|
||||
msgstr "Modulo"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,help:transifex.field_transifex_code_translation__module
|
||||
msgid "Module this term belongs to"
|
||||
msgstr "Il modulo a cui appartiene questa parola"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Not Translated"
|
||||
msgstr "Non tradotto"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,help:transifex.field_transifex_code_translation__transifex_url
|
||||
msgid "Propose a modification in the official version of Odoo"
|
||||
msgstr "Propone una modifica nella versione ufficiale di Odoo"
|
||||
|
||||
#. module: transifex
|
||||
#. odoo-javascript
|
||||
#: code:addons/transifex/static/src/views/reload_code_translations_views.xml:0
|
||||
#, python-format
|
||||
msgid "Reload"
|
||||
msgstr "Ricarica"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Search Code Translations"
|
||||
msgstr "Cerca traduzioni del codice"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
msgid "Transifex"
|
||||
msgstr "Transifex"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
msgid "Transifex Code Translation"
|
||||
msgstr "Transifex traduzione del codice"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.actions.server,name:transifex.action_code_translations
|
||||
#: model:ir.ui.menu,name:transifex.menu_transifex_code_translations
|
||||
msgid "Transifex Code Translations"
|
||||
msgstr "Transifex traduzioni del codice"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model,name:transifex.model_transifex_translation
|
||||
msgid "Transifex Translation"
|
||||
msgstr "Traduzione Transifex"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__transifex_url
|
||||
msgid "Transifex URL"
|
||||
msgstr "URL di Transifex"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.actions.server,name:transifex.transifex_code_translation_reload_ir_actions_server
|
||||
msgid "Transifex: Reload code translations"
|
||||
msgstr "Transifex: ricarica traduzioni del codice"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__value
|
||||
msgid "Translation Value"
|
||||
msgstr "Valore traduzione"
|
132
i18n/ja.po
Normal file
132
i18n/ja.po
Normal file
@ -0,0 +1,132 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * transifex
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 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: transifex
|
||||
#: model:ir.model,name:transifex.model_base
|
||||
msgid "Base"
|
||||
msgstr "ベース"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__source
|
||||
msgid "Code"
|
||||
msgstr "コード"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model,name:transifex.model_transifex_code_translation
|
||||
msgid "Code Translation"
|
||||
msgstr "コード翻訳"
|
||||
|
||||
#. module: transifex
|
||||
#. odoo-javascript
|
||||
#: code:addons/transifex/static/src/views/fields/translation_dialog.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
#, python-format
|
||||
msgid "Contribute"
|
||||
msgstr "貢献する"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "表示名"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Group By"
|
||||
msgstr "グループ化"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__lang
|
||||
msgid "Language"
|
||||
msgstr "言語"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__module
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Module"
|
||||
msgstr "モジュール"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,help:transifex.field_transifex_code_translation__module
|
||||
msgid "Module this term belongs to"
|
||||
msgstr "この用語が属するモジュール"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Not Translated"
|
||||
msgstr "未翻訳"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,help:transifex.field_transifex_code_translation__transifex_url
|
||||
msgid "Propose a modification in the official version of Odoo"
|
||||
msgstr "Odooの公式バージョンに修正を提案する"
|
||||
|
||||
#. module: transifex
|
||||
#. odoo-javascript
|
||||
#: code:addons/transifex/static/src/views/reload_code_translations_views.xml:0
|
||||
#, python-format
|
||||
msgid "Reload"
|
||||
msgstr "リロード"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Search Code Translations"
|
||||
msgstr "コード翻訳を検索"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
msgid "Transifex"
|
||||
msgstr "Transifex"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
msgid "Transifex Code Translation"
|
||||
msgstr "Transifexコード翻訳"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.actions.server,name:transifex.action_code_translations
|
||||
#: model:ir.ui.menu,name:transifex.menu_transifex_code_translations
|
||||
msgid "Transifex Code Translations"
|
||||
msgstr "Transifexコード翻訳"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model,name:transifex.model_transifex_translation
|
||||
msgid "Transifex Translation"
|
||||
msgstr "Transifex翻訳"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__transifex_url
|
||||
msgid "Transifex URL"
|
||||
msgstr "Transifex URL"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.actions.server,name:transifex.transifex_code_translation_reload_ir_actions_server
|
||||
msgid "Transifex: Reload code translations"
|
||||
msgstr "Transifex:コード翻訳を再ロード"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__value
|
||||
msgid "Translation Value"
|
||||
msgstr "翻訳"
|
132
i18n/ko.po
Normal file
132
i18n/ko.po
Normal file
@ -0,0 +1,132 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * transifex
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 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: transifex
|
||||
#: model:ir.model,name:transifex.model_base
|
||||
msgid "Base"
|
||||
msgstr "기준액"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__source
|
||||
msgid "Code"
|
||||
msgstr "코드"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model,name:transifex.model_transifex_code_translation
|
||||
msgid "Code Translation"
|
||||
msgstr "코드 번역"
|
||||
|
||||
#. module: transifex
|
||||
#. odoo-javascript
|
||||
#: code:addons/transifex/static/src/views/fields/translation_dialog.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
#, python-format
|
||||
msgid "Contribute"
|
||||
msgstr "기여"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "표시명"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Group By"
|
||||
msgstr "그룹별"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__lang
|
||||
msgid "Language"
|
||||
msgstr "사용 언어"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__module
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Module"
|
||||
msgstr "모듈"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,help:transifex.field_transifex_code_translation__module
|
||||
msgid "Module this term belongs to"
|
||||
msgstr "이 용어가 속한 모듈"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Not Translated"
|
||||
msgstr "번역되지 않음"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,help:transifex.field_transifex_code_translation__transifex_url
|
||||
msgid "Propose a modification in the official version of Odoo"
|
||||
msgstr "Odoo 공식 버전 수정 제안"
|
||||
|
||||
#. module: transifex
|
||||
#. odoo-javascript
|
||||
#: code:addons/transifex/static/src/views/reload_code_translations_views.xml:0
|
||||
#, python-format
|
||||
msgid "Reload"
|
||||
msgstr "새로 고침"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Search Code Translations"
|
||||
msgstr "코드 번역 검색"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
msgid "Transifex"
|
||||
msgstr "Transifex"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
msgid "Transifex Code Translation"
|
||||
msgstr "Transifex 코드 번역"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.actions.server,name:transifex.action_code_translations
|
||||
#: model:ir.ui.menu,name:transifex.menu_transifex_code_translations
|
||||
msgid "Transifex Code Translations"
|
||||
msgstr "Transifex 코드 번역"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model,name:transifex.model_transifex_translation
|
||||
msgid "Transifex Translation"
|
||||
msgstr "Transifex 번역"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__transifex_url
|
||||
msgid "Transifex URL"
|
||||
msgstr "Transifex URL"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.actions.server,name:transifex.transifex_code_translation_reload_ir_actions_server
|
||||
msgid "Transifex: Reload code translations"
|
||||
msgstr "Transifex: 코드 번역 다시 불러오기"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__value
|
||||
msgid "Translation Value"
|
||||
msgstr "번역된 값"
|
135
i18n/lt.po
Normal file
135
i18n/lt.po
Normal file
@ -0,0 +1,135 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * transifex
|
||||
#
|
||||
# Translators:
|
||||
# digitouch UAB <digitouchagencyeur@gmail.com>, 2023
|
||||
# Linas Versada <linaskrisiukenas@gmail.com>, 2023
|
||||
# Silvija Butko <silvija.butko@gmail.com>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2023\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: transifex
|
||||
#: model:ir.model,name:transifex.model_base
|
||||
msgid "Base"
|
||||
msgstr "Bazė"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__source
|
||||
msgid "Code"
|
||||
msgstr "Kodas"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model,name:transifex.model_transifex_code_translation
|
||||
msgid "Code Translation"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#. odoo-javascript
|
||||
#: code:addons/transifex/static/src/views/fields/translation_dialog.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
#, python-format
|
||||
msgid "Contribute"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Rodomas pavadinimas"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Group By"
|
||||
msgstr "Grupuoti pagal"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__lang
|
||||
msgid "Language"
|
||||
msgstr "Kalba"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__module
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Module"
|
||||
msgstr "Modulis"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,help:transifex.field_transifex_code_translation__module
|
||||
msgid "Module this term belongs to"
|
||||
msgstr "Modulis, kuriam priklauso šis terminas"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Not Translated"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,help:transifex.field_transifex_code_translation__transifex_url
|
||||
msgid "Propose a modification in the official version of Odoo"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#. odoo-javascript
|
||||
#: code:addons/transifex/static/src/views/reload_code_translations_views.xml:0
|
||||
#, python-format
|
||||
msgid "Reload"
|
||||
msgstr "Perkrauti"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Search Code Translations"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
msgid "Transifex"
|
||||
msgstr "Transifex"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
msgid "Transifex Code Translation"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.actions.server,name:transifex.action_code_translations
|
||||
#: model:ir.ui.menu,name:transifex.menu_transifex_code_translations
|
||||
msgid "Transifex Code Translations"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model,name:transifex.model_transifex_translation
|
||||
msgid "Transifex Translation"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__transifex_url
|
||||
msgid "Transifex URL"
|
||||
msgstr "Transifex URL"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.actions.server,name:transifex.transifex_code_translation_reload_ir_actions_server
|
||||
msgid "Transifex: Reload code translations"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__value
|
||||
msgid "Translation Value"
|
||||
msgstr "Vertimas"
|
134
i18n/lv.po
Normal file
134
i18n/lv.po
Normal file
@ -0,0 +1,134 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * transifex
|
||||
#
|
||||
# Translators:
|
||||
# ievaputnina <ievai.putninai@gmail.com>, 2023
|
||||
# Arnis Putniņš <arnis@allegro.lv>, 2023
|
||||
# Will Sensors, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Will Sensors, 2024\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: transifex
|
||||
#: model:ir.model,name:transifex.model_base
|
||||
msgid "Base"
|
||||
msgstr "Bāze"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__source
|
||||
msgid "Code"
|
||||
msgstr "Kods"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model,name:transifex.model_transifex_code_translation
|
||||
msgid "Code Translation"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#. odoo-javascript
|
||||
#: code:addons/transifex/static/src/views/fields/translation_dialog.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
#, python-format
|
||||
msgid "Contribute"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Attēlotais nosaukums"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Group By"
|
||||
msgstr "Grupēt pēc"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__lang
|
||||
msgid "Language"
|
||||
msgstr "Valoda"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__module
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Module"
|
||||
msgstr "Modulis"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,help:transifex.field_transifex_code_translation__module
|
||||
msgid "Module this term belongs to"
|
||||
msgstr "Module this term belongs to"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Not Translated"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,help:transifex.field_transifex_code_translation__transifex_url
|
||||
msgid "Propose a modification in the official version of Odoo"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#. odoo-javascript
|
||||
#: code:addons/transifex/static/src/views/reload_code_translations_views.xml:0
|
||||
#, python-format
|
||||
msgid "Reload"
|
||||
msgstr "Pārlādēt"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Search Code Translations"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
msgid "Transifex"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
msgid "Transifex Code Translation"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.actions.server,name:transifex.action_code_translations
|
||||
#: model:ir.ui.menu,name:transifex.menu_transifex_code_translations
|
||||
msgid "Transifex Code Translations"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model,name:transifex.model_transifex_translation
|
||||
msgid "Transifex Translation"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__transifex_url
|
||||
msgid "Transifex URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.actions.server,name:transifex.transifex_code_translation_reload_ir_actions_server
|
||||
msgid "Transifex: Reload code translations"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__value
|
||||
msgid "Translation Value"
|
||||
msgstr "Translation Value"
|
132
i18n/nl.po
Normal file
132
i18n/nl.po
Normal file
@ -0,0 +1,132 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * transifex
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Dutch (https://app.transifex.com/odoo/teams/41243/nl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: nl\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model,name:transifex.model_base
|
||||
msgid "Base"
|
||||
msgstr "Basis"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__source
|
||||
msgid "Code"
|
||||
msgstr "Code"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model,name:transifex.model_transifex_code_translation
|
||||
msgid "Code Translation"
|
||||
msgstr "Vertaling code"
|
||||
|
||||
#. module: transifex
|
||||
#. odoo-javascript
|
||||
#: code:addons/transifex/static/src/views/fields/translation_dialog.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
#, python-format
|
||||
msgid "Contribute"
|
||||
msgstr "Bijdrage leveren"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Schermnaam"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Group By"
|
||||
msgstr "Groeperen op"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__lang
|
||||
msgid "Language"
|
||||
msgstr "Taal"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__module
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Module"
|
||||
msgstr "Module"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,help:transifex.field_transifex_code_translation__module
|
||||
msgid "Module this term belongs to"
|
||||
msgstr "Module waaraan deze term toebehoort"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Not Translated"
|
||||
msgstr "Niet vertaald"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,help:transifex.field_transifex_code_translation__transifex_url
|
||||
msgid "Propose a modification in the official version of Odoo"
|
||||
msgstr "Stel een wijziging voor in de officiële versie van Odoo"
|
||||
|
||||
#. module: transifex
|
||||
#. odoo-javascript
|
||||
#: code:addons/transifex/static/src/views/reload_code_translations_views.xml:0
|
||||
#, python-format
|
||||
msgid "Reload"
|
||||
msgstr "Herladen"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Search Code Translations"
|
||||
msgstr "Vertalingen code zoeken"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
msgid "Transifex"
|
||||
msgstr "Transifex"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
msgid "Transifex Code Translation"
|
||||
msgstr "Transifex vertaling code"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.actions.server,name:transifex.action_code_translations
|
||||
#: model:ir.ui.menu,name:transifex.menu_transifex_code_translations
|
||||
msgid "Transifex Code Translations"
|
||||
msgstr "Transifex vertalingen code"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model,name:transifex.model_transifex_translation
|
||||
msgid "Transifex Translation"
|
||||
msgstr "Transifex vertaling"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__transifex_url
|
||||
msgid "Transifex URL"
|
||||
msgstr "Transifex URL"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.actions.server,name:transifex.transifex_code_translation_reload_ir_actions_server
|
||||
msgid "Transifex: Reload code translations"
|
||||
msgstr "Transifex: herlaad vertalingen code"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__value
|
||||
msgid "Translation Value"
|
||||
msgstr "Vertalingswaarde"
|
132
i18n/pl.po
Normal file
132
i18n/pl.po
Normal file
@ -0,0 +1,132 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * transifex
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 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: transifex
|
||||
#: model:ir.model,name:transifex.model_base
|
||||
msgid "Base"
|
||||
msgstr "Baza"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__source
|
||||
msgid "Code"
|
||||
msgstr "Kod"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model,name:transifex.model_transifex_code_translation
|
||||
msgid "Code Translation"
|
||||
msgstr "Tłumaczenie kodu"
|
||||
|
||||
#. module: transifex
|
||||
#. odoo-javascript
|
||||
#: code:addons/transifex/static/src/views/fields/translation_dialog.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
#, python-format
|
||||
msgid "Contribute"
|
||||
msgstr "Wkład"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nazwa wyświetlana"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Group By"
|
||||
msgstr "Grupuj wg"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__lang
|
||||
msgid "Language"
|
||||
msgstr "Język"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__module
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Module"
|
||||
msgstr "Moduł"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,help:transifex.field_transifex_code_translation__module
|
||||
msgid "Module this term belongs to"
|
||||
msgstr "Moduł, do którego należy ta fraza"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Not Translated"
|
||||
msgstr "Nie przetłumaczone"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,help:transifex.field_transifex_code_translation__transifex_url
|
||||
msgid "Propose a modification in the official version of Odoo"
|
||||
msgstr "Zaproponuj modyfikację w oficjalnej wersji Odoo"
|
||||
|
||||
#. module: transifex
|
||||
#. odoo-javascript
|
||||
#: code:addons/transifex/static/src/views/reload_code_translations_views.xml:0
|
||||
#, python-format
|
||||
msgid "Reload"
|
||||
msgstr "Odśwież"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Search Code Translations"
|
||||
msgstr "Wyszukaj tłumaczenia kodu"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
msgid "Transifex"
|
||||
msgstr "Transifex"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
msgid "Transifex Code Translation"
|
||||
msgstr "Tłumaczenie kodu Transifex"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.actions.server,name:transifex.action_code_translations
|
||||
#: model:ir.ui.menu,name:transifex.menu_transifex_code_translations
|
||||
msgid "Transifex Code Translations"
|
||||
msgstr "Tłumaczenia kodu Transifex"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model,name:transifex.model_transifex_translation
|
||||
msgid "Transifex Translation"
|
||||
msgstr "Tłumaczenie Transifex"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__transifex_url
|
||||
msgid "Transifex URL"
|
||||
msgstr "Strona Transifex"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.actions.server,name:transifex.transifex_code_translation_reload_ir_actions_server
|
||||
msgid "Transifex: Reload code translations"
|
||||
msgstr "Transifex: przeładuj tłumaczenia kodu"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__value
|
||||
msgid "Translation Value"
|
||||
msgstr "Wartość tłumaczenia"
|
132
i18n/pt.po
Normal file
132
i18n/pt.po
Normal file
@ -0,0 +1,132 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * transifex
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\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: transifex
|
||||
#: model:ir.model,name:transifex.model_base
|
||||
msgid "Base"
|
||||
msgstr "Base"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__source
|
||||
msgid "Code"
|
||||
msgstr "Código"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model,name:transifex.model_transifex_code_translation
|
||||
msgid "Code Translation"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#. odoo-javascript
|
||||
#: code:addons/transifex/static/src/views/fields/translation_dialog.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
#, python-format
|
||||
msgid "Contribute"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nome"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Group By"
|
||||
msgstr "Agrupar por"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__lang
|
||||
msgid "Language"
|
||||
msgstr "Idioma"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__module
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Module"
|
||||
msgstr "Módulo"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,help:transifex.field_transifex_code_translation__module
|
||||
msgid "Module this term belongs to"
|
||||
msgstr "Módulo ao qual este termo pertence"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Not Translated"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,help:transifex.field_transifex_code_translation__transifex_url
|
||||
msgid "Propose a modification in the official version of Odoo"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#. odoo-javascript
|
||||
#: code:addons/transifex/static/src/views/reload_code_translations_views.xml:0
|
||||
#, python-format
|
||||
msgid "Reload"
|
||||
msgstr "Recarregar"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Search Code Translations"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
msgid "Transifex"
|
||||
msgstr "Transifex"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
msgid "Transifex Code Translation"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.actions.server,name:transifex.action_code_translations
|
||||
#: model:ir.ui.menu,name:transifex.menu_transifex_code_translations
|
||||
msgid "Transifex Code Translations"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model,name:transifex.model_transifex_translation
|
||||
msgid "Transifex Translation"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__transifex_url
|
||||
msgid "Transifex URL"
|
||||
msgstr "URL da Transifex"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.actions.server,name:transifex.transifex_code_translation_reload_ir_actions_server
|
||||
msgid "Transifex: Reload code translations"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__value
|
||||
msgid "Translation Value"
|
||||
msgstr "Tradução"
|
132
i18n/pt_BR.po
Normal file
132
i18n/pt_BR.po
Normal file
@ -0,0 +1,132 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * transifex
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 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: transifex
|
||||
#: model:ir.model,name:transifex.model_base
|
||||
msgid "Base"
|
||||
msgstr "Base"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__source
|
||||
msgid "Code"
|
||||
msgstr "Código"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model,name:transifex.model_transifex_code_translation
|
||||
msgid "Code Translation"
|
||||
msgstr "Tradução do código"
|
||||
|
||||
#. module: transifex
|
||||
#. odoo-javascript
|
||||
#: code:addons/transifex/static/src/views/fields/translation_dialog.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
#, python-format
|
||||
msgid "Contribute"
|
||||
msgstr "Contribuir"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nome exibido"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Group By"
|
||||
msgstr "Agrupar por"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__lang
|
||||
msgid "Language"
|
||||
msgstr "Idioma"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__module
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Module"
|
||||
msgstr "Módulo"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,help:transifex.field_transifex_code_translation__module
|
||||
msgid "Module this term belongs to"
|
||||
msgstr "Este termo pertence a"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Not Translated"
|
||||
msgstr "Não traduzido"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,help:transifex.field_transifex_code_translation__transifex_url
|
||||
msgid "Propose a modification in the official version of Odoo"
|
||||
msgstr "Propor modificação na versão oficial do Odoo"
|
||||
|
||||
#. module: transifex
|
||||
#. odoo-javascript
|
||||
#: code:addons/transifex/static/src/views/reload_code_translations_views.xml:0
|
||||
#, python-format
|
||||
msgid "Reload"
|
||||
msgstr "Recarregar"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Search Code Translations"
|
||||
msgstr "Pesquisar traduções do código"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
msgid "Transifex"
|
||||
msgstr "Transifex"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
msgid "Transifex Code Translation"
|
||||
msgstr "Tradução de código no Transifex"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.actions.server,name:transifex.action_code_translations
|
||||
#: model:ir.ui.menu,name:transifex.menu_transifex_code_translations
|
||||
msgid "Transifex Code Translations"
|
||||
msgstr "Traduções de código no Transifex"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model,name:transifex.model_transifex_translation
|
||||
msgid "Transifex Translation"
|
||||
msgstr "Tradução no Transifex"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__transifex_url
|
||||
msgid "Transifex URL"
|
||||
msgstr "URL do Transifex"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.actions.server,name:transifex.transifex_code_translation_reload_ir_actions_server
|
||||
msgid "Transifex: Reload code translations"
|
||||
msgstr "Transifex: Recarregar traduções do código"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__value
|
||||
msgid "Translation Value"
|
||||
msgstr "Texto traduzido"
|
135
i18n/ru.po
Normal file
135
i18n/ru.po
Normal file
@ -0,0 +1,135 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * transifex
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
# Vasiliy Korobatov <korobatov@gmail.com>, 2023
|
||||
# ILMIR <karamov@it-projects.info>, 2023
|
||||
# Wil Odoo, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+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: transifex
|
||||
#: model:ir.model,name:transifex.model_base
|
||||
msgid "Base"
|
||||
msgstr "База"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__source
|
||||
msgid "Code"
|
||||
msgstr "Код"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model,name:transifex.model_transifex_code_translation
|
||||
msgid "Code Translation"
|
||||
msgstr "Перевод кода"
|
||||
|
||||
#. module: transifex
|
||||
#. odoo-javascript
|
||||
#: code:addons/transifex/static/src/views/fields/translation_dialog.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
#, python-format
|
||||
msgid "Contribute"
|
||||
msgstr "Сделать вклад"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Отображаемое имя"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Group By"
|
||||
msgstr "Группировать по"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__lang
|
||||
msgid "Language"
|
||||
msgstr "Язык"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__module
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Module"
|
||||
msgstr "Модуль"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,help:transifex.field_transifex_code_translation__module
|
||||
msgid "Module this term belongs to"
|
||||
msgstr "Модуль, к которому относится этот термин"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Not Translated"
|
||||
msgstr "Не переведено"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,help:transifex.field_transifex_code_translation__transifex_url
|
||||
msgid "Propose a modification in the official version of Odoo"
|
||||
msgstr "Предложите изменение в официальной версии Odoo"
|
||||
|
||||
#. module: transifex
|
||||
#. odoo-javascript
|
||||
#: code:addons/transifex/static/src/views/reload_code_translations_views.xml:0
|
||||
#, python-format
|
||||
msgid "Reload"
|
||||
msgstr "Перезагрузить"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Search Code Translations"
|
||||
msgstr "Переводы поисковых кодов"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
msgid "Transifex"
|
||||
msgstr "Transifex"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
msgid "Transifex Code Translation"
|
||||
msgstr "Перевод кодов Transifex"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.actions.server,name:transifex.action_code_translations
|
||||
#: model:ir.ui.menu,name:transifex.menu_transifex_code_translations
|
||||
msgid "Transifex Code Translations"
|
||||
msgstr "Переводы кодов Transifex"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model,name:transifex.model_transifex_translation
|
||||
msgid "Transifex Translation"
|
||||
msgstr "Перевод Transifex"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__transifex_url
|
||||
msgid "Transifex URL"
|
||||
msgstr "URL-адрес Transifex"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.actions.server,name:transifex.transifex_code_translation_reload_ir_actions_server
|
||||
msgid "Transifex: Reload code translations"
|
||||
msgstr "Трансифекс: Перезагрузка переводов кодов"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__value
|
||||
msgid "Translation Value"
|
||||
msgstr "Значение перевода"
|
132
i18n/sk.po
Normal file
132
i18n/sk.po
Normal file
@ -0,0 +1,132 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * transifex
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\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: transifex
|
||||
#: model:ir.model,name:transifex.model_base
|
||||
msgid "Base"
|
||||
msgstr "Základ"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__source
|
||||
msgid "Code"
|
||||
msgstr "Kód"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model,name:transifex.model_transifex_code_translation
|
||||
msgid "Code Translation"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#. odoo-javascript
|
||||
#: code:addons/transifex/static/src/views/fields/translation_dialog.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
#, python-format
|
||||
msgid "Contribute"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Zobrazovaný názov"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Group By"
|
||||
msgstr "Zoskupiť podľa"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__lang
|
||||
msgid "Language"
|
||||
msgstr "Jazyk"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__module
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Module"
|
||||
msgstr "Modul"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,help:transifex.field_transifex_code_translation__module
|
||||
msgid "Module this term belongs to"
|
||||
msgstr "Modul tento pojem patrí"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Not Translated"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,help:transifex.field_transifex_code_translation__transifex_url
|
||||
msgid "Propose a modification in the official version of Odoo"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#. odoo-javascript
|
||||
#: code:addons/transifex/static/src/views/reload_code_translations_views.xml:0
|
||||
#, python-format
|
||||
msgid "Reload"
|
||||
msgstr "Opäť načítať"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Search Code Translations"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
msgid "Transifex"
|
||||
msgstr "Transifex"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
msgid "Transifex Code Translation"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.actions.server,name:transifex.action_code_translations
|
||||
#: model:ir.ui.menu,name:transifex.menu_transifex_code_translations
|
||||
msgid "Transifex Code Translations"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model,name:transifex.model_transifex_translation
|
||||
msgid "Transifex Translation"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__transifex_url
|
||||
msgid "Transifex URL"
|
||||
msgstr "Transifex URL"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.actions.server,name:transifex.transifex_code_translation_reload_ir_actions_server
|
||||
msgid "Transifex: Reload code translations"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__value
|
||||
msgid "Translation Value"
|
||||
msgstr "Hodnota prekladu"
|
136
i18n/sl.po
Normal file
136
i18n/sl.po
Normal file
@ -0,0 +1,136 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * transifex
|
||||
#
|
||||
# Translators:
|
||||
# Matjaz Mozetic <m.mozetic@matmoz.si>, 2023
|
||||
# Tadej Lupšina <tadej@hbs.si>, 2023
|
||||
# matjaz k <matjaz@mentis.si>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Katja Deržič, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Katja Deržič, 2024\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: transifex
|
||||
#: model:ir.model,name:transifex.model_base
|
||||
msgid "Base"
|
||||
msgstr "Osnova"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__source
|
||||
msgid "Code"
|
||||
msgstr "Oznaka"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model,name:transifex.model_transifex_code_translation
|
||||
msgid "Code Translation"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#. odoo-javascript
|
||||
#: code:addons/transifex/static/src/views/fields/translation_dialog.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
#, python-format
|
||||
msgid "Contribute"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Prikazani naziv"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Group By"
|
||||
msgstr "Združi po"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__lang
|
||||
msgid "Language"
|
||||
msgstr "Jezik"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__module
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Module"
|
||||
msgstr "Modul"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,help:transifex.field_transifex_code_translation__module
|
||||
msgid "Module this term belongs to"
|
||||
msgstr "Modul, ki mu pripada ta izraz"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Not Translated"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,help:transifex.field_transifex_code_translation__transifex_url
|
||||
msgid "Propose a modification in the official version of Odoo"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#. odoo-javascript
|
||||
#: code:addons/transifex/static/src/views/reload_code_translations_views.xml:0
|
||||
#, python-format
|
||||
msgid "Reload"
|
||||
msgstr "Ponovno naloži"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Search Code Translations"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
msgid "Transifex"
|
||||
msgstr "Transifex"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
msgid "Transifex Code Translation"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.actions.server,name:transifex.action_code_translations
|
||||
#: model:ir.ui.menu,name:transifex.menu_transifex_code_translations
|
||||
msgid "Transifex Code Translations"
|
||||
msgstr "Prevodi kode Transifex"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model,name:transifex.model_transifex_translation
|
||||
msgid "Transifex Translation"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__transifex_url
|
||||
msgid "Transifex URL"
|
||||
msgstr "Transifex URL"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.actions.server,name:transifex.transifex_code_translation_reload_ir_actions_server
|
||||
msgid "Transifex: Reload code translations"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__value
|
||||
msgid "Translation Value"
|
||||
msgstr "Vrednost prevoda"
|
135
i18n/sr.po
Normal file
135
i18n/sr.po
Normal file
@ -0,0 +1,135 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * transifex
|
||||
#
|
||||
# Translators:
|
||||
# Dragan Vukosavljevic <dragan.vukosavljevic@gmail.com>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Milan Bojovic <mbojovic@outlook.com>, 2023
|
||||
# コフスタジオ, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+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: transifex
|
||||
#: model:ir.model,name:transifex.model_base
|
||||
msgid "Base"
|
||||
msgstr "Osnova"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__source
|
||||
msgid "Code"
|
||||
msgstr "Kod"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model,name:transifex.model_transifex_code_translation
|
||||
msgid "Code Translation"
|
||||
msgstr "Code Translation"
|
||||
|
||||
#. module: transifex
|
||||
#. odoo-javascript
|
||||
#: code:addons/transifex/static/src/views/fields/translation_dialog.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
#, python-format
|
||||
msgid "Contribute"
|
||||
msgstr "Contribute"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Naziv za prikaz"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Group By"
|
||||
msgstr "Grupiši po"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__lang
|
||||
msgid "Language"
|
||||
msgstr "Jezik"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__module
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Module"
|
||||
msgstr "Modul"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,help:transifex.field_transifex_code_translation__module
|
||||
msgid "Module this term belongs to"
|
||||
msgstr "Module this term belongs to"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Not Translated"
|
||||
msgstr "Not Translated"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,help:transifex.field_transifex_code_translation__transifex_url
|
||||
msgid "Propose a modification in the official version of Odoo"
|
||||
msgstr "Propose a modification in the official version of Odoo"
|
||||
|
||||
#. module: transifex
|
||||
#. odoo-javascript
|
||||
#: code:addons/transifex/static/src/views/reload_code_translations_views.xml:0
|
||||
#, python-format
|
||||
msgid "Reload"
|
||||
msgstr "Ponovo učitajte"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Search Code Translations"
|
||||
msgstr "Search Code Translations"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
msgid "Transifex"
|
||||
msgstr "Transifex"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
msgid "Transifex Code Translation"
|
||||
msgstr "Transifex Code Translation"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.actions.server,name:transifex.action_code_translations
|
||||
#: model:ir.ui.menu,name:transifex.menu_transifex_code_translations
|
||||
msgid "Transifex Code Translations"
|
||||
msgstr "Transifex Code Translations"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model,name:transifex.model_transifex_translation
|
||||
msgid "Transifex Translation"
|
||||
msgstr "Transifex Translation"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__transifex_url
|
||||
msgid "Transifex URL"
|
||||
msgstr "Transifex URL"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.actions.server,name:transifex.transifex_code_translation_reload_ir_actions_server
|
||||
msgid "Transifex: Reload code translations"
|
||||
msgstr "Transifex: Reload code translations"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__value
|
||||
msgid "Translation Value"
|
||||
msgstr "Translation Value"
|
137
i18n/sv.po
Normal file
137
i18n/sv.po
Normal file
@ -0,0 +1,137 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * transifex
|
||||
#
|
||||
# Translators:
|
||||
# Mikael Åkerberg <mikael.akerberg@mariaakerberg.com>, 2023
|
||||
# Anders Wallenquist <anders.wallenquist@vertel.se>, 2023
|
||||
# Chrille Hedberg <hedberg.chrille@gmail.com>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Kim Asplund <kim.asplund@gmail.com>, 2023
|
||||
# Kristoffer Grundström <lovaren@gmail.com>, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Kristoffer Grundström <lovaren@gmail.com>, 2024\n"
|
||||
"Language-Team: Swedish (https://app.transifex.com/odoo/teams/41243/sv/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sv\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model,name:transifex.model_base
|
||||
msgid "Base"
|
||||
msgstr "Bas"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__source
|
||||
msgid "Code"
|
||||
msgstr "Kod"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model,name:transifex.model_transifex_code_translation
|
||||
msgid "Code Translation"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#. odoo-javascript
|
||||
#: code:addons/transifex/static/src/views/fields/translation_dialog.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
#, python-format
|
||||
msgid "Contribute"
|
||||
msgstr "Bidra"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Visningsnamn"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Group By"
|
||||
msgstr "Gruppera efter"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__lang
|
||||
msgid "Language"
|
||||
msgstr "Språk"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__module
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Module"
|
||||
msgstr "Modul"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,help:transifex.field_transifex_code_translation__module
|
||||
msgid "Module this term belongs to"
|
||||
msgstr "Modulen denna term hör till"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Not Translated"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,help:transifex.field_transifex_code_translation__transifex_url
|
||||
msgid "Propose a modification in the official version of Odoo"
|
||||
msgstr "Föreslå en ändring i den officiella versionen av Odoo"
|
||||
|
||||
#. module: transifex
|
||||
#. odoo-javascript
|
||||
#: code:addons/transifex/static/src/views/reload_code_translations_views.xml:0
|
||||
#, python-format
|
||||
msgid "Reload"
|
||||
msgstr "Ladda om"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Search Code Translations"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
msgid "Transifex"
|
||||
msgstr "Transifex"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
msgid "Transifex Code Translation"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.actions.server,name:transifex.action_code_translations
|
||||
#: model:ir.ui.menu,name:transifex.menu_transifex_code_translations
|
||||
msgid "Transifex Code Translations"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model,name:transifex.model_transifex_translation
|
||||
msgid "Transifex Translation"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__transifex_url
|
||||
msgid "Transifex URL"
|
||||
msgstr "Transifex URL"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.actions.server,name:transifex.transifex_code_translation_reload_ir_actions_server
|
||||
msgid "Transifex: Reload code translations"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__value
|
||||
msgid "Translation Value"
|
||||
msgstr "Översättning"
|
133
i18n/th.po
Normal file
133
i18n/th.po
Normal file
@ -0,0 +1,133 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * transifex
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Rasareeyar Lappiam, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Rasareeyar Lappiam, 2024\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: transifex
|
||||
#: model:ir.model,name:transifex.model_base
|
||||
msgid "Base"
|
||||
msgstr "ฐาน"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__source
|
||||
msgid "Code"
|
||||
msgstr "โค้ด"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model,name:transifex.model_transifex_code_translation
|
||||
msgid "Code Translation"
|
||||
msgstr "การแปลรหัส"
|
||||
|
||||
#. module: transifex
|
||||
#. odoo-javascript
|
||||
#: code:addons/transifex/static/src/views/fields/translation_dialog.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
#, python-format
|
||||
msgid "Contribute"
|
||||
msgstr "มีส่วนช่วย"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "แสดงชื่อ"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Group By"
|
||||
msgstr "กลุ่มโดย"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__id
|
||||
msgid "ID"
|
||||
msgstr "ไอดี"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__lang
|
||||
msgid "Language"
|
||||
msgstr "ภาษา"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__module
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Module"
|
||||
msgstr "โมดูล"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,help:transifex.field_transifex_code_translation__module
|
||||
msgid "Module this term belongs to"
|
||||
msgstr "โมดูลคำนี้เป็นของ"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Not Translated"
|
||||
msgstr "ไม่ได้แปล"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,help:transifex.field_transifex_code_translation__transifex_url
|
||||
msgid "Propose a modification in the official version of Odoo"
|
||||
msgstr "เสนอการแก้ไขใน Odoo เวอร์ชัน Official"
|
||||
|
||||
#. module: transifex
|
||||
#. odoo-javascript
|
||||
#: code:addons/transifex/static/src/views/reload_code_translations_views.xml:0
|
||||
#, python-format
|
||||
msgid "Reload"
|
||||
msgstr "โหลดใหม่"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Search Code Translations"
|
||||
msgstr "ค้นหาการแปลรหัส"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
msgid "Transifex"
|
||||
msgstr "Transifex"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
msgid "Transifex Code Translation"
|
||||
msgstr "การแปลรหัส Transifex"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.actions.server,name:transifex.action_code_translations
|
||||
#: model:ir.ui.menu,name:transifex.menu_transifex_code_translations
|
||||
msgid "Transifex Code Translations"
|
||||
msgstr "การแปลรหัส Transifex"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model,name:transifex.model_transifex_translation
|
||||
msgid "Transifex Translation"
|
||||
msgstr "การแปล Transifex"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__transifex_url
|
||||
msgid "Transifex URL"
|
||||
msgstr "Transifex URL"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.actions.server,name:transifex.transifex_code_translation_reload_ir_actions_server
|
||||
msgid "Transifex: Reload code translations"
|
||||
msgstr "Transifex: โหลดการแปลรหัสอีกครั้ง"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__value
|
||||
msgid "Translation Value"
|
||||
msgstr "ค่าการแปล"
|
138
i18n/tr.po
Normal file
138
i18n/tr.po
Normal file
@ -0,0 +1,138 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * transifex
|
||||
#
|
||||
# Translators:
|
||||
# İmat Yahya Çataklı <yahyacatakli@gmail.com>, 2023
|
||||
# Ediz Duman <neps1192@gmail.com>, 2023
|
||||
# Levent Karakaş <levent@mektup.at>, 2023
|
||||
# Murat Kaplan <muratk@projetgrup.com>, 2023
|
||||
# abc Def <hdogan1974@gmail.com>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Ertuğrul Güreş <ertugrulg@projetgrup.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Ertuğrul Güreş <ertugrulg@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: transifex
|
||||
#: model:ir.model,name:transifex.model_base
|
||||
msgid "Base"
|
||||
msgstr "Temel"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__source
|
||||
msgid "Code"
|
||||
msgstr "Kod"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model,name:transifex.model_transifex_code_translation
|
||||
msgid "Code Translation"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#. odoo-javascript
|
||||
#: code:addons/transifex/static/src/views/fields/translation_dialog.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
#, python-format
|
||||
msgid "Contribute"
|
||||
msgstr "Katkıda bulun"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Görünüm Adı"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Group By"
|
||||
msgstr "Grupla"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__lang
|
||||
msgid "Language"
|
||||
msgstr "Dil"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__module
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Module"
|
||||
msgstr "Modül"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,help:transifex.field_transifex_code_translation__module
|
||||
msgid "Module this term belongs to"
|
||||
msgstr "Bu terimin ait olduğu modül"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Not Translated"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,help:transifex.field_transifex_code_translation__transifex_url
|
||||
msgid "Propose a modification in the official version of Odoo"
|
||||
msgstr "Odoo'nun resmi sürümünde bir değişiklik önerin"
|
||||
|
||||
#. module: transifex
|
||||
#. odoo-javascript
|
||||
#: code:addons/transifex/static/src/views/reload_code_translations_views.xml:0
|
||||
#, python-format
|
||||
msgid "Reload"
|
||||
msgstr "Yeninden Yükle"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Search Code Translations"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
msgid "Transifex"
|
||||
msgstr "Transifex"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
msgid "Transifex Code Translation"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.actions.server,name:transifex.action_code_translations
|
||||
#: model:ir.ui.menu,name:transifex.menu_transifex_code_translations
|
||||
msgid "Transifex Code Translations"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model,name:transifex.model_transifex_translation
|
||||
msgid "Transifex Translation"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__transifex_url
|
||||
msgid "Transifex URL"
|
||||
msgstr "Transifex URL"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.actions.server,name:transifex.transifex_code_translation_reload_ir_actions_server
|
||||
msgid "Transifex: Reload code translations"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__value
|
||||
msgid "Translation Value"
|
||||
msgstr "Çeviri Değeri"
|
128
i18n/transifex.pot
Normal file
128
i18n/transifex.pot
Normal file
@ -0,0 +1,128 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * transifex
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 21:56+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: transifex
|
||||
#: model:ir.model,name:transifex.model_base
|
||||
msgid "Base"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__source
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model,name:transifex.model_transifex_code_translation
|
||||
msgid "Code Translation"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#. odoo-javascript
|
||||
#: code:addons/transifex/static/src/views/fields/translation_dialog.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
#, python-format
|
||||
msgid "Contribute"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Group By"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__lang
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__module
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Module"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,help:transifex.field_transifex_code_translation__module
|
||||
msgid "Module this term belongs to"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Not Translated"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,help:transifex.field_transifex_code_translation__transifex_url
|
||||
msgid "Propose a modification in the official version of Odoo"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#. odoo-javascript
|
||||
#: code:addons/transifex/static/src/views/reload_code_translations_views.xml:0
|
||||
#, python-format
|
||||
msgid "Reload"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Search Code Translations"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
msgid "Transifex"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
msgid "Transifex Code Translation"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.actions.server,name:transifex.action_code_translations
|
||||
#: model:ir.ui.menu,name:transifex.menu_transifex_code_translations
|
||||
msgid "Transifex Code Translations"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model,name:transifex.model_transifex_translation
|
||||
msgid "Transifex Translation"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__transifex_url
|
||||
msgid "Transifex URL"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.actions.server,name:transifex.transifex_code_translation_reload_ir_actions_server
|
||||
msgid "Transifex: Reload code translations"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__value
|
||||
msgid "Translation Value"
|
||||
msgstr ""
|
132
i18n/uk.po
Normal file
132
i18n/uk.po
Normal file
@ -0,0 +1,132 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * transifex
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Ukrainian (https://app.transifex.com/odoo/teams/41243/uk/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: uk\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model,name:transifex.model_base
|
||||
msgid "Base"
|
||||
msgstr "База"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__source
|
||||
msgid "Code"
|
||||
msgstr "Код"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model,name:transifex.model_transifex_code_translation
|
||||
msgid "Code Translation"
|
||||
msgstr "Переклад коду"
|
||||
|
||||
#. module: transifex
|
||||
#. odoo-javascript
|
||||
#: code:addons/transifex/static/src/views/fields/translation_dialog.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
#, python-format
|
||||
msgid "Contribute"
|
||||
msgstr "Співпрацювати"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Назва для відображення"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Group By"
|
||||
msgstr "Групувати за"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__lang
|
||||
msgid "Language"
|
||||
msgstr "Мова"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__module
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Module"
|
||||
msgstr "Модуль"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,help:transifex.field_transifex_code_translation__module
|
||||
msgid "Module this term belongs to"
|
||||
msgstr "Модуль, до якого відноситься цей термін"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Not Translated"
|
||||
msgstr "Не перекладається"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,help:transifex.field_transifex_code_translation__transifex_url
|
||||
msgid "Propose a modification in the official version of Odoo"
|
||||
msgstr "Запропонувати зміни в офіційній версії Odoo"
|
||||
|
||||
#. module: transifex
|
||||
#. odoo-javascript
|
||||
#: code:addons/transifex/static/src/views/reload_code_translations_views.xml:0
|
||||
#, python-format
|
||||
msgid "Reload"
|
||||
msgstr "Перезавантажити"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Search Code Translations"
|
||||
msgstr "Пошук перкладу коду"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
msgid "Transifex"
|
||||
msgstr "Transifex"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
msgid "Transifex Code Translation"
|
||||
msgstr "Переклад коду Transifex"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.actions.server,name:transifex.action_code_translations
|
||||
#: model:ir.ui.menu,name:transifex.menu_transifex_code_translations
|
||||
msgid "Transifex Code Translations"
|
||||
msgstr "Переклади коду Transifex"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model,name:transifex.model_transifex_translation
|
||||
msgid "Transifex Translation"
|
||||
msgstr "Переклад Transifex"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__transifex_url
|
||||
msgid "Transifex URL"
|
||||
msgstr "Transifex URL"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.actions.server,name:transifex.transifex_code_translation_reload_ir_actions_server
|
||||
msgid "Transifex: Reload code translations"
|
||||
msgstr "Transifex: Перезавантажити переклади коду"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__value
|
||||
msgid "Translation Value"
|
||||
msgstr "Значення перекладу"
|
132
i18n/vi.po
Normal file
132
i18n/vi.po
Normal file
@ -0,0 +1,132 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * transifex
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\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: transifex
|
||||
#: model:ir.model,name:transifex.model_base
|
||||
msgid "Base"
|
||||
msgstr "Cơ sở"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__source
|
||||
msgid "Code"
|
||||
msgstr "Mã"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model,name:transifex.model_transifex_code_translation
|
||||
msgid "Code Translation"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#. odoo-javascript
|
||||
#: code:addons/transifex/static/src/views/fields/translation_dialog.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
#, python-format
|
||||
msgid "Contribute"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Tên hiển thị"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Group By"
|
||||
msgstr "Nhóm theo"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__lang
|
||||
msgid "Language"
|
||||
msgstr "Ngôn ngữ"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__module
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Module"
|
||||
msgstr "Phân hệ"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,help:transifex.field_transifex_code_translation__module
|
||||
msgid "Module this term belongs to"
|
||||
msgstr "Phân hệ this term belongs to"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Not Translated"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,help:transifex.field_transifex_code_translation__transifex_url
|
||||
msgid "Propose a modification in the official version of Odoo"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#. odoo-javascript
|
||||
#: code:addons/transifex/static/src/views/reload_code_translations_views.xml:0
|
||||
#, python-format
|
||||
msgid "Reload"
|
||||
msgstr "Tải lại"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Search Code Translations"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
msgid "Transifex"
|
||||
msgstr "Transifex"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
msgid "Transifex Code Translation"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.actions.server,name:transifex.action_code_translations
|
||||
#: model:ir.ui.menu,name:transifex.menu_transifex_code_translations
|
||||
msgid "Transifex Code Translations"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model,name:transifex.model_transifex_translation
|
||||
msgid "Transifex Translation"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__transifex_url
|
||||
msgid "Transifex URL"
|
||||
msgstr "Transifex URL"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.actions.server,name:transifex.transifex_code_translation_reload_ir_actions_server
|
||||
msgid "Transifex: Reload code translations"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__value
|
||||
msgid "Translation Value"
|
||||
msgstr "Giá trị dịch"
|
132
i18n/zh_CN.po
Normal file
132
i18n/zh_CN.po
Normal file
@ -0,0 +1,132 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * transifex
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\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: transifex
|
||||
#: model:ir.model,name:transifex.model_base
|
||||
msgid "Base"
|
||||
msgstr "基数"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__source
|
||||
msgid "Code"
|
||||
msgstr "代码"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model,name:transifex.model_transifex_code_translation
|
||||
msgid "Code Translation"
|
||||
msgstr "代码翻译"
|
||||
|
||||
#. module: transifex
|
||||
#. odoo-javascript
|
||||
#: code:addons/transifex/static/src/views/fields/translation_dialog.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
#, python-format
|
||||
msgid "Contribute"
|
||||
msgstr "贡献"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "显示名称"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Group By"
|
||||
msgstr "分组方式"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__lang
|
||||
msgid "Language"
|
||||
msgstr "语言"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__module
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Module"
|
||||
msgstr "模块"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,help:transifex.field_transifex_code_translation__module
|
||||
msgid "Module this term belongs to"
|
||||
msgstr "模块这个项目属于"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Not Translated"
|
||||
msgstr "未翻译"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,help:transifex.field_transifex_code_translation__transifex_url
|
||||
msgid "Propose a modification in the official version of Odoo"
|
||||
msgstr "在Odoo的官方版本中提出修改建议"
|
||||
|
||||
#. module: transifex
|
||||
#. odoo-javascript
|
||||
#: code:addons/transifex/static/src/views/reload_code_translations_views.xml:0
|
||||
#, python-format
|
||||
msgid "Reload"
|
||||
msgstr "重新载入"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Search Code Translations"
|
||||
msgstr "搜索代码翻译"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
msgid "Transifex"
|
||||
msgstr "Transifex"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
msgid "Transifex Code Translation"
|
||||
msgstr "Transifex 代码翻译"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.actions.server,name:transifex.action_code_translations
|
||||
#: model:ir.ui.menu,name:transifex.menu_transifex_code_translations
|
||||
msgid "Transifex Code Translations"
|
||||
msgstr "Transifex 代码翻译"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model,name:transifex.model_transifex_translation
|
||||
msgid "Transifex Translation"
|
||||
msgstr "Transifex 翻译"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__transifex_url
|
||||
msgid "Transifex URL"
|
||||
msgstr "Transifex 网址"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.actions.server,name:transifex.transifex_code_translation_reload_ir_actions_server
|
||||
msgid "Transifex: Reload code translations"
|
||||
msgstr "Transifex: 重新加载代码翻译"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__value
|
||||
msgid "Translation Value"
|
||||
msgstr "翻译值"
|
132
i18n/zh_TW.po
Normal file
132
i18n/zh_TW.po
Normal file
@ -0,0 +1,132 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * transifex
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\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: transifex
|
||||
#: model:ir.model,name:transifex.model_base
|
||||
msgid "Base"
|
||||
msgstr "計稅基數"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__source
|
||||
msgid "Code"
|
||||
msgstr "程式碼"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model,name:transifex.model_transifex_code_translation
|
||||
msgid "Code Translation"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#. odoo-javascript
|
||||
#: code:addons/transifex/static/src/views/fields/translation_dialog.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
#, python-format
|
||||
msgid "Contribute"
|
||||
msgstr "提供貢獻"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "顯示名稱"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Group By"
|
||||
msgstr "分組依據"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__id
|
||||
msgid "ID"
|
||||
msgstr "識別號"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__lang
|
||||
msgid "Language"
|
||||
msgstr "語言"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__module
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Module"
|
||||
msgstr "模組"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,help:transifex.field_transifex_code_translation__module
|
||||
msgid "Module this term belongs to"
|
||||
msgstr "模組這個項目屬於"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Not Translated"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,help:transifex.field_transifex_code_translation__transifex_url
|
||||
msgid "Propose a modification in the official version of Odoo"
|
||||
msgstr "建議在Odoo正式版修改"
|
||||
|
||||
#. module: transifex
|
||||
#. odoo-javascript
|
||||
#: code:addons/transifex/static/src/views/reload_code_translations_views.xml:0
|
||||
#, python-format
|
||||
msgid "Reload"
|
||||
msgstr "重新載入"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_view_search
|
||||
msgid "Search Code Translations"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
msgid "Transifex"
|
||||
msgstr "Transifex"
|
||||
|
||||
#. module: transifex
|
||||
#: model_terms:ir.ui.view,arch_db:transifex.transifex_code_translation_tree_view
|
||||
msgid "Transifex Code Translation"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.actions.server,name:transifex.action_code_translations
|
||||
#: model:ir.ui.menu,name:transifex.menu_transifex_code_translations
|
||||
msgid "Transifex Code Translations"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model,name:transifex.model_transifex_translation
|
||||
msgid "Transifex Translation"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__transifex_url
|
||||
msgid "Transifex URL"
|
||||
msgstr "Transifex 網址"
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.actions.server,name:transifex.transifex_code_translation_reload_ir_actions_server
|
||||
msgid "Transifex: Reload code translations"
|
||||
msgstr ""
|
||||
|
||||
#. module: transifex
|
||||
#: model:ir.model.fields,field_description:transifex.field_transifex_code_translation__value
|
||||
msgid "Translation Value"
|
||||
msgstr "翻譯值"
|
6
models/__init__.py
Normal file
6
models/__init__.py
Normal file
@ -0,0 +1,6 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import models
|
||||
from . import transifex_code_translation
|
||||
from . import transifex_translation
|
31
models/models.py
Normal file
31
models/models.py
Normal file
@ -0,0 +1,31 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import models
|
||||
|
||||
class BaseModel(models.AbstractModel):
|
||||
_inherit = 'base'
|
||||
|
||||
def get_field_translations(self, field_name, langs=None):
|
||||
""" get model/model_term translations for records with transifex url
|
||||
:param str field_name: field name
|
||||
:param list langs: languages
|
||||
|
||||
:return: (translations, context) where
|
||||
translations: list of dicts like [{"lang": lang, "source": source_term, "value": value_term,
|
||||
"module": module, "transifexURL": transifex_url}]
|
||||
context: {"translation_type": "text"/"char", "translation_show_source": True/False}
|
||||
"""
|
||||
translations, context = super().get_field_translations(field_name, langs=langs)
|
||||
external_id = self.get_external_id().get(self.id)
|
||||
if not external_id:
|
||||
return translations, context
|
||||
|
||||
module = external_id.split('.')[0]
|
||||
if module not in self.pool._init_modules:
|
||||
return translations, context
|
||||
|
||||
for translation in translations:
|
||||
translation['module'] = module
|
||||
self.env['transifex.translation']._update_transifex_url(translations)
|
||||
return translations, context
|
71
models/transifex_code_translation.py
Normal file
71
models/transifex_code_translation.py
Normal file
@ -0,0 +1,71 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
import psycopg2
|
||||
|
||||
from odoo import api, models, fields
|
||||
from odoo.tools.translate import CodeTranslations
|
||||
|
||||
|
||||
class TransifexCodeTranslation(models.Model):
|
||||
_name = "transifex.code.translation"
|
||||
_description = "Code Translation"
|
||||
_log_access = False
|
||||
|
||||
source = fields.Text(string='Code')
|
||||
value = fields.Text(string='Translation Value')
|
||||
module = fields.Char(help="Module this term belongs to")
|
||||
lang = fields.Selection(selection='_get_languages', string='Language', validate=False)
|
||||
transifex_url = fields.Char("Transifex URL", compute='_compute_transifex_url',
|
||||
help="Propose a modification in the official version of Odoo")
|
||||
|
||||
def _get_languages(self):
|
||||
return self.env['res.lang'].get_installed()
|
||||
|
||||
def _compute_transifex_url(self):
|
||||
self.transifex_url = False
|
||||
self.env['transifex.translation']._update_transifex_url(self)
|
||||
|
||||
def _load_code_translations(self, module_names=None, langs=None):
|
||||
try:
|
||||
# the table lock promises translations for a (module, language) will only be created once
|
||||
self.env.cr.execute(f'LOCK TABLE {self._table} IN EXCLUSIVE MODE NOWAIT')
|
||||
|
||||
if module_names is None:
|
||||
module_names = self.env['ir.module.module'].search([('state', '=', 'installed')]).mapped('name')
|
||||
if langs is None:
|
||||
langs = [lang for lang, _ in self._get_languages() if lang != 'en_US']
|
||||
self.env.cr.execute(f'SELECT DISTINCT module, lang FROM {self._table}')
|
||||
loaded_code_translations = set(self.env.cr.fetchall())
|
||||
create_value_list = [
|
||||
{
|
||||
'source': src,
|
||||
'value': value,
|
||||
'module': module_name,
|
||||
'lang': lang,
|
||||
}
|
||||
for module_name in module_names
|
||||
for lang in langs
|
||||
if (module_name, lang) not in loaded_code_translations
|
||||
for src, value in CodeTranslations._get_code_translations(module_name, lang, lambda x: True).items()
|
||||
]
|
||||
self.sudo().create(create_value_list)
|
||||
|
||||
except psycopg2.errors.LockNotAvailable:
|
||||
return False
|
||||
|
||||
return True
|
||||
|
||||
def _open_code_translations(self):
|
||||
self._load_code_translations()
|
||||
return {
|
||||
'name': 'Code Translations',
|
||||
'type': 'ir.actions.act_window',
|
||||
'res_model': 'transifex.code.translation',
|
||||
'view_mode': 'list',
|
||||
}
|
||||
|
||||
@api.model
|
||||
def reload(self):
|
||||
self.env.cr.execute(f'DELETE FROM {self._table}')
|
||||
return self._load_code_translations()
|
85
models/transifex_translation.py
Normal file
85
models/transifex_translation.py
Normal file
@ -0,0 +1,85 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
import werkzeug.urls
|
||||
from configparser import ConfigParser
|
||||
from os import pardir
|
||||
from os.path import isfile, join as opj
|
||||
|
||||
import odoo
|
||||
from odoo import models, tools
|
||||
|
||||
|
||||
class TransifexTranslation(models.AbstractModel):
|
||||
_name = "transifex.translation"
|
||||
_description = "Transifex Translation"
|
||||
|
||||
@tools.ormcache()
|
||||
def _get_transifex_projects(self):
|
||||
""" get the transifex project name for each module
|
||||
|
||||
.tx/config files contains the project reference
|
||||
first section is [main], after '[odoo-16.sale]'
|
||||
|
||||
:rtype: dict
|
||||
:return: {module_name: tx_project_name}
|
||||
"""
|
||||
tx_config_file = ConfigParser()
|
||||
projects = {}
|
||||
for addon_path in odoo.addons.__path__:
|
||||
for tx_path in (
|
||||
opj(addon_path, '.tx', 'config'),
|
||||
opj(addon_path, pardir, '.tx', 'config'),
|
||||
):
|
||||
if isfile(tx_path):
|
||||
tx_config_file.read(tx_path)
|
||||
for sec in tx_config_file.sections()[1:]:
|
||||
if len(sec.split(":")) != 6:
|
||||
# old format ['main', 'odoo-16.base', ...]
|
||||
tx_project, tx_mod = sec.split(".")
|
||||
else:
|
||||
# tx_config_file.sections(): ['main', 'o:odoo:p:odoo-16:r:base', ...]
|
||||
_, _, _, tx_project, _, tx_mod = sec.split(':')
|
||||
projects[tx_mod] = tx_project
|
||||
return projects
|
||||
|
||||
def _update_transifex_url(self, translations):
|
||||
""" Update translations' Transifex URL
|
||||
|
||||
:param translations: the translations to update, may be a recordset or a list of dicts.
|
||||
The elements of `translations` must have the fields/keys 'source', 'module', 'lang',
|
||||
and the field/key 'transifex_url' is updated on them.
|
||||
"""
|
||||
|
||||
# e.g. 'https://www.transifex.com/odoo/'
|
||||
base_url = self.env['ir.config_parameter'].sudo().get_param('transifex.project_url')
|
||||
if not base_url:
|
||||
return
|
||||
base_url = base_url.rstrip('/')
|
||||
|
||||
res_langs = self.env['res.lang'].search([])
|
||||
lang_to_iso = {l.code: l.iso_code for l in res_langs}
|
||||
if not lang_to_iso:
|
||||
return
|
||||
|
||||
projects = self._get_transifex_projects()
|
||||
if not projects:
|
||||
return
|
||||
|
||||
for translation in translations:
|
||||
if not translation['source'] or translation['lang'] == 'en_US':
|
||||
continue
|
||||
|
||||
lang_iso = lang_to_iso.get(translation['lang'])
|
||||
if not lang_iso:
|
||||
continue
|
||||
|
||||
project = projects.get(translation['module'])
|
||||
if not project:
|
||||
continue
|
||||
|
||||
# e.g. https://www.transifex.com/odoo/odoo-16/translate/#fr_FR/sale/42?q=text:'Sale+Order'
|
||||
# 42 is an arbitrary number to satisfy the transifex URL format
|
||||
source = werkzeug.urls.url_quote_plus(translation['source'][:50].replace("\n", "").replace("'", "\\'"))
|
||||
source = f"'{source}'" if "+" in source else source
|
||||
translation['transifex_url'] = f"{base_url}/{project}/translate/#{lang_iso}/{translation['module']}/42?q=text%3A{source}"
|
2
security/ir.model.access.csv
Normal file
2
security/ir.model.access.csv
Normal file
@ -0,0 +1,2 @@
|
||||
id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink
|
||||
access_transifex_code_translation,transifex.code.translation,model_transifex_code_translation,base.group_system,1,0,0,0
|
|
BIN
static/description/icon.png
Normal file
BIN
static/description/icon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 914 B |
1
static/description/icon.svg
Normal file
1
static/description/icon.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg width="50" height="50" viewBox="0 0 50 50" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M3.484 23.012H2.81a.19.19 0 0 1-.195-.187v-1.733a.192.192 0 0 0-.195-.187H1.367a.192.192 0 0 0-.196.187v1.733a.19.19 0 0 1-.195.187h-.78a.191.191 0 0 0-.196.186v.827c0 .103.088.187.195.187h.78a.19.19 0 0 1 .196.186v3.816c0 1.103.744 1.703 1.75 1.703h.563a.192.192 0 0 0 .195-.188v-.923a.178.178 0 0 0-.178-.173H3.14c-.365 0-.525-.293-.525-.67v-3.565a.19.19 0 0 1 .195-.186h.674a.191.191 0 0 0 .195-.187v-.827a.191.191 0 0 0-.195-.186Zm46.479 6.58-2.17-3.089a.2.2 0 0 1 0-.232l2.069-2.95c.097-.137-.007-.323-.181-.323H48.49a.22.22 0 0 0-.186.098l-1.209 1.874a.223.223 0 0 1-.37 0l-1.209-1.873a.218.218 0 0 0-.185-.1H44.14c-.174 0-.278.187-.18.325l2.067 2.95a.2.2 0 0 1 0 .231l-2.17 3.089c-.096.139.007.325.181.325h1.193a.222.222 0 0 0 .184-.096l1.312-1.96a.223.223 0 0 1 .367 0l1.312 1.96a.22.22 0 0 0 .183.095h1.193c.174 0 .278-.185.18-.324Zm-8.236-3.735h-2.633c-.127 0-.233-.106-.217-.226.12-.928.73-1.42 1.541-1.42.811 0 1.41.492 1.527 1.42.016.12-.09.226-.218.226Zm-1.309-2.93c-1.4 0-3.003.866-3.003 3.558 0 2.832 1.735 3.515 3.222 3.515.865 0 1.668-.252 2.338-.834a.204.204 0 0 0 .013-.294l-.632-.67a.224.224 0 0 0-.304-.014c-.426.343-.94.529-1.444.529-.627 0-1.195-.251-1.502-.74a1.699 1.699 0 0 1-.24-.804.214.214 0 0 1 .216-.228h4.108c.12 0 .217-.093.217-.207v-.77c0-1.896-1.385-3.04-2.989-3.04Zm-3.72-2.719h-.72c-1.123 0-1.968.586-1.968 1.869v.73a.208.208 0 0 1-.213.205h-.746a.208.208 0 0 0-.213.203v.793a.21.21 0 0 0 .213.204h.745c.118 0 .214.09.214.203v5.297a.21.21 0 0 0 .212.204h1.017a.209.209 0 0 0 .214-.204v-5.297c0-.112.095-.203.213-.203h1.032a.209.209 0 0 0 .213-.204v-.793a.208.208 0 0 0-.213-.203h-1.032a.209.209 0 0 1-.213-.204v-.591c0-.433.16-.726.641-.726h.604a.208.208 0 0 0 .213-.204v-.875a.208.208 0 0 0-.213-.204ZM31.304 20h-.019c-.514 0-.931.4-.931.892s.417.89.931.89h.019c.515 0 .932-.398.932-.89 0-.493-.417-.892-.932-.892Zm.432 3.012h-.882c-.155 0-.28.12-.28.268v6.368c0 .148.125.268.28.268h.882c.154 0 .28-.12.28-.268V23.28a.275.275 0 0 0-.28-.268Zm-3.968 2.915c-.277-.07-.568-.098-.904-.14-.306-.041-.612-.041-.947-.055-.744-.042-.977-.349-.977-.67 0-.488.32-.85 1.268-.85.712 0 1.24.197 1.758.515a.25.25 0 0 0 .331-.059l.519-.707a.223.223 0 0 0-.05-.317c-.661-.46-1.44-.716-2.557-.716-1.517 0-2.712.711-2.712 2.12 0 1.06.714 1.702 1.763 1.91.525.099 1.065.029 1.59.113.51.083.933.223.933.739 0 .6-.613.907-1.444.907-.893 0-1.538-.238-2.116-.724a.251.251 0 0 0-.35.02l-.573.665a.228.228 0 0 0 .032.329 4.596 4.596 0 0 0 2.89.993c1.692 0 3.004-.795 3.004-2.12 0-1.228-.627-1.73-1.458-1.953Zm-7.795-3c-.801 0-1.435.259-1.895.81-.02.024-.043.03-.043 0v-.489a.256.256 0 0 0-.262-.25h-.92a.256.256 0 0 0-.262.25v6.418c0 .138.117.25.262.25h.92a.256.256 0 0 0 .262-.25V25.8c0-.962.627-1.506 1.458-1.506.83 0 1.458.544 1.458 1.506v3.865c0 .138.117.25.26.25h.92a.256.256 0 0 0 .263-.25v-4.353c0-1.563-1.298-2.385-2.42-2.385Zm-5.92 4.562c0 .405-.088.698-.278.879-.233.237-.7.349-1.385.349-.991 0-1.4-.405-1.4-.893 0-.516.409-.851 1.284-.851h1.779v.516Zm.597-4.073c-.524-.348-1.268-.488-2.186-.488-.935 0-1.655.238-2.173.715a.219.219 0 0 0 .006.32l.618.582a.244.244 0 0 0 .327.002c.263-.231.67-.335 1.294-.335 1.05 0 1.517.223 1.517.892v.753h-2.057c-1.559 0-2.347.92-2.347 2.037 0 .711.322 1.31.92 1.687.422.265.976.419 1.632.419.99 0 1.592-.362 1.793-.698.027-.044.059-.026.059 0v.387c0 .126.105.227.237.227h.954a.232.232 0 0 0 .237-.227v-4.515c0-.837-.306-1.381-.83-1.758Zm-5.124-.17a2.341 2.341 0 0 0-1.204-.318c-.802 0-1.429.265-1.895.809h-.044v-.54c0-.11-.093-.2-.21-.2H5.15c-.116 0-.21.09-.21.2v6.52c0 .11.094.2.21.2h1.025c.116 0 .21-.09.21-.2V25.76c0-1.047.713-1.465 1.428-1.465.328 0 .544.048.801.218.093.06.22.036.285-.052l.685-.931a.195.195 0 0 0-.057-.285Z" fill="#223657"/><path d="M43.105 4h.972V.818h1.108V0H42v.818h1.105V4Zm2.775 0h.858V1.453h.053L47.663 4h.555l.871-2.547h.056V4H50V0h-1.108l-.924 2.714h-.05L46.99 0h-1.11v4Z" fill="#D1D5DB"/></svg>
|
After Width: | Height: | Size: 3.9 KiB |
10
static/src/views/fields/translation_dialog.xml
Normal file
10
static/src/views/fields/translation_dialog.xml
Normal file
@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<templates>
|
||||
|
||||
<t t-inherit="web.TranslationDialog" t-inherit-mode="extension">
|
||||
<xpath expr="//div[hasclass('row')]/div/t" position="after">
|
||||
<a t-if="term.transifex_url" t-attf-href="#{term.transifex_url}" title="Contribute" target="_blank"> <i class="fa fa-globe"/></a>
|
||||
</xpath>
|
||||
</t>
|
||||
|
||||
</templates>
|
25
static/src/views/reload_code_translations_views.js
Normal file
25
static/src/views/reload_code_translations_views.js
Normal file
@ -0,0 +1,25 @@
|
||||
/** @odoo-module **/
|
||||
|
||||
import { registry } from "@web/core/registry";
|
||||
import { ListController } from "@web/views/list/list_controller";
|
||||
import { listView } from "@web/views/list/list_view";
|
||||
import { browser } from "@web/core/browser/browser";
|
||||
import { useService } from "@web/core/utils/hooks";
|
||||
|
||||
export class TransifexCodeTranslationListController extends ListController {
|
||||
setup() {
|
||||
super.setup();
|
||||
this.orm = useService("orm");
|
||||
}
|
||||
|
||||
async onClickReloadCodeTranslations() {
|
||||
await this.orm.call("transifex.code.translation", "reload", [], {});
|
||||
browser.location.reload();
|
||||
}
|
||||
}
|
||||
|
||||
registry.category("views").add("transifex_code_translation_tree", {
|
||||
...listView,
|
||||
Controller: TransifexCodeTranslationListController,
|
||||
buttonTemplate: "transifex.CodeTranslationListView.Buttons",
|
||||
});
|
9
static/src/views/reload_code_translations_views.xml
Normal file
9
static/src/views/reload_code_translations_views.xml
Normal file
@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<templates>
|
||||
<t t-name="transifex.CodeTranslationListView.Buttons" t-inherit="web.ListView.Buttons" t-inherit-mode="primary">
|
||||
<xpath expr="//div[hasclass('o_list_buttons')]" position="inside">
|
||||
<button type="button" class="btn btn-primary" t-on-click="onClickReloadCodeTranslations">Reload</button>
|
||||
</xpath>
|
||||
</t>
|
||||
</templates>
|
47
views/code_translation_views.xml
Normal file
47
views/code_translation_views.xml
Normal file
@ -0,0 +1,47 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
<record id="transifex_code_translation_tree_view" model="ir.ui.view">
|
||||
<field name="name">transifex.code.translation.tree</field>
|
||||
<field name="model">transifex.code.translation</field>
|
||||
<field name="arch" type="xml">
|
||||
<tree string="Transifex Code Translation" js_class="transifex_code_translation_tree">
|
||||
<field name="source"/>
|
||||
<field name="value"/>
|
||||
<field name="module"/>
|
||||
<field name="lang"/>
|
||||
<field name="transifex_url"
|
||||
widget="url"
|
||||
text="Contribute"
|
||||
string="Transifex" />
|
||||
</tree>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record id="transifex_code_translation_view_search" model="ir.ui.view">
|
||||
<field name="name">transifex.code.translation.view.search</field>
|
||||
<field name="model">transifex.code.translation</field>
|
||||
<field name="arch" type="xml">
|
||||
<search string="Search Code Translations">
|
||||
<field name="module"/>
|
||||
<field name="lang"/>
|
||||
<field name="source"/>
|
||||
<field name="value"/>
|
||||
<separator/>
|
||||
<filter string="Not Translated" name="not_translated" domain="[('value', '=', '')]"/>
|
||||
<group string="Group By">
|
||||
<filter string="Module" name="group_by_module" context="{'group_by': 'module'}"/>
|
||||
</group>
|
||||
</search>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record id="action_code_translations" model="ir.actions.server">
|
||||
<field name="name">Transifex Code Translations</field>
|
||||
<field name="model_id" ref="transifex.model_transifex_code_translation"/>
|
||||
<field name="groups_id" eval="[(4, ref('base.group_system'))]"/>
|
||||
<field name="state">code</field>
|
||||
<field name="code">action = model._open_code_translations()</field>
|
||||
</record>
|
||||
<menuitem action="action_code_translations" id="menu_transifex_code_translations" parent="base.menu_translation_app"/>
|
||||
|
||||
</odoo>
|
Loading…
x
Reference in New Issue
Block a user