From 02c7f9a582cd84c7302b79131da89bf193638f82 Mon Sep 17 00:00:00 2001 From: Houssine BAKKALI Date: Fri, 2 Jun 2017 23:32:38 +0200 Subject: [PATCH] [ADD] add tehcnical feature module --- base_technical_features/README.rst | 77 +++++++++++++++ base_technical_features/__init__.py | 1 + base_technical_features/__openerp__.py | 18 ++++ base_technical_features/data/res_users.xml | 6 ++ base_technical_features/i18n/am.po | 75 +++++++++++++++ base_technical_features/i18n/ar.po | 75 +++++++++++++++ base_technical_features/i18n/bg.po | 75 +++++++++++++++ base_technical_features/i18n/bs.po | 75 +++++++++++++++ base_technical_features/i18n/ca.po | 76 +++++++++++++++ base_technical_features/i18n/cs.po | 75 +++++++++++++++ base_technical_features/i18n/da.po | 75 +++++++++++++++ base_technical_features/i18n/de.po | 91 ++++++++++++++++++ base_technical_features/i18n/el_GR.po | 75 +++++++++++++++ base_technical_features/i18n/en_GB.po | 75 +++++++++++++++ base_technical_features/i18n/es.po | 77 +++++++++++++++ base_technical_features/i18n/es_AR.po | 75 +++++++++++++++ base_technical_features/i18n/es_CL.po | 75 +++++++++++++++ base_technical_features/i18n/es_CO.po | 75 +++++++++++++++ base_technical_features/i18n/es_CR.po | 75 +++++++++++++++ base_technical_features/i18n/es_DO.po | 75 +++++++++++++++ base_technical_features/i18n/es_EC.po | 75 +++++++++++++++ base_technical_features/i18n/es_ES.po | 75 +++++++++++++++ base_technical_features/i18n/es_MX.po | 75 +++++++++++++++ base_technical_features/i18n/es_PE.po | 75 +++++++++++++++ base_technical_features/i18n/es_PY.po | 75 +++++++++++++++ base_technical_features/i18n/es_VE.po | 75 +++++++++++++++ base_technical_features/i18n/et.po | 75 +++++++++++++++ base_technical_features/i18n/eu.po | 75 +++++++++++++++ base_technical_features/i18n/fa.po | 75 +++++++++++++++ base_technical_features/i18n/fi.po | 75 +++++++++++++++ base_technical_features/i18n/fr.po | 75 +++++++++++++++ base_technical_features/i18n/fr_CA.po | 75 +++++++++++++++ base_technical_features/i18n/fr_CH.po | 76 +++++++++++++++ base_technical_features/i18n/gl.po | 75 +++++++++++++++ base_technical_features/i18n/gl_ES.po | 75 +++++++++++++++ base_technical_features/i18n/he.po | 75 +++++++++++++++ base_technical_features/i18n/hr.po | 76 +++++++++++++++ base_technical_features/i18n/hr_HR.po | 76 +++++++++++++++ base_technical_features/i18n/hu.po | 75 +++++++++++++++ base_technical_features/i18n/id.po | 75 +++++++++++++++ base_technical_features/i18n/it.po | 75 +++++++++++++++ base_technical_features/i18n/ja.po | 75 +++++++++++++++ base_technical_features/i18n/ko.po | 75 +++++++++++++++ base_technical_features/i18n/lt.po | 75 +++++++++++++++ base_technical_features/i18n/lt_LT.po | 75 +++++++++++++++ base_technical_features/i18n/lv.po | 75 +++++++++++++++ base_technical_features/i18n/mk.po | 75 +++++++++++++++ base_technical_features/i18n/mn.po | 75 +++++++++++++++ base_technical_features/i18n/nb.po | 75 +++++++++++++++ base_technical_features/i18n/nb_NO.po | 75 +++++++++++++++ base_technical_features/i18n/nl.po | 88 +++++++++++++++++ base_technical_features/i18n/nl_BE.po | 75 +++++++++++++++ base_technical_features/i18n/pl.po | 75 +++++++++++++++ base_technical_features/i18n/pt.po | 75 +++++++++++++++ base_technical_features/i18n/pt_BR.po | 84 ++++++++++++++++ base_technical_features/i18n/pt_PT.po | 75 +++++++++++++++ base_technical_features/i18n/ro.po | 75 +++++++++++++++ base_technical_features/i18n/ru.po | 75 +++++++++++++++ base_technical_features/i18n/sk.po | 75 +++++++++++++++ base_technical_features/i18n/sl.po | 76 +++++++++++++++ base_technical_features/i18n/sr.po | 75 +++++++++++++++ base_technical_features/i18n/sr@latin.po | 75 +++++++++++++++ base_technical_features/i18n/sv.po | 75 +++++++++++++++ base_technical_features/i18n/th.po | 75 +++++++++++++++ base_technical_features/i18n/tr.po | 75 +++++++++++++++ base_technical_features/i18n/tr_TR.po | 75 +++++++++++++++ base_technical_features/i18n/uk.po | 75 +++++++++++++++ base_technical_features/i18n/vi.po | 75 +++++++++++++++ base_technical_features/i18n/vi_VN.po | 75 +++++++++++++++ base_technical_features/i18n/zh_CN.po | 76 +++++++++++++++ base_technical_features/i18n/zh_TW.po | 75 +++++++++++++++ base_technical_features/models/__init__.py | 3 + .../models/basemodel_monkeypatch.py | 33 +++++++ base_technical_features/models/ir_ui_menu.py | 18 ++++ base_technical_features/models/res_users.py | 59 ++++++++++++ .../security/res_groups.xml | 7 ++ .../static/description/icon.png | Bin 0 -> 9455 bytes .../static/description/user_preferences.png | Bin 0 -> 30961 bytes base_technical_features/tests/__init__.py | 1 + .../tests/test_base_technical_features.py | 61 ++++++++++++ base_technical_features/views/res_users.xml | 16 +++ 81 files changed, 5371 insertions(+) create mode 100644 base_technical_features/README.rst create mode 100644 base_technical_features/__init__.py create mode 100644 base_technical_features/__openerp__.py create mode 100644 base_technical_features/data/res_users.xml create mode 100644 base_technical_features/i18n/am.po create mode 100644 base_technical_features/i18n/ar.po create mode 100644 base_technical_features/i18n/bg.po create mode 100644 base_technical_features/i18n/bs.po create mode 100644 base_technical_features/i18n/ca.po create mode 100644 base_technical_features/i18n/cs.po create mode 100644 base_technical_features/i18n/da.po create mode 100644 base_technical_features/i18n/de.po create mode 100644 base_technical_features/i18n/el_GR.po create mode 100644 base_technical_features/i18n/en_GB.po create mode 100644 base_technical_features/i18n/es.po create mode 100644 base_technical_features/i18n/es_AR.po create mode 100644 base_technical_features/i18n/es_CL.po create mode 100644 base_technical_features/i18n/es_CO.po create mode 100644 base_technical_features/i18n/es_CR.po create mode 100644 base_technical_features/i18n/es_DO.po create mode 100644 base_technical_features/i18n/es_EC.po create mode 100644 base_technical_features/i18n/es_ES.po create mode 100644 base_technical_features/i18n/es_MX.po create mode 100644 base_technical_features/i18n/es_PE.po create mode 100644 base_technical_features/i18n/es_PY.po create mode 100644 base_technical_features/i18n/es_VE.po create mode 100644 base_technical_features/i18n/et.po create mode 100644 base_technical_features/i18n/eu.po create mode 100644 base_technical_features/i18n/fa.po create mode 100644 base_technical_features/i18n/fi.po create mode 100644 base_technical_features/i18n/fr.po create mode 100644 base_technical_features/i18n/fr_CA.po create mode 100644 base_technical_features/i18n/fr_CH.po create mode 100644 base_technical_features/i18n/gl.po create mode 100644 base_technical_features/i18n/gl_ES.po create mode 100644 base_technical_features/i18n/he.po create mode 100644 base_technical_features/i18n/hr.po create mode 100644 base_technical_features/i18n/hr_HR.po create mode 100644 base_technical_features/i18n/hu.po create mode 100644 base_technical_features/i18n/id.po create mode 100644 base_technical_features/i18n/it.po create mode 100644 base_technical_features/i18n/ja.po create mode 100644 base_technical_features/i18n/ko.po create mode 100644 base_technical_features/i18n/lt.po create mode 100644 base_technical_features/i18n/lt_LT.po create mode 100644 base_technical_features/i18n/lv.po create mode 100644 base_technical_features/i18n/mk.po create mode 100644 base_technical_features/i18n/mn.po create mode 100644 base_technical_features/i18n/nb.po create mode 100644 base_technical_features/i18n/nb_NO.po create mode 100644 base_technical_features/i18n/nl.po create mode 100644 base_technical_features/i18n/nl_BE.po create mode 100644 base_technical_features/i18n/pl.po create mode 100644 base_technical_features/i18n/pt.po create mode 100644 base_technical_features/i18n/pt_BR.po create mode 100644 base_technical_features/i18n/pt_PT.po create mode 100644 base_technical_features/i18n/ro.po create mode 100644 base_technical_features/i18n/ru.po create mode 100644 base_technical_features/i18n/sk.po create mode 100644 base_technical_features/i18n/sl.po create mode 100644 base_technical_features/i18n/sr.po create mode 100644 base_technical_features/i18n/sr@latin.po create mode 100644 base_technical_features/i18n/sv.po create mode 100644 base_technical_features/i18n/th.po create mode 100644 base_technical_features/i18n/tr.po create mode 100644 base_technical_features/i18n/tr_TR.po create mode 100644 base_technical_features/i18n/uk.po create mode 100644 base_technical_features/i18n/vi.po create mode 100644 base_technical_features/i18n/vi_VN.po create mode 100644 base_technical_features/i18n/zh_CN.po create mode 100644 base_technical_features/i18n/zh_TW.po create mode 100644 base_technical_features/models/__init__.py create mode 100644 base_technical_features/models/basemodel_monkeypatch.py create mode 100644 base_technical_features/models/ir_ui_menu.py create mode 100644 base_technical_features/models/res_users.py create mode 100644 base_technical_features/security/res_groups.xml create mode 100644 base_technical_features/static/description/icon.png create mode 100644 base_technical_features/static/description/user_preferences.png create mode 100644 base_technical_features/tests/__init__.py create mode 100644 base_technical_features/tests/test_base_technical_features.py create mode 100644 base_technical_features/views/res_users.xml diff --git a/base_technical_features/README.rst b/base_technical_features/README.rst new file mode 100644 index 0000000..a10fb8e --- /dev/null +++ b/base_technical_features/README.rst @@ -0,0 +1,77 @@ +.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 + +========================================================== +Access to technical features without activating debug mode +========================================================== + +In Odoo 9.0, the debug mode grants every employee user access to the technical +features. This module enables persistent access to technical features based on +user preference. + +Configuration +============= + +After installation of this module, every employee can still access technical +features for the applications that they have access to by enabling debug mode. +Additionally, users can check the *Technical feature* field in their +preferences to gain permanent access to the menus and views that fall under +this category. + +.. figure:: static/description/user_preferences.png + :alt: User preferences + +Upon installation of this module, this preference is already +set for the administrator user of the database. + +In the background, this preference is mapped to the *Technical feature (w/o +debug mode)* group that this module adds. As an administrator, you can +therefore manage this preference from the regular Users and Groups menu items. + +Usage +===== + +.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas + :alt: Try me on Runbot + :target: https://runbot.odoo-community.org/runbot/149/9.0 + +Bug Tracker +=========== + +Bugs are tracked on `GitHub Issues +`_. In case of trouble, please +check there if your issue has already been reported. If you spotted it first, +help us smashing it by providing a detailed and welcomed `feedback +`_. + +Credits +======= + +Images +------ + +* Odoo Community Association: `Icon `_. + +Contributors +------------ + +* Stefan Rijnhart + +Maintainer +---------- + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +This module is maintained by the OCA. + +OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use. + +To contribute to this module, please visit https://odoo-community.org. diff --git a/base_technical_features/__init__.py b/base_technical_features/__init__.py new file mode 100644 index 0000000..0650744 --- /dev/null +++ b/base_technical_features/__init__.py @@ -0,0 +1 @@ +from . import models diff --git a/base_technical_features/__openerp__.py b/base_technical_features/__openerp__.py new file mode 100644 index 0000000..14383e9 --- /dev/null +++ b/base_technical_features/__openerp__.py @@ -0,0 +1,18 @@ +# coding: utf-8 +# © 2016 Opener B.V. () +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +{ + "name": "Technical features group", + "summary": "Access to technical features without activating debug mode", + "version": "9.0.1.0.0", + "category": "Usability", + "website": "https://github.com/oca/server-tools", + "author": "Opener B.V., Odoo Community Association (OCA)", + "data": [ + 'security/res_groups.xml', + 'views/res_users.xml', + 'data/res_users.xml', + ], + "license": "AGPL-3", + "installable": True, +} diff --git a/base_technical_features/data/res_users.xml b/base_technical_features/data/res_users.xml new file mode 100644 index 0000000..e9f87e5 --- /dev/null +++ b/base_technical_features/data/res_users.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/base_technical_features/i18n/am.po b/base_technical_features/i18n/am.po new file mode 100644 index 0000000..e8cf7b6 --- /dev/null +++ b/base_technical_features/i18n/am.po @@ -0,0 +1,75 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_technical_features +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: server-tools (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-10 02:52+0000\n" +"PO-Revision-Date: 2016-01-05 19:43+0000\n" +"Last-Translator: <>\n" +"Language-Team: Amharic (http://www.transifex.com/oca/OCA-server-tools-9-0/language/am/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: am\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_display_name +msgid "Display Name" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_id +msgid "ID" +msgstr "ID" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch___last_update +msgid "Last Modified on" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_show_technical_features +msgid "Show field Technical Features" +msgstr "" + +#. module: base_technical_features +#: model:res.groups,name:base_technical_features.group_technical_features +msgid "Technical Features (w/o debug mode)" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_technical_features +msgid "Technical features" +msgstr "" + +#. module: base_technical_features +#: code:addons/base_technical_features/models/res_users.py:48 +#, python-format +msgid "The user does not have access to technical features." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_res_users +msgid "Users" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,help:base_technical_features.field_res_users_show_technical_features +msgid "" +"Whether to display the technical features field in the user preferences." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_basemodel_monkeypatch +msgid "basemodel.monkeypatch" +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_ir_ui_menu +msgid "ir.ui.menu" +msgstr "" diff --git a/base_technical_features/i18n/ar.po b/base_technical_features/i18n/ar.po new file mode 100644 index 0000000..8619257 --- /dev/null +++ b/base_technical_features/i18n/ar.po @@ -0,0 +1,75 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_technical_features +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: server-tools (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-14 04:21+0000\n" +"PO-Revision-Date: 2016-01-05 19:43+0000\n" +"Last-Translator: <>\n" +"Language-Team: Arabic (http://www.transifex.com/oca/OCA-server-tools-9-0/language/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: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_display_name +msgid "Display Name" +msgstr "اسم العرض" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_id +msgid "ID" +msgstr "المعرف" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch___last_update +msgid "Last Modified on" +msgstr "آخر تعديل في" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_show_technical_features +msgid "Show field Technical Features" +msgstr "" + +#. module: base_technical_features +#: model:res.groups,name:base_technical_features.group_technical_features +msgid "Technical Features (w/o debug mode)" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_technical_features +msgid "Technical features" +msgstr "" + +#. module: base_technical_features +#: code:addons/base_technical_features/models/res_users.py:48 +#, python-format +msgid "The user does not have access to technical features." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_res_users +msgid "Users" +msgstr "المستخدمون" + +#. module: base_technical_features +#: model:ir.model.fields,help:base_technical_features.field_res_users_show_technical_features +msgid "" +"Whether to display the technical features field in the user preferences." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_basemodel_monkeypatch +msgid "basemodel.monkeypatch" +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_ir_ui_menu +msgid "ir.ui.menu" +msgstr "" diff --git a/base_technical_features/i18n/bg.po b/base_technical_features/i18n/bg.po new file mode 100644 index 0000000..b7eedc6 --- /dev/null +++ b/base_technical_features/i18n/bg.po @@ -0,0 +1,75 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_technical_features +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: server-tools (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:45+0000\n" +"PO-Revision-Date: 2016-01-05 19:43+0000\n" +"Last-Translator: <>\n" +"Language-Team: Bulgarian (http://www.transifex.com/oca/OCA-server-tools-9-0/language/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: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_display_name +msgid "Display Name" +msgstr "Име за Показване" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_id +msgid "ID" +msgstr "ID" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch___last_update +msgid "Last Modified on" +msgstr "Последно обновено на" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_show_technical_features +msgid "Show field Technical Features" +msgstr "" + +#. module: base_technical_features +#: model:res.groups,name:base_technical_features.group_technical_features +msgid "Technical Features (w/o debug mode)" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_technical_features +msgid "Technical features" +msgstr "" + +#. module: base_technical_features +#: code:addons/base_technical_features/models/res_users.py:48 +#, python-format +msgid "The user does not have access to technical features." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_res_users +msgid "Users" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,help:base_technical_features.field_res_users_show_technical_features +msgid "" +"Whether to display the technical features field in the user preferences." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_basemodel_monkeypatch +msgid "basemodel.monkeypatch" +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_ir_ui_menu +msgid "ir.ui.menu" +msgstr "" diff --git a/base_technical_features/i18n/bs.po b/base_technical_features/i18n/bs.po new file mode 100644 index 0000000..9ef77b9 --- /dev/null +++ b/base_technical_features/i18n/bs.po @@ -0,0 +1,75 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_technical_features +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: server-tools (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:45+0000\n" +"PO-Revision-Date: 2016-01-05 19:43+0000\n" +"Last-Translator: <>\n" +"Language-Team: Bosnian (http://www.transifex.com/oca/OCA-server-tools-9-0/language/bs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bs\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: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_display_name +msgid "Display Name" +msgstr "Prikaži naziv" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_id +msgid "ID" +msgstr "ID" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch___last_update +msgid "Last Modified on" +msgstr "Zadnje mijenjano" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_show_technical_features +msgid "Show field Technical Features" +msgstr "" + +#. module: base_technical_features +#: model:res.groups,name:base_technical_features.group_technical_features +msgid "Technical Features (w/o debug mode)" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_technical_features +msgid "Technical features" +msgstr "" + +#. module: base_technical_features +#: code:addons/base_technical_features/models/res_users.py:48 +#, python-format +msgid "The user does not have access to technical features." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_res_users +msgid "Users" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,help:base_technical_features.field_res_users_show_technical_features +msgid "" +"Whether to display the technical features field in the user preferences." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_basemodel_monkeypatch +msgid "basemodel.monkeypatch" +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_ir_ui_menu +msgid "ir.ui.menu" +msgstr "" diff --git a/base_technical_features/i18n/ca.po b/base_technical_features/i18n/ca.po new file mode 100644 index 0000000..6f670c6 --- /dev/null +++ b/base_technical_features/i18n/ca.po @@ -0,0 +1,76 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_technical_features +# +# Translators: +# Marc Tormo i Bochaca , 2017 +msgid "" +msgstr "" +"Project-Id-Version: server-tools (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-04-19 17:59+0000\n" +"PO-Revision-Date: 2017-03-30 16:37+0000\n" +"Last-Translator: Marc Tormo i Bochaca \n" +"Language-Team: Catalan (http://www.transifex.com/oca/OCA-server-tools-9-0/language/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: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_display_name +msgid "Display Name" +msgstr "Veure el nom" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_id +msgid "ID" +msgstr "ID" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch___last_update +msgid "Last Modified on" +msgstr "Darrera modificació el" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_show_technical_features +msgid "Show field Technical Features" +msgstr "Mostrar el camp Característiques Tècniques " + +#. module: base_technical_features +#: model:res.groups,name:base_technical_features.group_technical_features +msgid "Technical Features (w/o debug mode)" +msgstr "Característiques tècniques (sense mode de depuració)" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_technical_features +msgid "Technical features" +msgstr "Característiques tècniques " + +#. module: base_technical_features +#: code:addons/base_technical_features/models/res_users.py:48 +#, python-format +msgid "The user does not have access to technical features." +msgstr "L'usuari no té accés a les característiques tècniques. " + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_res_users +msgid "Users" +msgstr "Usuaris" + +#. module: base_technical_features +#: model:ir.model.fields,help:base_technical_features.field_res_users_show_technical_features +msgid "" +"Whether to display the technical features field in the user preferences." +msgstr "Si cal mostrar el camp de característiques tècniques a les preferències d'usuari. " + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_basemodel_monkeypatch +msgid "basemodel.monkeypatch" +msgstr "basemodel.monkeypatch" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_ir_ui_menu +msgid "ir.ui.menu" +msgstr "ir.ui.menu" diff --git a/base_technical_features/i18n/cs.po b/base_technical_features/i18n/cs.po new file mode 100644 index 0000000..d44653e --- /dev/null +++ b/base_technical_features/i18n/cs.po @@ -0,0 +1,75 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_technical_features +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: server-tools (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:45+0000\n" +"PO-Revision-Date: 2016-01-05 19:43+0000\n" +"Last-Translator: <>\n" +"Language-Team: Czech (http://www.transifex.com/oca/OCA-server-tools-9-0/language/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=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_display_name +msgid "Display Name" +msgstr "Zobrazovaný název" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_id +msgid "ID" +msgstr "ID" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch___last_update +msgid "Last Modified on" +msgstr "Naposled upraveno" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_show_technical_features +msgid "Show field Technical Features" +msgstr "" + +#. module: base_technical_features +#: model:res.groups,name:base_technical_features.group_technical_features +msgid "Technical Features (w/o debug mode)" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_technical_features +msgid "Technical features" +msgstr "" + +#. module: base_technical_features +#: code:addons/base_technical_features/models/res_users.py:48 +#, python-format +msgid "The user does not have access to technical features." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_res_users +msgid "Users" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,help:base_technical_features.field_res_users_show_technical_features +msgid "" +"Whether to display the technical features field in the user preferences." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_basemodel_monkeypatch +msgid "basemodel.monkeypatch" +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_ir_ui_menu +msgid "ir.ui.menu" +msgstr "" diff --git a/base_technical_features/i18n/da.po b/base_technical_features/i18n/da.po new file mode 100644 index 0000000..044bce3 --- /dev/null +++ b/base_technical_features/i18n/da.po @@ -0,0 +1,75 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_technical_features +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: server-tools (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-14 04:21+0000\n" +"PO-Revision-Date: 2016-01-05 19:43+0000\n" +"Last-Translator: <>\n" +"Language-Team: Danish (http://www.transifex.com/oca/OCA-server-tools-9-0/language/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: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_display_name +msgid "Display Name" +msgstr "Vist navn" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_id +msgid "ID" +msgstr "Id" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch___last_update +msgid "Last Modified on" +msgstr "Sidst ændret den" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_show_technical_features +msgid "Show field Technical Features" +msgstr "" + +#. module: base_technical_features +#: model:res.groups,name:base_technical_features.group_technical_features +msgid "Technical Features (w/o debug mode)" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_technical_features +msgid "Technical features" +msgstr "" + +#. module: base_technical_features +#: code:addons/base_technical_features/models/res_users.py:48 +#, python-format +msgid "The user does not have access to technical features." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_res_users +msgid "Users" +msgstr "Brugere" + +#. module: base_technical_features +#: model:ir.model.fields,help:base_technical_features.field_res_users_show_technical_features +msgid "" +"Whether to display the technical features field in the user preferences." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_basemodel_monkeypatch +msgid "basemodel.monkeypatch" +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_ir_ui_menu +msgid "ir.ui.menu" +msgstr "" diff --git a/base_technical_features/i18n/de.po b/base_technical_features/i18n/de.po new file mode 100644 index 0000000..018a5a2 --- /dev/null +++ b/base_technical_features/i18n/de.po @@ -0,0 +1,91 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_technical_features +# +# Translators: +# Alejandro Santana , 2015 +# Alexsandro Haag , 2015 +# Armando Vulcano Junior , 2015 +# Carles Antoli , 2015 +# Christophe CHAUVET , 2015 +# danimaribeiro , 2016 +# FIRST AUTHOR , 2014 +# Hans Henrik Gabelgaard , 2015 +# llum.birque@gmail.com , 2015 +# Matjaž Mozetič , 2015 +# Paolo Valier, 2016 +# Pedro Castro Silva , 2015 +# Rudolf Schnapka , 2015-2016 +# Stéphane Bidoul , 2015 +# Wagner Pereira , 2015 +# Yael Terrettaz, 2015 +msgid "" +msgstr "" +"Project-Id-Version: server-tools (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-04-17 12:15+0000\n" +"PO-Revision-Date: 2016-04-21 11:18+0000\n" +"Last-Translator: Rudolf Schnapka \n" +"Language-Team: German (http://www.transifex.com/oca/OCA-server-tools-9-0/language/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: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_display_name +msgid "Display Name" +msgstr "Anzeigename" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_id +msgid "ID" +msgstr "ID" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch___last_update +msgid "Last Modified on" +msgstr "Zuletzt verändert am" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_show_technical_features +msgid "Show field Technical Features" +msgstr "Feld Technische Eigenschaften anzeigen" + +#. module: base_technical_features +#: model:res.groups,name:base_technical_features.group_technical_features +msgid "Technical Features (w/o debug mode)" +msgstr "Technische Eigenschaften (ohne Debugmodus)" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_technical_features +msgid "Technical features" +msgstr "Technische Eigenschaften" + +#. module: base_technical_features +#: code:addons/base_technical_features/models/res_users.py:48 +#, python-format +msgid "The user does not have access to technical features." +msgstr "Der Benutzer hat keinen Zugriff auf Technische Eigenschaften." + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_res_users +msgid "Users" +msgstr "Benutzer" + +#. module: base_technical_features +#: model:ir.model.fields,help:base_technical_features.field_res_users_show_technical_features +msgid "" +"Whether to display the technical features field in the user preferences." +msgstr "Ob das Feld Technische Eigenschaften in den Benutzereinstellungen angezeigt wird." + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_basemodel_monkeypatch +msgid "basemodel.monkeypatch" +msgstr "basemodel.monkeypatch" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_ir_ui_menu +msgid "ir.ui.menu" +msgstr "ir.ui.menu" diff --git a/base_technical_features/i18n/el_GR.po b/base_technical_features/i18n/el_GR.po new file mode 100644 index 0000000..eadc3df --- /dev/null +++ b/base_technical_features/i18n/el_GR.po @@ -0,0 +1,75 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_technical_features +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: server-tools (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-14 04:21+0000\n" +"PO-Revision-Date: 2016-01-05 19:43+0000\n" +"Last-Translator: <>\n" +"Language-Team: Greek (Greece) (http://www.transifex.com/oca/OCA-server-tools-9-0/language/el_GR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: el_GR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_display_name +msgid "Display Name" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_id +msgid "ID" +msgstr "Κωδικός" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch___last_update +msgid "Last Modified on" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_show_technical_features +msgid "Show field Technical Features" +msgstr "" + +#. module: base_technical_features +#: model:res.groups,name:base_technical_features.group_technical_features +msgid "Technical Features (w/o debug mode)" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_technical_features +msgid "Technical features" +msgstr "" + +#. module: base_technical_features +#: code:addons/base_technical_features/models/res_users.py:48 +#, python-format +msgid "The user does not have access to technical features." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_res_users +msgid "Users" +msgstr "Χρήστες" + +#. module: base_technical_features +#: model:ir.model.fields,help:base_technical_features.field_res_users_show_technical_features +msgid "" +"Whether to display the technical features field in the user preferences." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_basemodel_monkeypatch +msgid "basemodel.monkeypatch" +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_ir_ui_menu +msgid "ir.ui.menu" +msgstr "" diff --git a/base_technical_features/i18n/en_GB.po b/base_technical_features/i18n/en_GB.po new file mode 100644 index 0000000..a262882 --- /dev/null +++ b/base_technical_features/i18n/en_GB.po @@ -0,0 +1,75 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_technical_features +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: server-tools (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:45+0000\n" +"PO-Revision-Date: 2016-01-05 19:43+0000\n" +"Last-Translator: <>\n" +"Language-Team: English (United Kingdom) (http://www.transifex.com/oca/OCA-server-tools-9-0/language/en_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: en_GB\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_display_name +msgid "Display Name" +msgstr "Display Name" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_id +msgid "ID" +msgstr "ID" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch___last_update +msgid "Last Modified on" +msgstr "Last Modified on" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_show_technical_features +msgid "Show field Technical Features" +msgstr "" + +#. module: base_technical_features +#: model:res.groups,name:base_technical_features.group_technical_features +msgid "Technical Features (w/o debug mode)" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_technical_features +msgid "Technical features" +msgstr "" + +#. module: base_technical_features +#: code:addons/base_technical_features/models/res_users.py:48 +#, python-format +msgid "The user does not have access to technical features." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_res_users +msgid "Users" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,help:base_technical_features.field_res_users_show_technical_features +msgid "" +"Whether to display the technical features field in the user preferences." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_basemodel_monkeypatch +msgid "basemodel.monkeypatch" +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_ir_ui_menu +msgid "ir.ui.menu" +msgstr "" diff --git a/base_technical_features/i18n/es.po b/base_technical_features/i18n/es.po new file mode 100644 index 0000000..bc3bce4 --- /dev/null +++ b/base_technical_features/i18n/es.po @@ -0,0 +1,77 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_technical_features +# +# Translators: +# Antonio Trueba, 2016 +# Antonio Trueba, 2016 +msgid "" +msgstr "" +"Project-Id-Version: server-tools (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-01-19 14:46+0000\n" +"PO-Revision-Date: 2016-02-01 09:57+0000\n" +"Last-Translator: Antonio Trueba\n" +"Language-Team: Spanish (http://www.transifex.com/oca/OCA-server-tools-9-0/language/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=2; plural=(n != 1);\n" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_id +msgid "ID" +msgstr "ID" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch___last_update +msgid "Last Modified on" +msgstr "Modificado por última vez el" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_show_technical_features +msgid "Show field Technical Features" +msgstr "Mostrar el campo Características Técnicas" + +#. module: base_technical_features +#: model:res.groups,name:base_technical_features.group_technical_features +msgid "Technical Features (w/o debug mode)" +msgstr "Características técnicas (sin modo de depuración)" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_technical_features +msgid "Technical features" +msgstr "Características técnicas" + +#. module: base_technical_features +#: code:addons/base_technical_features/models/res_users.py:48 +#, python-format +msgid "The user does not have access to technical features." +msgstr "El usuario no tiene acceso a las características técnicas" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_res_users +msgid "Users" +msgstr "Usuarios" + +#. module: base_technical_features +#: model:ir.model.fields,help:base_technical_features.field_res_users_show_technical_features +msgid "" +"Whether to display the technical features field in the user preferences." +msgstr "Mostrar o no el campo de características técnicas en las preferencias de usuario." + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_basemodel_monkeypatch +msgid "basemodel.monkeypatch" +msgstr "basemodel.monkeypatch" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_ir_ui_menu +msgid "ir.ui.menu" +msgstr "ir.ui.menu" diff --git a/base_technical_features/i18n/es_AR.po b/base_technical_features/i18n/es_AR.po new file mode 100644 index 0000000..5234a47 --- /dev/null +++ b/base_technical_features/i18n/es_AR.po @@ -0,0 +1,75 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_technical_features +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: server-tools (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:45+0000\n" +"PO-Revision-Date: 2016-01-05 19:43+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Argentina) (http://www.transifex.com/oca/OCA-server-tools-9-0/language/es_AR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_AR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_display_name +msgid "Display Name" +msgstr "Mostrar Nombre" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_id +msgid "ID" +msgstr "ID" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch___last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_show_technical_features +msgid "Show field Technical Features" +msgstr "" + +#. module: base_technical_features +#: model:res.groups,name:base_technical_features.group_technical_features +msgid "Technical Features (w/o debug mode)" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_technical_features +msgid "Technical features" +msgstr "" + +#. module: base_technical_features +#: code:addons/base_technical_features/models/res_users.py:48 +#, python-format +msgid "The user does not have access to technical features." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_res_users +msgid "Users" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,help:base_technical_features.field_res_users_show_technical_features +msgid "" +"Whether to display the technical features field in the user preferences." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_basemodel_monkeypatch +msgid "basemodel.monkeypatch" +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_ir_ui_menu +msgid "ir.ui.menu" +msgstr "" diff --git a/base_technical_features/i18n/es_CL.po b/base_technical_features/i18n/es_CL.po new file mode 100644 index 0000000..4d1c0ca --- /dev/null +++ b/base_technical_features/i18n/es_CL.po @@ -0,0 +1,75 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_technical_features +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: server-tools (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-29 03:39+0000\n" +"PO-Revision-Date: 2016-01-05 19:43+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Chile) (http://www.transifex.com/oca/OCA-server-tools-9-0/language/es_CL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_id +msgid "ID" +msgstr "ID (identificación)" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch___last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_show_technical_features +msgid "Show field Technical Features" +msgstr "" + +#. module: base_technical_features +#: model:res.groups,name:base_technical_features.group_technical_features +msgid "Technical Features (w/o debug mode)" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_technical_features +msgid "Technical features" +msgstr "" + +#. module: base_technical_features +#: code:addons/base_technical_features/models/res_users.py:48 +#, python-format +msgid "The user does not have access to technical features." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_res_users +msgid "Users" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,help:base_technical_features.field_res_users_show_technical_features +msgid "" +"Whether to display the technical features field in the user preferences." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_basemodel_monkeypatch +msgid "basemodel.monkeypatch" +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_ir_ui_menu +msgid "ir.ui.menu" +msgstr "" diff --git a/base_technical_features/i18n/es_CO.po b/base_technical_features/i18n/es_CO.po new file mode 100644 index 0000000..d5f0a60 --- /dev/null +++ b/base_technical_features/i18n/es_CO.po @@ -0,0 +1,75 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_technical_features +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: server-tools (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:45+0000\n" +"PO-Revision-Date: 2016-01-05 19:43+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Colombia) (http://www.transifex.com/oca/OCA-server-tools-9-0/language/es_CO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_display_name +msgid "Display Name" +msgstr "Nombre Público" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_id +msgid "ID" +msgstr "ID" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch___last_update +msgid "Last Modified on" +msgstr "Última Modificación el" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_show_technical_features +msgid "Show field Technical Features" +msgstr "" + +#. module: base_technical_features +#: model:res.groups,name:base_technical_features.group_technical_features +msgid "Technical Features (w/o debug mode)" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_technical_features +msgid "Technical features" +msgstr "" + +#. module: base_technical_features +#: code:addons/base_technical_features/models/res_users.py:48 +#, python-format +msgid "The user does not have access to technical features." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_res_users +msgid "Users" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,help:base_technical_features.field_res_users_show_technical_features +msgid "" +"Whether to display the technical features field in the user preferences." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_basemodel_monkeypatch +msgid "basemodel.monkeypatch" +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_ir_ui_menu +msgid "ir.ui.menu" +msgstr "" diff --git a/base_technical_features/i18n/es_CR.po b/base_technical_features/i18n/es_CR.po new file mode 100644 index 0000000..c215794 --- /dev/null +++ b/base_technical_features/i18n/es_CR.po @@ -0,0 +1,75 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_technical_features +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: server-tools (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:45+0000\n" +"PO-Revision-Date: 2016-01-05 19:43+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Costa Rica) (http://www.transifex.com/oca/OCA-server-tools-9-0/language/es_CR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_display_name +msgid "Display Name" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_id +msgid "ID" +msgstr "ID" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch___last_update +msgid "Last Modified on" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_show_technical_features +msgid "Show field Technical Features" +msgstr "" + +#. module: base_technical_features +#: model:res.groups,name:base_technical_features.group_technical_features +msgid "Technical Features (w/o debug mode)" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_technical_features +msgid "Technical features" +msgstr "" + +#. module: base_technical_features +#: code:addons/base_technical_features/models/res_users.py:48 +#, python-format +msgid "The user does not have access to technical features." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_res_users +msgid "Users" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,help:base_technical_features.field_res_users_show_technical_features +msgid "" +"Whether to display the technical features field in the user preferences." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_basemodel_monkeypatch +msgid "basemodel.monkeypatch" +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_ir_ui_menu +msgid "ir.ui.menu" +msgstr "" diff --git a/base_technical_features/i18n/es_DO.po b/base_technical_features/i18n/es_DO.po new file mode 100644 index 0000000..86641c2 --- /dev/null +++ b/base_technical_features/i18n/es_DO.po @@ -0,0 +1,75 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_technical_features +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: server-tools (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-29 03:39+0000\n" +"PO-Revision-Date: 2016-01-05 19:43+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Dominican Republic) (http://www.transifex.com/oca/OCA-server-tools-9-0/language/es_DO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_DO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_id +msgid "ID" +msgstr "ID" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch___last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_show_technical_features +msgid "Show field Technical Features" +msgstr "" + +#. module: base_technical_features +#: model:res.groups,name:base_technical_features.group_technical_features +msgid "Technical Features (w/o debug mode)" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_technical_features +msgid "Technical features" +msgstr "" + +#. module: base_technical_features +#: code:addons/base_technical_features/models/res_users.py:48 +#, python-format +msgid "The user does not have access to technical features." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_res_users +msgid "Users" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,help:base_technical_features.field_res_users_show_technical_features +msgid "" +"Whether to display the technical features field in the user preferences." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_basemodel_monkeypatch +msgid "basemodel.monkeypatch" +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_ir_ui_menu +msgid "ir.ui.menu" +msgstr "" diff --git a/base_technical_features/i18n/es_EC.po b/base_technical_features/i18n/es_EC.po new file mode 100644 index 0000000..a49a3f9 --- /dev/null +++ b/base_technical_features/i18n/es_EC.po @@ -0,0 +1,75 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_technical_features +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: server-tools (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:45+0000\n" +"PO-Revision-Date: 2016-01-05 19:43+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Ecuador) (http://www.transifex.com/oca/OCA-server-tools-9-0/language/es_EC/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_EC\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_id +msgid "ID" +msgstr "ID (identificación)" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch___last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_show_technical_features +msgid "Show field Technical Features" +msgstr "" + +#. module: base_technical_features +#: model:res.groups,name:base_technical_features.group_technical_features +msgid "Technical Features (w/o debug mode)" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_technical_features +msgid "Technical features" +msgstr "" + +#. module: base_technical_features +#: code:addons/base_technical_features/models/res_users.py:48 +#, python-format +msgid "The user does not have access to technical features." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_res_users +msgid "Users" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,help:base_technical_features.field_res_users_show_technical_features +msgid "" +"Whether to display the technical features field in the user preferences." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_basemodel_monkeypatch +msgid "basemodel.monkeypatch" +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_ir_ui_menu +msgid "ir.ui.menu" +msgstr "" diff --git a/base_technical_features/i18n/es_ES.po b/base_technical_features/i18n/es_ES.po new file mode 100644 index 0000000..5142e90 --- /dev/null +++ b/base_technical_features/i18n/es_ES.po @@ -0,0 +1,75 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_technical_features +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: server-tools (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-02-16 10:39+0000\n" +"PO-Revision-Date: 2016-01-05 19:43+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Spain) (http://www.transifex.com/oca/OCA-server-tools-9-0/language/es_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_display_name +msgid "Display Name" +msgstr "Nombre para mostrar" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_id +msgid "ID" +msgstr "ID" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch___last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_show_technical_features +msgid "Show field Technical Features" +msgstr "" + +#. module: base_technical_features +#: model:res.groups,name:base_technical_features.group_technical_features +msgid "Technical Features (w/o debug mode)" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_technical_features +msgid "Technical features" +msgstr "" + +#. module: base_technical_features +#: code:addons/base_technical_features/models/res_users.py:48 +#, python-format +msgid "The user does not have access to technical features." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_res_users +msgid "Users" +msgstr "Usuarios" + +#. module: base_technical_features +#: model:ir.model.fields,help:base_technical_features.field_res_users_show_technical_features +msgid "" +"Whether to display the technical features field in the user preferences." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_basemodel_monkeypatch +msgid "basemodel.monkeypatch" +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_ir_ui_menu +msgid "ir.ui.menu" +msgstr "" diff --git a/base_technical_features/i18n/es_MX.po b/base_technical_features/i18n/es_MX.po new file mode 100644 index 0000000..99e4a6d --- /dev/null +++ b/base_technical_features/i18n/es_MX.po @@ -0,0 +1,75 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_technical_features +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: server-tools (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:45+0000\n" +"PO-Revision-Date: 2016-01-05 19:43+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Mexico) (http://www.transifex.com/oca/OCA-server-tools-9-0/language/es_MX/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_MX\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_display_name +msgid "Display Name" +msgstr "Nombre desplegado" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_id +msgid "ID" +msgstr "ID" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch___last_update +msgid "Last Modified on" +msgstr "Ultima modificacion realizada" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_show_technical_features +msgid "Show field Technical Features" +msgstr "" + +#. module: base_technical_features +#: model:res.groups,name:base_technical_features.group_technical_features +msgid "Technical Features (w/o debug mode)" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_technical_features +msgid "Technical features" +msgstr "" + +#. module: base_technical_features +#: code:addons/base_technical_features/models/res_users.py:48 +#, python-format +msgid "The user does not have access to technical features." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_res_users +msgid "Users" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,help:base_technical_features.field_res_users_show_technical_features +msgid "" +"Whether to display the technical features field in the user preferences." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_basemodel_monkeypatch +msgid "basemodel.monkeypatch" +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_ir_ui_menu +msgid "ir.ui.menu" +msgstr "" diff --git a/base_technical_features/i18n/es_PE.po b/base_technical_features/i18n/es_PE.po new file mode 100644 index 0000000..7b414f2 --- /dev/null +++ b/base_technical_features/i18n/es_PE.po @@ -0,0 +1,75 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_technical_features +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: server-tools (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:45+0000\n" +"PO-Revision-Date: 2016-01-05 19:43+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Peru) (http://www.transifex.com/oca/OCA-server-tools-9-0/language/es_PE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_PE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_display_name +msgid "Display Name" +msgstr "Nombre a Mostrar" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_id +msgid "ID" +msgstr "ID" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch___last_update +msgid "Last Modified on" +msgstr "Ultima Modificación en" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_show_technical_features +msgid "Show field Technical Features" +msgstr "" + +#. module: base_technical_features +#: model:res.groups,name:base_technical_features.group_technical_features +msgid "Technical Features (w/o debug mode)" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_technical_features +msgid "Technical features" +msgstr "" + +#. module: base_technical_features +#: code:addons/base_technical_features/models/res_users.py:48 +#, python-format +msgid "The user does not have access to technical features." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_res_users +msgid "Users" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,help:base_technical_features.field_res_users_show_technical_features +msgid "" +"Whether to display the technical features field in the user preferences." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_basemodel_monkeypatch +msgid "basemodel.monkeypatch" +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_ir_ui_menu +msgid "ir.ui.menu" +msgstr "" diff --git a/base_technical_features/i18n/es_PY.po b/base_technical_features/i18n/es_PY.po new file mode 100644 index 0000000..9068858 --- /dev/null +++ b/base_technical_features/i18n/es_PY.po @@ -0,0 +1,75 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_technical_features +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: server-tools (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-23 21:53+0000\n" +"PO-Revision-Date: 2016-01-05 19:43+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Paraguay) (http://www.transifex.com/oca/OCA-server-tools-9-0/language/es_PY/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_PY\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_display_name +msgid "Display Name" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_id +msgid "ID" +msgstr "ID" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch___last_update +msgid "Last Modified on" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_show_technical_features +msgid "Show field Technical Features" +msgstr "" + +#. module: base_technical_features +#: model:res.groups,name:base_technical_features.group_technical_features +msgid "Technical Features (w/o debug mode)" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_technical_features +msgid "Technical features" +msgstr "" + +#. module: base_technical_features +#: code:addons/base_technical_features/models/res_users.py:48 +#, python-format +msgid "The user does not have access to technical features." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_res_users +msgid "Users" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,help:base_technical_features.field_res_users_show_technical_features +msgid "" +"Whether to display the technical features field in the user preferences." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_basemodel_monkeypatch +msgid "basemodel.monkeypatch" +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_ir_ui_menu +msgid "ir.ui.menu" +msgstr "" diff --git a/base_technical_features/i18n/es_VE.po b/base_technical_features/i18n/es_VE.po new file mode 100644 index 0000000..4271619 --- /dev/null +++ b/base_technical_features/i18n/es_VE.po @@ -0,0 +1,75 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_technical_features +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: server-tools (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:45+0000\n" +"PO-Revision-Date: 2016-01-05 19:43+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Venezuela) (http://www.transifex.com/oca/OCA-server-tools-9-0/language/es_VE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_VE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_display_name +msgid "Display Name" +msgstr "Mostrar nombre" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_id +msgid "ID" +msgstr "ID" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch___last_update +msgid "Last Modified on" +msgstr "Modificada por última vez" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_show_technical_features +msgid "Show field Technical Features" +msgstr "" + +#. module: base_technical_features +#: model:res.groups,name:base_technical_features.group_technical_features +msgid "Technical Features (w/o debug mode)" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_technical_features +msgid "Technical features" +msgstr "" + +#. module: base_technical_features +#: code:addons/base_technical_features/models/res_users.py:48 +#, python-format +msgid "The user does not have access to technical features." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_res_users +msgid "Users" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,help:base_technical_features.field_res_users_show_technical_features +msgid "" +"Whether to display the technical features field in the user preferences." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_basemodel_monkeypatch +msgid "basemodel.monkeypatch" +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_ir_ui_menu +msgid "ir.ui.menu" +msgstr "" diff --git a/base_technical_features/i18n/et.po b/base_technical_features/i18n/et.po new file mode 100644 index 0000000..123da8d --- /dev/null +++ b/base_technical_features/i18n/et.po @@ -0,0 +1,75 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_technical_features +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: server-tools (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-23 21:53+0000\n" +"PO-Revision-Date: 2016-01-05 19:43+0000\n" +"Last-Translator: <>\n" +"Language-Team: Estonian (http://www.transifex.com/oca/OCA-server-tools-9-0/language/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: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_display_name +msgid "Display Name" +msgstr "Näidatav nimi" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_id +msgid "ID" +msgstr "ID" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch___last_update +msgid "Last Modified on" +msgstr "Viimati muudetud" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_show_technical_features +msgid "Show field Technical Features" +msgstr "" + +#. module: base_technical_features +#: model:res.groups,name:base_technical_features.group_technical_features +msgid "Technical Features (w/o debug mode)" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_technical_features +msgid "Technical features" +msgstr "" + +#. module: base_technical_features +#: code:addons/base_technical_features/models/res_users.py:48 +#, python-format +msgid "The user does not have access to technical features." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_res_users +msgid "Users" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,help:base_technical_features.field_res_users_show_technical_features +msgid "" +"Whether to display the technical features field in the user preferences." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_basemodel_monkeypatch +msgid "basemodel.monkeypatch" +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_ir_ui_menu +msgid "ir.ui.menu" +msgstr "" diff --git a/base_technical_features/i18n/eu.po b/base_technical_features/i18n/eu.po new file mode 100644 index 0000000..e67ebdb --- /dev/null +++ b/base_technical_features/i18n/eu.po @@ -0,0 +1,75 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_technical_features +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: server-tools (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:45+0000\n" +"PO-Revision-Date: 2016-01-05 19:43+0000\n" +"Last-Translator: <>\n" +"Language-Team: Basque (http://www.transifex.com/oca/OCA-server-tools-9-0/language/eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_display_name +msgid "Display Name" +msgstr "Izena erakutsi" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_id +msgid "ID" +msgstr "ID" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch___last_update +msgid "Last Modified on" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_show_technical_features +msgid "Show field Technical Features" +msgstr "" + +#. module: base_technical_features +#: model:res.groups,name:base_technical_features.group_technical_features +msgid "Technical Features (w/o debug mode)" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_technical_features +msgid "Technical features" +msgstr "" + +#. module: base_technical_features +#: code:addons/base_technical_features/models/res_users.py:48 +#, python-format +msgid "The user does not have access to technical features." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_res_users +msgid "Users" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,help:base_technical_features.field_res_users_show_technical_features +msgid "" +"Whether to display the technical features field in the user preferences." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_basemodel_monkeypatch +msgid "basemodel.monkeypatch" +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_ir_ui_menu +msgid "ir.ui.menu" +msgstr "" diff --git a/base_technical_features/i18n/fa.po b/base_technical_features/i18n/fa.po new file mode 100644 index 0000000..988c4b7 --- /dev/null +++ b/base_technical_features/i18n/fa.po @@ -0,0 +1,75 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_technical_features +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: server-tools (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:45+0000\n" +"PO-Revision-Date: 2016-01-05 19:43+0000\n" +"Last-Translator: <>\n" +"Language-Team: Persian (http://www.transifex.com/oca/OCA-server-tools-9-0/language/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=1; plural=0;\n" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_display_name +msgid "Display Name" +msgstr "نام نمایشی" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_id +msgid "ID" +msgstr "شناسه" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch___last_update +msgid "Last Modified on" +msgstr "تاریخ آخرین به‌روزرسانی" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_show_technical_features +msgid "Show field Technical Features" +msgstr "" + +#. module: base_technical_features +#: model:res.groups,name:base_technical_features.group_technical_features +msgid "Technical Features (w/o debug mode)" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_technical_features +msgid "Technical features" +msgstr "" + +#. module: base_technical_features +#: code:addons/base_technical_features/models/res_users.py:48 +#, python-format +msgid "The user does not have access to technical features." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_res_users +msgid "Users" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,help:base_technical_features.field_res_users_show_technical_features +msgid "" +"Whether to display the technical features field in the user preferences." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_basemodel_monkeypatch +msgid "basemodel.monkeypatch" +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_ir_ui_menu +msgid "ir.ui.menu" +msgstr "" diff --git a/base_technical_features/i18n/fi.po b/base_technical_features/i18n/fi.po new file mode 100644 index 0000000..6540708 --- /dev/null +++ b/base_technical_features/i18n/fi.po @@ -0,0 +1,75 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_technical_features +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: server-tools (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:45+0000\n" +"PO-Revision-Date: 2016-01-05 19:43+0000\n" +"Last-Translator: <>\n" +"Language-Team: Finnish (http://www.transifex.com/oca/OCA-server-tools-9-0/language/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: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_display_name +msgid "Display Name" +msgstr "Nimi" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_id +msgid "ID" +msgstr "ID" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch___last_update +msgid "Last Modified on" +msgstr "Viimeksi muokattu" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_show_technical_features +msgid "Show field Technical Features" +msgstr "" + +#. module: base_technical_features +#: model:res.groups,name:base_technical_features.group_technical_features +msgid "Technical Features (w/o debug mode)" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_technical_features +msgid "Technical features" +msgstr "" + +#. module: base_technical_features +#: code:addons/base_technical_features/models/res_users.py:48 +#, python-format +msgid "The user does not have access to technical features." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_res_users +msgid "Users" +msgstr "Käyttäjät" + +#. module: base_technical_features +#: model:ir.model.fields,help:base_technical_features.field_res_users_show_technical_features +msgid "" +"Whether to display the technical features field in the user preferences." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_basemodel_monkeypatch +msgid "basemodel.monkeypatch" +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_ir_ui_menu +msgid "ir.ui.menu" +msgstr "" diff --git a/base_technical_features/i18n/fr.po b/base_technical_features/i18n/fr.po new file mode 100644 index 0000000..f1b940a --- /dev/null +++ b/base_technical_features/i18n/fr.po @@ -0,0 +1,75 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_technical_features +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: server-tools (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-02-27 01:37+0000\n" +"PO-Revision-Date: 2016-01-05 19:43+0000\n" +"Last-Translator: <>\n" +"Language-Team: French (http://www.transifex.com/oca/OCA-server-tools-9-0/language/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=2; plural=(n > 1);\n" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_display_name +msgid "Display Name" +msgstr "Nom d'affichage" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_id +msgid "ID" +msgstr "ID" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch___last_update +msgid "Last Modified on" +msgstr "Dernière modification le" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_show_technical_features +msgid "Show field Technical Features" +msgstr "" + +#. module: base_technical_features +#: model:res.groups,name:base_technical_features.group_technical_features +msgid "Technical Features (w/o debug mode)" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_technical_features +msgid "Technical features" +msgstr "" + +#. module: base_technical_features +#: code:addons/base_technical_features/models/res_users.py:48 +#, python-format +msgid "The user does not have access to technical features." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_res_users +msgid "Users" +msgstr "Utilisateurs" + +#. module: base_technical_features +#: model:ir.model.fields,help:base_technical_features.field_res_users_show_technical_features +msgid "" +"Whether to display the technical features field in the user preferences." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_basemodel_monkeypatch +msgid "basemodel.monkeypatch" +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_ir_ui_menu +msgid "ir.ui.menu" +msgstr "" diff --git a/base_technical_features/i18n/fr_CA.po b/base_technical_features/i18n/fr_CA.po new file mode 100644 index 0000000..4225320 --- /dev/null +++ b/base_technical_features/i18n/fr_CA.po @@ -0,0 +1,75 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_technical_features +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: server-tools (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-18 02:16+0000\n" +"PO-Revision-Date: 2016-01-05 19:43+0000\n" +"Last-Translator: <>\n" +"Language-Team: French (Canada) (http://www.transifex.com/oca/OCA-server-tools-9-0/language/fr_CA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr_CA\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_display_name +msgid "Display Name" +msgstr "Afficher le nom" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_id +msgid "ID" +msgstr "Identifiant" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch___last_update +msgid "Last Modified on" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_show_technical_features +msgid "Show field Technical Features" +msgstr "" + +#. module: base_technical_features +#: model:res.groups,name:base_technical_features.group_technical_features +msgid "Technical Features (w/o debug mode)" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_technical_features +msgid "Technical features" +msgstr "" + +#. module: base_technical_features +#: code:addons/base_technical_features/models/res_users.py:48 +#, python-format +msgid "The user does not have access to technical features." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_res_users +msgid "Users" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,help:base_technical_features.field_res_users_show_technical_features +msgid "" +"Whether to display the technical features field in the user preferences." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_basemodel_monkeypatch +msgid "basemodel.monkeypatch" +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_ir_ui_menu +msgid "ir.ui.menu" +msgstr "" diff --git a/base_technical_features/i18n/fr_CH.po b/base_technical_features/i18n/fr_CH.po new file mode 100644 index 0000000..619af78 --- /dev/null +++ b/base_technical_features/i18n/fr_CH.po @@ -0,0 +1,76 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_technical_features +# +# Translators: +# leemannd , 2016 +msgid "" +msgstr "" +"Project-Id-Version: server-tools (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-03 04:11+0000\n" +"PO-Revision-Date: 2016-12-01 10:10+0000\n" +"Last-Translator: leemannd \n" +"Language-Team: French (Switzerland) (http://www.transifex.com/oca/OCA-server-tools-9-0/language/fr_CH/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr_CH\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_display_name +msgid "Display Name" +msgstr "Nom affiché" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_id +msgid "ID" +msgstr "ID" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch___last_update +msgid "Last Modified on" +msgstr "Dernière modification le" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_show_technical_features +msgid "Show field Technical Features" +msgstr "" + +#. module: base_technical_features +#: model:res.groups,name:base_technical_features.group_technical_features +msgid "Technical Features (w/o debug mode)" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_technical_features +msgid "Technical features" +msgstr "" + +#. module: base_technical_features +#: code:addons/base_technical_features/models/res_users.py:48 +#, python-format +msgid "The user does not have access to technical features." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_res_users +msgid "Users" +msgstr "Utilisateurs" + +#. module: base_technical_features +#: model:ir.model.fields,help:base_technical_features.field_res_users_show_technical_features +msgid "" +"Whether to display the technical features field in the user preferences." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_basemodel_monkeypatch +msgid "basemodel.monkeypatch" +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_ir_ui_menu +msgid "ir.ui.menu" +msgstr "" diff --git a/base_technical_features/i18n/gl.po b/base_technical_features/i18n/gl.po new file mode 100644 index 0000000..c2acb78 --- /dev/null +++ b/base_technical_features/i18n/gl.po @@ -0,0 +1,75 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_technical_features +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: server-tools (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:45+0000\n" +"PO-Revision-Date: 2016-01-05 19:43+0000\n" +"Last-Translator: <>\n" +"Language-Team: Galician (http://www.transifex.com/oca/OCA-server-tools-9-0/language/gl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: gl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_display_name +msgid "Display Name" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_id +msgid "ID" +msgstr "ID" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch___last_update +msgid "Last Modified on" +msgstr "Última modificación" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_show_technical_features +msgid "Show field Technical Features" +msgstr "" + +#. module: base_technical_features +#: model:res.groups,name:base_technical_features.group_technical_features +msgid "Technical Features (w/o debug mode)" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_technical_features +msgid "Technical features" +msgstr "" + +#. module: base_technical_features +#: code:addons/base_technical_features/models/res_users.py:48 +#, python-format +msgid "The user does not have access to technical features." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_res_users +msgid "Users" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,help:base_technical_features.field_res_users_show_technical_features +msgid "" +"Whether to display the technical features field in the user preferences." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_basemodel_monkeypatch +msgid "basemodel.monkeypatch" +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_ir_ui_menu +msgid "ir.ui.menu" +msgstr "" diff --git a/base_technical_features/i18n/gl_ES.po b/base_technical_features/i18n/gl_ES.po new file mode 100644 index 0000000..4bc3e4d --- /dev/null +++ b/base_technical_features/i18n/gl_ES.po @@ -0,0 +1,75 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_technical_features +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: server-tools (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:45+0000\n" +"PO-Revision-Date: 2016-01-05 19:43+0000\n" +"Last-Translator: <>\n" +"Language-Team: Galician (Spain) (http://www.transifex.com/oca/OCA-server-tools-9-0/language/gl_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: gl_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_display_name +msgid "Display Name" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_id +msgid "ID" +msgstr "ID" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch___last_update +msgid "Last Modified on" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_show_technical_features +msgid "Show field Technical Features" +msgstr "" + +#. module: base_technical_features +#: model:res.groups,name:base_technical_features.group_technical_features +msgid "Technical Features (w/o debug mode)" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_technical_features +msgid "Technical features" +msgstr "" + +#. module: base_technical_features +#: code:addons/base_technical_features/models/res_users.py:48 +#, python-format +msgid "The user does not have access to technical features." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_res_users +msgid "Users" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,help:base_technical_features.field_res_users_show_technical_features +msgid "" +"Whether to display the technical features field in the user preferences." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_basemodel_monkeypatch +msgid "basemodel.monkeypatch" +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_ir_ui_menu +msgid "ir.ui.menu" +msgstr "" diff --git a/base_technical_features/i18n/he.po b/base_technical_features/i18n/he.po new file mode 100644 index 0000000..8a610b2 --- /dev/null +++ b/base_technical_features/i18n/he.po @@ -0,0 +1,75 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_technical_features +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: server-tools (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:45+0000\n" +"PO-Revision-Date: 2016-01-05 19:43+0000\n" +"Last-Translator: <>\n" +"Language-Team: Hebrew (http://www.transifex.com/oca/OCA-server-tools-9-0/language/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=2; plural=(n != 1);\n" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_display_name +msgid "Display Name" +msgstr "השם המוצג" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_id +msgid "ID" +msgstr "מזהה" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch___last_update +msgid "Last Modified on" +msgstr "תאריך שינוי אחרון" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_show_technical_features +msgid "Show field Technical Features" +msgstr "" + +#. module: base_technical_features +#: model:res.groups,name:base_technical_features.group_technical_features +msgid "Technical Features (w/o debug mode)" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_technical_features +msgid "Technical features" +msgstr "" + +#. module: base_technical_features +#: code:addons/base_technical_features/models/res_users.py:48 +#, python-format +msgid "The user does not have access to technical features." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_res_users +msgid "Users" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,help:base_technical_features.field_res_users_show_technical_features +msgid "" +"Whether to display the technical features field in the user preferences." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_basemodel_monkeypatch +msgid "basemodel.monkeypatch" +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_ir_ui_menu +msgid "ir.ui.menu" +msgstr "" diff --git a/base_technical_features/i18n/hr.po b/base_technical_features/i18n/hr.po new file mode 100644 index 0000000..ce4953e --- /dev/null +++ b/base_technical_features/i18n/hr.po @@ -0,0 +1,76 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_technical_features +# +# Translators: +# Bole , 2016 +msgid "" +msgstr "" +"Project-Id-Version: server-tools (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-05-01 13:12+0000\n" +"PO-Revision-Date: 2016-05-06 13:09+0000\n" +"Last-Translator: Bole \n" +"Language-Team: Croatian (http://www.transifex.com/oca/OCA-server-tools-9-0/language/hr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hr\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_display_name +msgid "Display Name" +msgstr "Naziv " + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_id +msgid "ID" +msgstr "ID" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch___last_update +msgid "Last Modified on" +msgstr "Zadnje modificirano" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_show_technical_features +msgid "Show field Technical Features" +msgstr "Prikaži polje Tehničke značajke" + +#. module: base_technical_features +#: model:res.groups,name:base_technical_features.group_technical_features +msgid "Technical Features (w/o debug mode)" +msgstr "Tehničke značajke ( bez debug opcije)" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_technical_features +msgid "Technical features" +msgstr "Tehničke značajke" + +#. module: base_technical_features +#: code:addons/base_technical_features/models/res_users.py:48 +#, python-format +msgid "The user does not have access to technical features." +msgstr "Ovaj korisnik nema prava pristupa za Tehničke značajke" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_res_users +msgid "Users" +msgstr "Korisnici" + +#. module: base_technical_features +#: model:ir.model.fields,help:base_technical_features.field_res_users_show_technical_features +msgid "" +"Whether to display the technical features field in the user preferences." +msgstr "Prikaz polja tehničkih značajki u korisničkim postavkama." + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_basemodel_monkeypatch +msgid "basemodel.monkeypatch" +msgstr "basemodel.monkeypatch" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_ir_ui_menu +msgid "ir.ui.menu" +msgstr "ir.ui.menu" diff --git a/base_technical_features/i18n/hr_HR.po b/base_technical_features/i18n/hr_HR.po new file mode 100644 index 0000000..9614e53 --- /dev/null +++ b/base_technical_features/i18n/hr_HR.po @@ -0,0 +1,76 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_technical_features +# +# Translators: +# Bole , 2016 +msgid "" +msgstr "" +"Project-Id-Version: server-tools (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-06-09 12:31+0000\n" +"PO-Revision-Date: 2016-05-31 20:16+0000\n" +"Last-Translator: Bole \n" +"Language-Team: Croatian (Croatia) (http://www.transifex.com/oca/OCA-server-tools-9-0/language/hr_HR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hr_HR\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_display_name +msgid "Display Name" +msgstr "Naziv" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_id +msgid "ID" +msgstr "ID" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch___last_update +msgid "Last Modified on" +msgstr "Zadnje modificirano" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_show_technical_features +msgid "Show field Technical Features" +msgstr "Prikaži polje Tehničke značajke" + +#. module: base_technical_features +#: model:res.groups,name:base_technical_features.group_technical_features +msgid "Technical Features (w/o debug mode)" +msgstr "Tehničke značajke (bez debug načina)" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_technical_features +msgid "Technical features" +msgstr "Tehničke značajke" + +#. module: base_technical_features +#: code:addons/base_technical_features/models/res_users.py:48 +#, python-format +msgid "The user does not have access to technical features." +msgstr "Korisnik nema prava pristupa za tehničke značajke." + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_res_users +msgid "Users" +msgstr "Korisnici" + +#. module: base_technical_features +#: model:ir.model.fields,help:base_technical_features.field_res_users_show_technical_features +msgid "" +"Whether to display the technical features field in the user preferences." +msgstr "Pokazati polja tehničke značajke u postavkama korisnika." + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_basemodel_monkeypatch +msgid "basemodel.monkeypatch" +msgstr "basemodel.monkeypatch" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_ir_ui_menu +msgid "ir.ui.menu" +msgstr "ir.ui.menu" diff --git a/base_technical_features/i18n/hu.po b/base_technical_features/i18n/hu.po new file mode 100644 index 0000000..7b0e70b --- /dev/null +++ b/base_technical_features/i18n/hu.po @@ -0,0 +1,75 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_technical_features +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: server-tools (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-23 21:53+0000\n" +"PO-Revision-Date: 2016-01-05 19:43+0000\n" +"Last-Translator: <>\n" +"Language-Team: Hungarian (http://www.transifex.com/oca/OCA-server-tools-9-0/language/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: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_display_name +msgid "Display Name" +msgstr "Név megjelenítése" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_id +msgid "ID" +msgstr "ID" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch___last_update +msgid "Last Modified on" +msgstr "Utolsó frissítés dátuma" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_show_technical_features +msgid "Show field Technical Features" +msgstr "" + +#. module: base_technical_features +#: model:res.groups,name:base_technical_features.group_technical_features +msgid "Technical Features (w/o debug mode)" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_technical_features +msgid "Technical features" +msgstr "" + +#. module: base_technical_features +#: code:addons/base_technical_features/models/res_users.py:48 +#, python-format +msgid "The user does not have access to technical features." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_res_users +msgid "Users" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,help:base_technical_features.field_res_users_show_technical_features +msgid "" +"Whether to display the technical features field in the user preferences." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_basemodel_monkeypatch +msgid "basemodel.monkeypatch" +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_ir_ui_menu +msgid "ir.ui.menu" +msgstr "" diff --git a/base_technical_features/i18n/id.po b/base_technical_features/i18n/id.po new file mode 100644 index 0000000..0f4c19e --- /dev/null +++ b/base_technical_features/i18n/id.po @@ -0,0 +1,75 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_technical_features +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: server-tools (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-29 03:39+0000\n" +"PO-Revision-Date: 2016-01-05 19:43+0000\n" +"Last-Translator: <>\n" +"Language-Team: Indonesian (http://www.transifex.com/oca/OCA-server-tools-9-0/language/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: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_display_name +msgid "Display Name" +msgstr "Nama Tampilan" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_id +msgid "ID" +msgstr "ID" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch___last_update +msgid "Last Modified on" +msgstr "Terakhir Dimodifikasi pada" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_show_technical_features +msgid "Show field Technical Features" +msgstr "" + +#. module: base_technical_features +#: model:res.groups,name:base_technical_features.group_technical_features +msgid "Technical Features (w/o debug mode)" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_technical_features +msgid "Technical features" +msgstr "" + +#. module: base_technical_features +#: code:addons/base_technical_features/models/res_users.py:48 +#, python-format +msgid "The user does not have access to technical features." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_res_users +msgid "Users" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,help:base_technical_features.field_res_users_show_technical_features +msgid "" +"Whether to display the technical features field in the user preferences." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_basemodel_monkeypatch +msgid "basemodel.monkeypatch" +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_ir_ui_menu +msgid "ir.ui.menu" +msgstr "" diff --git a/base_technical_features/i18n/it.po b/base_technical_features/i18n/it.po new file mode 100644 index 0000000..b6e1271 --- /dev/null +++ b/base_technical_features/i18n/it.po @@ -0,0 +1,75 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_technical_features +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: server-tools (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-10 02:52+0000\n" +"PO-Revision-Date: 2016-01-05 19:43+0000\n" +"Last-Translator: <>\n" +"Language-Team: Italian (http://www.transifex.com/oca/OCA-server-tools-9-0/language/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=2; plural=(n != 1);\n" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_display_name +msgid "Display Name" +msgstr "Nome da visualizzare" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_id +msgid "ID" +msgstr "ID" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch___last_update +msgid "Last Modified on" +msgstr "Ultima modifica il" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_show_technical_features +msgid "Show field Technical Features" +msgstr "" + +#. module: base_technical_features +#: model:res.groups,name:base_technical_features.group_technical_features +msgid "Technical Features (w/o debug mode)" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_technical_features +msgid "Technical features" +msgstr "" + +#. module: base_technical_features +#: code:addons/base_technical_features/models/res_users.py:48 +#, python-format +msgid "The user does not have access to technical features." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_res_users +msgid "Users" +msgstr "Utenti" + +#. module: base_technical_features +#: model:ir.model.fields,help:base_technical_features.field_res_users_show_technical_features +msgid "" +"Whether to display the technical features field in the user preferences." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_basemodel_monkeypatch +msgid "basemodel.monkeypatch" +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_ir_ui_menu +msgid "ir.ui.menu" +msgstr "" diff --git a/base_technical_features/i18n/ja.po b/base_technical_features/i18n/ja.po new file mode 100644 index 0000000..d626f08 --- /dev/null +++ b/base_technical_features/i18n/ja.po @@ -0,0 +1,75 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_technical_features +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: server-tools (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:45+0000\n" +"PO-Revision-Date: 2016-01-05 19:43+0000\n" +"Last-Translator: <>\n" +"Language-Team: Japanese (http://www.transifex.com/oca/OCA-server-tools-9-0/language/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: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_display_name +msgid "Display Name" +msgstr "表示名" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_id +msgid "ID" +msgstr "ID" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch___last_update +msgid "Last Modified on" +msgstr "最終更新日" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_show_technical_features +msgid "Show field Technical Features" +msgstr "" + +#. module: base_technical_features +#: model:res.groups,name:base_technical_features.group_technical_features +msgid "Technical Features (w/o debug mode)" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_technical_features +msgid "Technical features" +msgstr "" + +#. module: base_technical_features +#: code:addons/base_technical_features/models/res_users.py:48 +#, python-format +msgid "The user does not have access to technical features." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_res_users +msgid "Users" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,help:base_technical_features.field_res_users_show_technical_features +msgid "" +"Whether to display the technical features field in the user preferences." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_basemodel_monkeypatch +msgid "basemodel.monkeypatch" +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_ir_ui_menu +msgid "ir.ui.menu" +msgstr "" diff --git a/base_technical_features/i18n/ko.po b/base_technical_features/i18n/ko.po new file mode 100644 index 0000000..8d02a89 --- /dev/null +++ b/base_technical_features/i18n/ko.po @@ -0,0 +1,75 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_technical_features +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: server-tools (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:45+0000\n" +"PO-Revision-Date: 2016-01-05 19:43+0000\n" +"Last-Translator: <>\n" +"Language-Team: Korean (http://www.transifex.com/oca/OCA-server-tools-9-0/language/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: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_display_name +msgid "Display Name" +msgstr "표시 이름" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_id +msgid "ID" +msgstr "ID" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch___last_update +msgid "Last Modified on" +msgstr "최근 수정" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_show_technical_features +msgid "Show field Technical Features" +msgstr "" + +#. module: base_technical_features +#: model:res.groups,name:base_technical_features.group_technical_features +msgid "Technical Features (w/o debug mode)" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_technical_features +msgid "Technical features" +msgstr "" + +#. module: base_technical_features +#: code:addons/base_technical_features/models/res_users.py:48 +#, python-format +msgid "The user does not have access to technical features." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_res_users +msgid "Users" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,help:base_technical_features.field_res_users_show_technical_features +msgid "" +"Whether to display the technical features field in the user preferences." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_basemodel_monkeypatch +msgid "basemodel.monkeypatch" +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_ir_ui_menu +msgid "ir.ui.menu" +msgstr "" diff --git a/base_technical_features/i18n/lt.po b/base_technical_features/i18n/lt.po new file mode 100644 index 0000000..57daffd --- /dev/null +++ b/base_technical_features/i18n/lt.po @@ -0,0 +1,75 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_technical_features +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: server-tools (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:45+0000\n" +"PO-Revision-Date: 2016-01-05 19:43+0000\n" +"Last-Translator: <>\n" +"Language-Team: Lithuanian (http://www.transifex.com/oca/OCA-server-tools-9-0/language/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=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_display_name +msgid "Display Name" +msgstr "Vaizduojamas pavadinimas" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_id +msgid "ID" +msgstr "ID" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch___last_update +msgid "Last Modified on" +msgstr "Paskutinį kartą keista" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_show_technical_features +msgid "Show field Technical Features" +msgstr "" + +#. module: base_technical_features +#: model:res.groups,name:base_technical_features.group_technical_features +msgid "Technical Features (w/o debug mode)" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_technical_features +msgid "Technical features" +msgstr "" + +#. module: base_technical_features +#: code:addons/base_technical_features/models/res_users.py:48 +#, python-format +msgid "The user does not have access to technical features." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_res_users +msgid "Users" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,help:base_technical_features.field_res_users_show_technical_features +msgid "" +"Whether to display the technical features field in the user preferences." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_basemodel_monkeypatch +msgid "basemodel.monkeypatch" +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_ir_ui_menu +msgid "ir.ui.menu" +msgstr "" diff --git a/base_technical_features/i18n/lt_LT.po b/base_technical_features/i18n/lt_LT.po new file mode 100644 index 0000000..2dab06e --- /dev/null +++ b/base_technical_features/i18n/lt_LT.po @@ -0,0 +1,75 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_technical_features +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: server-tools (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-18 02:16+0000\n" +"PO-Revision-Date: 2016-01-05 19:43+0000\n" +"Last-Translator: <>\n" +"Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/oca/OCA-server-tools-9-0/language/lt_LT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lt_LT\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_display_name +msgid "Display Name" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_id +msgid "ID" +msgstr "ID" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch___last_update +msgid "Last Modified on" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_show_technical_features +msgid "Show field Technical Features" +msgstr "" + +#. module: base_technical_features +#: model:res.groups,name:base_technical_features.group_technical_features +msgid "Technical Features (w/o debug mode)" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_technical_features +msgid "Technical features" +msgstr "" + +#. module: base_technical_features +#: code:addons/base_technical_features/models/res_users.py:48 +#, python-format +msgid "The user does not have access to technical features." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_res_users +msgid "Users" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,help:base_technical_features.field_res_users_show_technical_features +msgid "" +"Whether to display the technical features field in the user preferences." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_basemodel_monkeypatch +msgid "basemodel.monkeypatch" +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_ir_ui_menu +msgid "ir.ui.menu" +msgstr "" diff --git a/base_technical_features/i18n/lv.po b/base_technical_features/i18n/lv.po new file mode 100644 index 0000000..9dbbf4a --- /dev/null +++ b/base_technical_features/i18n/lv.po @@ -0,0 +1,75 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_technical_features +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: server-tools (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:45+0000\n" +"PO-Revision-Date: 2016-01-05 19:43+0000\n" +"Last-Translator: <>\n" +"Language-Team: Latvian (http://www.transifex.com/oca/OCA-server-tools-9-0/language/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: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_display_name +msgid "Display Name" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_id +msgid "ID" +msgstr "ID" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch___last_update +msgid "Last Modified on" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_show_technical_features +msgid "Show field Technical Features" +msgstr "" + +#. module: base_technical_features +#: model:res.groups,name:base_technical_features.group_technical_features +msgid "Technical Features (w/o debug mode)" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_technical_features +msgid "Technical features" +msgstr "" + +#. module: base_technical_features +#: code:addons/base_technical_features/models/res_users.py:48 +#, python-format +msgid "The user does not have access to technical features." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_res_users +msgid "Users" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,help:base_technical_features.field_res_users_show_technical_features +msgid "" +"Whether to display the technical features field in the user preferences." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_basemodel_monkeypatch +msgid "basemodel.monkeypatch" +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_ir_ui_menu +msgid "ir.ui.menu" +msgstr "" diff --git a/base_technical_features/i18n/mk.po b/base_technical_features/i18n/mk.po new file mode 100644 index 0000000..4627a18 --- /dev/null +++ b/base_technical_features/i18n/mk.po @@ -0,0 +1,75 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_technical_features +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: server-tools (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:45+0000\n" +"PO-Revision-Date: 2016-01-05 19:43+0000\n" +"Last-Translator: <>\n" +"Language-Team: Macedonian (http://www.transifex.com/oca/OCA-server-tools-9-0/language/mk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: mk\n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_display_name +msgid "Display Name" +msgstr "Прикажи име" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_id +msgid "ID" +msgstr "ID" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch___last_update +msgid "Last Modified on" +msgstr "Последна промена на" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_show_technical_features +msgid "Show field Technical Features" +msgstr "" + +#. module: base_technical_features +#: model:res.groups,name:base_technical_features.group_technical_features +msgid "Technical Features (w/o debug mode)" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_technical_features +msgid "Technical features" +msgstr "" + +#. module: base_technical_features +#: code:addons/base_technical_features/models/res_users.py:48 +#, python-format +msgid "The user does not have access to technical features." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_res_users +msgid "Users" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,help:base_technical_features.field_res_users_show_technical_features +msgid "" +"Whether to display the technical features field in the user preferences." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_basemodel_monkeypatch +msgid "basemodel.monkeypatch" +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_ir_ui_menu +msgid "ir.ui.menu" +msgstr "" diff --git a/base_technical_features/i18n/mn.po b/base_technical_features/i18n/mn.po new file mode 100644 index 0000000..16d68c4 --- /dev/null +++ b/base_technical_features/i18n/mn.po @@ -0,0 +1,75 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_technical_features +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: server-tools (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:45+0000\n" +"PO-Revision-Date: 2016-01-05 19:43+0000\n" +"Last-Translator: <>\n" +"Language-Team: Mongolian (http://www.transifex.com/oca/OCA-server-tools-9-0/language/mn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: mn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_display_name +msgid "Display Name" +msgstr "Дэлгэцийн Нэр" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_id +msgid "ID" +msgstr "ID" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch___last_update +msgid "Last Modified on" +msgstr "Сүүлийн засвар хийсэн огноо" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_show_technical_features +msgid "Show field Technical Features" +msgstr "" + +#. module: base_technical_features +#: model:res.groups,name:base_technical_features.group_technical_features +msgid "Technical Features (w/o debug mode)" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_technical_features +msgid "Technical features" +msgstr "" + +#. module: base_technical_features +#: code:addons/base_technical_features/models/res_users.py:48 +#, python-format +msgid "The user does not have access to technical features." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_res_users +msgid "Users" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,help:base_technical_features.field_res_users_show_technical_features +msgid "" +"Whether to display the technical features field in the user preferences." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_basemodel_monkeypatch +msgid "basemodel.monkeypatch" +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_ir_ui_menu +msgid "ir.ui.menu" +msgstr "" diff --git a/base_technical_features/i18n/nb.po b/base_technical_features/i18n/nb.po new file mode 100644 index 0000000..14802e2 --- /dev/null +++ b/base_technical_features/i18n/nb.po @@ -0,0 +1,75 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_technical_features +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: server-tools (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:45+0000\n" +"PO-Revision-Date: 2016-01-05 19:43+0000\n" +"Last-Translator: <>\n" +"Language-Team: Norwegian Bokmål (http://www.transifex.com/oca/OCA-server-tools-9-0/language/nb/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nb\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_display_name +msgid "Display Name" +msgstr "Visnings navn" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_id +msgid "ID" +msgstr "ID" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch___last_update +msgid "Last Modified on" +msgstr "Sist oppdatert " + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_show_technical_features +msgid "Show field Technical Features" +msgstr "" + +#. module: base_technical_features +#: model:res.groups,name:base_technical_features.group_technical_features +msgid "Technical Features (w/o debug mode)" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_technical_features +msgid "Technical features" +msgstr "" + +#. module: base_technical_features +#: code:addons/base_technical_features/models/res_users.py:48 +#, python-format +msgid "The user does not have access to technical features." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_res_users +msgid "Users" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,help:base_technical_features.field_res_users_show_technical_features +msgid "" +"Whether to display the technical features field in the user preferences." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_basemodel_monkeypatch +msgid "basemodel.monkeypatch" +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_ir_ui_menu +msgid "ir.ui.menu" +msgstr "" diff --git a/base_technical_features/i18n/nb_NO.po b/base_technical_features/i18n/nb_NO.po new file mode 100644 index 0000000..0153831 --- /dev/null +++ b/base_technical_features/i18n/nb_NO.po @@ -0,0 +1,75 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_technical_features +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: server-tools (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-29 03:39+0000\n" +"PO-Revision-Date: 2016-01-05 19:43+0000\n" +"Last-Translator: <>\n" +"Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/oca/OCA-server-tools-9-0/language/nb_NO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nb_NO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_display_name +msgid "Display Name" +msgstr "Vis navn" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_id +msgid "ID" +msgstr "ID" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch___last_update +msgid "Last Modified on" +msgstr "Sist endret den" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_show_technical_features +msgid "Show field Technical Features" +msgstr "" + +#. module: base_technical_features +#: model:res.groups,name:base_technical_features.group_technical_features +msgid "Technical Features (w/o debug mode)" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_technical_features +msgid "Technical features" +msgstr "" + +#. module: base_technical_features +#: code:addons/base_technical_features/models/res_users.py:48 +#, python-format +msgid "The user does not have access to technical features." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_res_users +msgid "Users" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,help:base_technical_features.field_res_users_show_technical_features +msgid "" +"Whether to display the technical features field in the user preferences." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_basemodel_monkeypatch +msgid "basemodel.monkeypatch" +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_ir_ui_menu +msgid "ir.ui.menu" +msgstr "" diff --git a/base_technical_features/i18n/nl.po b/base_technical_features/i18n/nl.po new file mode 100644 index 0000000..fdcea04 --- /dev/null +++ b/base_technical_features/i18n/nl.po @@ -0,0 +1,88 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_technical_features +# +# Translators: +# Ahmet Altinisik , 2016 +# Ahmet Altinisik , 2016 +# Carles Antoli , 2016 +# Carles Antoli , 2016 +# Christophe CHAUVET , 2015 +# Christophe CHAUVET , 2015 +# FIRST AUTHOR , 2012 +# Matjaž Mozetič , 2015 +# Paolo Valier, 2016 +# Pedro Castro Silva , 2015 +# Pedro M. Baeza , 2015 +# Rudolf Schnapka , 2016 +# SaFi J. , 2015 +msgid "" +msgstr "" +"Project-Id-Version: server-tools (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-14 04:21+0000\n" +"PO-Revision-Date: 2017-01-13 09:29+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Dutch (http://www.transifex.com/oca/OCA-server-tools-9-0/language/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: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_display_name +msgid "Display Name" +msgstr "Te tonen naam" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_id +msgid "ID" +msgstr "ID" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch___last_update +msgid "Last Modified on" +msgstr "Laatst bijgewerkt op" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_show_technical_features +msgid "Show field Technical Features" +msgstr "Toon veld Technische mogelijkheden" + +#. module: base_technical_features +#: model:res.groups,name:base_technical_features.group_technical_features +msgid "Technical Features (w/o debug mode)" +msgstr "Technische mogelijkheden (zonder debugmodus)" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_technical_features +msgid "Technical features" +msgstr "Technische mogelijkheden" + +#. module: base_technical_features +#: code:addons/base_technical_features/models/res_users.py:48 +#, python-format +msgid "The user does not have access to technical features." +msgstr "De gebruiker heeft geen toegang tot technische mogelijkheden." + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_res_users +msgid "Users" +msgstr "Gebruikers" + +#. module: base_technical_features +#: model:ir.model.fields,help:base_technical_features.field_res_users_show_technical_features +msgid "" +"Whether to display the technical features field in the user preferences." +msgstr "Geeft aan of het veld Technische mogelijkheden wordt getoond in de voorkeuren van de gebruiker." + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_basemodel_monkeypatch +msgid "basemodel.monkeypatch" +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_ir_ui_menu +msgid "ir.ui.menu" +msgstr "" diff --git a/base_technical_features/i18n/nl_BE.po b/base_technical_features/i18n/nl_BE.po new file mode 100644 index 0000000..0a3242f --- /dev/null +++ b/base_technical_features/i18n/nl_BE.po @@ -0,0 +1,75 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_technical_features +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: server-tools (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:45+0000\n" +"PO-Revision-Date: 2016-01-05 19:43+0000\n" +"Last-Translator: <>\n" +"Language-Team: Dutch (Belgium) (http://www.transifex.com/oca/OCA-server-tools-9-0/language/nl_BE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl_BE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_display_name +msgid "Display Name" +msgstr "Schermnaam" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_id +msgid "ID" +msgstr "ID" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch___last_update +msgid "Last Modified on" +msgstr "Laatst Aangepast op" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_show_technical_features +msgid "Show field Technical Features" +msgstr "" + +#. module: base_technical_features +#: model:res.groups,name:base_technical_features.group_technical_features +msgid "Technical Features (w/o debug mode)" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_technical_features +msgid "Technical features" +msgstr "" + +#. module: base_technical_features +#: code:addons/base_technical_features/models/res_users.py:48 +#, python-format +msgid "The user does not have access to technical features." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_res_users +msgid "Users" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,help:base_technical_features.field_res_users_show_technical_features +msgid "" +"Whether to display the technical features field in the user preferences." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_basemodel_monkeypatch +msgid "basemodel.monkeypatch" +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_ir_ui_menu +msgid "ir.ui.menu" +msgstr "" diff --git a/base_technical_features/i18n/pl.po b/base_technical_features/i18n/pl.po new file mode 100644 index 0000000..997e6b4 --- /dev/null +++ b/base_technical_features/i18n/pl.po @@ -0,0 +1,75 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_technical_features +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: server-tools (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-23 21:53+0000\n" +"PO-Revision-Date: 2016-01-05 19:43+0000\n" +"Last-Translator: <>\n" +"Language-Team: Polish (http://www.transifex.com/oca/OCA-server-tools-9-0/language/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=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_display_name +msgid "Display Name" +msgstr "Wyświetlana nazwa " + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_id +msgid "ID" +msgstr "ID" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch___last_update +msgid "Last Modified on" +msgstr "Ostatnio modyfikowano" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_show_technical_features +msgid "Show field Technical Features" +msgstr "" + +#. module: base_technical_features +#: model:res.groups,name:base_technical_features.group_technical_features +msgid "Technical Features (w/o debug mode)" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_technical_features +msgid "Technical features" +msgstr "" + +#. module: base_technical_features +#: code:addons/base_technical_features/models/res_users.py:48 +#, python-format +msgid "The user does not have access to technical features." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_res_users +msgid "Users" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,help:base_technical_features.field_res_users_show_technical_features +msgid "" +"Whether to display the technical features field in the user preferences." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_basemodel_monkeypatch +msgid "basemodel.monkeypatch" +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_ir_ui_menu +msgid "ir.ui.menu" +msgstr "" diff --git a/base_technical_features/i18n/pt.po b/base_technical_features/i18n/pt.po new file mode 100644 index 0000000..97d8e07 --- /dev/null +++ b/base_technical_features/i18n/pt.po @@ -0,0 +1,75 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_technical_features +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: server-tools (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:45+0000\n" +"PO-Revision-Date: 2016-01-05 19:43+0000\n" +"Last-Translator: <>\n" +"Language-Team: Portuguese (http://www.transifex.com/oca/OCA-server-tools-9-0/language/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=2; plural=(n != 1);\n" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_display_name +msgid "Display Name" +msgstr "Nome" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_id +msgid "ID" +msgstr "ID" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch___last_update +msgid "Last Modified on" +msgstr "Modificado a última vez por" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_show_technical_features +msgid "Show field Technical Features" +msgstr "" + +#. module: base_technical_features +#: model:res.groups,name:base_technical_features.group_technical_features +msgid "Technical Features (w/o debug mode)" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_technical_features +msgid "Technical features" +msgstr "" + +#. module: base_technical_features +#: code:addons/base_technical_features/models/res_users.py:48 +#, python-format +msgid "The user does not have access to technical features." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_res_users +msgid "Users" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,help:base_technical_features.field_res_users_show_technical_features +msgid "" +"Whether to display the technical features field in the user preferences." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_basemodel_monkeypatch +msgid "basemodel.monkeypatch" +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_ir_ui_menu +msgid "ir.ui.menu" +msgstr "" diff --git a/base_technical_features/i18n/pt_BR.po b/base_technical_features/i18n/pt_BR.po new file mode 100644 index 0000000..c8eb962 --- /dev/null +++ b/base_technical_features/i18n/pt_BR.po @@ -0,0 +1,84 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_technical_features +# +# Translators: +# Ahmet Altınışık , 2015 +# Antonio Trueba, 2016 +# FIRST AUTHOR , 2012,2014 +# Gustavo Lepri , 2015 +# Hotellook, 2014 +# Jarmo Kortetjärvi , 2016 +# Matjaž Mozetič , 2016 +# Paolo Valier, 2016 +# Rudolf Schnapka , 2015-2016 +msgid "" +msgstr "" +"Project-Id-Version: server-tools (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-07-09 10:34+0000\n" +"PO-Revision-Date: 2016-01-05 19:43+0000\n" +"Last-Translator: <>\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/oca/OCA-server-tools-9-0/language/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=2; plural=(n > 1);\n" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_display_name +msgid "Display Name" +msgstr "Nome para Mostrar" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_id +msgid "ID" +msgstr "Identificação" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch___last_update +msgid "Last Modified on" +msgstr "Última atualização em" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_show_technical_features +msgid "Show field Technical Features" +msgstr "" + +#. module: base_technical_features +#: model:res.groups,name:base_technical_features.group_technical_features +msgid "Technical Features (w/o debug mode)" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_technical_features +msgid "Technical features" +msgstr "" + +#. module: base_technical_features +#: code:addons/base_technical_features/models/res_users.py:48 +#, python-format +msgid "The user does not have access to technical features." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_res_users +msgid "Users" +msgstr "Usuários" + +#. module: base_technical_features +#: model:ir.model.fields,help:base_technical_features.field_res_users_show_technical_features +msgid "" +"Whether to display the technical features field in the user preferences." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_basemodel_monkeypatch +msgid "basemodel.monkeypatch" +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_ir_ui_menu +msgid "ir.ui.menu" +msgstr "" diff --git a/base_technical_features/i18n/pt_PT.po b/base_technical_features/i18n/pt_PT.po new file mode 100644 index 0000000..3dd4caf --- /dev/null +++ b/base_technical_features/i18n/pt_PT.po @@ -0,0 +1,75 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_technical_features +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: server-tools (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:45+0000\n" +"PO-Revision-Date: 2016-01-05 19:43+0000\n" +"Last-Translator: <>\n" +"Language-Team: Portuguese (Portugal) (http://www.transifex.com/oca/OCA-server-tools-9-0/language/pt_PT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt_PT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_display_name +msgid "Display Name" +msgstr "Nome a Apresentar" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_id +msgid "ID" +msgstr "ID" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch___last_update +msgid "Last Modified on" +msgstr "Última Modificação Em" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_show_technical_features +msgid "Show field Technical Features" +msgstr "" + +#. module: base_technical_features +#: model:res.groups,name:base_technical_features.group_technical_features +msgid "Technical Features (w/o debug mode)" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_technical_features +msgid "Technical features" +msgstr "" + +#. module: base_technical_features +#: code:addons/base_technical_features/models/res_users.py:48 +#, python-format +msgid "The user does not have access to technical features." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_res_users +msgid "Users" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,help:base_technical_features.field_res_users_show_technical_features +msgid "" +"Whether to display the technical features field in the user preferences." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_basemodel_monkeypatch +msgid "basemodel.monkeypatch" +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_ir_ui_menu +msgid "ir.ui.menu" +msgstr "" diff --git a/base_technical_features/i18n/ro.po b/base_technical_features/i18n/ro.po new file mode 100644 index 0000000..665dfb0 --- /dev/null +++ b/base_technical_features/i18n/ro.po @@ -0,0 +1,75 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_technical_features +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: server-tools (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-29 03:39+0000\n" +"PO-Revision-Date: 2016-01-05 19:43+0000\n" +"Last-Translator: <>\n" +"Language-Team: Romanian (http://www.transifex.com/oca/OCA-server-tools-9-0/language/ro/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ro\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_display_name +msgid "Display Name" +msgstr "Nume Afişat" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_id +msgid "ID" +msgstr "ID" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch___last_update +msgid "Last Modified on" +msgstr "Ultima actualizare în" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_show_technical_features +msgid "Show field Technical Features" +msgstr "" + +#. module: base_technical_features +#: model:res.groups,name:base_technical_features.group_technical_features +msgid "Technical Features (w/o debug mode)" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_technical_features +msgid "Technical features" +msgstr "" + +#. module: base_technical_features +#: code:addons/base_technical_features/models/res_users.py:48 +#, python-format +msgid "The user does not have access to technical features." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_res_users +msgid "Users" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,help:base_technical_features.field_res_users_show_technical_features +msgid "" +"Whether to display the technical features field in the user preferences." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_basemodel_monkeypatch +msgid "basemodel.monkeypatch" +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_ir_ui_menu +msgid "ir.ui.menu" +msgstr "" diff --git a/base_technical_features/i18n/ru.po b/base_technical_features/i18n/ru.po new file mode 100644 index 0000000..8233604 --- /dev/null +++ b/base_technical_features/i18n/ru.po @@ -0,0 +1,75 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_technical_features +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: server-tools (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-29 03:39+0000\n" +"PO-Revision-Date: 2016-01-05 19:43+0000\n" +"Last-Translator: <>\n" +"Language-Team: Russian (http://www.transifex.com/oca/OCA-server-tools-9-0/language/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: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_display_name +msgid "Display Name" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_id +msgid "ID" +msgstr "ID" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch___last_update +msgid "Last Modified on" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_show_technical_features +msgid "Show field Technical Features" +msgstr "" + +#. module: base_technical_features +#: model:res.groups,name:base_technical_features.group_technical_features +msgid "Technical Features (w/o debug mode)" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_technical_features +msgid "Technical features" +msgstr "" + +#. module: base_technical_features +#: code:addons/base_technical_features/models/res_users.py:48 +#, python-format +msgid "The user does not have access to technical features." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_res_users +msgid "Users" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,help:base_technical_features.field_res_users_show_technical_features +msgid "" +"Whether to display the technical features field in the user preferences." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_basemodel_monkeypatch +msgid "basemodel.monkeypatch" +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_ir_ui_menu +msgid "ir.ui.menu" +msgstr "" diff --git a/base_technical_features/i18n/sk.po b/base_technical_features/i18n/sk.po new file mode 100644 index 0000000..ff31145 --- /dev/null +++ b/base_technical_features/i18n/sk.po @@ -0,0 +1,75 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_technical_features +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: server-tools (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:45+0000\n" +"PO-Revision-Date: 2016-01-05 19:43+0000\n" +"Last-Translator: <>\n" +"Language-Team: Slovak (http://www.transifex.com/oca/OCA-server-tools-9-0/language/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=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_display_name +msgid "Display Name" +msgstr "Zobraziť meno" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_id +msgid "ID" +msgstr "ID" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch___last_update +msgid "Last Modified on" +msgstr "Posledná modifikácia" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_show_technical_features +msgid "Show field Technical Features" +msgstr "" + +#. module: base_technical_features +#: model:res.groups,name:base_technical_features.group_technical_features +msgid "Technical Features (w/o debug mode)" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_technical_features +msgid "Technical features" +msgstr "" + +#. module: base_technical_features +#: code:addons/base_technical_features/models/res_users.py:48 +#, python-format +msgid "The user does not have access to technical features." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_res_users +msgid "Users" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,help:base_technical_features.field_res_users_show_technical_features +msgid "" +"Whether to display the technical features field in the user preferences." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_basemodel_monkeypatch +msgid "basemodel.monkeypatch" +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_ir_ui_menu +msgid "ir.ui.menu" +msgstr "" diff --git a/base_technical_features/i18n/sl.po b/base_technical_features/i18n/sl.po new file mode 100644 index 0000000..863807c --- /dev/null +++ b/base_technical_features/i18n/sl.po @@ -0,0 +1,76 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_technical_features +# +# Translators: +# Matjaž Mozetič , 2016 +msgid "" +msgstr "" +"Project-Id-Version: server-tools (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-01-06 09:17+0000\n" +"PO-Revision-Date: 2016-01-06 10:15+0000\n" +"Last-Translator: Matjaž Mozetič \n" +"Language-Team: Slovenian (http://www.transifex.com/oca/OCA-server-tools-9-0/language/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: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_display_name +msgid "Display Name" +msgstr "Prikazani naziv" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_id +msgid "ID" +msgstr "ID" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch___last_update +msgid "Last Modified on" +msgstr "Zadnjič spremenjeno" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_show_technical_features +msgid "Show field Technical Features" +msgstr "Prikaži polje \"Tehnične funkcije\"" + +#. module: base_technical_features +#: model:res.groups,name:base_technical_features.group_technical_features +msgid "Technical Features (w/o debug mode)" +msgstr "Tehnične funkcije (brez razhroščevalnika)" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_technical_features +msgid "Technical features" +msgstr "Tehnične funkcije" + +#. module: base_technical_features +#: code:addons/base_technical_features/models/res_users.py:48 +#, python-format +msgid "The user does not have access to technical features." +msgstr "Uporabnik nima dostopa do tehničnih finkcij" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_res_users +msgid "Users" +msgstr "Uporabniki" + +#. module: base_technical_features +#: model:ir.model.fields,help:base_technical_features.field_res_users_show_technical_features +msgid "" +"Whether to display the technical features field in the user preferences." +msgstr "Ali naj se prikaže polje tehnične funkcije v uporabniških nastavitvah." + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_basemodel_monkeypatch +msgid "basemodel.monkeypatch" +msgstr "basemodel.monkeypatch" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_ir_ui_menu +msgid "ir.ui.menu" +msgstr "ir.ui.menu" diff --git a/base_technical_features/i18n/sr.po b/base_technical_features/i18n/sr.po new file mode 100644 index 0000000..725d6e1 --- /dev/null +++ b/base_technical_features/i18n/sr.po @@ -0,0 +1,75 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_technical_features +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: server-tools (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-29 03:39+0000\n" +"PO-Revision-Date: 2016-01-05 19:43+0000\n" +"Last-Translator: <>\n" +"Language-Team: Serbian (http://www.transifex.com/oca/OCA-server-tools-9-0/language/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: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_display_name +msgid "Display Name" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_id +msgid "ID" +msgstr "ID" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch___last_update +msgid "Last Modified on" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_show_technical_features +msgid "Show field Technical Features" +msgstr "" + +#. module: base_technical_features +#: model:res.groups,name:base_technical_features.group_technical_features +msgid "Technical Features (w/o debug mode)" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_technical_features +msgid "Technical features" +msgstr "" + +#. module: base_technical_features +#: code:addons/base_technical_features/models/res_users.py:48 +#, python-format +msgid "The user does not have access to technical features." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_res_users +msgid "Users" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,help:base_technical_features.field_res_users_show_technical_features +msgid "" +"Whether to display the technical features field in the user preferences." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_basemodel_monkeypatch +msgid "basemodel.monkeypatch" +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_ir_ui_menu +msgid "ir.ui.menu" +msgstr "" diff --git a/base_technical_features/i18n/sr@latin.po b/base_technical_features/i18n/sr@latin.po new file mode 100644 index 0000000..5104c0c --- /dev/null +++ b/base_technical_features/i18n/sr@latin.po @@ -0,0 +1,75 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_technical_features +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: server-tools (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:45+0000\n" +"PO-Revision-Date: 2016-01-05 19:43+0000\n" +"Last-Translator: <>\n" +"Language-Team: Serbian (Latin) (http://www.transifex.com/oca/OCA-server-tools-9-0/language/sr@latin/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sr@latin\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_display_name +msgid "Display Name" +msgstr "Ime za prikaz" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_id +msgid "ID" +msgstr "ID" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch___last_update +msgid "Last Modified on" +msgstr "Zadnja izmjena" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_show_technical_features +msgid "Show field Technical Features" +msgstr "" + +#. module: base_technical_features +#: model:res.groups,name:base_technical_features.group_technical_features +msgid "Technical Features (w/o debug mode)" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_technical_features +msgid "Technical features" +msgstr "" + +#. module: base_technical_features +#: code:addons/base_technical_features/models/res_users.py:48 +#, python-format +msgid "The user does not have access to technical features." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_res_users +msgid "Users" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,help:base_technical_features.field_res_users_show_technical_features +msgid "" +"Whether to display the technical features field in the user preferences." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_basemodel_monkeypatch +msgid "basemodel.monkeypatch" +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_ir_ui_menu +msgid "ir.ui.menu" +msgstr "" diff --git a/base_technical_features/i18n/sv.po b/base_technical_features/i18n/sv.po new file mode 100644 index 0000000..f0d71d7 --- /dev/null +++ b/base_technical_features/i18n/sv.po @@ -0,0 +1,75 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_technical_features +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: server-tools (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:45+0000\n" +"PO-Revision-Date: 2016-01-05 19:43+0000\n" +"Last-Translator: <>\n" +"Language-Team: Swedish (http://www.transifex.com/oca/OCA-server-tools-9-0/language/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: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_display_name +msgid "Display Name" +msgstr "Visa namn" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_id +msgid "ID" +msgstr "ID" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch___last_update +msgid "Last Modified on" +msgstr "Senast redigerad" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_show_technical_features +msgid "Show field Technical Features" +msgstr "" + +#. module: base_technical_features +#: model:res.groups,name:base_technical_features.group_technical_features +msgid "Technical Features (w/o debug mode)" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_technical_features +msgid "Technical features" +msgstr "" + +#. module: base_technical_features +#: code:addons/base_technical_features/models/res_users.py:48 +#, python-format +msgid "The user does not have access to technical features." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_res_users +msgid "Users" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,help:base_technical_features.field_res_users_show_technical_features +msgid "" +"Whether to display the technical features field in the user preferences." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_basemodel_monkeypatch +msgid "basemodel.monkeypatch" +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_ir_ui_menu +msgid "ir.ui.menu" +msgstr "" diff --git a/base_technical_features/i18n/th.po b/base_technical_features/i18n/th.po new file mode 100644 index 0000000..4b83819 --- /dev/null +++ b/base_technical_features/i18n/th.po @@ -0,0 +1,75 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_technical_features +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: server-tools (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:45+0000\n" +"PO-Revision-Date: 2016-01-05 19:43+0000\n" +"Last-Translator: <>\n" +"Language-Team: Thai (http://www.transifex.com/oca/OCA-server-tools-9-0/language/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: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_display_name +msgid "Display Name" +msgstr "ชื่อที่ใช้แสดง" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_id +msgid "ID" +msgstr "รหัส" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch___last_update +msgid "Last Modified on" +msgstr "แก้ไขครั้งสุดท้ายเมื่อ" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_show_technical_features +msgid "Show field Technical Features" +msgstr "" + +#. module: base_technical_features +#: model:res.groups,name:base_technical_features.group_technical_features +msgid "Technical Features (w/o debug mode)" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_technical_features +msgid "Technical features" +msgstr "" + +#. module: base_technical_features +#: code:addons/base_technical_features/models/res_users.py:48 +#, python-format +msgid "The user does not have access to technical features." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_res_users +msgid "Users" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,help:base_technical_features.field_res_users_show_technical_features +msgid "" +"Whether to display the technical features field in the user preferences." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_basemodel_monkeypatch +msgid "basemodel.monkeypatch" +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_ir_ui_menu +msgid "ir.ui.menu" +msgstr "" diff --git a/base_technical_features/i18n/tr.po b/base_technical_features/i18n/tr.po new file mode 100644 index 0000000..170f16d --- /dev/null +++ b/base_technical_features/i18n/tr.po @@ -0,0 +1,75 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_technical_features +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: server-tools (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-29 03:39+0000\n" +"PO-Revision-Date: 2016-12-30 20:37+0000\n" +"Last-Translator: Ahmet Altinisik \n" +"Language-Team: Turkish (http://www.transifex.com/oca/OCA-server-tools-9-0/language/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: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_display_name +msgid "Display Name" +msgstr "Görünen İsim" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_id +msgid "ID" +msgstr "ID" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch___last_update +msgid "Last Modified on" +msgstr "Son değişiklik" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_show_technical_features +msgid "Show field Technical Features" +msgstr "" + +#. module: base_technical_features +#: model:res.groups,name:base_technical_features.group_technical_features +msgid "Technical Features (w/o debug mode)" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_technical_features +msgid "Technical features" +msgstr "" + +#. module: base_technical_features +#: code:addons/base_technical_features/models/res_users.py:48 +#, python-format +msgid "The user does not have access to technical features." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_res_users +msgid "Users" +msgstr "Kullanıcılar" + +#. module: base_technical_features +#: model:ir.model.fields,help:base_technical_features.field_res_users_show_technical_features +msgid "" +"Whether to display the technical features field in the user preferences." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_basemodel_monkeypatch +msgid "basemodel.monkeypatch" +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_ir_ui_menu +msgid "ir.ui.menu" +msgstr "" diff --git a/base_technical_features/i18n/tr_TR.po b/base_technical_features/i18n/tr_TR.po new file mode 100644 index 0000000..f1070ea --- /dev/null +++ b/base_technical_features/i18n/tr_TR.po @@ -0,0 +1,75 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_technical_features +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: server-tools (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-07 04:04+0000\n" +"PO-Revision-Date: 2016-01-05 19:43+0000\n" +"Last-Translator: <>\n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/oca/OCA-server-tools-9-0/language/tr_TR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: tr_TR\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_display_name +msgid "Display Name" +msgstr "Görünen ad" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_id +msgid "ID" +msgstr "Kimlik" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch___last_update +msgid "Last Modified on" +msgstr "En son güncelleme tarihi" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_show_technical_features +msgid "Show field Technical Features" +msgstr "" + +#. module: base_technical_features +#: model:res.groups,name:base_technical_features.group_technical_features +msgid "Technical Features (w/o debug mode)" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_technical_features +msgid "Technical features" +msgstr "" + +#. module: base_technical_features +#: code:addons/base_technical_features/models/res_users.py:48 +#, python-format +msgid "The user does not have access to technical features." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_res_users +msgid "Users" +msgstr "Kullanıcılar" + +#. module: base_technical_features +#: model:ir.model.fields,help:base_technical_features.field_res_users_show_technical_features +msgid "" +"Whether to display the technical features field in the user preferences." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_basemodel_monkeypatch +msgid "basemodel.monkeypatch" +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_ir_ui_menu +msgid "ir.ui.menu" +msgstr "" diff --git a/base_technical_features/i18n/uk.po b/base_technical_features/i18n/uk.po new file mode 100644 index 0000000..cf9ac57 --- /dev/null +++ b/base_technical_features/i18n/uk.po @@ -0,0 +1,75 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_technical_features +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: server-tools (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:45+0000\n" +"PO-Revision-Date: 2016-01-05 19:43+0000\n" +"Last-Translator: <>\n" +"Language-Team: Ukrainian (http://www.transifex.com/oca/OCA-server-tools-9-0/language/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=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: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_display_name +msgid "Display Name" +msgstr "Назва для відображення" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_id +msgid "ID" +msgstr "ID" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch___last_update +msgid "Last Modified on" +msgstr "Остання модифікація" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_show_technical_features +msgid "Show field Technical Features" +msgstr "" + +#. module: base_technical_features +#: model:res.groups,name:base_technical_features.group_technical_features +msgid "Technical Features (w/o debug mode)" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_technical_features +msgid "Technical features" +msgstr "" + +#. module: base_technical_features +#: code:addons/base_technical_features/models/res_users.py:48 +#, python-format +msgid "The user does not have access to technical features." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_res_users +msgid "Users" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,help:base_technical_features.field_res_users_show_technical_features +msgid "" +"Whether to display the technical features field in the user preferences." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_basemodel_monkeypatch +msgid "basemodel.monkeypatch" +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_ir_ui_menu +msgid "ir.ui.menu" +msgstr "" diff --git a/base_technical_features/i18n/vi.po b/base_technical_features/i18n/vi.po new file mode 100644 index 0000000..2edfbd3 --- /dev/null +++ b/base_technical_features/i18n/vi.po @@ -0,0 +1,75 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_technical_features +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: server-tools (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:45+0000\n" +"PO-Revision-Date: 2016-01-05 19:43+0000\n" +"Last-Translator: <>\n" +"Language-Team: Vietnamese (http://www.transifex.com/oca/OCA-server-tools-9-0/language/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: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_display_name +msgid "Display Name" +msgstr "Tên hiển thị" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_id +msgid "ID" +msgstr "ID" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch___last_update +msgid "Last Modified on" +msgstr "Sửa lần cuối vào" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_show_technical_features +msgid "Show field Technical Features" +msgstr "" + +#. module: base_technical_features +#: model:res.groups,name:base_technical_features.group_technical_features +msgid "Technical Features (w/o debug mode)" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_technical_features +msgid "Technical features" +msgstr "" + +#. module: base_technical_features +#: code:addons/base_technical_features/models/res_users.py:48 +#, python-format +msgid "The user does not have access to technical features." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_res_users +msgid "Users" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,help:base_technical_features.field_res_users_show_technical_features +msgid "" +"Whether to display the technical features field in the user preferences." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_basemodel_monkeypatch +msgid "basemodel.monkeypatch" +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_ir_ui_menu +msgid "ir.ui.menu" +msgstr "" diff --git a/base_technical_features/i18n/vi_VN.po b/base_technical_features/i18n/vi_VN.po new file mode 100644 index 0000000..cbe82b4 --- /dev/null +++ b/base_technical_features/i18n/vi_VN.po @@ -0,0 +1,75 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_technical_features +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: server-tools (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-14 04:21+0000\n" +"PO-Revision-Date: 2016-01-05 19:43+0000\n" +"Last-Translator: <>\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/oca/OCA-server-tools-9-0/language/vi_VN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: vi_VN\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_display_name +msgid "Display Name" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_id +msgid "ID" +msgstr "ID" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch___last_update +msgid "Last Modified on" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_show_technical_features +msgid "Show field Technical Features" +msgstr "" + +#. module: base_technical_features +#: model:res.groups,name:base_technical_features.group_technical_features +msgid "Technical Features (w/o debug mode)" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_technical_features +msgid "Technical features" +msgstr "" + +#. module: base_technical_features +#: code:addons/base_technical_features/models/res_users.py:48 +#, python-format +msgid "The user does not have access to technical features." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_res_users +msgid "Users" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,help:base_technical_features.field_res_users_show_technical_features +msgid "" +"Whether to display the technical features field in the user preferences." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_basemodel_monkeypatch +msgid "basemodel.monkeypatch" +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_ir_ui_menu +msgid "ir.ui.menu" +msgstr "" diff --git a/base_technical_features/i18n/zh_CN.po b/base_technical_features/i18n/zh_CN.po new file mode 100644 index 0000000..782fe26 --- /dev/null +++ b/base_technical_features/i18n/zh_CN.po @@ -0,0 +1,76 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_technical_features +# +# Translators: +# Jeffery Chenn , 2016 +msgid "" +msgstr "" +"Project-Id-Version: server-tools (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-10-04 09:42+0000\n" +"PO-Revision-Date: 2016-10-04 09:43+0000\n" +"Last-Translator: Jeffery Chenn \n" +"Language-Team: Chinese (China) (http://www.transifex.com/oca/OCA-server-tools-9-0/language/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: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_display_name +msgid "Display Name" +msgstr "显示名称" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_id +msgid "ID" +msgstr "ID" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch___last_update +msgid "Last Modified on" +msgstr "最后修改时间" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_show_technical_features +msgid "Show field Technical Features" +msgstr "显示字段技术特性" + +#. module: base_technical_features +#: model:res.groups,name:base_technical_features.group_technical_features +msgid "Technical Features (w/o debug mode)" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_technical_features +msgid "Technical features" +msgstr "技术特性" + +#. module: base_technical_features +#: code:addons/base_technical_features/models/res_users.py:48 +#, python-format +msgid "The user does not have access to technical features." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_res_users +msgid "Users" +msgstr "用户" + +#. module: base_technical_features +#: model:ir.model.fields,help:base_technical_features.field_res_users_show_technical_features +msgid "" +"Whether to display the technical features field in the user preferences." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_basemodel_monkeypatch +msgid "basemodel.monkeypatch" +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_ir_ui_menu +msgid "ir.ui.menu" +msgstr "" diff --git a/base_technical_features/i18n/zh_TW.po b/base_technical_features/i18n/zh_TW.po new file mode 100644 index 0000000..e1d7417 --- /dev/null +++ b/base_technical_features/i18n/zh_TW.po @@ -0,0 +1,75 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_technical_features +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: server-tools (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:45+0000\n" +"PO-Revision-Date: 2016-01-05 19:43+0000\n" +"Last-Translator: <>\n" +"Language-Team: Chinese (Taiwan) (http://www.transifex.com/oca/OCA-server-tools-9-0/language/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: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_display_name +msgid "Display Name" +msgstr "顯示名稱" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch_id +msgid "ID" +msgstr "編號" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_basemodel_monkeypatch___last_update +msgid "Last Modified on" +msgstr "最後修改:" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_show_technical_features +msgid "Show field Technical Features" +msgstr "" + +#. module: base_technical_features +#: model:res.groups,name:base_technical_features.group_technical_features +msgid "Technical Features (w/o debug mode)" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,field_description:base_technical_features.field_res_users_technical_features +msgid "Technical features" +msgstr "" + +#. module: base_technical_features +#: code:addons/base_technical_features/models/res_users.py:48 +#, python-format +msgid "The user does not have access to technical features." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_res_users +msgid "Users" +msgstr "" + +#. module: base_technical_features +#: model:ir.model.fields,help:base_technical_features.field_res_users_show_technical_features +msgid "" +"Whether to display the technical features field in the user preferences." +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_basemodel_monkeypatch +msgid "basemodel.monkeypatch" +msgstr "" + +#. module: base_technical_features +#: model:ir.model,name:base_technical_features.model_ir_ui_menu +msgid "ir.ui.menu" +msgstr "" diff --git a/base_technical_features/models/__init__.py b/base_technical_features/models/__init__.py new file mode 100644 index 0000000..b26f7f4 --- /dev/null +++ b/base_technical_features/models/__init__.py @@ -0,0 +1,3 @@ +from . import basemodel_monkeypatch +from . import ir_ui_menu +from . import res_users diff --git a/base_technical_features/models/basemodel_monkeypatch.py b/base_technical_features/models/basemodel_monkeypatch.py new file mode 100644 index 0000000..0652a12 --- /dev/null +++ b/base_technical_features/models/basemodel_monkeypatch.py @@ -0,0 +1,33 @@ +# -*- coding: utf-8 -*- +# © 2016 Opener B.V. () +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +from openerp import models, api + + +class BaseModelMonkeyPatch(models.AbstractModel): + _name = 'basemodel.monkeypatch' + + def _register_hook(self, cr): + if not hasattr( + models.BaseModel, 'base_technical_features_user_has_groups'): + + models.BaseModel.base_technical_features_user_has_groups = ( + models.BaseModel.user_has_groups) + + @api.cr_uid_context + def user_has_groups(self, cr, uid, groups, context=None): + """ Return True for users in the technical features group when + membership of the original group is checked, even if debug mode + is not enabled. + """ + if ('base.group_no_one' in groups.split(',') and + self.pool['res.users'].has_group( + cr, uid, + 'base_technical_features.group_technical_features')): + return True + return self.base_technical_features_user_has_groups( + cr, uid, groups, context=context) + + models.BaseModel.user_has_groups = user_has_groups + + return super(BaseModelMonkeyPatch, self)._register_hook(cr) diff --git a/base_technical_features/models/ir_ui_menu.py b/base_technical_features/models/ir_ui_menu.py new file mode 100644 index 0000000..112fe39 --- /dev/null +++ b/base_technical_features/models/ir_ui_menu.py @@ -0,0 +1,18 @@ +# coding: utf-8 +# © 2016 Opener B.V. () +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +from openerp import api, models + + +class IrUiMenu(models.Model): + _inherit = 'ir.ui.menu' + + @api.model + def _visible_menu_ids(self, debug=False): + """ Set debug = True, so that group_no_one is not filtered out of the + user's groups """ + if not debug: + debug = self.pool['res.users'].has_group( + self.env.cr, self.env.uid, + 'base_technical_features.group_technical_features') + return super(IrUiMenu, self)._visible_menu_ids(debug=debug) diff --git a/base_technical_features/models/res_users.py b/base_technical_features/models/res_users.py new file mode 100644 index 0000000..824caef --- /dev/null +++ b/base_technical_features/models/res_users.py @@ -0,0 +1,59 @@ +# coding: utf-8 +# © 2016 Opener B.V. () +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +from openerp import api, fields, models +from openerp.exceptions import AccessError +from openerp.tools.translate import _ + + +class ResUsers(models.Model): + _inherit = 'res.users' + + technical_features = fields.Boolean( + compute='get_technical_features', + inverse='set_technical_features') + show_technical_features = fields.Boolean( + string='Show field Technical Features', + compute='get_show_technical_features', + help=('Whether to display the technical features field in the user ' + 'preferences.')) + + @api.multi + @api.depends('groups_id') + def get_show_technical_features(self): + """ Only display the technical features checkbox in the user + preferences if the user has access to them """ + users = self.env.ref('base.group_no_one').users + for user in self: + user.show_technical_features = user in users + + @api.multi + @api.depends('groups_id') + def get_technical_features(self): + """ Map user membership to boolean field value """ + users = self.env.ref( + 'base_technical_features.group_technical_features').users + for user in self: + user.technical_features = user in users + + @api.multi + def set_technical_features(self): + """ Map boolean field value to group membership, but checking + access """ + group = self.env.ref( + 'base_technical_features.group_technical_features') + for user in self: + if self.env.ref('base.group_no_one') not in user.groups_id: + raise AccessError( + _('The user does not have access to technical ' + 'features.')) + if user.technical_features: + self.sudo().write({'groups_id': [(4, group.id)]}) + else: + self.sudo().write({'groups_id': [(3, group.id)]}) + + def __init__(self, pool, cr): + super(ResUsers, self).__init__(pool, cr) + self.SELF_READABLE_FIELDS += [ + 'technical_features', 'show_technical_features'] + self.SELF_WRITEABLE_FIELDS.append('technical_features') diff --git a/base_technical_features/security/res_groups.xml b/base_technical_features/security/res_groups.xml new file mode 100644 index 0000000..12846ec --- /dev/null +++ b/base_technical_features/security/res_groups.xml @@ -0,0 +1,7 @@ + + + + Technical Features (w/o debug mode) + + + diff --git a/base_technical_features/static/description/icon.png b/base_technical_features/static/description/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..3a0328b516c4980e8e44cdb63fd945757ddd132d GIT binary patch literal 9455 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 z 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 Xviia!U7SGha1wx#SCgwmn*{w2TRX*I literal 0 HcmV?d00001 diff --git a/base_technical_features/static/description/user_preferences.png b/base_technical_features/static/description/user_preferences.png new file mode 100644 index 0000000000000000000000000000000000000000..c30837e1382f248e4c902f6779d02c75d7ffa420 GIT binary patch literal 30961 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 + + + Add technical features checkbox to user preferences form + res.users + + + + + + + + + +