From e4570c248d3c600b8d4168750d6b176a0fe61211 Mon Sep 17 00:00:00 2001 From: Rinaldi Firdaus Date: Fri, 20 Oct 2023 03:52:32 +0000 Subject: [PATCH] [3885][ADD] purchase_exception, base_exception --- base_exception/README.rst | 112 +++++ base_exception/__init__.py | 1 + base_exception/__manifest__.py | 26 + base_exception/i18n/am.po | 322 +++++++++++++ base_exception/i18n/ar.po | 344 ++++++++++++++ base_exception/i18n/base_exception.pot | 315 ++++++++++++ base_exception/i18n/bg.po | 324 +++++++++++++ base_exception/i18n/bs.po | 325 +++++++++++++ base_exception/i18n/ca.po | 324 +++++++++++++ base_exception/i18n/cs.po | 324 +++++++++++++ base_exception/i18n/cs_CZ.po | 376 +++++++++++++++ base_exception/i18n/da.po | 324 +++++++++++++ base_exception/i18n/de.po | 377 +++++++++++++++ base_exception/i18n/el_GR.po | 325 +++++++++++++ base_exception/i18n/en_GB.po | 325 +++++++++++++ base_exception/i18n/es.po | 323 +++++++++++++ base_exception/i18n/es_AR.po | 371 +++++++++++++++ base_exception/i18n/es_CL.po | 325 +++++++++++++ base_exception/i18n/es_CO.po | 325 +++++++++++++ base_exception/i18n/es_CR.po | 325 +++++++++++++ base_exception/i18n/es_DO.po | 325 +++++++++++++ base_exception/i18n/es_EC.po | 325 +++++++++++++ base_exception/i18n/es_ES.po | 323 +++++++++++++ base_exception/i18n/es_MX.po | 325 +++++++++++++ base_exception/i18n/es_PE.po | 325 +++++++++++++ base_exception/i18n/es_PY.po | 325 +++++++++++++ base_exception/i18n/es_VE.po | 325 +++++++++++++ base_exception/i18n/et.po | 324 +++++++++++++ base_exception/i18n/eu.po | 324 +++++++++++++ base_exception/i18n/fa.po | 328 +++++++++++++ base_exception/i18n/fi.po | 324 +++++++++++++ base_exception/i18n/fr.po | 395 ++++++++++++++++ base_exception/i18n/fr_CA.po | 325 +++++++++++++ base_exception/i18n/fr_CH.po | 323 +++++++++++++ base_exception/i18n/gl.po | 324 +++++++++++++ base_exception/i18n/gl_ES.po | 322 +++++++++++++ base_exception/i18n/he.po | 324 +++++++++++++ base_exception/i18n/hr.po | 328 +++++++++++++ base_exception/i18n/hr_HR.po | 326 +++++++++++++ base_exception/i18n/hu.po | 324 +++++++++++++ base_exception/i18n/id.po | 324 +++++++++++++ base_exception/i18n/it.po | 325 +++++++++++++ base_exception/i18n/ja.po | 324 +++++++++++++ base_exception/i18n/ko.po | 324 +++++++++++++ base_exception/i18n/lt.po | 325 +++++++++++++ base_exception/i18n/lt_LT.po | 324 +++++++++++++ base_exception/i18n/lv.po | 325 +++++++++++++ base_exception/i18n/mk.po | 324 +++++++++++++ base_exception/i18n/mn.po | 324 +++++++++++++ base_exception/i18n/nb.po | 325 +++++++++++++ base_exception/i18n/nb_NO.po | 323 +++++++++++++ base_exception/i18n/nl.po | 324 +++++++++++++ base_exception/i18n/nl_BE.po | 325 +++++++++++++ base_exception/i18n/nl_NL.po | 336 +++++++++++++ base_exception/i18n/pl.po | 326 +++++++++++++ base_exception/i18n/pt.po | 364 ++++++++++++++ base_exception/i18n/pt_BR.po | 397 ++++++++++++++++ base_exception/i18n/pt_PT.po | 325 +++++++++++++ base_exception/i18n/ro.po | 326 +++++++++++++ base_exception/i18n/ru.po | 326 +++++++++++++ base_exception/i18n/sk.po | 324 +++++++++++++ base_exception/i18n/sl.po | 326 +++++++++++++ base_exception/i18n/sr.po | 325 +++++++++++++ base_exception/i18n/sr@latin.po | 326 +++++++++++++ base_exception/i18n/sv.po | 324 +++++++++++++ base_exception/i18n/th.po | 324 +++++++++++++ base_exception/i18n/tr.po | 324 +++++++++++++ base_exception/i18n/tr_TR.po | 325 +++++++++++++ base_exception/i18n/uk.po | 325 +++++++++++++ base_exception/i18n/vi.po | 324 +++++++++++++ base_exception/i18n/vi_VN.po | 325 +++++++++++++ base_exception/i18n/zh_CN.po | 356 ++++++++++++++ base_exception/i18n/zh_TW.po | 325 +++++++++++++ base_exception/models/__init__.py | 1 + base_exception/models/base_exception.py | 318 +++++++++++++ base_exception/readme/CONTRIBUTORS.rst | 15 + base_exception/readme/DESCRIPTION.rst | 6 + base_exception/readme/ROADMAP.rst | 3 + .../security/base_exception_security.xml | 7 + base_exception/security/ir.model.access.csv | 5 + base_exception/static/description/icon.png | Bin 0 -> 9455 bytes base_exception/static/description/index.html | 447 ++++++++++++++++++ base_exception/tests/__init__.py | 1 + base_exception/tests/purchase_test.py | 104 ++++ base_exception/tests/test_base_exception.py | 150 ++++++ base_exception/views/base_exception_view.xml | 109 +++++ base_exception/wizard/__init__.py | 1 + .../wizard/base_exception_confirm.py | 37 ++ .../wizard/base_exception_confirm_view.xml | 43 ++ purchase_exception/README.rst | 83 ++++ purchase_exception/__init__.py | 1 + purchase_exception/__manifest__.py | 21 + .../data/purchase_exception_data.xml | 34 ++ purchase_exception/i18n/es.po | 181 +++++++ purchase_exception/i18n/fr.po | 204 ++++++++ .../i18n/purchase_exception.pot | 176 +++++++ purchase_exception/i18n/zh_CN.po | 191 ++++++++ purchase_exception/models/__init__.py | 3 + purchase_exception/models/exception_rule.py | 19 + purchase_exception/models/purchase.py | 70 +++ purchase_exception/models/purchase_line.py | 26 + purchase_exception/readme/CONTRIBUTORS.rst | 3 + purchase_exception/readme/DESCRIPTION.rst | 6 + .../security/ir.model.access.csv | 2 + .../static/description/icon.png | Bin 0 -> 9455 bytes .../static/description/index.html | 427 +++++++++++++++++ purchase_exception/tests/__init__.py | 1 + .../tests/test_purchase_exception.py | 148 ++++++ purchase_exception/views/purchase_view.xml | 85 ++++ purchase_exception/wizard/__init__.py | 1 + .../wizard/purchase_exception_confirm.py | 25 + .../purchase_exception_confirm_view.xml | 11 + .../base_exception/odoo/addons/base_exception | 1 + setup/base_exception/setup.py | 6 + .../odoo/addons/purchase_exception | 1 + setup/purchase_exception/setup.py | 6 + 116 files changed, 26225 insertions(+) create mode 100644 base_exception/README.rst create mode 100644 base_exception/__init__.py create mode 100644 base_exception/__manifest__.py create mode 100644 base_exception/i18n/am.po create mode 100644 base_exception/i18n/ar.po create mode 100644 base_exception/i18n/base_exception.pot create mode 100644 base_exception/i18n/bg.po create mode 100644 base_exception/i18n/bs.po create mode 100644 base_exception/i18n/ca.po create mode 100644 base_exception/i18n/cs.po create mode 100644 base_exception/i18n/cs_CZ.po create mode 100644 base_exception/i18n/da.po create mode 100644 base_exception/i18n/de.po create mode 100644 base_exception/i18n/el_GR.po create mode 100644 base_exception/i18n/en_GB.po create mode 100644 base_exception/i18n/es.po create mode 100644 base_exception/i18n/es_AR.po create mode 100644 base_exception/i18n/es_CL.po create mode 100644 base_exception/i18n/es_CO.po create mode 100644 base_exception/i18n/es_CR.po create mode 100644 base_exception/i18n/es_DO.po create mode 100644 base_exception/i18n/es_EC.po create mode 100644 base_exception/i18n/es_ES.po create mode 100644 base_exception/i18n/es_MX.po create mode 100644 base_exception/i18n/es_PE.po create mode 100644 base_exception/i18n/es_PY.po create mode 100644 base_exception/i18n/es_VE.po create mode 100644 base_exception/i18n/et.po create mode 100644 base_exception/i18n/eu.po create mode 100644 base_exception/i18n/fa.po create mode 100644 base_exception/i18n/fi.po create mode 100644 base_exception/i18n/fr.po create mode 100644 base_exception/i18n/fr_CA.po create mode 100644 base_exception/i18n/fr_CH.po create mode 100644 base_exception/i18n/gl.po create mode 100644 base_exception/i18n/gl_ES.po create mode 100644 base_exception/i18n/he.po create mode 100644 base_exception/i18n/hr.po create mode 100644 base_exception/i18n/hr_HR.po create mode 100644 base_exception/i18n/hu.po create mode 100644 base_exception/i18n/id.po create mode 100644 base_exception/i18n/it.po create mode 100644 base_exception/i18n/ja.po create mode 100644 base_exception/i18n/ko.po create mode 100644 base_exception/i18n/lt.po create mode 100644 base_exception/i18n/lt_LT.po create mode 100644 base_exception/i18n/lv.po create mode 100644 base_exception/i18n/mk.po create mode 100644 base_exception/i18n/mn.po create mode 100644 base_exception/i18n/nb.po create mode 100644 base_exception/i18n/nb_NO.po create mode 100644 base_exception/i18n/nl.po create mode 100644 base_exception/i18n/nl_BE.po create mode 100644 base_exception/i18n/nl_NL.po create mode 100644 base_exception/i18n/pl.po create mode 100644 base_exception/i18n/pt.po create mode 100644 base_exception/i18n/pt_BR.po create mode 100644 base_exception/i18n/pt_PT.po create mode 100644 base_exception/i18n/ro.po create mode 100644 base_exception/i18n/ru.po create mode 100644 base_exception/i18n/sk.po create mode 100644 base_exception/i18n/sl.po create mode 100644 base_exception/i18n/sr.po create mode 100644 base_exception/i18n/sr@latin.po create mode 100644 base_exception/i18n/sv.po create mode 100644 base_exception/i18n/th.po create mode 100644 base_exception/i18n/tr.po create mode 100644 base_exception/i18n/tr_TR.po create mode 100644 base_exception/i18n/uk.po create mode 100644 base_exception/i18n/vi.po create mode 100644 base_exception/i18n/vi_VN.po create mode 100644 base_exception/i18n/zh_CN.po create mode 100644 base_exception/i18n/zh_TW.po create mode 100644 base_exception/models/__init__.py create mode 100644 base_exception/models/base_exception.py create mode 100644 base_exception/readme/CONTRIBUTORS.rst create mode 100644 base_exception/readme/DESCRIPTION.rst create mode 100644 base_exception/readme/ROADMAP.rst create mode 100644 base_exception/security/base_exception_security.xml create mode 100644 base_exception/security/ir.model.access.csv create mode 100644 base_exception/static/description/icon.png create mode 100644 base_exception/static/description/index.html create mode 100644 base_exception/tests/__init__.py create mode 100644 base_exception/tests/purchase_test.py create mode 100644 base_exception/tests/test_base_exception.py create mode 100644 base_exception/views/base_exception_view.xml create mode 100644 base_exception/wizard/__init__.py create mode 100644 base_exception/wizard/base_exception_confirm.py create mode 100644 base_exception/wizard/base_exception_confirm_view.xml create mode 100644 purchase_exception/README.rst create mode 100644 purchase_exception/__init__.py create mode 100644 purchase_exception/__manifest__.py create mode 100644 purchase_exception/data/purchase_exception_data.xml create mode 100644 purchase_exception/i18n/es.po create mode 100644 purchase_exception/i18n/fr.po create mode 100644 purchase_exception/i18n/purchase_exception.pot create mode 100644 purchase_exception/i18n/zh_CN.po create mode 100644 purchase_exception/models/__init__.py create mode 100644 purchase_exception/models/exception_rule.py create mode 100644 purchase_exception/models/purchase.py create mode 100644 purchase_exception/models/purchase_line.py create mode 100644 purchase_exception/readme/CONTRIBUTORS.rst create mode 100644 purchase_exception/readme/DESCRIPTION.rst create mode 100644 purchase_exception/security/ir.model.access.csv create mode 100644 purchase_exception/static/description/icon.png create mode 100644 purchase_exception/static/description/index.html create mode 100644 purchase_exception/tests/__init__.py create mode 100644 purchase_exception/tests/test_purchase_exception.py create mode 100644 purchase_exception/views/purchase_view.xml create mode 100644 purchase_exception/wizard/__init__.py create mode 100644 purchase_exception/wizard/purchase_exception_confirm.py create mode 100644 purchase_exception/wizard/purchase_exception_confirm_view.xml create mode 120000 setup/base_exception/odoo/addons/base_exception create mode 100644 setup/base_exception/setup.py create mode 120000 setup/purchase_exception/odoo/addons/purchase_exception create mode 100644 setup/purchase_exception/setup.py diff --git a/base_exception/README.rst b/base_exception/README.rst new file mode 100644 index 00000000..b686505f --- /dev/null +++ b/base_exception/README.rst @@ -0,0 +1,112 @@ +============== +Exception Rule +============== + +.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |badge1| image:: https://img.shields.io/badge/maturity-Mature-brightgreen.png + :target: https://odoo-community.org/page/development-status + :alt: Mature +.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 +.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fserver--tools-lightgray.png?logo=github + :target: https://github.com/OCA/server-tools/tree/16.0/base_exception + :alt: OCA/server-tools +.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png + :target: https://translation.odoo-community.org/projects/server-tools-16-0/server-tools-16-0-base_exception + :alt: Translate me on Weblate +.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png + :target: https://runbot.odoo-community.org/runbot/149/16.0 + :alt: Try me on Runbot + +|badge1| |badge2| |badge3| |badge4| |badge5| + +This module provide an abstract model to manage customizable +exceptions to be applied on different models (sale order, invoice, ...). + +It is not useful by itself. You can see an example of implementation +in the 'sale_exception' module. (sale-workflow repository) or +'purchase_exception' module (purchase-workflow repository). + +**Table of contents** + +.. contents:: + :local: + +Known issues / Roadmap +====================== + +This module executes user-provided code though a safe_eval which might be +unsecure. +How to mitigate risks should be adressed in future versions of this module. + +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 `_. + +Do not contact contributors directly about support or help with technical issues. + +Credits +======= + +Authors +~~~~~~~ + +* Akretion +* Sodexis +* Camptocamp + +Contributors +~~~~~~~~~~~~ + +* Raphaël Valyi +* Renato Lima +* Sébastien BEAU +* Guewen Baconnier +* Yannick Vaucher +* SodexisTeam +* Mourad EL HADJ MIMOUNE +* Raphaël Reverdy +* Iván Todorovich + +* Tecnativa + + * João Marques + +* Kevin Khao + +Maintainers +~~~~~~~~~~~ + +This module is maintained by the OCA. + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +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. + +.. |maintainer-hparfr| image:: https://github.com/hparfr.png?size=40px + :target: https://github.com/hparfr + :alt: hparfr +.. |maintainer-sebastienbeau| image:: https://github.com/sebastienbeau.png?size=40px + :target: https://github.com/sebastienbeau + :alt: sebastienbeau + +Current `maintainers `__: + +|maintainer-hparfr| |maintainer-sebastienbeau| + +This module is part of the `OCA/server-tools `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/base_exception/__init__.py b/base_exception/__init__.py new file mode 100644 index 00000000..e415ab28 --- /dev/null +++ b/base_exception/__init__.py @@ -0,0 +1 @@ +from . import wizard, models diff --git a/base_exception/__manifest__.py b/base_exception/__manifest__.py new file mode 100644 index 00000000..ee84f82d --- /dev/null +++ b/base_exception/__manifest__.py @@ -0,0 +1,26 @@ +# Copyright 2011 Raphaël Valyi, Renato Lima, Guewen Baconnier, Sodexis +# Copyright 2017 Akretion (http://www.akretion.com) +# Mourad EL HADJ MIMOUNE +# Copyright 2020 Hibou Corp. +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). +{ + "name": "Exception Rule", + "version": "16.0.1.0.2", + "development_status": "Mature", + "category": "Generic Modules", + "summary": """ + This module provide an abstract model to manage customizable + exceptions to be applied on different models (sale order, invoice, ...)""", + "author": "Akretion, Sodexis, Camptocamp, Odoo Community Association (OCA)", + "website": "https://github.com/OCA/server-tools", + "depends": ["base_setup"], + "maintainers": ["hparfr", "sebastienbeau"], + "license": "AGPL-3", + "data": [ + "security/base_exception_security.xml", + "security/ir.model.access.csv", + "wizard/base_exception_confirm_view.xml", + "views/base_exception_view.xml", + ], + "installable": True, +} diff --git a/base_exception/i18n/am.po b/base_exception/i18n/am.po new file mode 100644 index 00000000..00595a6b --- /dev/null +++ b/base_exception/i18n/am.po @@ -0,0 +1,322 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_exception +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-01 10:38+0000\n" +"PO-Revision-Date: 2017-05-01 10:38+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Amharic (https://www.transifex.com/oca/teams/23907/am/)\n" +"Language: am\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "(Blocking exception)" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "self: Record on which the rule is evaluated." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__active +msgid "Active" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__model +msgid "Apply on" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Archived" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "As well as all the libraries provided in safe_eval." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_domain +msgid "By domain" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_method +msgid "By method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_py_code +msgid "By python code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__exception_type +msgid "" +"By python code: allow to define any arbitrary check\n" +"By domain: limited to a selection by an odoo domain:\n" +" performance can be better when exceptions are evaluated " +"with several records\n" +"By method: allow to select an existing check method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__description +msgid "Description" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__display_name +msgid "Display Name" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__domain +msgid "Domain" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Enter Python code here. Help about Python expression is available in the " +"help tab of this document." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"Error when evaluating the exception.rule rule:\n" +" %(rule_name)s \n" +"(%(error)s)" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception +msgid "Exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__name +msgid "Exception Name" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule +msgid "Exception Rule" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule_confirm +msgid "Exception Rule Confirm Wizard" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception_method +msgid "Exception Rule Methods" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Exception Rule Setup" +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_tree +#: model:ir.ui.menu,name:base_exception.menu_action_exception +msgid "Exception Rules" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__exception_type +msgid "Exception Type" +msgstr "" + +#. module: base_exception +#: model:res.groups,name:base_exception.group_exception_rule_manager +msgid "Exception manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exception_ids +msgid "Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exceptions_summary +msgid "Exceptions Summary" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__exception_ids +msgid "Exceptions to resolve" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__sequence +msgid "Gives the sequence order when applying the test" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help with Python expressions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__id +msgid "ID" +msgstr "ID" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__ignore_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__ignore +msgid "Ignore Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__is_blocking +msgid "Is Blocking" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule____last_update +msgid "Last Modified on" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_uid +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__main_exception_id +msgid "Main Exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__method +msgid "Method" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/wizard/base_exception_confirm.py:0 +#, python-format +msgid "Only 1 ID accepted, got %r." +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_confirm +msgid "Outstanding exceptions to manage" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "Outstanding exceptions to manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__code +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Python Code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__code +msgid "" +"Python code executed to check if the exception apply or not. Use failed = " +"True to block the exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__related_model_id +#, fuzzy +msgid "Related Model" +msgstr "Creado en" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__sequence +msgid "Sequence" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__smart_search +#: model:ir.model.fields,field_description:base_exception.field_base_exception_method__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__smart_search +msgid "Smart Search" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "The exceptions can not be ignored, because some of them are blocking." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"There is a problem of configuration, python code, domain or method is " +"missing to match the exception type." +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "To block the exception use: failed = True" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Various fields may use Python code or Python expressions. The following " +"variables can be used:" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__is_blocking +msgid "When checked the exception can not be ignored" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "_Close" +msgstr "" diff --git a/base_exception/i18n/ar.po b/base_exception/i18n/ar.po new file mode 100644 index 00000000..20949804 --- /dev/null +++ b/base_exception/i18n/ar.po @@ -0,0 +1,344 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_exception +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-01 10:38+0000\n" +"PO-Revision-Date: 2018-06-29 05:01+0000\n" +"Last-Translator: Osoul \n" +"Language-Team: Arabic (https://www.transifex.com/oca/teams/23907/ar/)\n" +"Language: ar\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \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 ? 4 : 5;\n" +"X-Generator: Weblate 3.0.1\n" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "(Blocking exception)" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "self: Record on which the rule is evaluated." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__active +msgid "Active" +msgstr "نشط" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__model +msgid "Apply on" +msgstr "التطبيق على" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Archived" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "As well as all the libraries provided in safe_eval." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_domain +msgid "By domain" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_method +msgid "By method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_py_code +msgid "By python code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__exception_type +msgid "" +"By python code: allow to define any arbitrary check\n" +"By domain: limited to a selection by an odoo domain:\n" +" performance can be better when exceptions are evaluated " +"with several records\n" +"By method: allow to select an existing check method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_uid +msgid "Created by" +msgstr "أنشئ بواسطة" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_date +msgid "Created on" +msgstr "أنشئ في" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__description +msgid "Description" +msgstr "الوصف" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__display_name +msgid "Display Name" +msgstr "اسم العرض" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__domain +msgid "Domain" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Enter Python code here. Help about Python expression is available in the " +"help tab of this document." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"Error when evaluating the exception.rule rule:\n" +" %(rule_name)s \n" +"(%(error)s)" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception +#, fuzzy +msgid "Exception" +msgstr "الخلل" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__name +msgid "Exception Name" +msgstr "اسم الخلل" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule +msgid "Exception Rule" +msgstr "قانون الخلل" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule_confirm +#, fuzzy +msgid "Exception Rule Confirm Wizard" +msgstr "قانون الخلل" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception_method +#, fuzzy +msgid "Exception Rule Methods" +msgstr "قوانين الخلل" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Exception Rule Setup" +msgstr "اعداد قانون الخلل" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_tree +#: model:ir.ui.menu,name:base_exception.menu_action_exception +msgid "Exception Rules" +msgstr "قوانين الخلل" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__exception_type +#, fuzzy +msgid "Exception Type" +msgstr "اسم الخلل" + +#. module: base_exception +#: model:res.groups,name:base_exception.group_exception_rule_manager +msgid "Exception manager" +msgstr "مدير قوانين الخلل" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exception_ids +msgid "Exceptions" +msgstr "الخلل" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exceptions_summary +#, fuzzy +msgid "Exceptions Summary" +msgstr "مدير قوانين الخلل" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__exception_ids +msgid "Exceptions to resolve" +msgstr "خلل في انتظار التجاوز" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__sequence +msgid "Gives the sequence order when applying the test" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help with Python expressions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__id +msgid "ID" +msgstr "المعرف" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__ignore_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__ignore +msgid "Ignore Exceptions" +msgstr "تجاهل الخلل" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__is_blocking +msgid "Is Blocking" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule____last_update +msgid "Last Modified on" +msgstr "آخر تعديل في" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_uid +msgid "Last Updated by" +msgstr "آخر تحديث بواسطة" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_date +msgid "Last Updated on" +msgstr "آخر تحديث في" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__main_exception_id +msgid "Main Exception" +msgstr "الخلل الرئيسي" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__method +msgid "Method" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/wizard/base_exception_confirm.py:0 +#, python-format +msgid "Only 1 ID accepted, got %r." +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_confirm +msgid "Outstanding exceptions to manage" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "Outstanding exceptions to manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__code +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Python Code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__code +msgid "" +"Python code executed to check if the exception apply or not. Use failed = " +"True to block the exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__related_model_id +msgid "Related Model" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__sequence +msgid "Sequence" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__smart_search +#: model:ir.model.fields,field_description:base_exception.field_base_exception_method__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__smart_search +msgid "Smart Search" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "The exceptions can not be ignored, because some of them are blocking." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"There is a problem of configuration, python code, domain or method is " +"missing to match the exception type." +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "To block the exception use: failed = True" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Various fields may use Python code or Python expressions. The following " +"variables can be used:" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__is_blocking +msgid "When checked the exception can not be ignored" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "_Close" +msgstr "" + +#, fuzzy, python-format +#~ msgid "" +#~ "Error when evaluating the exception.rule rule:\n" +#~ " %s \n" +#~ "(%s)" +#~ msgstr "" +#~ "يوجد خطأ عند تطبيق قانون الخلل:\n" +#~ " %s \n" +#~ "(%s)" + +#~ msgid "Exceptions Rules" +#~ msgstr "قوانين الخلل" + +#~ msgid "Next state" +#~ msgstr "الحالة القادمة" diff --git a/base_exception/i18n/base_exception.pot b/base_exception/i18n/base_exception.pot new file mode 100644 index 00000000..7ba57dd0 --- /dev/null +++ b/base_exception/i18n/base_exception.pot @@ -0,0 +1,315 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_exception +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "(Blocking exception)" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "self: Record on which the rule is evaluated." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__active +msgid "Active" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__model +msgid "Apply on" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Archived" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "As well as all the libraries provided in safe_eval." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_domain +msgid "By domain" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_method +msgid "By method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_py_code +msgid "By python code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__exception_type +msgid "" +"By python code: allow to define any arbitrary check\n" +"By domain: limited to a selection by an odoo domain:\n" +" performance can be better when exceptions are evaluated with several records\n" +"By method: allow to select an existing check method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_uid +msgid "Created by" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_date +msgid "Created on" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__description +msgid "Description" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__display_name +msgid "Display Name" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__domain +msgid "Domain" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Enter Python code here. Help about Python expression is available in the " +"help tab of this document." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"Error when evaluating the exception.rule rule:\n" +" %(rule_name)s \n" +"(%(error)s)" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception +msgid "Exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__name +msgid "Exception Name" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule +msgid "Exception Rule" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule_confirm +msgid "Exception Rule Confirm Wizard" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception_method +msgid "Exception Rule Methods" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Exception Rule Setup" +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_tree +#: model:ir.ui.menu,name:base_exception.menu_action_exception +msgid "Exception Rules" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__exception_type +msgid "Exception Type" +msgstr "" + +#. module: base_exception +#: model:res.groups,name:base_exception.group_exception_rule_manager +msgid "Exception manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exception_ids +msgid "Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exceptions_summary +msgid "Exceptions Summary" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__exception_ids +msgid "Exceptions to resolve" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__sequence +msgid "Gives the sequence order when applying the test" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help with Python expressions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__id +msgid "ID" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__ignore_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__ignore +msgid "Ignore Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__is_blocking +msgid "Is Blocking" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule____last_update +msgid "Last Modified on" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_date +msgid "Last Updated on" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__main_exception_id +msgid "Main Exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__method +msgid "Method" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/wizard/base_exception_confirm.py:0 +#, python-format +msgid "Only 1 ID accepted, got %r." +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_confirm +msgid "Outstanding exceptions to manage" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "Outstanding exceptions to manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__code +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Python Code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__code +msgid "" +"Python code executed to check if the exception apply or not. Use failed = " +"True to block the exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__related_model_id +msgid "Related Model" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__sequence +msgid "Sequence" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__smart_search +#: model:ir.model.fields,field_description:base_exception.field_base_exception_method__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__smart_search +msgid "Smart Search" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "The exceptions can not be ignored, because some of them are blocking." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"There is a problem of configuration, python code, domain or method is " +"missing to match the exception type." +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "To block the exception use: failed = True" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Various fields may use Python code or Python expressions. The following " +"variables can be used:" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__is_blocking +msgid "When checked the exception can not be ignored" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "_Close" +msgstr "" diff --git a/base_exception/i18n/bg.po b/base_exception/i18n/bg.po new file mode 100644 index 00000000..7235646e --- /dev/null +++ b/base_exception/i18n/bg.po @@ -0,0 +1,324 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_exception +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-01 02:43+0000\n" +"PO-Revision-Date: 2017-08-01 02:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Bulgarian (https://www.transifex.com/oca/teams/23907/bg/)\n" +"Language: bg\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "(Blocking exception)" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "self: Record on which the rule is evaluated." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__active +msgid "Active" +msgstr "Активен" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__model +msgid "Apply on" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Archived" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "As well as all the libraries provided in safe_eval." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_domain +msgid "By domain" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_method +msgid "By method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_py_code +msgid "By python code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__exception_type +msgid "" +"By python code: allow to define any arbitrary check\n" +"By domain: limited to a selection by an odoo domain:\n" +" performance can be better when exceptions are evaluated " +"with several records\n" +"By method: allow to select an existing check method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_uid +msgid "Created by" +msgstr "Създадено от" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_date +msgid "Created on" +msgstr "Създадено на" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__description +msgid "Description" +msgstr "Описание" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__display_name +msgid "Display Name" +msgstr "Име за Показване" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__domain +msgid "Domain" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Enter Python code here. Help about Python expression is available in the " +"help tab of this document." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"Error when evaluating the exception.rule rule:\n" +" %(rule_name)s \n" +"(%(error)s)" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception +#, fuzzy +msgid "Exception" +msgstr "Описание" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__name +msgid "Exception Name" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule +msgid "Exception Rule" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule_confirm +msgid "Exception Rule Confirm Wizard" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception_method +msgid "Exception Rule Methods" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Exception Rule Setup" +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_tree +#: model:ir.ui.menu,name:base_exception.menu_action_exception +msgid "Exception Rules" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__exception_type +msgid "Exception Type" +msgstr "" + +#. module: base_exception +#: model:res.groups,name:base_exception.group_exception_rule_manager +msgid "Exception manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exception_ids +msgid "Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exceptions_summary +#, fuzzy +msgid "Exceptions Summary" +msgstr "Описание" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__exception_ids +msgid "Exceptions to resolve" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__sequence +msgid "Gives the sequence order when applying the test" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help with Python expressions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__id +msgid "ID" +msgstr "ID" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__ignore_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__ignore +msgid "Ignore Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__is_blocking +msgid "Is Blocking" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule____last_update +msgid "Last Modified on" +msgstr "Последно обновено на" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_uid +msgid "Last Updated by" +msgstr "Последно обновено от" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_date +msgid "Last Updated on" +msgstr "Последно обновено на" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__main_exception_id +msgid "Main Exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__method +msgid "Method" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/wizard/base_exception_confirm.py:0 +#, python-format +msgid "Only 1 ID accepted, got %r." +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_confirm +msgid "Outstanding exceptions to manage" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "Outstanding exceptions to manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__code +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Python Code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__code +msgid "" +"Python code executed to check if the exception apply or not. Use failed = " +"True to block the exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__related_model_id +#, fuzzy +msgid "Related Model" +msgstr "Създадено на" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__sequence +msgid "Sequence" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__smart_search +#: model:ir.model.fields,field_description:base_exception.field_base_exception_method__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__smart_search +msgid "Smart Search" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "The exceptions can not be ignored, because some of them are blocking." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"There is a problem of configuration, python code, domain or method is " +"missing to match the exception type." +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "To block the exception use: failed = True" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Various fields may use Python code or Python expressions. The following " +"variables can be used:" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__is_blocking +msgid "When checked the exception can not be ignored" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "_Close" +msgstr "" diff --git a/base_exception/i18n/bs.po b/base_exception/i18n/bs.po new file mode 100644 index 00000000..06bb9734 --- /dev/null +++ b/base_exception/i18n/bs.po @@ -0,0 +1,325 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_exception +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-01 10:38+0000\n" +"PO-Revision-Date: 2017-05-01 10:38+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Bosnian (https://www.transifex.com/oca/teams/23907/bs/)\n" +"Language: bs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \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_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "(Blocking exception)" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "self: Record on which the rule is evaluated." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__active +msgid "Active" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__model +msgid "Apply on" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Archived" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "As well as all the libraries provided in safe_eval." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_domain +msgid "By domain" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_method +msgid "By method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_py_code +msgid "By python code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__exception_type +msgid "" +"By python code: allow to define any arbitrary check\n" +"By domain: limited to a selection by an odoo domain:\n" +" performance can be better when exceptions are evaluated " +"with several records\n" +"By method: allow to select an existing check method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_date +msgid "Created on" +msgstr "Kreirano" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__description +msgid "Description" +msgstr "Opis" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__display_name +msgid "Display Name" +msgstr "Prikaži naziv" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__domain +msgid "Domain" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Enter Python code here. Help about Python expression is available in the " +"help tab of this document." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"Error when evaluating the exception.rule rule:\n" +" %(rule_name)s \n" +"(%(error)s)" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception +#, fuzzy +msgid "Exception" +msgstr "Opis" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__name +msgid "Exception Name" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule +msgid "Exception Rule" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule_confirm +msgid "Exception Rule Confirm Wizard" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception_method +msgid "Exception Rule Methods" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Exception Rule Setup" +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_tree +#: model:ir.ui.menu,name:base_exception.menu_action_exception +msgid "Exception Rules" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__exception_type +msgid "Exception Type" +msgstr "" + +#. module: base_exception +#: model:res.groups,name:base_exception.group_exception_rule_manager +msgid "Exception manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exception_ids +msgid "Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exceptions_summary +#, fuzzy +msgid "Exceptions Summary" +msgstr "Opis" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__exception_ids +msgid "Exceptions to resolve" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__sequence +msgid "Gives the sequence order when applying the test" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help with Python expressions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__id +msgid "ID" +msgstr "ID" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__ignore_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__ignore +msgid "Ignore Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__is_blocking +msgid "Is Blocking" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule____last_update +msgid "Last Modified on" +msgstr "Zadnje mijenjano" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_uid +msgid "Last Updated by" +msgstr "Zadnji ažurirao" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_date +msgid "Last Updated on" +msgstr "Zadnje ažurirano" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__main_exception_id +msgid "Main Exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__method +msgid "Method" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/wizard/base_exception_confirm.py:0 +#, python-format +msgid "Only 1 ID accepted, got %r." +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_confirm +msgid "Outstanding exceptions to manage" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "Outstanding exceptions to manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__code +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Python Code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__code +msgid "" +"Python code executed to check if the exception apply or not. Use failed = " +"True to block the exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__related_model_id +#, fuzzy +msgid "Related Model" +msgstr "Kreirano" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__sequence +msgid "Sequence" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__smart_search +#: model:ir.model.fields,field_description:base_exception.field_base_exception_method__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__smart_search +msgid "Smart Search" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "The exceptions can not be ignored, because some of them are blocking." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"There is a problem of configuration, python code, domain or method is " +"missing to match the exception type." +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "To block the exception use: failed = True" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Various fields may use Python code or Python expressions. The following " +"variables can be used:" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__is_blocking +msgid "When checked the exception can not be ignored" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "_Close" +msgstr "" diff --git a/base_exception/i18n/ca.po b/base_exception/i18n/ca.po new file mode 100644 index 00000000..5514fc8a --- /dev/null +++ b/base_exception/i18n/ca.po @@ -0,0 +1,324 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_exception +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-01 02:43+0000\n" +"PO-Revision-Date: 2017-08-01 02:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "(Blocking exception)" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "self: Record on which the rule is evaluated." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__active +msgid "Active" +msgstr "Actiu" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__model +msgid "Apply on" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Archived" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "As well as all the libraries provided in safe_eval." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_domain +msgid "By domain" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_method +msgid "By method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_py_code +msgid "By python code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__exception_type +msgid "" +"By python code: allow to define any arbitrary check\n" +"By domain: limited to a selection by an odoo domain:\n" +" performance can be better when exceptions are evaluated " +"with several records\n" +"By method: allow to select an existing check method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_uid +msgid "Created by" +msgstr "Creat per" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_date +msgid "Created on" +msgstr "Creat el" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__description +msgid "Description" +msgstr "Descripció" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__display_name +msgid "Display Name" +msgstr "Veure el nom" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__domain +msgid "Domain" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Enter Python code here. Help about Python expression is available in the " +"help tab of this document." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"Error when evaluating the exception.rule rule:\n" +" %(rule_name)s \n" +"(%(error)s)" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception +#, fuzzy +msgid "Exception" +msgstr "Descripció" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__name +msgid "Exception Name" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule +msgid "Exception Rule" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule_confirm +msgid "Exception Rule Confirm Wizard" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception_method +msgid "Exception Rule Methods" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Exception Rule Setup" +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_tree +#: model:ir.ui.menu,name:base_exception.menu_action_exception +msgid "Exception Rules" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__exception_type +msgid "Exception Type" +msgstr "" + +#. module: base_exception +#: model:res.groups,name:base_exception.group_exception_rule_manager +msgid "Exception manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exception_ids +msgid "Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exceptions_summary +#, fuzzy +msgid "Exceptions Summary" +msgstr "Descripció" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__exception_ids +msgid "Exceptions to resolve" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__sequence +msgid "Gives the sequence order when applying the test" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help with Python expressions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__id +msgid "ID" +msgstr "ID" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__ignore_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__ignore +msgid "Ignore Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__is_blocking +msgid "Is Blocking" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule____last_update +msgid "Last Modified on" +msgstr "Darrera modificació el" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_uid +msgid "Last Updated by" +msgstr "Darrera Actualització per" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_date +msgid "Last Updated on" +msgstr "Darrera Actualització el" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__main_exception_id +msgid "Main Exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__method +msgid "Method" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/wizard/base_exception_confirm.py:0 +#, python-format +msgid "Only 1 ID accepted, got %r." +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_confirm +msgid "Outstanding exceptions to manage" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "Outstanding exceptions to manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__code +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Python Code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__code +msgid "" +"Python code executed to check if the exception apply or not. Use failed = " +"True to block the exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__related_model_id +#, fuzzy +msgid "Related Model" +msgstr "Creat el" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__sequence +msgid "Sequence" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__smart_search +#: model:ir.model.fields,field_description:base_exception.field_base_exception_method__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__smart_search +msgid "Smart Search" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "The exceptions can not be ignored, because some of them are blocking." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"There is a problem of configuration, python code, domain or method is " +"missing to match the exception type." +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "To block the exception use: failed = True" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Various fields may use Python code or Python expressions. The following " +"variables can be used:" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__is_blocking +msgid "When checked the exception can not be ignored" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "_Close" +msgstr "" diff --git a/base_exception/i18n/cs.po b/base_exception/i18n/cs.po new file mode 100644 index 00000000..ff705886 --- /dev/null +++ b/base_exception/i18n/cs.po @@ -0,0 +1,324 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_exception +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-01 10:38+0000\n" +"PO-Revision-Date: 2017-05-01 10:38+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Czech (https://www.transifex.com/oca/teams/23907/cs/)\n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "(Blocking exception)" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "self: Record on which the rule is evaluated." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__active +msgid "Active" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__model +msgid "Apply on" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Archived" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "As well as all the libraries provided in safe_eval." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_domain +msgid "By domain" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_method +msgid "By method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_py_code +msgid "By python code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__exception_type +msgid "" +"By python code: allow to define any arbitrary check\n" +"By domain: limited to a selection by an odoo domain:\n" +" performance can be better when exceptions are evaluated " +"with several records\n" +"By method: allow to select an existing check method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_uid +msgid "Created by" +msgstr "Vytvořil(a)" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_date +msgid "Created on" +msgstr "Vytvořeno" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__description +msgid "Description" +msgstr "Popis" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__display_name +msgid "Display Name" +msgstr "Zobrazovaný název" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__domain +msgid "Domain" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Enter Python code here. Help about Python expression is available in the " +"help tab of this document." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"Error when evaluating the exception.rule rule:\n" +" %(rule_name)s \n" +"(%(error)s)" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception +#, fuzzy +msgid "Exception" +msgstr "Popis" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__name +msgid "Exception Name" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule +msgid "Exception Rule" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule_confirm +msgid "Exception Rule Confirm Wizard" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception_method +msgid "Exception Rule Methods" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Exception Rule Setup" +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_tree +#: model:ir.ui.menu,name:base_exception.menu_action_exception +msgid "Exception Rules" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__exception_type +msgid "Exception Type" +msgstr "" + +#. module: base_exception +#: model:res.groups,name:base_exception.group_exception_rule_manager +msgid "Exception manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exception_ids +msgid "Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exceptions_summary +#, fuzzy +msgid "Exceptions Summary" +msgstr "Popis" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__exception_ids +msgid "Exceptions to resolve" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__sequence +msgid "Gives the sequence order when applying the test" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help with Python expressions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__id +msgid "ID" +msgstr "ID" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__ignore_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__ignore +msgid "Ignore Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__is_blocking +msgid "Is Blocking" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule____last_update +msgid "Last Modified on" +msgstr "Naposled upraveno" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_uid +msgid "Last Updated by" +msgstr "Naposled upraveno" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_date +msgid "Last Updated on" +msgstr "Naposled upraveno" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__main_exception_id +msgid "Main Exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__method +msgid "Method" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/wizard/base_exception_confirm.py:0 +#, python-format +msgid "Only 1 ID accepted, got %r." +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_confirm +msgid "Outstanding exceptions to manage" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "Outstanding exceptions to manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__code +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Python Code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__code +msgid "" +"Python code executed to check if the exception apply or not. Use failed = " +"True to block the exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__related_model_id +#, fuzzy +msgid "Related Model" +msgstr "Vytvořeno" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__sequence +msgid "Sequence" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__smart_search +#: model:ir.model.fields,field_description:base_exception.field_base_exception_method__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__smart_search +msgid "Smart Search" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "The exceptions can not be ignored, because some of them are blocking." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"There is a problem of configuration, python code, domain or method is " +"missing to match the exception type." +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "To block the exception use: failed = True" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Various fields may use Python code or Python expressions. The following " +"variables can be used:" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__is_blocking +msgid "When checked the exception can not be ignored" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "_Close" +msgstr "" diff --git a/base_exception/i18n/cs_CZ.po b/base_exception/i18n/cs_CZ.po new file mode 100644 index 00000000..0a67427c --- /dev/null +++ b/base_exception/i18n/cs_CZ.po @@ -0,0 +1,376 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_exception +# +# Translators: +# Lukáš Spurný , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 11.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-03-03 10:08+0000\n" +"PO-Revision-Date: 2018-03-03 10:08+0000\n" +"Last-Translator: Lukáš Spurný , 2018\n" +"Language-Team: Czech (Czech Republic) (https://www.transifex.com/oca/" +"teams/23907/cs_CZ/)\n" +"Language: cs_CZ\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "(Blocking exception)" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "self: Record on which the rule is evaluated." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__active +msgid "Active" +msgstr "Aktivní" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__model +msgid "Apply on" +msgstr "Použít na" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Archived" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "As well as all the libraries provided in safe_eval." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_domain +msgid "By domain" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_method +msgid "By method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_py_code +#, fuzzy +msgid "By python code" +msgstr "Python kód" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__exception_type +msgid "" +"By python code: allow to define any arbitrary check\n" +"By domain: limited to a selection by an odoo domain:\n" +" performance can be better when exceptions are evaluated " +"with several records\n" +"By method: allow to select an existing check method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_uid +msgid "Created by" +msgstr "Vytvořil" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_date +msgid "Created on" +msgstr "Vytvořeno" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__description +msgid "Description" +msgstr "Popis" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__display_name +msgid "Display Name" +msgstr "Zobrazit název" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__domain +msgid "Domain" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Enter Python code here. Help about Python expression is available in the " +"help tab of this document." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"Error when evaluating the exception.rule rule:\n" +" %(rule_name)s \n" +"(%(error)s)" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception +#, fuzzy +msgid "Exception" +msgstr "Výjimky" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__name +msgid "Exception Name" +msgstr "Název výjimky" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule +msgid "Exception Rule" +msgstr "Pravidlo výjimek" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule_confirm +#, fuzzy +msgid "Exception Rule Confirm Wizard" +msgstr "pravidlo.výjimky.potvrzení" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception_method +#, fuzzy +msgid "Exception Rule Methods" +msgstr "Pravidla výjimek" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Exception Rule Setup" +msgstr "Nastavení výjimek" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_tree +#: model:ir.ui.menu,name:base_exception.menu_action_exception +msgid "Exception Rules" +msgstr "Pravidla výjimek" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__exception_type +#, fuzzy +msgid "Exception Type" +msgstr "Název výjimky" + +#. module: base_exception +#: model:res.groups,name:base_exception.group_exception_rule_manager +msgid "Exception manager" +msgstr "Správce výjimek" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exception_ids +msgid "Exceptions" +msgstr "Výjimky" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exceptions_summary +#, fuzzy +msgid "Exceptions Summary" +msgstr "Správce výjimek" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__exception_ids +msgid "Exceptions to resolve" +msgstr "Výjimky k vyřešení" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__sequence +msgid "Gives the sequence order when applying the test" +msgstr "Dává pořadí sekvence při použití testu" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help with Python expressions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__id +msgid "ID" +msgstr "ID" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__ignore_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__ignore +msgid "Ignore Exceptions" +msgstr "Ignorovat výjimky" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__is_blocking +msgid "Is Blocking" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule____last_update +msgid "Last Modified on" +msgstr "Poslední změna dne" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_uid +msgid "Last Updated by" +msgstr "Naposledy aktualizováno" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_date +msgid "Last Updated on" +msgstr "Poslední aktualizace dne" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__main_exception_id +msgid "Main Exception" +msgstr "Hlavní výjimka" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__method +msgid "Method" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/wizard/base_exception_confirm.py:0 +#, python-format +msgid "Only 1 ID accepted, got %r." +msgstr "Pouze 1 ID přijato, dostal %r." + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_confirm +msgid "Outstanding exceptions to manage" +msgstr "Vynikající výjimky pro správu" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "Outstanding exceptions to manager" +msgstr "Nesprávné výjimky pro správce" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__code +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Python Code" +msgstr "Python kód" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__code +msgid "" +"Python code executed to check if the exception apply or not. Use failed = " +"True to block the exception" +msgstr "" +"Kód Pythonu byl proveden, aby se zjistilo, zda se výjimka vztahuje nebo ne. " +"Použití selhaní = pravda pro zablokování výjimky" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__related_model_id +msgid "Related Model" +msgstr "Související model" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__sequence +msgid "Sequence" +msgstr "Sekvence" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__smart_search +#: model:ir.model.fields,field_description:base_exception.field_base_exception_method__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__smart_search +msgid "Smart Search" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "The exceptions can not be ignored, because some of them are blocking." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"There is a problem of configuration, python code, domain or method is " +"missing to match the exception type." +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "To block the exception use: failed = True" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Various fields may use Python code or Python expressions. The following " +"variables can be used:" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__is_blocking +msgid "When checked the exception can not be ignored" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "_Close" +msgstr "_Zavřít" + +#, fuzzy, python-format +#~ msgid "" +#~ "Error when evaluating the exception.rule rule:\n" +#~ " %s \n" +#~ "(%s)" +#~ msgstr "Chyba při vyhodnocování pravidla exception.rule: %s (%s)" + +#~ msgid "Exceptions Rules" +#~ msgstr "Pravidla výjimek" + +#~ msgid "" +#~ "If we detect exception we set the state of object (ex purchase) to the " +#~ "next_state (ex 'to approve'). If there are more than one exception " +#~ "detected and all have a value for next_state, we usethe exception having " +#~ "the smallest sequence value" +#~ msgstr "" +#~ "Pokud zjistíme výjimku, nastavíme stav objektu (ex nákupu) na status " +#~ "next_state (ex 'to approve). Pokud je zjištěno více než jedna výjimka a " +#~ "všechny mají hodnotu pro next_statec, použijeme výjimku s nejmenší " +#~ "hodnotou sekvence" + +#~ msgid "Next state" +#~ msgstr "Další stav" + +#~ msgid "Rule Group" +#~ msgstr "Skupina pravidel" + +#~ msgid "" +#~ "Rule group is used to group the rules that must validated at same time " +#~ "for a target object. Ex: validate sale.order.line rules with sale order " +#~ "rules." +#~ msgstr "" +#~ "Skupina pravidel se používá k seskupení pravidel, která musí být pro " +#~ "cílový objekt současně ověřena. Příklad: ověřte pravidla sales.order.line " +#~ "s pravidly objednávky prodeje." + +#~ msgid "" +#~ "The value \"%s\" you choose for the \"next state\" field state of \"%s\" " +#~ "is wrong. Value must be in this list %s" +#~ msgstr "" +#~ "Hodnota \"%s\" kterou zvolíte pro stav pole \"další stát\" \"%s\" je " +#~ "nesprávná. Hodnota musí být v tomto seznamu %s" + +#~ msgid "base.exception" +#~ msgstr "základní.výjimka" diff --git a/base_exception/i18n/da.po b/base_exception/i18n/da.po new file mode 100644 index 00000000..e97d6c0a --- /dev/null +++ b/base_exception/i18n/da.po @@ -0,0 +1,324 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_exception +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-01 02:43+0000\n" +"PO-Revision-Date: 2017-08-01 02:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Danish (https://www.transifex.com/oca/teams/23907/da/)\n" +"Language: da\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "(Blocking exception)" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "self: Record on which the rule is evaluated." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__active +msgid "Active" +msgstr "Aktiv" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__model +msgid "Apply on" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Archived" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "As well as all the libraries provided in safe_eval." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_domain +msgid "By domain" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_method +msgid "By method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_py_code +msgid "By python code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__exception_type +msgid "" +"By python code: allow to define any arbitrary check\n" +"By domain: limited to a selection by an odoo domain:\n" +" performance can be better when exceptions are evaluated " +"with several records\n" +"By method: allow to select an existing check method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_uid +msgid "Created by" +msgstr "Oprettet af" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_date +msgid "Created on" +msgstr "Oprettet den" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__description +msgid "Description" +msgstr "Beskrivelse" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__display_name +msgid "Display Name" +msgstr "Vist navn" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__domain +msgid "Domain" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Enter Python code here. Help about Python expression is available in the " +"help tab of this document." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"Error when evaluating the exception.rule rule:\n" +" %(rule_name)s \n" +"(%(error)s)" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception +#, fuzzy +msgid "Exception" +msgstr "Beskrivelse" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__name +msgid "Exception Name" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule +msgid "Exception Rule" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule_confirm +msgid "Exception Rule Confirm Wizard" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception_method +msgid "Exception Rule Methods" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Exception Rule Setup" +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_tree +#: model:ir.ui.menu,name:base_exception.menu_action_exception +msgid "Exception Rules" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__exception_type +msgid "Exception Type" +msgstr "" + +#. module: base_exception +#: model:res.groups,name:base_exception.group_exception_rule_manager +msgid "Exception manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exception_ids +msgid "Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exceptions_summary +#, fuzzy +msgid "Exceptions Summary" +msgstr "Beskrivelse" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__exception_ids +msgid "Exceptions to resolve" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__sequence +msgid "Gives the sequence order when applying the test" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help with Python expressions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__id +msgid "ID" +msgstr "Id" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__ignore_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__ignore +msgid "Ignore Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__is_blocking +msgid "Is Blocking" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule____last_update +msgid "Last Modified on" +msgstr "Sidst ændret den" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_uid +msgid "Last Updated by" +msgstr "Sidst opdateret af" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_date +msgid "Last Updated on" +msgstr "Sidst opdateret den" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__main_exception_id +msgid "Main Exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__method +msgid "Method" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/wizard/base_exception_confirm.py:0 +#, python-format +msgid "Only 1 ID accepted, got %r." +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_confirm +msgid "Outstanding exceptions to manage" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "Outstanding exceptions to manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__code +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Python Code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__code +msgid "" +"Python code executed to check if the exception apply or not. Use failed = " +"True to block the exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__related_model_id +#, fuzzy +msgid "Related Model" +msgstr "Oprettet den" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__sequence +msgid "Sequence" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__smart_search +#: model:ir.model.fields,field_description:base_exception.field_base_exception_method__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__smart_search +msgid "Smart Search" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "The exceptions can not be ignored, because some of them are blocking." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"There is a problem of configuration, python code, domain or method is " +"missing to match the exception type." +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "To block the exception use: failed = True" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Various fields may use Python code or Python expressions. The following " +"variables can be used:" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__is_blocking +msgid "When checked the exception can not be ignored" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "_Close" +msgstr "" diff --git a/base_exception/i18n/de.po b/base_exception/i18n/de.po new file mode 100644 index 00000000..4f259c4b --- /dev/null +++ b/base_exception/i18n/de.po @@ -0,0 +1,377 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_exception +# +# Translators: +# OCA Transbot , 2017 +# Rudolf Schnapka , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 11.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-16 12:37+0000\n" +"PO-Revision-Date: 2018-01-16 12:37+0000\n" +"Last-Translator: Rudolf Schnapka , 2017\n" +"Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "(Blocking exception)" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "self: Record on which the rule is evaluated." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__active +msgid "Active" +msgstr "Aktiv" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__model +msgid "Apply on" +msgstr "Anwenden auf" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Archived" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "As well as all the libraries provided in safe_eval." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_domain +msgid "By domain" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_method +msgid "By method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_py_code +#, fuzzy +msgid "By python code" +msgstr "Python Code" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__exception_type +msgid "" +"By python code: allow to define any arbitrary check\n" +"By domain: limited to a selection by an odoo domain:\n" +" performance can be better when exceptions are evaluated " +"with several records\n" +"By method: allow to select an existing check method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_uid +msgid "Created by" +msgstr "Erstellt durch" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_date +msgid "Created on" +msgstr "Erstellt am" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__description +msgid "Description" +msgstr "Beschreibung" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__display_name +msgid "Display Name" +msgstr "Anzeigename" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__domain +msgid "Domain" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Enter Python code here. Help about Python expression is available in the " +"help tab of this document." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"Error when evaluating the exception.rule rule:\n" +" %(rule_name)s \n" +"(%(error)s)" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception +#, fuzzy +msgid "Exception" +msgstr "Ausnahmen" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__name +msgid "Exception Name" +msgstr "Ausnahmebezeichnung" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule +msgid "Exception Rule" +msgstr "Ausnahmeregel" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule_confirm +#, fuzzy +msgid "Exception Rule Confirm Wizard" +msgstr "exception.rule.confirm" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception_method +#, fuzzy +msgid "Exception Rule Methods" +msgstr "Ausnahmeregeln" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Exception Rule Setup" +msgstr "Einstellungen zu Ausnahmeregeln" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_tree +#: model:ir.ui.menu,name:base_exception.menu_action_exception +msgid "Exception Rules" +msgstr "Ausnahmeregeln" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__exception_type +#, fuzzy +msgid "Exception Type" +msgstr "Ausnahmebezeichnung" + +#. module: base_exception +#: model:res.groups,name:base_exception.group_exception_rule_manager +msgid "Exception manager" +msgstr "Ausnahmeverwaltung" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exception_ids +msgid "Exceptions" +msgstr "Ausnahmen" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exceptions_summary +#, fuzzy +msgid "Exceptions Summary" +msgstr "Ausnahmeverwaltung" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__exception_ids +msgid "Exceptions to resolve" +msgstr "Aufzulösende Ausnahmen" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__sequence +msgid "Gives the sequence order when applying the test" +msgstr "Gibt die Reihenfolge der Test-Ausführungen vor" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help with Python expressions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__id +msgid "ID" +msgstr "ID" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__ignore_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__ignore +msgid "Ignore Exceptions" +msgstr "Ausnahmen ignorieren" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__is_blocking +msgid "Is Blocking" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule____last_update +msgid "Last Modified on" +msgstr "Zuletzt geändert am" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_uid +msgid "Last Updated by" +msgstr "Zuletzt aktualisiert durch" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_date +msgid "Last Updated on" +msgstr "Zuletzt aktualisiert am" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__main_exception_id +msgid "Main Exception" +msgstr "Haupt-Ausnahme" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__method +msgid "Method" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/wizard/base_exception_confirm.py:0 +#, python-format +msgid "Only 1 ID accepted, got %r." +msgstr "Nur 1 ID zugelassen, erhielt %r." + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_confirm +msgid "Outstanding exceptions to manage" +msgstr "Ausstehende zu verarbeitende Ausnahmen" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "Outstanding exceptions to manager" +msgstr "Ausstehende Ausnahmen an Manager" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__code +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Python Code" +msgstr "Python Code" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__code +msgid "" +"Python code executed to check if the exception apply or not. Use failed = " +"True to block the exception" +msgstr "Zur Prüfung ausgeführter Python Code, ob Ausnahme zutrifft oder nicht." + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__related_model_id +msgid "Related Model" +msgstr "Zugehöriges Modell" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__sequence +msgid "Sequence" +msgstr "Reihenfolge" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__smart_search +#: model:ir.model.fields,field_description:base_exception.field_base_exception_method__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__smart_search +msgid "Smart Search" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "The exceptions can not be ignored, because some of them are blocking." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"There is a problem of configuration, python code, domain or method is " +"missing to match the exception type." +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "To block the exception use: failed = True" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Various fields may use Python code or Python expressions. The following " +"variables can be used:" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__is_blocking +msgid "When checked the exception can not be ignored" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "_Close" +msgstr "_Schliessen" + +#, fuzzy, python-format +#~ msgid "" +#~ "Error when evaluating the exception.rule rule:\n" +#~ " %s \n" +#~ "(%s)" +#~ msgstr "" +#~ "Fehler bei Auswertung der exception.rule Regel:\n" +#~ " %s \n" +#~ "(%s)" + +#~ msgid "Exceptions Rules" +#~ msgstr "Ausnahmenregeln" + +#~ msgid "" +#~ "If we detect exception we set the state of object (ex purchase) to the " +#~ "next_state (ex 'to approve'). If there are more than one exception " +#~ "detected and all have a value for next_state, we usethe exception having " +#~ "the smallest sequence value" +#~ msgstr "" +#~ "Wenn wir eine Ausnahme feststellen, setzen wir den Status des Objekts (z." +#~ "B. Bestellung) auf den next_state (z.B. Freizugeben). Wenn mehrere " +#~ "Ausnahmen festgestellt wurden und alle haben einen Wert next_state, dann " +#~ "ziehen wir den mit kleinstem Reihenfolgewert heran." + +#~ msgid "Next state" +#~ msgstr "Nächster Status" + +#~ msgid "Rule Group" +#~ msgstr "Regelgruppe" + +#~ msgid "" +#~ "Rule group is used to group the rules that must validated at same time " +#~ "for a target object. Ex: validate sale.order.line rules with sale order " +#~ "rules." +#~ msgstr "" +#~ "Regelgruppen werden verwendet, um Regeln zusammenzufassen, die " +#~ "gleichzeitig auf ein Zielobject angewendet werden müssen, z.B. Regeln zu " +#~ "sale.order.line mit Regeln zu sale.order." + +#~ msgid "" +#~ "The value \"%s\" you choose for the \"next state\" field state of \"%s\" " +#~ "is wrong. Value must be in this list %s" +#~ msgstr "" +#~ "Der Wert \"%s\" den Sie als \"nächsten Status\" mit Feldstatus \"%s\" ist " +#~ "falsch. Der Wert muss einer aus Liste %s sein." + +#~ msgid "base.exception" +#~ msgstr "base.exception" diff --git a/base_exception/i18n/el_GR.po b/base_exception/i18n/el_GR.po new file mode 100644 index 00000000..cd14e291 --- /dev/null +++ b/base_exception/i18n/el_GR.po @@ -0,0 +1,325 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_exception +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-01 10:38+0000\n" +"PO-Revision-Date: 2017-05-01 10:38+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/" +"el_GR/)\n" +"Language: el_GR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "(Blocking exception)" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "self: Record on which the rule is evaluated." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__active +msgid "Active" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__model +msgid "Apply on" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Archived" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "As well as all the libraries provided in safe_eval." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_domain +msgid "By domain" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_method +msgid "By method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_py_code +msgid "By python code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__exception_type +msgid "" +"By python code: allow to define any arbitrary check\n" +"By domain: limited to a selection by an odoo domain:\n" +" performance can be better when exceptions are evaluated " +"with several records\n" +"By method: allow to select an existing check method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_uid +msgid "Created by" +msgstr "Δημιουργήθηκε από " + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_date +msgid "Created on" +msgstr "Δημιουργήθηκε στις" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__description +msgid "Description" +msgstr "Περιγραφή" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__display_name +msgid "Display Name" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__domain +msgid "Domain" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Enter Python code here. Help about Python expression is available in the " +"help tab of this document." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"Error when evaluating the exception.rule rule:\n" +" %(rule_name)s \n" +"(%(error)s)" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception +#, fuzzy +msgid "Exception" +msgstr "Περιγραφή" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__name +msgid "Exception Name" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule +msgid "Exception Rule" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule_confirm +msgid "Exception Rule Confirm Wizard" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception_method +msgid "Exception Rule Methods" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Exception Rule Setup" +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_tree +#: model:ir.ui.menu,name:base_exception.menu_action_exception +msgid "Exception Rules" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__exception_type +msgid "Exception Type" +msgstr "" + +#. module: base_exception +#: model:res.groups,name:base_exception.group_exception_rule_manager +msgid "Exception manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exception_ids +msgid "Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exceptions_summary +#, fuzzy +msgid "Exceptions Summary" +msgstr "Περιγραφή" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__exception_ids +msgid "Exceptions to resolve" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__sequence +msgid "Gives the sequence order when applying the test" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help with Python expressions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__id +msgid "ID" +msgstr "Κωδικός" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__ignore_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__ignore +msgid "Ignore Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__is_blocking +msgid "Is Blocking" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule____last_update +msgid "Last Modified on" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_uid +msgid "Last Updated by" +msgstr "Τελευταία ενημέρωση από" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_date +msgid "Last Updated on" +msgstr "Τελευταία ενημέρωση στις" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__main_exception_id +msgid "Main Exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__method +msgid "Method" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/wizard/base_exception_confirm.py:0 +#, python-format +msgid "Only 1 ID accepted, got %r." +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_confirm +msgid "Outstanding exceptions to manage" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "Outstanding exceptions to manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__code +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Python Code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__code +msgid "" +"Python code executed to check if the exception apply or not. Use failed = " +"True to block the exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__related_model_id +#, fuzzy +msgid "Related Model" +msgstr "Δημιουργήθηκε στις" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__sequence +msgid "Sequence" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__smart_search +#: model:ir.model.fields,field_description:base_exception.field_base_exception_method__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__smart_search +msgid "Smart Search" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "The exceptions can not be ignored, because some of them are blocking." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"There is a problem of configuration, python code, domain or method is " +"missing to match the exception type." +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "To block the exception use: failed = True" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Various fields may use Python code or Python expressions. The following " +"variables can be used:" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__is_blocking +msgid "When checked the exception can not be ignored" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "_Close" +msgstr "" diff --git a/base_exception/i18n/en_GB.po b/base_exception/i18n/en_GB.po new file mode 100644 index 00000000..25dc47c8 --- /dev/null +++ b/base_exception/i18n/en_GB.po @@ -0,0 +1,325 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_exception +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-01 10:38+0000\n" +"PO-Revision-Date: 2017-05-01 10:38+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: English (United Kingdom) (https://www.transifex.com/oca/" +"teams/23907/en_GB/)\n" +"Language: en_GB\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "(Blocking exception)" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "self: Record on which the rule is evaluated." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__active +msgid "Active" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__model +msgid "Apply on" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Archived" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "As well as all the libraries provided in safe_eval." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_domain +msgid "By domain" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_method +msgid "By method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_py_code +msgid "By python code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__exception_type +msgid "" +"By python code: allow to define any arbitrary check\n" +"By domain: limited to a selection by an odoo domain:\n" +" performance can be better when exceptions are evaluated " +"with several records\n" +"By method: allow to select an existing check method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_uid +msgid "Created by" +msgstr "Created by" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_date +msgid "Created on" +msgstr "Created on" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__description +msgid "Description" +msgstr "Description" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__display_name +msgid "Display Name" +msgstr "Display Name" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__domain +msgid "Domain" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Enter Python code here. Help about Python expression is available in the " +"help tab of this document." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"Error when evaluating the exception.rule rule:\n" +" %(rule_name)s \n" +"(%(error)s)" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception +#, fuzzy +msgid "Exception" +msgstr "Description" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__name +msgid "Exception Name" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule +msgid "Exception Rule" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule_confirm +msgid "Exception Rule Confirm Wizard" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception_method +msgid "Exception Rule Methods" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Exception Rule Setup" +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_tree +#: model:ir.ui.menu,name:base_exception.menu_action_exception +msgid "Exception Rules" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__exception_type +msgid "Exception Type" +msgstr "" + +#. module: base_exception +#: model:res.groups,name:base_exception.group_exception_rule_manager +msgid "Exception manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exception_ids +msgid "Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exceptions_summary +#, fuzzy +msgid "Exceptions Summary" +msgstr "Description" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__exception_ids +msgid "Exceptions to resolve" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__sequence +msgid "Gives the sequence order when applying the test" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help with Python expressions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__id +msgid "ID" +msgstr "ID" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__ignore_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__ignore +msgid "Ignore Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__is_blocking +msgid "Is Blocking" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule____last_update +msgid "Last Modified on" +msgstr "Last Modified on" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_uid +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_date +msgid "Last Updated on" +msgstr "Last Updated on" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__main_exception_id +msgid "Main Exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__method +msgid "Method" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/wizard/base_exception_confirm.py:0 +#, python-format +msgid "Only 1 ID accepted, got %r." +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_confirm +msgid "Outstanding exceptions to manage" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "Outstanding exceptions to manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__code +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Python Code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__code +msgid "" +"Python code executed to check if the exception apply or not. Use failed = " +"True to block the exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__related_model_id +#, fuzzy +msgid "Related Model" +msgstr "Created on" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__sequence +msgid "Sequence" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__smart_search +#: model:ir.model.fields,field_description:base_exception.field_base_exception_method__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__smart_search +msgid "Smart Search" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "The exceptions can not be ignored, because some of them are blocking." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"There is a problem of configuration, python code, domain or method is " +"missing to match the exception type." +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "To block the exception use: failed = True" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Various fields may use Python code or Python expressions. The following " +"variables can be used:" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__is_blocking +msgid "When checked the exception can not be ignored" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "_Close" +msgstr "" diff --git a/base_exception/i18n/es.po b/base_exception/i18n/es.po new file mode 100644 index 00000000..6aa05749 --- /dev/null +++ b/base_exception/i18n/es.po @@ -0,0 +1,323 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_exception +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 15.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-06-28 22:06+0000\n" +"PO-Revision-Date: 2022-06-28 22:06+0000\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "(Blocking exception)" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "self: Record on which the rule is evaluated." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__active +msgid "Active" +msgstr "Activo" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__model +msgid "Apply on" +msgstr "Aplicar en" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Archived" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "As well as all the libraries provided in safe_eval." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_domain +msgid "By domain" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_method +msgid "By method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_py_code +msgid "By python code" +msgstr "Código python" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__exception_type +msgid "" +"By python code: allow to define any arbitrary check\n" +"By domain: limited to a selection by an odoo domain:\n" +" performance can be better when exceptions are evaluated " +"with several records\n" +"By method: allow to select an existing check method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_date +msgid "Created on" +msgstr "Creado el" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__description +msgid "Description" +msgstr "Descripción" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__display_name +msgid "Display Name" +msgstr "Nombre a mostrar" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__domain +msgid "Domain" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Enter Python code here. Help about Python expression is available in the " +"help tab of this document." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"Error when evaluating the exception.rule rule:\n" +" %(rule_name)s \n" +"(%(error)s)" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception +msgid "Exception" +msgstr "Excepciones" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__name +msgid "Exception Name" +msgstr "Nombre de la excepción" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule +msgid "Exception Rule" +msgstr "Regla de excepción" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule_confirm +msgid "Exception Rule Confirm Wizard" +msgstr "exception.rule.confirm" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception_method +msgid "Exception Rule Methods" +msgstr "Reglas de excepción" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Exception Rule Setup" +msgstr "Configuración de regla de excepción" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_tree +#: model:ir.ui.menu,name:base_exception.menu_action_exception +msgid "Exception Rules" +msgstr "Reglas de excepción" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__exception_type +msgid "Exception Type" +msgstr "Nombre de la excepción" + +#. module: base_exception +#: model:res.groups,name:base_exception.group_exception_rule_manager +msgid "Exception manager" +msgstr "Administrador de excepciones" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exception_ids +msgid "Exceptions" +msgstr "Excepciones" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exceptions_summary +msgid "Exceptions Summary" +msgstr "Administrador de excepciones" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__exception_ids +msgid "Exceptions to resolve" +msgstr "Excepciones por resolver" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__sequence +msgid "Gives the sequence order when applying the test" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help with Python expressions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__id +msgid "ID" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__ignore_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__ignore +msgid "Ignore Exceptions" +msgstr "Ignorar excepciones" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__is_blocking +msgid "Is Blocking" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule____last_update +msgid "Last Modified on" +msgstr "Última actualización por" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_uid +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_date +msgid "Last Updated on" +msgstr "Última actualización el" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__main_exception_id +msgid "Main Exception" +msgstr "Excepción principal" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__method +msgid "Method" +msgstr "Método" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/wizard/base_exception_confirm.py:0 +#, python-format +msgid "Only 1 ID accepted, got %r." +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_confirm +msgid "Outstanding exceptions to manage" +msgstr "Excepciones pendientes de administrar" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "Outstanding exceptions to manager" +msgstr "Excepciones pendientes al gestor" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__code +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Python Code" +msgstr "Código python" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__code +msgid "" +"Python code executed to check if the exception apply or not. Use failed = " +"True to block the exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__related_model_id +msgid "Related Model" +msgstr "Modelo relacionado" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__sequence +msgid "Sequence" +msgstr "Secuencia" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__smart_search +#: model:ir.model.fields,field_description:base_exception.field_base_exception_method__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__smart_search +msgid "Smart Search" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "The exceptions can not be ignored, because some of them are blocking." +msgstr "" +"Las excepciones no se pueden ignorar, porque algunas de ellas están " +"bloqueando." + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"There is a problem of configuration, python code, domain or method is " +"missing to match the exception type." +msgstr "Hay un problema de configuración, código python, match exception type" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "To block the exception use: failed = True" +msgstr "Para bloquear el uso de excepción: failed = True" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Various fields may use Python code or Python expressions. The following " +"variables can be used:" +msgstr "" +"Varios campos pueden usar código de Python o expresiones de Python. A " +"continuación se muestran las variables que pueden ser usadas." + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__is_blocking +msgid "When checked the exception can not be ignored" +msgstr "Cuando está marcada, la excepción no se puede ignorar" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "_Close" +msgstr "_Cerrar" diff --git a/base_exception/i18n/es_AR.po b/base_exception/i18n/es_AR.po new file mode 100644 index 00000000..ae06b99a --- /dev/null +++ b/base_exception/i18n/es_AR.po @@ -0,0 +1,371 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_exception +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-01 10:38+0000\n" +"PO-Revision-Date: 2023-01-16 03:17+0000\n" +"Last-Translator: Ignacio Buioli \n" +"Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/" +"teams/23907/es_AR/)\n" +"Language: es_AR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.14.1\n" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "(Blocking exception)" +msgstr "(Excepción de bloqueo)" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "self: Record on which the rule is evaluated." +msgstr "self: Registro sobre el cual se evalúa la regla ." + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__active +msgid "Active" +msgstr "Activo" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__model +msgid "Apply on" +msgstr "Aplicar en" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Archived" +msgstr "Archivado" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "As well as all the libraries provided in safe_eval." +msgstr "Además de todas las librerías proporcionadas en safe_eval." + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_domain +msgid "By domain" +msgstr "Por dominio" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_method +msgid "By method" +msgstr "Por método" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_py_code +msgid "By python code" +msgstr "Por código de Python" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__exception_type +msgid "" +"By python code: allow to define any arbitrary check\n" +"By domain: limited to a selection by an odoo domain:\n" +" performance can be better when exceptions are evaluated " +"with several records\n" +"By method: allow to select an existing check method" +msgstr "" +"Por código de Python: permite definir cualquier control arbitrario\n" +"Por dominio: limitado a una selección por un dominio Odoo:\n" +" el rendimiento puede ser mejor cuando las excepciones se evalúan " +"con varios registros\n" +"Por método: permite seleccionar un método de verificación existente" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__description +msgid "Description" +msgstr "Descripción" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__display_name +msgid "Display Name" +msgstr "Mostrar Nombre" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__domain +msgid "Domain" +msgstr "Dominio" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Enter Python code here. Help about Python expression is available in the " +"help tab of this document." +msgstr "" +"Ingrese código de Python aquí. La ayuda sobre expresiones de Python está " +"disponible en la pestaña de Ayuda de este documento." + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"Error when evaluating the exception.rule rule:\n" +" %(rule_name)s \n" +"(%(error)s)" +msgstr "" +"Error al evaluar al regla de exception.rule:\n" +" %(rule_name)s \n" +"(%(error)s)" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception +msgid "Exception" +msgstr "Excepción" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__name +msgid "Exception Name" +msgstr "Nombre de la Excepción" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule +msgid "Exception Rule" +msgstr "Regla de la Excepción" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule_confirm +msgid "Exception Rule Confirm Wizard" +msgstr "Asistente para Confirmar la Regla de Excepción" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception_method +msgid "Exception Rule Methods" +msgstr "Métodos de la Regla de Excepción" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Exception Rule Setup" +msgstr "Configuración de la Regla de Excepción" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_tree +#: model:ir.ui.menu,name:base_exception.menu_action_exception +msgid "Exception Rules" +msgstr "Reglas de Excepción" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__exception_type +msgid "Exception Type" +msgstr "Tipo de Excepción" + +#. module: base_exception +#: model:res.groups,name:base_exception.group_exception_rule_manager +msgid "Exception manager" +msgstr "Gestor de Excepción" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exception_ids +msgid "Exceptions" +msgstr "Excepciones" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exceptions_summary +msgid "Exceptions Summary" +msgstr "Resumen de Excepciones" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__exception_ids +msgid "Exceptions to resolve" +msgstr "Excepciones a resolver" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__sequence +msgid "Gives the sequence order when applying the test" +msgstr "Da el orden de secuencia al aplicar la prueba" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help" +msgstr "Ayuda" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help with Python expressions" +msgstr "Ayuda con expresiones Python" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__id +msgid "ID" +msgstr "ID" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__ignore_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__ignore +msgid "Ignore Exceptions" +msgstr "Ignorar Excepciones" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__is_blocking +msgid "Is Blocking" +msgstr "Está Bloqueando" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule____last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_uid +msgid "Last Updated by" +msgstr "Última actualización realizada por" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_date +msgid "Last Updated on" +msgstr "Última actualización el" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__main_exception_id +msgid "Main Exception" +msgstr "Excepción Principal" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__method +msgid "Method" +msgstr "Método" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/wizard/base_exception_confirm.py:0 +#, python-format +msgid "Only 1 ID accepted, got %r." +msgstr "Solo 1 ID aceptado, se obtuvieron %r." + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_confirm +msgid "Outstanding exceptions to manage" +msgstr "Excepciones pendientes para gestionar" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "Outstanding exceptions to manager" +msgstr "Excepciones pendientes para gestionar" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__code +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Python Code" +msgstr "Código de Python" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__code +msgid "" +"Python code executed to check if the exception apply or not. Use failed = " +"True to block the exception" +msgstr "" +"Código de Python ejecutado para verificar si la excepción se aplica o no. " +"Utilice failed = True para bloquear la excepción" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__related_model_id +msgid "Related Model" +msgstr "Modelo Relacionado" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__sequence +msgid "Sequence" +msgstr "Secuencia" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__smart_search +#: model:ir.model.fields,field_description:base_exception.field_base_exception_method__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__smart_search +msgid "Smart Search" +msgstr "Búsqueda Inteligente" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "The exceptions can not be ignored, because some of them are blocking." +msgstr "" +"Las excepciones no pueden ser ignoradas, porque algunas están bloqueadas." + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"There is a problem of configuration, python code, domain or method is " +"missing to match the exception type." +msgstr "" +"Hay un problema de configuración, falta el código de Python, dominio o " +"método para coincidir con el tipo de excepción." + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "To block the exception use: failed = True" +msgstr "Para bloquear la excepción utilice: failed = True" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Various fields may use Python code or Python expressions. The following " +"variables can be used:" +msgstr "" +"Varios campos pueden utilizar código de Python o expresiones de Python. Las " +"siguientes variables se puede utilizar:" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__is_blocking +msgid "When checked the exception can not be ignored" +msgstr "Cuando está marcado la excepción no puede ser ignorada" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "_Close" +msgstr "_Close" + +#~ msgid "Changeset Changes" +#~ msgstr "Cambios en el Conjunto de Cambios" + +#~ msgid "Changesets" +#~ msgstr "Conjunto de Cambios" + +#~ msgid "Count Pending Changeset Changes" +#~ msgstr "Contar los Cambios Pendientes del Conjunto de Cambios" + +#~ msgid "Count Pending Changesets" +#~ msgstr "Contar Conjunto de Cambios Pendientes" + +#, python-format +#~ msgid "" +#~ "Error when evaluating the exception.rule rule:\n" +#~ " %s \n" +#~ "(%s)" +#~ msgstr "" +#~ "Erro al evaluar la regla exception.rule:\n" +#~ " %s \n" +#~ "(%s)" + +#~ msgid "Exceptions Rules" +#~ msgstr "Reglas de Excepciones" + +#~ msgid "Is blocking" +#~ msgstr "Está Bloqueado" + +#~ msgid "User Can See Changeset" +#~ msgstr "El usuario puede ver el Conjunto de Cambios" diff --git a/base_exception/i18n/es_CL.po b/base_exception/i18n/es_CL.po new file mode 100644 index 00000000..fe26028c --- /dev/null +++ b/base_exception/i18n/es_CL.po @@ -0,0 +1,325 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_exception +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-01 10:38+0000\n" +"PO-Revision-Date: 2017-05-01 10:38+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Chile) (https://www.transifex.com/oca/teams/23907/" +"es_CL/)\n" +"Language: es_CL\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "(Blocking exception)" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "self: Record on which the rule is evaluated." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__active +msgid "Active" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__model +msgid "Apply on" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Archived" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "As well as all the libraries provided in safe_eval." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_domain +msgid "By domain" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_method +msgid "By method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_py_code +msgid "By python code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__exception_type +msgid "" +"By python code: allow to define any arbitrary check\n" +"By domain: limited to a selection by an odoo domain:\n" +" performance can be better when exceptions are evaluated " +"with several records\n" +"By method: allow to select an existing check method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__description +msgid "Description" +msgstr "Descripción" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__domain +msgid "Domain" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Enter Python code here. Help about Python expression is available in the " +"help tab of this document." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"Error when evaluating the exception.rule rule:\n" +" %(rule_name)s \n" +"(%(error)s)" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception +#, fuzzy +msgid "Exception" +msgstr "Descripción" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__name +msgid "Exception Name" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule +msgid "Exception Rule" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule_confirm +msgid "Exception Rule Confirm Wizard" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception_method +msgid "Exception Rule Methods" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Exception Rule Setup" +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_tree +#: model:ir.ui.menu,name:base_exception.menu_action_exception +msgid "Exception Rules" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__exception_type +msgid "Exception Type" +msgstr "" + +#. module: base_exception +#: model:res.groups,name:base_exception.group_exception_rule_manager +msgid "Exception manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exception_ids +msgid "Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exceptions_summary +#, fuzzy +msgid "Exceptions Summary" +msgstr "Descripción" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__exception_ids +msgid "Exceptions to resolve" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__sequence +msgid "Gives the sequence order when applying the test" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help with Python expressions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__id +msgid "ID" +msgstr "ID (identificación)" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__ignore_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__ignore +msgid "Ignore Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__is_blocking +msgid "Is Blocking" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule____last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_uid +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__main_exception_id +msgid "Main Exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__method +msgid "Method" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/wizard/base_exception_confirm.py:0 +#, python-format +msgid "Only 1 ID accepted, got %r." +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_confirm +msgid "Outstanding exceptions to manage" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "Outstanding exceptions to manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__code +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Python Code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__code +msgid "" +"Python code executed to check if the exception apply or not. Use failed = " +"True to block the exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__related_model_id +#, fuzzy +msgid "Related Model" +msgstr "Creado en" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__sequence +msgid "Sequence" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__smart_search +#: model:ir.model.fields,field_description:base_exception.field_base_exception_method__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__smart_search +msgid "Smart Search" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "The exceptions can not be ignored, because some of them are blocking." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"There is a problem of configuration, python code, domain or method is " +"missing to match the exception type." +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "To block the exception use: failed = True" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Various fields may use Python code or Python expressions. The following " +"variables can be used:" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__is_blocking +msgid "When checked the exception can not be ignored" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "_Close" +msgstr "" diff --git a/base_exception/i18n/es_CO.po b/base_exception/i18n/es_CO.po new file mode 100644 index 00000000..fcfe4914 --- /dev/null +++ b/base_exception/i18n/es_CO.po @@ -0,0 +1,325 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_exception +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-01 10:38+0000\n" +"PO-Revision-Date: 2017-05-01 10:38+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/" +"es_CO/)\n" +"Language: es_CO\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "(Blocking exception)" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "self: Record on which the rule is evaluated." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__active +msgid "Active" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__model +msgid "Apply on" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Archived" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "As well as all the libraries provided in safe_eval." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_domain +msgid "By domain" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_method +msgid "By method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_py_code +msgid "By python code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__exception_type +msgid "" +"By python code: allow to define any arbitrary check\n" +"By domain: limited to a selection by an odoo domain:\n" +" performance can be better when exceptions are evaluated " +"with several records\n" +"By method: allow to select an existing check method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_date +msgid "Created on" +msgstr "Creado" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__description +msgid "Description" +msgstr "Descripción" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__display_name +msgid "Display Name" +msgstr "Nombre Público" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__domain +msgid "Domain" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Enter Python code here. Help about Python expression is available in the " +"help tab of this document." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"Error when evaluating the exception.rule rule:\n" +" %(rule_name)s \n" +"(%(error)s)" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception +#, fuzzy +msgid "Exception" +msgstr "Descripción" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__name +msgid "Exception Name" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule +msgid "Exception Rule" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule_confirm +msgid "Exception Rule Confirm Wizard" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception_method +msgid "Exception Rule Methods" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Exception Rule Setup" +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_tree +#: model:ir.ui.menu,name:base_exception.menu_action_exception +msgid "Exception Rules" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__exception_type +msgid "Exception Type" +msgstr "" + +#. module: base_exception +#: model:res.groups,name:base_exception.group_exception_rule_manager +msgid "Exception manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exception_ids +msgid "Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exceptions_summary +#, fuzzy +msgid "Exceptions Summary" +msgstr "Descripción" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__exception_ids +msgid "Exceptions to resolve" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__sequence +msgid "Gives the sequence order when applying the test" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help with Python expressions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__id +msgid "ID" +msgstr "ID" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__ignore_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__ignore +msgid "Ignore Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__is_blocking +msgid "Is Blocking" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule____last_update +msgid "Last Modified on" +msgstr "Última Modificación el" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_uid +msgid "Last Updated by" +msgstr "Actualizado por" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_date +msgid "Last Updated on" +msgstr "Actualizado" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__main_exception_id +msgid "Main Exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__method +msgid "Method" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/wizard/base_exception_confirm.py:0 +#, python-format +msgid "Only 1 ID accepted, got %r." +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_confirm +msgid "Outstanding exceptions to manage" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "Outstanding exceptions to manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__code +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Python Code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__code +msgid "" +"Python code executed to check if the exception apply or not. Use failed = " +"True to block the exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__related_model_id +#, fuzzy +msgid "Related Model" +msgstr "Creado" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__sequence +msgid "Sequence" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__smart_search +#: model:ir.model.fields,field_description:base_exception.field_base_exception_method__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__smart_search +msgid "Smart Search" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "The exceptions can not be ignored, because some of them are blocking." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"There is a problem of configuration, python code, domain or method is " +"missing to match the exception type." +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "To block the exception use: failed = True" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Various fields may use Python code or Python expressions. The following " +"variables can be used:" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__is_blocking +msgid "When checked the exception can not be ignored" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "_Close" +msgstr "" diff --git a/base_exception/i18n/es_CR.po b/base_exception/i18n/es_CR.po new file mode 100644 index 00000000..08af38fc --- /dev/null +++ b/base_exception/i18n/es_CR.po @@ -0,0 +1,325 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_exception +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-01 10:38+0000\n" +"PO-Revision-Date: 2017-05-01 10:38+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/" +"teams/23907/es_CR/)\n" +"Language: es_CR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "(Blocking exception)" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "self: Record on which the rule is evaluated." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__active +msgid "Active" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__model +msgid "Apply on" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Archived" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "As well as all the libraries provided in safe_eval." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_domain +msgid "By domain" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_method +msgid "By method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_py_code +msgid "By python code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__exception_type +msgid "" +"By python code: allow to define any arbitrary check\n" +"By domain: limited to a selection by an odoo domain:\n" +" performance can be better when exceptions are evaluated " +"with several records\n" +"By method: allow to select an existing check method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__description +msgid "Description" +msgstr "Descripción" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__display_name +msgid "Display Name" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__domain +msgid "Domain" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Enter Python code here. Help about Python expression is available in the " +"help tab of this document." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"Error when evaluating the exception.rule rule:\n" +" %(rule_name)s \n" +"(%(error)s)" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception +#, fuzzy +msgid "Exception" +msgstr "Descripción" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__name +msgid "Exception Name" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule +msgid "Exception Rule" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule_confirm +msgid "Exception Rule Confirm Wizard" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception_method +msgid "Exception Rule Methods" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Exception Rule Setup" +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_tree +#: model:ir.ui.menu,name:base_exception.menu_action_exception +msgid "Exception Rules" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__exception_type +msgid "Exception Type" +msgstr "" + +#. module: base_exception +#: model:res.groups,name:base_exception.group_exception_rule_manager +msgid "Exception manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exception_ids +msgid "Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exceptions_summary +#, fuzzy +msgid "Exceptions Summary" +msgstr "Descripción" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__exception_ids +msgid "Exceptions to resolve" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__sequence +msgid "Gives the sequence order when applying the test" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help with Python expressions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__id +msgid "ID" +msgstr "ID" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__ignore_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__ignore +msgid "Ignore Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__is_blocking +msgid "Is Blocking" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule____last_update +msgid "Last Modified on" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_uid +msgid "Last Updated by" +msgstr "Ultima actualización por" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_date +msgid "Last Updated on" +msgstr "Ultima actualización en" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__main_exception_id +msgid "Main Exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__method +msgid "Method" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/wizard/base_exception_confirm.py:0 +#, python-format +msgid "Only 1 ID accepted, got %r." +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_confirm +msgid "Outstanding exceptions to manage" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "Outstanding exceptions to manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__code +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Python Code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__code +msgid "" +"Python code executed to check if the exception apply or not. Use failed = " +"True to block the exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__related_model_id +#, fuzzy +msgid "Related Model" +msgstr "Creado en" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__sequence +msgid "Sequence" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__smart_search +#: model:ir.model.fields,field_description:base_exception.field_base_exception_method__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__smart_search +msgid "Smart Search" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "The exceptions can not be ignored, because some of them are blocking." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"There is a problem of configuration, python code, domain or method is " +"missing to match the exception type." +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "To block the exception use: failed = True" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Various fields may use Python code or Python expressions. The following " +"variables can be used:" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__is_blocking +msgid "When checked the exception can not be ignored" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "_Close" +msgstr "" diff --git a/base_exception/i18n/es_DO.po b/base_exception/i18n/es_DO.po new file mode 100644 index 00000000..48392c95 --- /dev/null +++ b/base_exception/i18n/es_DO.po @@ -0,0 +1,325 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_exception +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-01 10:38+0000\n" +"PO-Revision-Date: 2017-05-01 10:38+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/oca/" +"teams/23907/es_DO/)\n" +"Language: es_DO\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "(Blocking exception)" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "self: Record on which the rule is evaluated." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__active +msgid "Active" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__model +msgid "Apply on" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Archived" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "As well as all the libraries provided in safe_eval." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_domain +msgid "By domain" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_method +msgid "By method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_py_code +msgid "By python code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__exception_type +msgid "" +"By python code: allow to define any arbitrary check\n" +"By domain: limited to a selection by an odoo domain:\n" +" performance can be better when exceptions are evaluated " +"with several records\n" +"By method: allow to select an existing check method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__description +msgid "Description" +msgstr "Descripción" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__domain +msgid "Domain" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Enter Python code here. Help about Python expression is available in the " +"help tab of this document." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"Error when evaluating the exception.rule rule:\n" +" %(rule_name)s \n" +"(%(error)s)" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception +#, fuzzy +msgid "Exception" +msgstr "Descripción" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__name +msgid "Exception Name" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule +msgid "Exception Rule" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule_confirm +msgid "Exception Rule Confirm Wizard" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception_method +msgid "Exception Rule Methods" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Exception Rule Setup" +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_tree +#: model:ir.ui.menu,name:base_exception.menu_action_exception +msgid "Exception Rules" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__exception_type +msgid "Exception Type" +msgstr "" + +#. module: base_exception +#: model:res.groups,name:base_exception.group_exception_rule_manager +msgid "Exception manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exception_ids +msgid "Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exceptions_summary +#, fuzzy +msgid "Exceptions Summary" +msgstr "Descripción" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__exception_ids +msgid "Exceptions to resolve" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__sequence +msgid "Gives the sequence order when applying the test" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help with Python expressions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__id +msgid "ID" +msgstr "ID" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__ignore_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__ignore +msgid "Ignore Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__is_blocking +msgid "Is Blocking" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule____last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_uid +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__main_exception_id +msgid "Main Exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__method +msgid "Method" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/wizard/base_exception_confirm.py:0 +#, python-format +msgid "Only 1 ID accepted, got %r." +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_confirm +msgid "Outstanding exceptions to manage" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "Outstanding exceptions to manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__code +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Python Code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__code +msgid "" +"Python code executed to check if the exception apply or not. Use failed = " +"True to block the exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__related_model_id +#, fuzzy +msgid "Related Model" +msgstr "Creado en" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__sequence +msgid "Sequence" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__smart_search +#: model:ir.model.fields,field_description:base_exception.field_base_exception_method__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__smart_search +msgid "Smart Search" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "The exceptions can not be ignored, because some of them are blocking." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"There is a problem of configuration, python code, domain or method is " +"missing to match the exception type." +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "To block the exception use: failed = True" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Various fields may use Python code or Python expressions. The following " +"variables can be used:" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__is_blocking +msgid "When checked the exception can not be ignored" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "_Close" +msgstr "" diff --git a/base_exception/i18n/es_EC.po b/base_exception/i18n/es_EC.po new file mode 100644 index 00000000..899ff108 --- /dev/null +++ b/base_exception/i18n/es_EC.po @@ -0,0 +1,325 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_exception +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-01 10:38+0000\n" +"PO-Revision-Date: 2017-05-01 10:38+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Ecuador) (https://www.transifex.com/oca/teams/23907/" +"es_EC/)\n" +"Language: es_EC\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "(Blocking exception)" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "self: Record on which the rule is evaluated." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__active +msgid "Active" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__model +msgid "Apply on" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Archived" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "As well as all the libraries provided in safe_eval." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_domain +msgid "By domain" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_method +msgid "By method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_py_code +msgid "By python code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__exception_type +msgid "" +"By python code: allow to define any arbitrary check\n" +"By domain: limited to a selection by an odoo domain:\n" +" performance can be better when exceptions are evaluated " +"with several records\n" +"By method: allow to select an existing check method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__description +msgid "Description" +msgstr "Descripción" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__domain +msgid "Domain" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Enter Python code here. Help about Python expression is available in the " +"help tab of this document." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"Error when evaluating the exception.rule rule:\n" +" %(rule_name)s \n" +"(%(error)s)" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception +#, fuzzy +msgid "Exception" +msgstr "Descripción" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__name +msgid "Exception Name" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule +msgid "Exception Rule" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule_confirm +msgid "Exception Rule Confirm Wizard" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception_method +msgid "Exception Rule Methods" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Exception Rule Setup" +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_tree +#: model:ir.ui.menu,name:base_exception.menu_action_exception +msgid "Exception Rules" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__exception_type +msgid "Exception Type" +msgstr "" + +#. module: base_exception +#: model:res.groups,name:base_exception.group_exception_rule_manager +msgid "Exception manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exception_ids +msgid "Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exceptions_summary +#, fuzzy +msgid "Exceptions Summary" +msgstr "Descripción" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__exception_ids +msgid "Exceptions to resolve" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__sequence +msgid "Gives the sequence order when applying the test" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help with Python expressions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__id +msgid "ID" +msgstr "ID (identificación)" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__ignore_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__ignore +msgid "Ignore Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__is_blocking +msgid "Is Blocking" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule____last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_uid +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__main_exception_id +msgid "Main Exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__method +msgid "Method" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/wizard/base_exception_confirm.py:0 +#, python-format +msgid "Only 1 ID accepted, got %r." +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_confirm +msgid "Outstanding exceptions to manage" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "Outstanding exceptions to manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__code +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Python Code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__code +msgid "" +"Python code executed to check if the exception apply or not. Use failed = " +"True to block the exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__related_model_id +#, fuzzy +msgid "Related Model" +msgstr "Creado en" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__sequence +msgid "Sequence" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__smart_search +#: model:ir.model.fields,field_description:base_exception.field_base_exception_method__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__smart_search +msgid "Smart Search" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "The exceptions can not be ignored, because some of them are blocking." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"There is a problem of configuration, python code, domain or method is " +"missing to match the exception type." +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "To block the exception use: failed = True" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Various fields may use Python code or Python expressions. The following " +"variables can be used:" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__is_blocking +msgid "When checked the exception can not be ignored" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "_Close" +msgstr "" diff --git a/base_exception/i18n/es_ES.po b/base_exception/i18n/es_ES.po new file mode 100644 index 00000000..61e1f7a0 --- /dev/null +++ b/base_exception/i18n/es_ES.po @@ -0,0 +1,323 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_exception +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-01 10:38+0000\n" +"PO-Revision-Date: 2017-05-01 10:38+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Spain) (https://www.transifex.com/oca/teams/23907/" +"es_ES/)\n" +"Language: es_ES\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "(Blocking exception)" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "self: Record on which the rule is evaluated." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__active +msgid "Active" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__model +msgid "Apply on" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Archived" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "As well as all the libraries provided in safe_eval." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_domain +msgid "By domain" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_method +msgid "By method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_py_code +msgid "By python code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__exception_type +msgid "" +"By python code: allow to define any arbitrary check\n" +"By domain: limited to a selection by an odoo domain:\n" +" performance can be better when exceptions are evaluated " +"with several records\n" +"By method: allow to select an existing check method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__description +msgid "Description" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__display_name +msgid "Display Name" +msgstr "Nombre para mostrar" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__domain +msgid "Domain" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Enter Python code here. Help about Python expression is available in the " +"help tab of this document." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"Error when evaluating the exception.rule rule:\n" +" %(rule_name)s \n" +"(%(error)s)" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception +msgid "Exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__name +msgid "Exception Name" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule +msgid "Exception Rule" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule_confirm +msgid "Exception Rule Confirm Wizard" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception_method +msgid "Exception Rule Methods" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Exception Rule Setup" +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_tree +#: model:ir.ui.menu,name:base_exception.menu_action_exception +msgid "Exception Rules" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__exception_type +msgid "Exception Type" +msgstr "" + +#. module: base_exception +#: model:res.groups,name:base_exception.group_exception_rule_manager +msgid "Exception manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exception_ids +msgid "Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exceptions_summary +msgid "Exceptions Summary" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__exception_ids +msgid "Exceptions to resolve" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__sequence +msgid "Gives the sequence order when applying the test" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help with Python expressions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__id +msgid "ID" +msgstr "ID" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__ignore_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__ignore +msgid "Ignore Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__is_blocking +msgid "Is Blocking" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule____last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_uid +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__main_exception_id +msgid "Main Exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__method +msgid "Method" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/wizard/base_exception_confirm.py:0 +#, python-format +msgid "Only 1 ID accepted, got %r." +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_confirm +msgid "Outstanding exceptions to manage" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "Outstanding exceptions to manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__code +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Python Code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__code +msgid "" +"Python code executed to check if the exception apply or not. Use failed = " +"True to block the exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__related_model_id +#, fuzzy +msgid "Related Model" +msgstr "Creado en" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__sequence +msgid "Sequence" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__smart_search +#: model:ir.model.fields,field_description:base_exception.field_base_exception_method__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__smart_search +msgid "Smart Search" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "The exceptions can not be ignored, because some of them are blocking." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"There is a problem of configuration, python code, domain or method is " +"missing to match the exception type." +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "To block the exception use: failed = True" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Various fields may use Python code or Python expressions. The following " +"variables can be used:" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__is_blocking +msgid "When checked the exception can not be ignored" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "_Close" +msgstr "" diff --git a/base_exception/i18n/es_MX.po b/base_exception/i18n/es_MX.po new file mode 100644 index 00000000..faa7d0e6 --- /dev/null +++ b/base_exception/i18n/es_MX.po @@ -0,0 +1,325 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_exception +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-01 10:38+0000\n" +"PO-Revision-Date: 2017-05-01 10:38+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/" +"es_MX/)\n" +"Language: es_MX\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "(Blocking exception)" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "self: Record on which the rule is evaluated." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__active +msgid "Active" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__model +msgid "Apply on" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Archived" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "As well as all the libraries provided in safe_eval." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_domain +msgid "By domain" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_method +msgid "By method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_py_code +msgid "By python code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__exception_type +msgid "" +"By python code: allow to define any arbitrary check\n" +"By domain: limited to a selection by an odoo domain:\n" +" performance can be better when exceptions are evaluated " +"with several records\n" +"By method: allow to select an existing check method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__description +msgid "Description" +msgstr "Descripción" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__display_name +msgid "Display Name" +msgstr "Nombre desplegado" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__domain +msgid "Domain" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Enter Python code here. Help about Python expression is available in the " +"help tab of this document." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"Error when evaluating the exception.rule rule:\n" +" %(rule_name)s \n" +"(%(error)s)" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception +#, fuzzy +msgid "Exception" +msgstr "Descripción" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__name +msgid "Exception Name" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule +msgid "Exception Rule" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule_confirm +msgid "Exception Rule Confirm Wizard" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception_method +msgid "Exception Rule Methods" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Exception Rule Setup" +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_tree +#: model:ir.ui.menu,name:base_exception.menu_action_exception +msgid "Exception Rules" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__exception_type +msgid "Exception Type" +msgstr "" + +#. module: base_exception +#: model:res.groups,name:base_exception.group_exception_rule_manager +msgid "Exception manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exception_ids +msgid "Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exceptions_summary +#, fuzzy +msgid "Exceptions Summary" +msgstr "Descripción" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__exception_ids +msgid "Exceptions to resolve" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__sequence +msgid "Gives the sequence order when applying the test" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help with Python expressions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__id +msgid "ID" +msgstr "ID" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__ignore_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__ignore +msgid "Ignore Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__is_blocking +msgid "Is Blocking" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule____last_update +msgid "Last Modified on" +msgstr "Ultima modificacion realizada" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_uid +msgid "Last Updated by" +msgstr "Ultima actualizacion por" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_date +msgid "Last Updated on" +msgstr "Ultima actualización realizada" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__main_exception_id +msgid "Main Exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__method +msgid "Method" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/wizard/base_exception_confirm.py:0 +#, python-format +msgid "Only 1 ID accepted, got %r." +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_confirm +msgid "Outstanding exceptions to manage" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "Outstanding exceptions to manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__code +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Python Code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__code +msgid "" +"Python code executed to check if the exception apply or not. Use failed = " +"True to block the exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__related_model_id +#, fuzzy +msgid "Related Model" +msgstr "Creado en" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__sequence +msgid "Sequence" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__smart_search +#: model:ir.model.fields,field_description:base_exception.field_base_exception_method__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__smart_search +msgid "Smart Search" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "The exceptions can not be ignored, because some of them are blocking." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"There is a problem of configuration, python code, domain or method is " +"missing to match the exception type." +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "To block the exception use: failed = True" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Various fields may use Python code or Python expressions. The following " +"variables can be used:" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__is_blocking +msgid "When checked the exception can not be ignored" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "_Close" +msgstr "" diff --git a/base_exception/i18n/es_PE.po b/base_exception/i18n/es_PE.po new file mode 100644 index 00000000..aaba1f25 --- /dev/null +++ b/base_exception/i18n/es_PE.po @@ -0,0 +1,325 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_exception +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-01 10:38+0000\n" +"PO-Revision-Date: 2017-05-01 10:38+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Peru) (https://www.transifex.com/oca/teams/23907/" +"es_PE/)\n" +"Language: es_PE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "(Blocking exception)" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "self: Record on which the rule is evaluated." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__active +msgid "Active" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__model +msgid "Apply on" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Archived" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "As well as all the libraries provided in safe_eval." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_domain +msgid "By domain" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_method +msgid "By method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_py_code +msgid "By python code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__exception_type +msgid "" +"By python code: allow to define any arbitrary check\n" +"By domain: limited to a selection by an odoo domain:\n" +" performance can be better when exceptions are evaluated " +"with several records\n" +"By method: allow to select an existing check method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__description +msgid "Description" +msgstr "Descripción" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__display_name +msgid "Display Name" +msgstr "Nombre a Mostrar" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__domain +msgid "Domain" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Enter Python code here. Help about Python expression is available in the " +"help tab of this document." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"Error when evaluating the exception.rule rule:\n" +" %(rule_name)s \n" +"(%(error)s)" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception +#, fuzzy +msgid "Exception" +msgstr "Descripción" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__name +msgid "Exception Name" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule +msgid "Exception Rule" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule_confirm +msgid "Exception Rule Confirm Wizard" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception_method +msgid "Exception Rule Methods" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Exception Rule Setup" +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_tree +#: model:ir.ui.menu,name:base_exception.menu_action_exception +msgid "Exception Rules" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__exception_type +msgid "Exception Type" +msgstr "" + +#. module: base_exception +#: model:res.groups,name:base_exception.group_exception_rule_manager +msgid "Exception manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exception_ids +msgid "Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exceptions_summary +#, fuzzy +msgid "Exceptions Summary" +msgstr "Descripción" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__exception_ids +msgid "Exceptions to resolve" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__sequence +msgid "Gives the sequence order when applying the test" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help with Python expressions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__id +msgid "ID" +msgstr "ID" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__ignore_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__ignore +msgid "Ignore Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__is_blocking +msgid "Is Blocking" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule____last_update +msgid "Last Modified on" +msgstr "Ultima Modificación en" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_uid +msgid "Last Updated by" +msgstr "Actualizado última vez por" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_date +msgid "Last Updated on" +msgstr "Ultima Actualización" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__main_exception_id +msgid "Main Exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__method +msgid "Method" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/wizard/base_exception_confirm.py:0 +#, python-format +msgid "Only 1 ID accepted, got %r." +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_confirm +msgid "Outstanding exceptions to manage" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "Outstanding exceptions to manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__code +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Python Code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__code +msgid "" +"Python code executed to check if the exception apply or not. Use failed = " +"True to block the exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__related_model_id +#, fuzzy +msgid "Related Model" +msgstr "Creado en" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__sequence +msgid "Sequence" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__smart_search +#: model:ir.model.fields,field_description:base_exception.field_base_exception_method__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__smart_search +msgid "Smart Search" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "The exceptions can not be ignored, because some of them are blocking." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"There is a problem of configuration, python code, domain or method is " +"missing to match the exception type." +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "To block the exception use: failed = True" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Various fields may use Python code or Python expressions. The following " +"variables can be used:" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__is_blocking +msgid "When checked the exception can not be ignored" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "_Close" +msgstr "" diff --git a/base_exception/i18n/es_PY.po b/base_exception/i18n/es_PY.po new file mode 100644 index 00000000..905c4353 --- /dev/null +++ b/base_exception/i18n/es_PY.po @@ -0,0 +1,325 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_exception +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-01 10:38+0000\n" +"PO-Revision-Date: 2017-05-01 10:38+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Paraguay) (https://www.transifex.com/oca/teams/23907/" +"es_PY/)\n" +"Language: es_PY\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "(Blocking exception)" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "self: Record on which the rule is evaluated." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__active +msgid "Active" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__model +msgid "Apply on" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Archived" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "As well as all the libraries provided in safe_eval." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_domain +msgid "By domain" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_method +msgid "By method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_py_code +msgid "By python code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__exception_type +msgid "" +"By python code: allow to define any arbitrary check\n" +"By domain: limited to a selection by an odoo domain:\n" +" performance can be better when exceptions are evaluated " +"with several records\n" +"By method: allow to select an existing check method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__description +msgid "Description" +msgstr "Descripción" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__display_name +msgid "Display Name" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__domain +msgid "Domain" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Enter Python code here. Help about Python expression is available in the " +"help tab of this document." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"Error when evaluating the exception.rule rule:\n" +" %(rule_name)s \n" +"(%(error)s)" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception +#, fuzzy +msgid "Exception" +msgstr "Descripción" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__name +msgid "Exception Name" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule +msgid "Exception Rule" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule_confirm +msgid "Exception Rule Confirm Wizard" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception_method +msgid "Exception Rule Methods" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Exception Rule Setup" +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_tree +#: model:ir.ui.menu,name:base_exception.menu_action_exception +msgid "Exception Rules" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__exception_type +msgid "Exception Type" +msgstr "" + +#. module: base_exception +#: model:res.groups,name:base_exception.group_exception_rule_manager +msgid "Exception manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exception_ids +msgid "Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exceptions_summary +#, fuzzy +msgid "Exceptions Summary" +msgstr "Descripción" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__exception_ids +msgid "Exceptions to resolve" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__sequence +msgid "Gives the sequence order when applying the test" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help with Python expressions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__id +msgid "ID" +msgstr "ID" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__ignore_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__ignore +msgid "Ignore Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__is_blocking +msgid "Is Blocking" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule____last_update +msgid "Last Modified on" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_uid +msgid "Last Updated by" +msgstr "Ultima actualización por" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_date +msgid "Last Updated on" +msgstr "Ultima actualización en" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__main_exception_id +msgid "Main Exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__method +msgid "Method" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/wizard/base_exception_confirm.py:0 +#, python-format +msgid "Only 1 ID accepted, got %r." +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_confirm +msgid "Outstanding exceptions to manage" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "Outstanding exceptions to manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__code +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Python Code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__code +msgid "" +"Python code executed to check if the exception apply or not. Use failed = " +"True to block the exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__related_model_id +#, fuzzy +msgid "Related Model" +msgstr "Creado en" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__sequence +msgid "Sequence" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__smart_search +#: model:ir.model.fields,field_description:base_exception.field_base_exception_method__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__smart_search +msgid "Smart Search" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "The exceptions can not be ignored, because some of them are blocking." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"There is a problem of configuration, python code, domain or method is " +"missing to match the exception type." +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "To block the exception use: failed = True" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Various fields may use Python code or Python expressions. The following " +"variables can be used:" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__is_blocking +msgid "When checked the exception can not be ignored" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "_Close" +msgstr "" diff --git a/base_exception/i18n/es_VE.po b/base_exception/i18n/es_VE.po new file mode 100644 index 00000000..ed0d7804 --- /dev/null +++ b/base_exception/i18n/es_VE.po @@ -0,0 +1,325 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_exception +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-01 10:38+0000\n" +"PO-Revision-Date: 2017-05-01 10:38+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Venezuela) (https://www.transifex.com/oca/" +"teams/23907/es_VE/)\n" +"Language: es_VE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "(Blocking exception)" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "self: Record on which the rule is evaluated." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__active +msgid "Active" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__model +msgid "Apply on" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Archived" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "As well as all the libraries provided in safe_eval." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_domain +msgid "By domain" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_method +msgid "By method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_py_code +msgid "By python code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__exception_type +msgid "" +"By python code: allow to define any arbitrary check\n" +"By domain: limited to a selection by an odoo domain:\n" +" performance can be better when exceptions are evaluated " +"with several records\n" +"By method: allow to select an existing check method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__description +msgid "Description" +msgstr "Descripción" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__display_name +msgid "Display Name" +msgstr "Mostrar nombre" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__domain +msgid "Domain" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Enter Python code here. Help about Python expression is available in the " +"help tab of this document." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"Error when evaluating the exception.rule rule:\n" +" %(rule_name)s \n" +"(%(error)s)" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception +#, fuzzy +msgid "Exception" +msgstr "Descripción" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__name +msgid "Exception Name" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule +msgid "Exception Rule" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule_confirm +msgid "Exception Rule Confirm Wizard" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception_method +msgid "Exception Rule Methods" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Exception Rule Setup" +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_tree +#: model:ir.ui.menu,name:base_exception.menu_action_exception +msgid "Exception Rules" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__exception_type +msgid "Exception Type" +msgstr "" + +#. module: base_exception +#: model:res.groups,name:base_exception.group_exception_rule_manager +msgid "Exception manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exception_ids +msgid "Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exceptions_summary +#, fuzzy +msgid "Exceptions Summary" +msgstr "Descripción" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__exception_ids +msgid "Exceptions to resolve" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__sequence +msgid "Gives the sequence order when applying the test" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help with Python expressions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__id +msgid "ID" +msgstr "ID" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__ignore_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__ignore +msgid "Ignore Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__is_blocking +msgid "Is Blocking" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule____last_update +msgid "Last Modified on" +msgstr "Modificada por última vez" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_uid +msgid "Last Updated by" +msgstr "Última actualización realizada por" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_date +msgid "Last Updated on" +msgstr "Ultima actualizacion en" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__main_exception_id +msgid "Main Exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__method +msgid "Method" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/wizard/base_exception_confirm.py:0 +#, python-format +msgid "Only 1 ID accepted, got %r." +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_confirm +msgid "Outstanding exceptions to manage" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "Outstanding exceptions to manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__code +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Python Code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__code +msgid "" +"Python code executed to check if the exception apply or not. Use failed = " +"True to block the exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__related_model_id +#, fuzzy +msgid "Related Model" +msgstr "Creado en" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__sequence +msgid "Sequence" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__smart_search +#: model:ir.model.fields,field_description:base_exception.field_base_exception_method__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__smart_search +msgid "Smart Search" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "The exceptions can not be ignored, because some of them are blocking." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"There is a problem of configuration, python code, domain or method is " +"missing to match the exception type." +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "To block the exception use: failed = True" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Various fields may use Python code or Python expressions. The following " +"variables can be used:" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__is_blocking +msgid "When checked the exception can not be ignored" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "_Close" +msgstr "" diff --git a/base_exception/i18n/et.po b/base_exception/i18n/et.po new file mode 100644 index 00000000..5f4d0914 --- /dev/null +++ b/base_exception/i18n/et.po @@ -0,0 +1,324 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_exception +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-01 10:38+0000\n" +"PO-Revision-Date: 2017-05-01 10:38+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Estonian (https://www.transifex.com/oca/teams/23907/et/)\n" +"Language: et\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "(Blocking exception)" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "self: Record on which the rule is evaluated." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__active +msgid "Active" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__model +msgid "Apply on" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Archived" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "As well as all the libraries provided in safe_eval." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_domain +msgid "By domain" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_method +msgid "By method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_py_code +msgid "By python code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__exception_type +msgid "" +"By python code: allow to define any arbitrary check\n" +"By domain: limited to a selection by an odoo domain:\n" +" performance can be better when exceptions are evaluated " +"with several records\n" +"By method: allow to select an existing check method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_uid +msgid "Created by" +msgstr "Loonud" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_date +msgid "Created on" +msgstr "Loodud" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__description +msgid "Description" +msgstr "Kirjeldus" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__display_name +msgid "Display Name" +msgstr "Näidatav nimi" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__domain +msgid "Domain" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Enter Python code here. Help about Python expression is available in the " +"help tab of this document." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"Error when evaluating the exception.rule rule:\n" +" %(rule_name)s \n" +"(%(error)s)" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception +#, fuzzy +msgid "Exception" +msgstr "Kirjeldus" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__name +msgid "Exception Name" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule +msgid "Exception Rule" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule_confirm +msgid "Exception Rule Confirm Wizard" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception_method +msgid "Exception Rule Methods" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Exception Rule Setup" +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_tree +#: model:ir.ui.menu,name:base_exception.menu_action_exception +msgid "Exception Rules" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__exception_type +msgid "Exception Type" +msgstr "" + +#. module: base_exception +#: model:res.groups,name:base_exception.group_exception_rule_manager +msgid "Exception manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exception_ids +msgid "Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exceptions_summary +#, fuzzy +msgid "Exceptions Summary" +msgstr "Kirjeldus" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__exception_ids +msgid "Exceptions to resolve" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__sequence +msgid "Gives the sequence order when applying the test" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help with Python expressions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__id +msgid "ID" +msgstr "ID" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__ignore_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__ignore +msgid "Ignore Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__is_blocking +msgid "Is Blocking" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule____last_update +msgid "Last Modified on" +msgstr "Viimati muudetud" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_uid +msgid "Last Updated by" +msgstr "Viimati uuendatud" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_date +msgid "Last Updated on" +msgstr "Viimati uuendatud" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__main_exception_id +msgid "Main Exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__method +msgid "Method" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/wizard/base_exception_confirm.py:0 +#, python-format +msgid "Only 1 ID accepted, got %r." +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_confirm +msgid "Outstanding exceptions to manage" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "Outstanding exceptions to manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__code +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Python Code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__code +msgid "" +"Python code executed to check if the exception apply or not. Use failed = " +"True to block the exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__related_model_id +#, fuzzy +msgid "Related Model" +msgstr "Loodud" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__sequence +msgid "Sequence" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__smart_search +#: model:ir.model.fields,field_description:base_exception.field_base_exception_method__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__smart_search +msgid "Smart Search" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "The exceptions can not be ignored, because some of them are blocking." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"There is a problem of configuration, python code, domain or method is " +"missing to match the exception type." +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "To block the exception use: failed = True" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Various fields may use Python code or Python expressions. The following " +"variables can be used:" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__is_blocking +msgid "When checked the exception can not be ignored" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "_Close" +msgstr "" diff --git a/base_exception/i18n/eu.po b/base_exception/i18n/eu.po new file mode 100644 index 00000000..e405d288 --- /dev/null +++ b/base_exception/i18n/eu.po @@ -0,0 +1,324 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_exception +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-01 10:38+0000\n" +"PO-Revision-Date: 2017-05-01 10:38+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Basque (https://www.transifex.com/oca/teams/23907/eu/)\n" +"Language: eu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "(Blocking exception)" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "self: Record on which the rule is evaluated." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__active +msgid "Active" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__model +msgid "Apply on" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Archived" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "As well as all the libraries provided in safe_eval." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_domain +msgid "By domain" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_method +msgid "By method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_py_code +msgid "By python code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__exception_type +msgid "" +"By python code: allow to define any arbitrary check\n" +"By domain: limited to a selection by an odoo domain:\n" +" performance can be better when exceptions are evaluated " +"with several records\n" +"By method: allow to select an existing check method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_uid +msgid "Created by" +msgstr "Nork sortua" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_date +msgid "Created on" +msgstr "Created on" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__description +msgid "Description" +msgstr "Deskribapena" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__display_name +msgid "Display Name" +msgstr "Izena erakutsi" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__domain +msgid "Domain" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Enter Python code here. Help about Python expression is available in the " +"help tab of this document." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"Error when evaluating the exception.rule rule:\n" +" %(rule_name)s \n" +"(%(error)s)" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception +#, fuzzy +msgid "Exception" +msgstr "Deskribapena" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__name +msgid "Exception Name" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule +msgid "Exception Rule" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule_confirm +msgid "Exception Rule Confirm Wizard" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception_method +msgid "Exception Rule Methods" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Exception Rule Setup" +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_tree +#: model:ir.ui.menu,name:base_exception.menu_action_exception +msgid "Exception Rules" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__exception_type +msgid "Exception Type" +msgstr "" + +#. module: base_exception +#: model:res.groups,name:base_exception.group_exception_rule_manager +msgid "Exception manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exception_ids +msgid "Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exceptions_summary +#, fuzzy +msgid "Exceptions Summary" +msgstr "Deskribapena" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__exception_ids +msgid "Exceptions to resolve" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__sequence +msgid "Gives the sequence order when applying the test" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help with Python expressions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__id +msgid "ID" +msgstr "ID" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__ignore_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__ignore +msgid "Ignore Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__is_blocking +msgid "Is Blocking" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule____last_update +msgid "Last Modified on" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_uid +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_date +msgid "Last Updated on" +msgstr "Last Updated on" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__main_exception_id +msgid "Main Exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__method +msgid "Method" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/wizard/base_exception_confirm.py:0 +#, python-format +msgid "Only 1 ID accepted, got %r." +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_confirm +msgid "Outstanding exceptions to manage" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "Outstanding exceptions to manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__code +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Python Code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__code +msgid "" +"Python code executed to check if the exception apply or not. Use failed = " +"True to block the exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__related_model_id +#, fuzzy +msgid "Related Model" +msgstr "Created on" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__sequence +msgid "Sequence" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__smart_search +#: model:ir.model.fields,field_description:base_exception.field_base_exception_method__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__smart_search +msgid "Smart Search" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "The exceptions can not be ignored, because some of them are blocking." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"There is a problem of configuration, python code, domain or method is " +"missing to match the exception type." +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "To block the exception use: failed = True" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Various fields may use Python code or Python expressions. The following " +"variables can be used:" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__is_blocking +msgid "When checked the exception can not be ignored" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "_Close" +msgstr "" diff --git a/base_exception/i18n/fa.po b/base_exception/i18n/fa.po new file mode 100644 index 00000000..d516b0d1 --- /dev/null +++ b/base_exception/i18n/fa.po @@ -0,0 +1,328 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_exception +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-01 10:38+0000\n" +"PO-Revision-Date: 2018-07-22 11:30+0000\n" +"Last-Translator: derKonig \n" +"Language-Team: Persian (https://www.transifex.com/oca/teams/23907/fa/)\n" +"Language: fa\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 3.0.1\n" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "(Blocking exception)" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "self: Record on which the rule is evaluated." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__active +msgid "Active" +msgstr "فعال" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__model +msgid "Apply on" +msgstr "اعمال بر" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Archived" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "As well as all the libraries provided in safe_eval." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_domain +msgid "By domain" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_method +msgid "By method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_py_code +msgid "By python code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__exception_type +msgid "" +"By python code: allow to define any arbitrary check\n" +"By domain: limited to a selection by an odoo domain:\n" +" performance can be better when exceptions are evaluated " +"with several records\n" +"By method: allow to select an existing check method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_uid +msgid "Created by" +msgstr "ایجاد شده توسط" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_date +msgid "Created on" +msgstr "ایجاد شده در" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__description +msgid "Description" +msgstr "توصیف" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__display_name +msgid "Display Name" +msgstr "نام نمایشی" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__domain +msgid "Domain" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Enter Python code here. Help about Python expression is available in the " +"help tab of this document." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"Error when evaluating the exception.rule rule:\n" +" %(rule_name)s \n" +"(%(error)s)" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception +#, fuzzy +msgid "Exception" +msgstr "نام استثنا" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__name +msgid "Exception Name" +msgstr "نام استثنا" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule +msgid "Exception Rule" +msgstr "قاعده استثنا" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule_confirm +#, fuzzy +msgid "Exception Rule Confirm Wizard" +msgstr "قاعده استثنا" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception_method +#, fuzzy +msgid "Exception Rule Methods" +msgstr "قاعده استثنا" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Exception Rule Setup" +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_tree +#: model:ir.ui.menu,name:base_exception.menu_action_exception +msgid "Exception Rules" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__exception_type +#, fuzzy +msgid "Exception Type" +msgstr "نام استثنا" + +#. module: base_exception +#: model:res.groups,name:base_exception.group_exception_rule_manager +msgid "Exception manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exception_ids +msgid "Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exceptions_summary +#, fuzzy +msgid "Exceptions Summary" +msgstr "نام استثنا" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__exception_ids +msgid "Exceptions to resolve" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__sequence +msgid "Gives the sequence order when applying the test" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help with Python expressions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__id +msgid "ID" +msgstr "شناسه" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__ignore_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__ignore +msgid "Ignore Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__is_blocking +msgid "Is Blocking" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule____last_update +msgid "Last Modified on" +msgstr "تاریخ آخرین به‌روزرسانی" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_uid +msgid "Last Updated by" +msgstr "آخرین به روز رسانی توسط" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_date +msgid "Last Updated on" +msgstr "آخرین به روز رسانی در" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__main_exception_id +msgid "Main Exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__method +msgid "Method" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/wizard/base_exception_confirm.py:0 +#, python-format +msgid "Only 1 ID accepted, got %r." +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_confirm +msgid "Outstanding exceptions to manage" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "Outstanding exceptions to manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__code +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Python Code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__code +msgid "" +"Python code executed to check if the exception apply or not. Use failed = " +"True to block the exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__related_model_id +#, fuzzy +msgid "Related Model" +msgstr "ایجاد شده در" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__sequence +msgid "Sequence" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__smart_search +#: model:ir.model.fields,field_description:base_exception.field_base_exception_method__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__smart_search +msgid "Smart Search" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "The exceptions can not be ignored, because some of them are blocking." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"There is a problem of configuration, python code, domain or method is " +"missing to match the exception type." +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "To block the exception use: failed = True" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Various fields may use Python code or Python expressions. The following " +"variables can be used:" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__is_blocking +msgid "When checked the exception can not be ignored" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "_Close" +msgstr "" diff --git a/base_exception/i18n/fi.po b/base_exception/i18n/fi.po new file mode 100644 index 00000000..d074b5cf --- /dev/null +++ b/base_exception/i18n/fi.po @@ -0,0 +1,324 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_exception +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-01 02:43+0000\n" +"PO-Revision-Date: 2017-08-01 02:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Finnish (https://www.transifex.com/oca/teams/23907/fi/)\n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "(Blocking exception)" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "self: Record on which the rule is evaluated." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__active +msgid "Active" +msgstr "Aktiivinen" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__model +msgid "Apply on" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Archived" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "As well as all the libraries provided in safe_eval." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_domain +msgid "By domain" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_method +msgid "By method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_py_code +msgid "By python code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__exception_type +msgid "" +"By python code: allow to define any arbitrary check\n" +"By domain: limited to a selection by an odoo domain:\n" +" performance can be better when exceptions are evaluated " +"with several records\n" +"By method: allow to select an existing check method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_uid +msgid "Created by" +msgstr "Luonut" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_date +msgid "Created on" +msgstr "Luotu" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__description +msgid "Description" +msgstr "Kuvaus" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__display_name +msgid "Display Name" +msgstr "Nimi" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__domain +msgid "Domain" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Enter Python code here. Help about Python expression is available in the " +"help tab of this document." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"Error when evaluating the exception.rule rule:\n" +" %(rule_name)s \n" +"(%(error)s)" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception +#, fuzzy +msgid "Exception" +msgstr "Kuvaus" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__name +msgid "Exception Name" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule +msgid "Exception Rule" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule_confirm +msgid "Exception Rule Confirm Wizard" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception_method +msgid "Exception Rule Methods" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Exception Rule Setup" +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_tree +#: model:ir.ui.menu,name:base_exception.menu_action_exception +msgid "Exception Rules" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__exception_type +msgid "Exception Type" +msgstr "" + +#. module: base_exception +#: model:res.groups,name:base_exception.group_exception_rule_manager +msgid "Exception manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exception_ids +msgid "Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exceptions_summary +#, fuzzy +msgid "Exceptions Summary" +msgstr "Kuvaus" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__exception_ids +msgid "Exceptions to resolve" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__sequence +msgid "Gives the sequence order when applying the test" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help with Python expressions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__id +msgid "ID" +msgstr "ID" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__ignore_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__ignore +msgid "Ignore Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__is_blocking +msgid "Is Blocking" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule____last_update +msgid "Last Modified on" +msgstr "Viimeksi muokattu" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_uid +msgid "Last Updated by" +msgstr "Viimeksi päivittänyt" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_date +msgid "Last Updated on" +msgstr "Viimeksi päivitetty" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__main_exception_id +msgid "Main Exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__method +msgid "Method" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/wizard/base_exception_confirm.py:0 +#, python-format +msgid "Only 1 ID accepted, got %r." +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_confirm +msgid "Outstanding exceptions to manage" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "Outstanding exceptions to manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__code +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Python Code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__code +msgid "" +"Python code executed to check if the exception apply or not. Use failed = " +"True to block the exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__related_model_id +#, fuzzy +msgid "Related Model" +msgstr "Luotu" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__sequence +msgid "Sequence" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__smart_search +#: model:ir.model.fields,field_description:base_exception.field_base_exception_method__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__smart_search +msgid "Smart Search" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "The exceptions can not be ignored, because some of them are blocking." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"There is a problem of configuration, python code, domain or method is " +"missing to match the exception type." +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "To block the exception use: failed = True" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Various fields may use Python code or Python expressions. The following " +"variables can be used:" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__is_blocking +msgid "When checked the exception can not be ignored" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "_Close" +msgstr "" diff --git a/base_exception/i18n/fr.po b/base_exception/i18n/fr.po new file mode 100644 index 00000000..e4cd9b7a --- /dev/null +++ b/base_exception/i18n/fr.po @@ -0,0 +1,395 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_exception +# +# Translators: +# OCA Transbot , 2017 +# Nicolas JEUDY , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 11.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-03-03 10:08+0000\n" +"PO-Revision-Date: 2023-04-19 12:35+0000\n" +"Last-Translator: Hughes Damry \n" +"Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 4.14.1\n" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "(Blocking exception)" +msgstr "(Restriction bloquante)" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "self: Record on which the rule is evaluated." +msgstr "self:Enregistrement sur lequel la règle est évaluée." + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__active +msgid "Active" +msgstr "Actif" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__model +msgid "Apply on" +msgstr "Appliquer sur" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Archived" +msgstr "Archivé" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "As well as all the libraries provided in safe_eval." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_domain +msgid "By domain" +msgstr "Par domaine" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_method +msgid "By method" +msgstr "Par méthode" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_py_code +#, fuzzy +msgid "By python code" +msgstr "Code Python" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__exception_type +msgid "" +"By python code: allow to define any arbitrary check\n" +"By domain: limited to a selection by an odoo domain:\n" +" performance can be better when exceptions are evaluated " +"with several records\n" +"By method: allow to select an existing check method" +msgstr "" +"Code python: permet de définir une vérification arbitraire\n" +"Par domaine: limité à une selection par un domaine Odoo:\n" +" la performance peut être meilleure si les exceptions " +"sont évaluées sur plusieurs enregistrements\n" +"Par méthode: permet de sélectionner une méthode de vérification existante" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_uid +msgid "Created by" +msgstr "Créé par" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_date +msgid "Created on" +msgstr "Créé le" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__description +msgid "Description" +msgstr "Description" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__display_name +msgid "Display Name" +msgstr "Nom à afficher" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__domain +msgid "Domain" +msgstr "Domaine" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Enter Python code here. Help about Python expression is available in the " +"help tab of this document." +msgstr "" +"Entrer du code Python. Une aide sur les expressions en Python est disponible " +"dans l'onglet d'aide de ce document." + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"Error when evaluating the exception.rule rule:\n" +" %(rule_name)s \n" +"(%(error)s)" +msgstr "" +"Erreur lors de l'évaluation de la règle de restriction:\n" +" %(rule_name)s \n" +"(%(error)s)" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception +#, fuzzy +msgid "Exception" +msgstr "Exceptions" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__name +msgid "Exception Name" +msgstr "Nom de l'exception" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule +msgid "Exception Rule" +msgstr "Règle de l'exception" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule_confirm +#, fuzzy +msgid "Exception Rule Confirm Wizard" +msgstr "exception.rule.confirm" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception_method +#, fuzzy +msgid "Exception Rule Methods" +msgstr "Règles de restriction" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Exception Rule Setup" +msgstr "Paramètre de la règle de l'exception" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_tree +#: model:ir.ui.menu,name:base_exception.menu_action_exception +msgid "Exception Rules" +msgstr "Règles de restriction" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__exception_type +#, fuzzy +msgid "Exception Type" +msgstr "Nom de l'exception" + +#. module: base_exception +#: model:res.groups,name:base_exception.group_exception_rule_manager +msgid "Exception manager" +msgstr "Gestionnaire d'exception" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exception_ids +msgid "Exceptions" +msgstr "Exceptions" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exceptions_summary +#, fuzzy +msgid "Exceptions Summary" +msgstr "Gestionnaire d'exception" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__exception_ids +msgid "Exceptions to resolve" +msgstr "Exceptions à resoudre" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__sequence +msgid "Gives the sequence order when applying the test" +msgstr "Donner l'order d'application des règles" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help" +msgstr "Aide" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help with Python expressions" +msgstr "Aide des expressions en Python" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__id +msgid "ID" +msgstr "ID" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__ignore_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__ignore +msgid "Ignore Exceptions" +msgstr "Ignorer les exceptions" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__is_blocking +msgid "Is Blocking" +msgstr "Bloquante" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule____last_update +msgid "Last Modified on" +msgstr "Dernière Modification le" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_uid +msgid "Last Updated by" +msgstr "Dernière mise à jour par" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_date +msgid "Last Updated on" +msgstr "Dernière mise à jour le" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__main_exception_id +msgid "Main Exception" +msgstr "Exception principale" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__method +msgid "Method" +msgstr "Méthode" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/wizard/base_exception_confirm.py:0 +#, python-format +msgid "Only 1 ID accepted, got %r." +msgstr "Seulement 1 ID est accepté, reçu %r." + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_confirm +msgid "Outstanding exceptions to manage" +msgstr "Exceptions en attente à gérer" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "Outstanding exceptions to manager" +msgstr "Exceptions en attente à gérer" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__code +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Python Code" +msgstr "Code Python" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__code +msgid "" +"Python code executed to check if the exception apply or not. Use failed = " +"True to block the exception" +msgstr "" +"Code Python exécuté pour vérifier si l'exception s'applique ou non. " +"Utilisation failed = True pour bloquer l'exception" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__related_model_id +msgid "Related Model" +msgstr "Model associé" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__sequence +msgid "Sequence" +msgstr "Séquence" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__smart_search +#: model:ir.model.fields,field_description:base_exception.field_base_exception_method__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__smart_search +msgid "Smart Search" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "The exceptions can not be ignored, because some of them are blocking." +msgstr "" +"Les restrictions ne peuvent être ignorées car certaines sont bloquantes." + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"There is a problem of configuration, python code, domain or method is " +"missing to match the exception type." +msgstr "" +"Problème de configuration car il manque soit du code Python soit un domaine " +"soit une méthode pour vérifier la restriction." + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "To block the exception use: failed = True" +msgstr "Pour bloquer la restriction, utiliser:failed = True" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Various fields may use Python code or Python expressions. The following " +"variables can be used:" +msgstr "" +"Différents champs peuvent utiliser du code ou des expressions en Python. Les " +"variables suivante sont disponibles:" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__is_blocking +msgid "When checked the exception can not be ignored" +msgstr "Coché, la restriction ne peut être ignorée" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "_Close" +msgstr "_Close" + +#, python-format +#~ msgid "" +#~ "Error when evaluating the exception.rule rule:\n" +#~ " %s \n" +#~ "(%s)" +#~ msgstr "" +#~ "L'évaluation de la règle d'exception a généré une erreur :\n" +#~ " %s \n" +#~ "(%s)" + +#~ msgid "Exceptions Rules" +#~ msgstr "Règles d'exceptions" + +#~ msgid "" +#~ "If we detect exception we set the state of object (ex purchase) to the " +#~ "next_state (ex 'to approve'). If there are more than one exception " +#~ "detected and all have a value for next_state, we usethe exception having " +#~ "the smallest sequence value" +#~ msgstr "" +#~ "Si nous détectons une exception, nous plaçons l'état de l'objet (ex " +#~ "achat) sur next_state (ex' à approuver'). S'il y a plus d'une exception " +#~ "détectée et que toutes ont une valeur pour next_state, nous utilisons " +#~ "l'exception ayant la plus petite valeur de séquence" + +#~ msgid "Next state" +#~ msgstr "Etat suivant" + +#~ msgid "Rule Group" +#~ msgstr "Règle de groupe" + +#~ msgid "" +#~ "Rule group is used to group the rules that must validated at same time " +#~ "for a target object. Ex: validate sale.order.line rules with sale order " +#~ "rules." +#~ msgstr "" +#~ "Le groupe de règles est utiliser pour grouper toutes les règles qui " +#~ "doivent être vérifiées pour un même objet. Ex: valider les règles de sale." +#~ "order.line avec les règles de sale order." + +#~ msgid "" +#~ "The value \"%s\" you choose for the \"next state\" field state of \"%s\" " +#~ "is wrong. Value must be in this list %s" +#~ msgstr "" +#~ "La valeur \"%s\" que vous choisissez pour l'état du champ \"suivant\" de " +#~ "\"%s\" est incorrecte. La valeur doit être dans cette liste %s" + +#~ msgid "base.exception" +#~ msgstr "base.exception" diff --git a/base_exception/i18n/fr_CA.po b/base_exception/i18n/fr_CA.po new file mode 100644 index 00000000..5d778130 --- /dev/null +++ b/base_exception/i18n/fr_CA.po @@ -0,0 +1,325 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_exception +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-01 10:38+0000\n" +"PO-Revision-Date: 2017-05-01 10:38+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: French (Canada) (https://www.transifex.com/oca/teams/23907/" +"fr_CA/)\n" +"Language: fr_CA\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "(Blocking exception)" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "self: Record on which the rule is evaluated." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__active +msgid "Active" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__model +msgid "Apply on" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Archived" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "As well as all the libraries provided in safe_eval." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_domain +msgid "By domain" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_method +msgid "By method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_py_code +msgid "By python code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__exception_type +msgid "" +"By python code: allow to define any arbitrary check\n" +"By domain: limited to a selection by an odoo domain:\n" +" performance can be better when exceptions are evaluated " +"with several records\n" +"By method: allow to select an existing check method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_uid +msgid "Created by" +msgstr "Créé par" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_date +msgid "Created on" +msgstr "Créé le" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__description +msgid "Description" +msgstr "Description" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__display_name +msgid "Display Name" +msgstr "Afficher le nom" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__domain +msgid "Domain" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Enter Python code here. Help about Python expression is available in the " +"help tab of this document." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"Error when evaluating the exception.rule rule:\n" +" %(rule_name)s \n" +"(%(error)s)" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception +#, fuzzy +msgid "Exception" +msgstr "Description" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__name +msgid "Exception Name" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule +msgid "Exception Rule" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule_confirm +msgid "Exception Rule Confirm Wizard" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception_method +msgid "Exception Rule Methods" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Exception Rule Setup" +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_tree +#: model:ir.ui.menu,name:base_exception.menu_action_exception +msgid "Exception Rules" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__exception_type +msgid "Exception Type" +msgstr "" + +#. module: base_exception +#: model:res.groups,name:base_exception.group_exception_rule_manager +msgid "Exception manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exception_ids +msgid "Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exceptions_summary +#, fuzzy +msgid "Exceptions Summary" +msgstr "Description" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__exception_ids +msgid "Exceptions to resolve" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__sequence +msgid "Gives the sequence order when applying the test" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help with Python expressions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__id +msgid "ID" +msgstr "Identifiant" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__ignore_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__ignore +msgid "Ignore Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__is_blocking +msgid "Is Blocking" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule____last_update +msgid "Last Modified on" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_uid +msgid "Last Updated by" +msgstr "Dernière mise à jour par" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_date +msgid "Last Updated on" +msgstr "Dernière mise à jour le" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__main_exception_id +msgid "Main Exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__method +msgid "Method" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/wizard/base_exception_confirm.py:0 +#, python-format +msgid "Only 1 ID accepted, got %r." +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_confirm +msgid "Outstanding exceptions to manage" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "Outstanding exceptions to manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__code +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Python Code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__code +msgid "" +"Python code executed to check if the exception apply or not. Use failed = " +"True to block the exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__related_model_id +#, fuzzy +msgid "Related Model" +msgstr "Créé le" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__sequence +msgid "Sequence" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__smart_search +#: model:ir.model.fields,field_description:base_exception.field_base_exception_method__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__smart_search +msgid "Smart Search" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "The exceptions can not be ignored, because some of them are blocking." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"There is a problem of configuration, python code, domain or method is " +"missing to match the exception type." +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "To block the exception use: failed = True" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Various fields may use Python code or Python expressions. The following " +"variables can be used:" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__is_blocking +msgid "When checked the exception can not be ignored" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "_Close" +msgstr "" diff --git a/base_exception/i18n/fr_CH.po b/base_exception/i18n/fr_CH.po new file mode 100644 index 00000000..2db150c1 --- /dev/null +++ b/base_exception/i18n/fr_CH.po @@ -0,0 +1,323 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_exception +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-01 02:43+0000\n" +"PO-Revision-Date: 2017-08-01 02:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: French (Switzerland) (https://www.transifex.com/oca/" +"teams/23907/fr_CH/)\n" +"Language: fr_CH\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "(Blocking exception)" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "self: Record on which the rule is evaluated." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__active +msgid "Active" +msgstr "Actif" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__model +msgid "Apply on" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Archived" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "As well as all the libraries provided in safe_eval." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_domain +msgid "By domain" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_method +msgid "By method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_py_code +msgid "By python code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__exception_type +msgid "" +"By python code: allow to define any arbitrary check\n" +"By domain: limited to a selection by an odoo domain:\n" +" performance can be better when exceptions are evaluated " +"with several records\n" +"By method: allow to select an existing check method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_uid +msgid "Created by" +msgstr "Créé par" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_date +msgid "Created on" +msgstr "Créé le" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__description +msgid "Description" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__display_name +msgid "Display Name" +msgstr "Nom affiché" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__domain +msgid "Domain" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Enter Python code here. Help about Python expression is available in the " +"help tab of this document." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"Error when evaluating the exception.rule rule:\n" +" %(rule_name)s \n" +"(%(error)s)" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception +msgid "Exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__name +msgid "Exception Name" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule +msgid "Exception Rule" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule_confirm +msgid "Exception Rule Confirm Wizard" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception_method +msgid "Exception Rule Methods" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Exception Rule Setup" +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_tree +#: model:ir.ui.menu,name:base_exception.menu_action_exception +msgid "Exception Rules" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__exception_type +msgid "Exception Type" +msgstr "" + +#. module: base_exception +#: model:res.groups,name:base_exception.group_exception_rule_manager +msgid "Exception manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exception_ids +msgid "Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exceptions_summary +msgid "Exceptions Summary" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__exception_ids +msgid "Exceptions to resolve" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__sequence +msgid "Gives the sequence order when applying the test" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help with Python expressions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__id +msgid "ID" +msgstr "ID" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__ignore_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__ignore +msgid "Ignore Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__is_blocking +msgid "Is Blocking" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule____last_update +msgid "Last Modified on" +msgstr "Dernière modification le" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_uid +msgid "Last Updated by" +msgstr "Modifié par" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_date +msgid "Last Updated on" +msgstr "Modifié le" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__main_exception_id +msgid "Main Exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__method +msgid "Method" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/wizard/base_exception_confirm.py:0 +#, python-format +msgid "Only 1 ID accepted, got %r." +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_confirm +msgid "Outstanding exceptions to manage" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "Outstanding exceptions to manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__code +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Python Code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__code +msgid "" +"Python code executed to check if the exception apply or not. Use failed = " +"True to block the exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__related_model_id +#, fuzzy +msgid "Related Model" +msgstr "Créé le" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__sequence +msgid "Sequence" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__smart_search +#: model:ir.model.fields,field_description:base_exception.field_base_exception_method__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__smart_search +msgid "Smart Search" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "The exceptions can not be ignored, because some of them are blocking." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"There is a problem of configuration, python code, domain or method is " +"missing to match the exception type." +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "To block the exception use: failed = True" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Various fields may use Python code or Python expressions. The following " +"variables can be used:" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__is_blocking +msgid "When checked the exception can not be ignored" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "_Close" +msgstr "" diff --git a/base_exception/i18n/gl.po b/base_exception/i18n/gl.po new file mode 100644 index 00000000..7da5a851 --- /dev/null +++ b/base_exception/i18n/gl.po @@ -0,0 +1,324 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_exception +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-01 10:38+0000\n" +"PO-Revision-Date: 2017-05-01 10:38+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Galician (https://www.transifex.com/oca/teams/23907/gl/)\n" +"Language: gl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "(Blocking exception)" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "self: Record on which the rule is evaluated." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__active +msgid "Active" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__model +msgid "Apply on" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Archived" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "As well as all the libraries provided in safe_eval." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_domain +msgid "By domain" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_method +msgid "By method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_py_code +msgid "By python code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__exception_type +msgid "" +"By python code: allow to define any arbitrary check\n" +"By domain: limited to a selection by an odoo domain:\n" +" performance can be better when exceptions are evaluated " +"with several records\n" +"By method: allow to select an existing check method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__description +msgid "Description" +msgstr "Descrición" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__display_name +msgid "Display Name" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__domain +msgid "Domain" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Enter Python code here. Help about Python expression is available in the " +"help tab of this document." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"Error when evaluating the exception.rule rule:\n" +" %(rule_name)s \n" +"(%(error)s)" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception +#, fuzzy +msgid "Exception" +msgstr "Descrición" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__name +msgid "Exception Name" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule +msgid "Exception Rule" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule_confirm +msgid "Exception Rule Confirm Wizard" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception_method +msgid "Exception Rule Methods" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Exception Rule Setup" +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_tree +#: model:ir.ui.menu,name:base_exception.menu_action_exception +msgid "Exception Rules" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__exception_type +msgid "Exception Type" +msgstr "" + +#. module: base_exception +#: model:res.groups,name:base_exception.group_exception_rule_manager +msgid "Exception manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exception_ids +msgid "Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exceptions_summary +#, fuzzy +msgid "Exceptions Summary" +msgstr "Descrición" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__exception_ids +msgid "Exceptions to resolve" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__sequence +msgid "Gives the sequence order when applying the test" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help with Python expressions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__id +msgid "ID" +msgstr "ID" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__ignore_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__ignore +msgid "Ignore Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__is_blocking +msgid "Is Blocking" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule____last_update +msgid "Last Modified on" +msgstr "Última modificación" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_uid +msgid "Last Updated by" +msgstr "ültima actualización por" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__main_exception_id +msgid "Main Exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__method +msgid "Method" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/wizard/base_exception_confirm.py:0 +#, python-format +msgid "Only 1 ID accepted, got %r." +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_confirm +msgid "Outstanding exceptions to manage" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "Outstanding exceptions to manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__code +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Python Code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__code +msgid "" +"Python code executed to check if the exception apply or not. Use failed = " +"True to block the exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__related_model_id +#, fuzzy +msgid "Related Model" +msgstr "Creado en" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__sequence +msgid "Sequence" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__smart_search +#: model:ir.model.fields,field_description:base_exception.field_base_exception_method__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__smart_search +msgid "Smart Search" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "The exceptions can not be ignored, because some of them are blocking." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"There is a problem of configuration, python code, domain or method is " +"missing to match the exception type." +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "To block the exception use: failed = True" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Various fields may use Python code or Python expressions. The following " +"variables can be used:" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__is_blocking +msgid "When checked the exception can not be ignored" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "_Close" +msgstr "" diff --git a/base_exception/i18n/gl_ES.po b/base_exception/i18n/gl_ES.po new file mode 100644 index 00000000..36c0ae34 --- /dev/null +++ b/base_exception/i18n/gl_ES.po @@ -0,0 +1,322 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_exception +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-01 10:38+0000\n" +"PO-Revision-Date: 2017-05-01 10:38+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Galician (Spain) (https://www.transifex.com/oca/teams/23907/" +"gl_ES/)\n" +"Language: gl_ES\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "(Blocking exception)" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "self: Record on which the rule is evaluated." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__active +msgid "Active" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__model +msgid "Apply on" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Archived" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "As well as all the libraries provided in safe_eval." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_domain +msgid "By domain" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_method +msgid "By method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_py_code +msgid "By python code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__exception_type +msgid "" +"By python code: allow to define any arbitrary check\n" +"By domain: limited to a selection by an odoo domain:\n" +" performance can be better when exceptions are evaluated " +"with several records\n" +"By method: allow to select an existing check method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_uid +msgid "Created by" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_date +msgid "Created on" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__description +msgid "Description" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__display_name +msgid "Display Name" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__domain +msgid "Domain" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Enter Python code here. Help about Python expression is available in the " +"help tab of this document." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"Error when evaluating the exception.rule rule:\n" +" %(rule_name)s \n" +"(%(error)s)" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception +msgid "Exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__name +msgid "Exception Name" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule +msgid "Exception Rule" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule_confirm +msgid "Exception Rule Confirm Wizard" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception_method +msgid "Exception Rule Methods" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Exception Rule Setup" +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_tree +#: model:ir.ui.menu,name:base_exception.menu_action_exception +msgid "Exception Rules" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__exception_type +msgid "Exception Type" +msgstr "" + +#. module: base_exception +#: model:res.groups,name:base_exception.group_exception_rule_manager +msgid "Exception manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exception_ids +msgid "Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exceptions_summary +msgid "Exceptions Summary" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__exception_ids +msgid "Exceptions to resolve" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__sequence +msgid "Gives the sequence order when applying the test" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help with Python expressions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__id +msgid "ID" +msgstr "ID" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__ignore_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__ignore +msgid "Ignore Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__is_blocking +msgid "Is Blocking" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule____last_update +msgid "Last Modified on" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_date +msgid "Last Updated on" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__main_exception_id +msgid "Main Exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__method +msgid "Method" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/wizard/base_exception_confirm.py:0 +#, python-format +msgid "Only 1 ID accepted, got %r." +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_confirm +msgid "Outstanding exceptions to manage" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "Outstanding exceptions to manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__code +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Python Code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__code +msgid "" +"Python code executed to check if the exception apply or not. Use failed = " +"True to block the exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__related_model_id +msgid "Related Model" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__sequence +msgid "Sequence" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__smart_search +#: model:ir.model.fields,field_description:base_exception.field_base_exception_method__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__smart_search +msgid "Smart Search" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "The exceptions can not be ignored, because some of them are blocking." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"There is a problem of configuration, python code, domain or method is " +"missing to match the exception type." +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "To block the exception use: failed = True" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Various fields may use Python code or Python expressions. The following " +"variables can be used:" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__is_blocking +msgid "When checked the exception can not be ignored" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "_Close" +msgstr "" diff --git a/base_exception/i18n/he.po b/base_exception/i18n/he.po new file mode 100644 index 00000000..d6ae99ee --- /dev/null +++ b/base_exception/i18n/he.po @@ -0,0 +1,324 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_exception +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-01 10:38+0000\n" +"PO-Revision-Date: 2017-05-01 10:38+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Hebrew (https://www.transifex.com/oca/teams/23907/he/)\n" +"Language: he\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "(Blocking exception)" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "self: Record on which the rule is evaluated." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__active +msgid "Active" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__model +msgid "Apply on" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Archived" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "As well as all the libraries provided in safe_eval." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_domain +msgid "By domain" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_method +msgid "By method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_py_code +msgid "By python code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__exception_type +msgid "" +"By python code: allow to define any arbitrary check\n" +"By domain: limited to a selection by an odoo domain:\n" +" performance can be better when exceptions are evaluated " +"with several records\n" +"By method: allow to select an existing check method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_uid +msgid "Created by" +msgstr "נוצר על ידי" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_date +msgid "Created on" +msgstr "נוצר ב-" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__description +msgid "Description" +msgstr "תיאור" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__display_name +msgid "Display Name" +msgstr "השם המוצג" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__domain +msgid "Domain" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Enter Python code here. Help about Python expression is available in the " +"help tab of this document." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"Error when evaluating the exception.rule rule:\n" +" %(rule_name)s \n" +"(%(error)s)" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception +#, fuzzy +msgid "Exception" +msgstr "תיאור" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__name +msgid "Exception Name" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule +msgid "Exception Rule" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule_confirm +msgid "Exception Rule Confirm Wizard" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception_method +msgid "Exception Rule Methods" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Exception Rule Setup" +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_tree +#: model:ir.ui.menu,name:base_exception.menu_action_exception +msgid "Exception Rules" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__exception_type +msgid "Exception Type" +msgstr "" + +#. module: base_exception +#: model:res.groups,name:base_exception.group_exception_rule_manager +msgid "Exception manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exception_ids +msgid "Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exceptions_summary +#, fuzzy +msgid "Exceptions Summary" +msgstr "תיאור" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__exception_ids +msgid "Exceptions to resolve" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__sequence +msgid "Gives the sequence order when applying the test" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help with Python expressions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__id +msgid "ID" +msgstr "מזהה" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__ignore_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__ignore +msgid "Ignore Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__is_blocking +msgid "Is Blocking" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule____last_update +msgid "Last Modified on" +msgstr "תאריך שינוי אחרון" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_uid +msgid "Last Updated by" +msgstr "עודכן לאחרונה על ידי" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_date +msgid "Last Updated on" +msgstr "עודכן לאחרונה על" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__main_exception_id +msgid "Main Exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__method +msgid "Method" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/wizard/base_exception_confirm.py:0 +#, python-format +msgid "Only 1 ID accepted, got %r." +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_confirm +msgid "Outstanding exceptions to manage" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "Outstanding exceptions to manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__code +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Python Code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__code +msgid "" +"Python code executed to check if the exception apply or not. Use failed = " +"True to block the exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__related_model_id +#, fuzzy +msgid "Related Model" +msgstr "נוצר ב-" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__sequence +msgid "Sequence" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__smart_search +#: model:ir.model.fields,field_description:base_exception.field_base_exception_method__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__smart_search +msgid "Smart Search" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "The exceptions can not be ignored, because some of them are blocking." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"There is a problem of configuration, python code, domain or method is " +"missing to match the exception type." +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "To block the exception use: failed = True" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Various fields may use Python code or Python expressions. The following " +"variables can be used:" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__is_blocking +msgid "When checked the exception can not be ignored" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "_Close" +msgstr "" diff --git a/base_exception/i18n/hr.po b/base_exception/i18n/hr.po new file mode 100644 index 00000000..78d40997 --- /dev/null +++ b/base_exception/i18n/hr.po @@ -0,0 +1,328 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_exception +# +# Translators: +# OCA Transbot , 2017 +# Bole , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-01 10:38+0000\n" +"PO-Revision-Date: 2017-05-01 10:38+0000\n" +"Last-Translator: Bole , 2017\n" +"Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n" +"Language: hr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \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_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "(Blocking exception)" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "self: Record on which the rule is evaluated." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__active +msgid "Active" +msgstr "Aktivan" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__model +msgid "Apply on" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Archived" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "As well as all the libraries provided in safe_eval." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_domain +msgid "By domain" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_method +msgid "By method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_py_code +msgid "By python code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__exception_type +msgid "" +"By python code: allow to define any arbitrary check\n" +"By domain: limited to a selection by an odoo domain:\n" +" performance can be better when exceptions are evaluated " +"with several records\n" +"By method: allow to select an existing check method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_date +msgid "Created on" +msgstr "Kreirano" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__description +msgid "Description" +msgstr "Opis" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__display_name +msgid "Display Name" +msgstr "Naziv " + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__domain +msgid "Domain" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Enter Python code here. Help about Python expression is available in the " +"help tab of this document." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"Error when evaluating the exception.rule rule:\n" +" %(rule_name)s \n" +"(%(error)s)" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception +#, fuzzy +msgid "Exception" +msgstr "base.exception" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__name +msgid "Exception Name" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule +msgid "Exception Rule" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule_confirm +#, fuzzy +msgid "Exception Rule Confirm Wizard" +msgstr "exception.rule.confirm" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception_method +#, fuzzy +msgid "Exception Rule Methods" +msgstr "exception.rule.confirm" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Exception Rule Setup" +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_tree +#: model:ir.ui.menu,name:base_exception.menu_action_exception +msgid "Exception Rules" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__exception_type +msgid "Exception Type" +msgstr "" + +#. module: base_exception +#: model:res.groups,name:base_exception.group_exception_rule_manager +msgid "Exception manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exception_ids +msgid "Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exceptions_summary +#, fuzzy +msgid "Exceptions Summary" +msgstr "base.exception" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__exception_ids +msgid "Exceptions to resolve" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__sequence +msgid "Gives the sequence order when applying the test" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help with Python expressions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__id +msgid "ID" +msgstr "ID" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__ignore_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__ignore +msgid "Ignore Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__is_blocking +msgid "Is Blocking" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule____last_update +msgid "Last Modified on" +msgstr "Zadnje modificirano" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_uid +msgid "Last Updated by" +msgstr "Zadnji ažurirao" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_date +msgid "Last Updated on" +msgstr "Zadnje ažuriranje" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__main_exception_id +msgid "Main Exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__method +msgid "Method" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/wizard/base_exception_confirm.py:0 +#, python-format +msgid "Only 1 ID accepted, got %r." +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_confirm +msgid "Outstanding exceptions to manage" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "Outstanding exceptions to manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__code +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Python Code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__code +msgid "" +"Python code executed to check if the exception apply or not. Use failed = " +"True to block the exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__related_model_id +#, fuzzy +msgid "Related Model" +msgstr "Kreirano" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__sequence +msgid "Sequence" +msgstr "Sekvenca" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__smart_search +#: model:ir.model.fields,field_description:base_exception.field_base_exception_method__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__smart_search +msgid "Smart Search" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "The exceptions can not be ignored, because some of them are blocking." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"There is a problem of configuration, python code, domain or method is " +"missing to match the exception type." +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "To block the exception use: failed = True" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Various fields may use Python code or Python expressions. The following " +"variables can be used:" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__is_blocking +msgid "When checked the exception can not be ignored" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "_Close" +msgstr "" diff --git a/base_exception/i18n/hr_HR.po b/base_exception/i18n/hr_HR.po new file mode 100644 index 00000000..feb8ab60 --- /dev/null +++ b/base_exception/i18n/hr_HR.po @@ -0,0 +1,326 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_exception +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-01 02:43+0000\n" +"PO-Revision-Date: 2017-08-01 02:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/" +"hr_HR/)\n" +"Language: hr_HR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \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_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "(Blocking exception)" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "self: Record on which the rule is evaluated." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__active +msgid "Active" +msgstr "Aktivan" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__model +msgid "Apply on" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Archived" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "As well as all the libraries provided in safe_eval." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_domain +msgid "By domain" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_method +msgid "By method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_py_code +msgid "By python code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__exception_type +msgid "" +"By python code: allow to define any arbitrary check\n" +"By domain: limited to a selection by an odoo domain:\n" +" performance can be better when exceptions are evaluated " +"with several records\n" +"By method: allow to select an existing check method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_date +msgid "Created on" +msgstr "Kreirano" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__description +msgid "Description" +msgstr "Opis" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__display_name +msgid "Display Name" +msgstr "Naziv" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__domain +msgid "Domain" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Enter Python code here. Help about Python expression is available in the " +"help tab of this document." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"Error when evaluating the exception.rule rule:\n" +" %(rule_name)s \n" +"(%(error)s)" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception +#, fuzzy +msgid "Exception" +msgstr "Opis" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__name +msgid "Exception Name" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule +msgid "Exception Rule" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule_confirm +msgid "Exception Rule Confirm Wizard" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception_method +msgid "Exception Rule Methods" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Exception Rule Setup" +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_tree +#: model:ir.ui.menu,name:base_exception.menu_action_exception +msgid "Exception Rules" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__exception_type +msgid "Exception Type" +msgstr "" + +#. module: base_exception +#: model:res.groups,name:base_exception.group_exception_rule_manager +msgid "Exception manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exception_ids +msgid "Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exceptions_summary +#, fuzzy +msgid "Exceptions Summary" +msgstr "Opis" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__exception_ids +msgid "Exceptions to resolve" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__sequence +msgid "Gives the sequence order when applying the test" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help with Python expressions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__id +msgid "ID" +msgstr "ID" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__ignore_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__ignore +msgid "Ignore Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__is_blocking +msgid "Is Blocking" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule____last_update +msgid "Last Modified on" +msgstr "Zadnje modificirano" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_uid +msgid "Last Updated by" +msgstr "Zadnji ažurirao" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_date +msgid "Last Updated on" +msgstr "Zadnje ažurirano" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__main_exception_id +msgid "Main Exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__method +msgid "Method" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/wizard/base_exception_confirm.py:0 +#, python-format +msgid "Only 1 ID accepted, got %r." +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_confirm +msgid "Outstanding exceptions to manage" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "Outstanding exceptions to manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__code +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Python Code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__code +msgid "" +"Python code executed to check if the exception apply or not. Use failed = " +"True to block the exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__related_model_id +#, fuzzy +msgid "Related Model" +msgstr "Kreirano" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__sequence +msgid "Sequence" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__smart_search +#: model:ir.model.fields,field_description:base_exception.field_base_exception_method__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__smart_search +msgid "Smart Search" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "The exceptions can not be ignored, because some of them are blocking." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"There is a problem of configuration, python code, domain or method is " +"missing to match the exception type." +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "To block the exception use: failed = True" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Various fields may use Python code or Python expressions. The following " +"variables can be used:" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__is_blocking +msgid "When checked the exception can not be ignored" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "_Close" +msgstr "" diff --git a/base_exception/i18n/hu.po b/base_exception/i18n/hu.po new file mode 100644 index 00000000..b95f0ad9 --- /dev/null +++ b/base_exception/i18n/hu.po @@ -0,0 +1,324 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_exception +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-01 10:38+0000\n" +"PO-Revision-Date: 2017-05-01 10:38+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Hungarian (https://www.transifex.com/oca/teams/23907/hu/)\n" +"Language: hu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "(Blocking exception)" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "self: Record on which the rule is evaluated." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__active +msgid "Active" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__model +msgid "Apply on" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Archived" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "As well as all the libraries provided in safe_eval." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_domain +msgid "By domain" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_method +msgid "By method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_py_code +msgid "By python code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__exception_type +msgid "" +"By python code: allow to define any arbitrary check\n" +"By domain: limited to a selection by an odoo domain:\n" +" performance can be better when exceptions are evaluated " +"with several records\n" +"By method: allow to select an existing check method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_uid +msgid "Created by" +msgstr "Készítette" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_date +msgid "Created on" +msgstr "Létrehozás dátuma" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__description +msgid "Description" +msgstr "Leírás" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__display_name +msgid "Display Name" +msgstr "Név megjelenítése" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__domain +msgid "Domain" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Enter Python code here. Help about Python expression is available in the " +"help tab of this document." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"Error when evaluating the exception.rule rule:\n" +" %(rule_name)s \n" +"(%(error)s)" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception +#, fuzzy +msgid "Exception" +msgstr "Leírás" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__name +msgid "Exception Name" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule +msgid "Exception Rule" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule_confirm +msgid "Exception Rule Confirm Wizard" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception_method +msgid "Exception Rule Methods" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Exception Rule Setup" +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_tree +#: model:ir.ui.menu,name:base_exception.menu_action_exception +msgid "Exception Rules" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__exception_type +msgid "Exception Type" +msgstr "" + +#. module: base_exception +#: model:res.groups,name:base_exception.group_exception_rule_manager +msgid "Exception manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exception_ids +msgid "Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exceptions_summary +#, fuzzy +msgid "Exceptions Summary" +msgstr "Leírás" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__exception_ids +msgid "Exceptions to resolve" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__sequence +msgid "Gives the sequence order when applying the test" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help with Python expressions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__id +msgid "ID" +msgstr "ID" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__ignore_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__ignore +msgid "Ignore Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__is_blocking +msgid "Is Blocking" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule____last_update +msgid "Last Modified on" +msgstr "Utolsó frissítés dátuma" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_uid +msgid "Last Updated by" +msgstr "Utoljára frissítve, által" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_date +msgid "Last Updated on" +msgstr "Utoljára frissítve " + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__main_exception_id +msgid "Main Exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__method +msgid "Method" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/wizard/base_exception_confirm.py:0 +#, python-format +msgid "Only 1 ID accepted, got %r." +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_confirm +msgid "Outstanding exceptions to manage" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "Outstanding exceptions to manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__code +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Python Code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__code +msgid "" +"Python code executed to check if the exception apply or not. Use failed = " +"True to block the exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__related_model_id +#, fuzzy +msgid "Related Model" +msgstr "Létrehozás dátuma" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__sequence +msgid "Sequence" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__smart_search +#: model:ir.model.fields,field_description:base_exception.field_base_exception_method__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__smart_search +msgid "Smart Search" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "The exceptions can not be ignored, because some of them are blocking." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"There is a problem of configuration, python code, domain or method is " +"missing to match the exception type." +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "To block the exception use: failed = True" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Various fields may use Python code or Python expressions. The following " +"variables can be used:" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__is_blocking +msgid "When checked the exception can not be ignored" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "_Close" +msgstr "" diff --git a/base_exception/i18n/id.po b/base_exception/i18n/id.po new file mode 100644 index 00000000..abbc2a8a --- /dev/null +++ b/base_exception/i18n/id.po @@ -0,0 +1,324 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_exception +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-01 10:38+0000\n" +"PO-Revision-Date: 2017-05-01 10:38+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Indonesian (https://www.transifex.com/oca/teams/23907/id/)\n" +"Language: id\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "(Blocking exception)" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "self: Record on which the rule is evaluated." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__active +msgid "Active" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__model +msgid "Apply on" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Archived" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "As well as all the libraries provided in safe_eval." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_domain +msgid "By domain" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_method +msgid "By method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_py_code +msgid "By python code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__exception_type +msgid "" +"By python code: allow to define any arbitrary check\n" +"By domain: limited to a selection by an odoo domain:\n" +" performance can be better when exceptions are evaluated " +"with several records\n" +"By method: allow to select an existing check method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_uid +msgid "Created by" +msgstr "Dibuat oleh" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_date +msgid "Created on" +msgstr "Dibuat pada" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__description +msgid "Description" +msgstr "Keterangan" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__display_name +msgid "Display Name" +msgstr "Nama Tampilan" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__domain +msgid "Domain" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Enter Python code here. Help about Python expression is available in the " +"help tab of this document." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"Error when evaluating the exception.rule rule:\n" +" %(rule_name)s \n" +"(%(error)s)" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception +#, fuzzy +msgid "Exception" +msgstr "Keterangan" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__name +msgid "Exception Name" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule +msgid "Exception Rule" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule_confirm +msgid "Exception Rule Confirm Wizard" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception_method +msgid "Exception Rule Methods" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Exception Rule Setup" +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_tree +#: model:ir.ui.menu,name:base_exception.menu_action_exception +msgid "Exception Rules" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__exception_type +msgid "Exception Type" +msgstr "" + +#. module: base_exception +#: model:res.groups,name:base_exception.group_exception_rule_manager +msgid "Exception manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exception_ids +msgid "Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exceptions_summary +#, fuzzy +msgid "Exceptions Summary" +msgstr "Keterangan" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__exception_ids +msgid "Exceptions to resolve" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__sequence +msgid "Gives the sequence order when applying the test" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help with Python expressions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__id +msgid "ID" +msgstr "ID" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__ignore_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__ignore +msgid "Ignore Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__is_blocking +msgid "Is Blocking" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule____last_update +msgid "Last Modified on" +msgstr "Terakhir Dimodifikasi pada" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_uid +msgid "Last Updated by" +msgstr "Diperbaharui oleh" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_date +msgid "Last Updated on" +msgstr "Diperbaharui pada" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__main_exception_id +msgid "Main Exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__method +msgid "Method" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/wizard/base_exception_confirm.py:0 +#, python-format +msgid "Only 1 ID accepted, got %r." +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_confirm +msgid "Outstanding exceptions to manage" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "Outstanding exceptions to manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__code +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Python Code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__code +msgid "" +"Python code executed to check if the exception apply or not. Use failed = " +"True to block the exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__related_model_id +#, fuzzy +msgid "Related Model" +msgstr "Dibuat pada" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__sequence +msgid "Sequence" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__smart_search +#: model:ir.model.fields,field_description:base_exception.field_base_exception_method__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__smart_search +msgid "Smart Search" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "The exceptions can not be ignored, because some of them are blocking." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"There is a problem of configuration, python code, domain or method is " +"missing to match the exception type." +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "To block the exception use: failed = True" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Various fields may use Python code or Python expressions. The following " +"variables can be used:" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__is_blocking +msgid "When checked the exception can not be ignored" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "_Close" +msgstr "" diff --git a/base_exception/i18n/it.po b/base_exception/i18n/it.po new file mode 100644 index 00000000..39a81f12 --- /dev/null +++ b/base_exception/i18n/it.po @@ -0,0 +1,325 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_exception +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-01 02:43+0000\n" +"PO-Revision-Date: 2023-04-10 16:31+0000\n" +"Last-Translator: mymage \n" +"Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.14.1\n" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "(Blocking exception)" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "self: Record on which the rule is evaluated." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__active +msgid "Active" +msgstr "Attivo" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__model +msgid "Apply on" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Archived" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "As well as all the libraries provided in safe_eval." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_domain +msgid "By domain" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_method +msgid "By method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_py_code +msgid "By python code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__exception_type +msgid "" +"By python code: allow to define any arbitrary check\n" +"By domain: limited to a selection by an odoo domain:\n" +" performance can be better when exceptions are evaluated " +"with several records\n" +"By method: allow to select an existing check method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_uid +msgid "Created by" +msgstr "Creato da" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_date +msgid "Created on" +msgstr "Creato il" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__description +msgid "Description" +msgstr "Descrizione" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__display_name +msgid "Display Name" +msgstr "Nome visualizzato" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__domain +msgid "Domain" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Enter Python code here. Help about Python expression is available in the " +"help tab of this document." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"Error when evaluating the exception.rule rule:\n" +" %(rule_name)s \n" +"(%(error)s)" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception +#, fuzzy +msgid "Exception" +msgstr "Descrizione" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__name +msgid "Exception Name" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule +msgid "Exception Rule" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule_confirm +msgid "Exception Rule Confirm Wizard" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception_method +msgid "Exception Rule Methods" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Exception Rule Setup" +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_tree +#: model:ir.ui.menu,name:base_exception.menu_action_exception +msgid "Exception Rules" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__exception_type +msgid "Exception Type" +msgstr "" + +#. module: base_exception +#: model:res.groups,name:base_exception.group_exception_rule_manager +msgid "Exception manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exception_ids +msgid "Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exceptions_summary +#, fuzzy +msgid "Exceptions Summary" +msgstr "Descrizione" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__exception_ids +msgid "Exceptions to resolve" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__sequence +msgid "Gives the sequence order when applying the test" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help with Python expressions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__id +msgid "ID" +msgstr "ID" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__ignore_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__ignore +msgid "Ignore Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__is_blocking +msgid "Is Blocking" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule____last_update +msgid "Last Modified on" +msgstr "Ultima modifica il" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_uid +msgid "Last Updated by" +msgstr "Ultimo aggiornamento di" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_date +msgid "Last Updated on" +msgstr "Ultimo aggiornamento il" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__main_exception_id +msgid "Main Exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__method +msgid "Method" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/wizard/base_exception_confirm.py:0 +#, python-format +msgid "Only 1 ID accepted, got %r." +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_confirm +msgid "Outstanding exceptions to manage" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "Outstanding exceptions to manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__code +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Python Code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__code +msgid "" +"Python code executed to check if the exception apply or not. Use failed = " +"True to block the exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__related_model_id +#, fuzzy +msgid "Related Model" +msgstr "Created on" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__sequence +msgid "Sequence" +msgstr "Sequenza" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__smart_search +#: model:ir.model.fields,field_description:base_exception.field_base_exception_method__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__smart_search +msgid "Smart Search" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "The exceptions can not be ignored, because some of them are blocking." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"There is a problem of configuration, python code, domain or method is " +"missing to match the exception type." +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "To block the exception use: failed = True" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Various fields may use Python code or Python expressions. The following " +"variables can be used:" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__is_blocking +msgid "When checked the exception can not be ignored" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "_Close" +msgstr "" diff --git a/base_exception/i18n/ja.po b/base_exception/i18n/ja.po new file mode 100644 index 00000000..6c345a4c --- /dev/null +++ b/base_exception/i18n/ja.po @@ -0,0 +1,324 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_exception +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-01 10:38+0000\n" +"PO-Revision-Date: 2017-05-01 10:38+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Japanese (https://www.transifex.com/oca/teams/23907/ja/)\n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "(Blocking exception)" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "self: Record on which the rule is evaluated." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__active +msgid "Active" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__model +msgid "Apply on" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Archived" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "As well as all the libraries provided in safe_eval." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_domain +msgid "By domain" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_method +msgid "By method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_py_code +msgid "By python code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__exception_type +msgid "" +"By python code: allow to define any arbitrary check\n" +"By domain: limited to a selection by an odoo domain:\n" +" performance can be better when exceptions are evaluated " +"with several records\n" +"By method: allow to select an existing check method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_uid +msgid "Created by" +msgstr "作成者" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_date +msgid "Created on" +msgstr "作成日" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__description +msgid "Description" +msgstr "説明" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__display_name +msgid "Display Name" +msgstr "表示名" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__domain +msgid "Domain" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Enter Python code here. Help about Python expression is available in the " +"help tab of this document." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"Error when evaluating the exception.rule rule:\n" +" %(rule_name)s \n" +"(%(error)s)" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception +#, fuzzy +msgid "Exception" +msgstr "説明" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__name +msgid "Exception Name" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule +msgid "Exception Rule" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule_confirm +msgid "Exception Rule Confirm Wizard" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception_method +msgid "Exception Rule Methods" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Exception Rule Setup" +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_tree +#: model:ir.ui.menu,name:base_exception.menu_action_exception +msgid "Exception Rules" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__exception_type +msgid "Exception Type" +msgstr "" + +#. module: base_exception +#: model:res.groups,name:base_exception.group_exception_rule_manager +msgid "Exception manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exception_ids +msgid "Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exceptions_summary +#, fuzzy +msgid "Exceptions Summary" +msgstr "説明" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__exception_ids +msgid "Exceptions to resolve" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__sequence +msgid "Gives the sequence order when applying the test" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help with Python expressions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__id +msgid "ID" +msgstr "ID" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__ignore_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__ignore +msgid "Ignore Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__is_blocking +msgid "Is Blocking" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule____last_update +msgid "Last Modified on" +msgstr "最終更新日" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_uid +msgid "Last Updated by" +msgstr "最終更新者" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_date +msgid "Last Updated on" +msgstr "最終更新日" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__main_exception_id +msgid "Main Exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__method +msgid "Method" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/wizard/base_exception_confirm.py:0 +#, python-format +msgid "Only 1 ID accepted, got %r." +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_confirm +msgid "Outstanding exceptions to manage" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "Outstanding exceptions to manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__code +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Python Code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__code +msgid "" +"Python code executed to check if the exception apply or not. Use failed = " +"True to block the exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__related_model_id +#, fuzzy +msgid "Related Model" +msgstr "作成日" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__sequence +msgid "Sequence" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__smart_search +#: model:ir.model.fields,field_description:base_exception.field_base_exception_method__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__smart_search +msgid "Smart Search" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "The exceptions can not be ignored, because some of them are blocking." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"There is a problem of configuration, python code, domain or method is " +"missing to match the exception type." +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "To block the exception use: failed = True" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Various fields may use Python code or Python expressions. The following " +"variables can be used:" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__is_blocking +msgid "When checked the exception can not be ignored" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "_Close" +msgstr "" diff --git a/base_exception/i18n/ko.po b/base_exception/i18n/ko.po new file mode 100644 index 00000000..7e1e992d --- /dev/null +++ b/base_exception/i18n/ko.po @@ -0,0 +1,324 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_exception +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-01 10:38+0000\n" +"PO-Revision-Date: 2017-05-01 10:38+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Korean (https://www.transifex.com/oca/teams/23907/ko/)\n" +"Language: ko\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "(Blocking exception)" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "self: Record on which the rule is evaluated." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__active +msgid "Active" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__model +msgid "Apply on" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Archived" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "As well as all the libraries provided in safe_eval." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_domain +msgid "By domain" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_method +msgid "By method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_py_code +msgid "By python code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__exception_type +msgid "" +"By python code: allow to define any arbitrary check\n" +"By domain: limited to a selection by an odoo domain:\n" +" performance can be better when exceptions are evaluated " +"with several records\n" +"By method: allow to select an existing check method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_uid +msgid "Created by" +msgstr "작성자" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_date +msgid "Created on" +msgstr "작성일" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__description +msgid "Description" +msgstr "설명" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__display_name +msgid "Display Name" +msgstr "표시 이름" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__domain +msgid "Domain" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Enter Python code here. Help about Python expression is available in the " +"help tab of this document." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"Error when evaluating the exception.rule rule:\n" +" %(rule_name)s \n" +"(%(error)s)" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception +#, fuzzy +msgid "Exception" +msgstr "설명" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__name +msgid "Exception Name" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule +msgid "Exception Rule" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule_confirm +msgid "Exception Rule Confirm Wizard" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception_method +msgid "Exception Rule Methods" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Exception Rule Setup" +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_tree +#: model:ir.ui.menu,name:base_exception.menu_action_exception +msgid "Exception Rules" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__exception_type +msgid "Exception Type" +msgstr "" + +#. module: base_exception +#: model:res.groups,name:base_exception.group_exception_rule_manager +msgid "Exception manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exception_ids +msgid "Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exceptions_summary +#, fuzzy +msgid "Exceptions Summary" +msgstr "설명" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__exception_ids +msgid "Exceptions to resolve" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__sequence +msgid "Gives the sequence order when applying the test" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help with Python expressions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__id +msgid "ID" +msgstr "ID" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__ignore_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__ignore +msgid "Ignore Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__is_blocking +msgid "Is Blocking" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule____last_update +msgid "Last Modified on" +msgstr "최근 수정" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_uid +msgid "Last Updated by" +msgstr "최근 갱신한 사람" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_date +msgid "Last Updated on" +msgstr "최근 갱신 날짜" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__main_exception_id +msgid "Main Exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__method +msgid "Method" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/wizard/base_exception_confirm.py:0 +#, python-format +msgid "Only 1 ID accepted, got %r." +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_confirm +msgid "Outstanding exceptions to manage" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "Outstanding exceptions to manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__code +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Python Code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__code +msgid "" +"Python code executed to check if the exception apply or not. Use failed = " +"True to block the exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__related_model_id +#, fuzzy +msgid "Related Model" +msgstr "작성일" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__sequence +msgid "Sequence" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__smart_search +#: model:ir.model.fields,field_description:base_exception.field_base_exception_method__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__smart_search +msgid "Smart Search" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "The exceptions can not be ignored, because some of them are blocking." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"There is a problem of configuration, python code, domain or method is " +"missing to match the exception type." +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "To block the exception use: failed = True" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Various fields may use Python code or Python expressions. The following " +"variables can be used:" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__is_blocking +msgid "When checked the exception can not be ignored" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "_Close" +msgstr "" diff --git a/base_exception/i18n/lt.po b/base_exception/i18n/lt.po new file mode 100644 index 00000000..85fad704 --- /dev/null +++ b/base_exception/i18n/lt.po @@ -0,0 +1,325 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_exception +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-01 10:38+0000\n" +"PO-Revision-Date: 2017-05-01 10:38+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Lithuanian (https://www.transifex.com/oca/teams/23907/lt/)\n" +"Language: lt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \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_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "(Blocking exception)" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "self: Record on which the rule is evaluated." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__active +msgid "Active" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__model +msgid "Apply on" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Archived" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "As well as all the libraries provided in safe_eval." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_domain +msgid "By domain" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_method +msgid "By method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_py_code +msgid "By python code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__exception_type +msgid "" +"By python code: allow to define any arbitrary check\n" +"By domain: limited to a selection by an odoo domain:\n" +" performance can be better when exceptions are evaluated " +"with several records\n" +"By method: allow to select an existing check method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_uid +msgid "Created by" +msgstr "Sukūrė" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_date +msgid "Created on" +msgstr "Sukurta" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__description +msgid "Description" +msgstr "Aprašymas" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__display_name +msgid "Display Name" +msgstr "Vaizduojamas pavadinimas" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__domain +msgid "Domain" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Enter Python code here. Help about Python expression is available in the " +"help tab of this document." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"Error when evaluating the exception.rule rule:\n" +" %(rule_name)s \n" +"(%(error)s)" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception +#, fuzzy +msgid "Exception" +msgstr "Aprašymas" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__name +msgid "Exception Name" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule +msgid "Exception Rule" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule_confirm +msgid "Exception Rule Confirm Wizard" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception_method +msgid "Exception Rule Methods" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Exception Rule Setup" +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_tree +#: model:ir.ui.menu,name:base_exception.menu_action_exception +msgid "Exception Rules" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__exception_type +msgid "Exception Type" +msgstr "" + +#. module: base_exception +#: model:res.groups,name:base_exception.group_exception_rule_manager +msgid "Exception manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exception_ids +msgid "Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exceptions_summary +#, fuzzy +msgid "Exceptions Summary" +msgstr "Aprašymas" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__exception_ids +msgid "Exceptions to resolve" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__sequence +msgid "Gives the sequence order when applying the test" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help with Python expressions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__id +msgid "ID" +msgstr "ID" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__ignore_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__ignore +msgid "Ignore Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__is_blocking +msgid "Is Blocking" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule____last_update +msgid "Last Modified on" +msgstr "Paskutinį kartą keista" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_uid +msgid "Last Updated by" +msgstr "Paskutinį kartą atnaujino" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_date +msgid "Last Updated on" +msgstr "Paskutinį kartą atnaujinta" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__main_exception_id +msgid "Main Exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__method +msgid "Method" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/wizard/base_exception_confirm.py:0 +#, python-format +msgid "Only 1 ID accepted, got %r." +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_confirm +msgid "Outstanding exceptions to manage" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "Outstanding exceptions to manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__code +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Python Code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__code +msgid "" +"Python code executed to check if the exception apply or not. Use failed = " +"True to block the exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__related_model_id +#, fuzzy +msgid "Related Model" +msgstr "Sukurta" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__sequence +msgid "Sequence" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__smart_search +#: model:ir.model.fields,field_description:base_exception.field_base_exception_method__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__smart_search +msgid "Smart Search" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "The exceptions can not be ignored, because some of them are blocking." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"There is a problem of configuration, python code, domain or method is " +"missing to match the exception type." +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "To block the exception use: failed = True" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Various fields may use Python code or Python expressions. The following " +"variables can be used:" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__is_blocking +msgid "When checked the exception can not be ignored" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "_Close" +msgstr "" diff --git a/base_exception/i18n/lt_LT.po b/base_exception/i18n/lt_LT.po new file mode 100644 index 00000000..19a50693 --- /dev/null +++ b/base_exception/i18n/lt_LT.po @@ -0,0 +1,324 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_exception +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-01 10:38+0000\n" +"PO-Revision-Date: 2017-05-01 10:38+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/oca/" +"teams/23907/lt_LT/)\n" +"Language: lt_LT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \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_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "(Blocking exception)" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "self: Record on which the rule is evaluated." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__active +msgid "Active" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__model +msgid "Apply on" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Archived" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "As well as all the libraries provided in safe_eval." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_domain +msgid "By domain" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_method +msgid "By method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_py_code +msgid "By python code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__exception_type +msgid "" +"By python code: allow to define any arbitrary check\n" +"By domain: limited to a selection by an odoo domain:\n" +" performance can be better when exceptions are evaluated " +"with several records\n" +"By method: allow to select an existing check method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_uid +msgid "Created by" +msgstr "Sukūrė" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_date +msgid "Created on" +msgstr "Sukurta" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__description +msgid "Description" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__display_name +msgid "Display Name" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__domain +msgid "Domain" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Enter Python code here. Help about Python expression is available in the " +"help tab of this document." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"Error when evaluating the exception.rule rule:\n" +" %(rule_name)s \n" +"(%(error)s)" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception +msgid "Exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__name +msgid "Exception Name" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule +msgid "Exception Rule" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule_confirm +msgid "Exception Rule Confirm Wizard" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception_method +msgid "Exception Rule Methods" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Exception Rule Setup" +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_tree +#: model:ir.ui.menu,name:base_exception.menu_action_exception +msgid "Exception Rules" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__exception_type +msgid "Exception Type" +msgstr "" + +#. module: base_exception +#: model:res.groups,name:base_exception.group_exception_rule_manager +msgid "Exception manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exception_ids +msgid "Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exceptions_summary +msgid "Exceptions Summary" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__exception_ids +msgid "Exceptions to resolve" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__sequence +msgid "Gives the sequence order when applying the test" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help with Python expressions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__id +msgid "ID" +msgstr "ID" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__ignore_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__ignore +msgid "Ignore Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__is_blocking +msgid "Is Blocking" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule____last_update +msgid "Last Modified on" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_uid +msgid "Last Updated by" +msgstr "Paskutinį kartą atnaujino" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_date +msgid "Last Updated on" +msgstr "Paskutinį kartą atnaujinta" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__main_exception_id +msgid "Main Exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__method +msgid "Method" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/wizard/base_exception_confirm.py:0 +#, python-format +msgid "Only 1 ID accepted, got %r." +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_confirm +msgid "Outstanding exceptions to manage" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "Outstanding exceptions to manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__code +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Python Code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__code +msgid "" +"Python code executed to check if the exception apply or not. Use failed = " +"True to block the exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__related_model_id +#, fuzzy +msgid "Related Model" +msgstr "Sukurta" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__sequence +msgid "Sequence" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__smart_search +#: model:ir.model.fields,field_description:base_exception.field_base_exception_method__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__smart_search +msgid "Smart Search" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "The exceptions can not be ignored, because some of them are blocking." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"There is a problem of configuration, python code, domain or method is " +"missing to match the exception type." +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "To block the exception use: failed = True" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Various fields may use Python code or Python expressions. The following " +"variables can be used:" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__is_blocking +msgid "When checked the exception can not be ignored" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "_Close" +msgstr "" diff --git a/base_exception/i18n/lv.po b/base_exception/i18n/lv.po new file mode 100644 index 00000000..6cbf591c --- /dev/null +++ b/base_exception/i18n/lv.po @@ -0,0 +1,325 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_exception +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-01 10:38+0000\n" +"PO-Revision-Date: 2017-05-01 10:38+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Latvian (https://www.transifex.com/oca/teams/23907/lv/)\n" +"Language: lv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " +"2);\n" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "(Blocking exception)" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "self: Record on which the rule is evaluated." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__active +msgid "Active" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__model +msgid "Apply on" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Archived" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "As well as all the libraries provided in safe_eval." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_domain +msgid "By domain" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_method +msgid "By method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_py_code +msgid "By python code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__exception_type +msgid "" +"By python code: allow to define any arbitrary check\n" +"By domain: limited to a selection by an odoo domain:\n" +" performance can be better when exceptions are evaluated " +"with several records\n" +"By method: allow to select an existing check method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_uid +msgid "Created by" +msgstr "Izveidoja" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_date +msgid "Created on" +msgstr "Izveidots" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__description +msgid "Description" +msgstr "Apraksts" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__display_name +msgid "Display Name" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__domain +msgid "Domain" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Enter Python code here. Help about Python expression is available in the " +"help tab of this document." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"Error when evaluating the exception.rule rule:\n" +" %(rule_name)s \n" +"(%(error)s)" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception +#, fuzzy +msgid "Exception" +msgstr "Apraksts" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__name +msgid "Exception Name" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule +msgid "Exception Rule" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule_confirm +msgid "Exception Rule Confirm Wizard" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception_method +msgid "Exception Rule Methods" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Exception Rule Setup" +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_tree +#: model:ir.ui.menu,name:base_exception.menu_action_exception +msgid "Exception Rules" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__exception_type +msgid "Exception Type" +msgstr "" + +#. module: base_exception +#: model:res.groups,name:base_exception.group_exception_rule_manager +msgid "Exception manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exception_ids +msgid "Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exceptions_summary +#, fuzzy +msgid "Exceptions Summary" +msgstr "Apraksts" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__exception_ids +msgid "Exceptions to resolve" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__sequence +msgid "Gives the sequence order when applying the test" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help with Python expressions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__id +msgid "ID" +msgstr "ID" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__ignore_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__ignore +msgid "Ignore Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__is_blocking +msgid "Is Blocking" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule____last_update +msgid "Last Modified on" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_uid +msgid "Last Updated by" +msgstr "Pēdējo reizi atjaunoja" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_date +msgid "Last Updated on" +msgstr "Pēdējās izmaiņas" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__main_exception_id +msgid "Main Exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__method +msgid "Method" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/wizard/base_exception_confirm.py:0 +#, python-format +msgid "Only 1 ID accepted, got %r." +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_confirm +msgid "Outstanding exceptions to manage" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "Outstanding exceptions to manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__code +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Python Code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__code +msgid "" +"Python code executed to check if the exception apply or not. Use failed = " +"True to block the exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__related_model_id +#, fuzzy +msgid "Related Model" +msgstr "Izveidots" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__sequence +msgid "Sequence" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__smart_search +#: model:ir.model.fields,field_description:base_exception.field_base_exception_method__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__smart_search +msgid "Smart Search" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "The exceptions can not be ignored, because some of them are blocking." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"There is a problem of configuration, python code, domain or method is " +"missing to match the exception type." +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "To block the exception use: failed = True" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Various fields may use Python code or Python expressions. The following " +"variables can be used:" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__is_blocking +msgid "When checked the exception can not be ignored" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "_Close" +msgstr "" diff --git a/base_exception/i18n/mk.po b/base_exception/i18n/mk.po new file mode 100644 index 00000000..917fc2c3 --- /dev/null +++ b/base_exception/i18n/mk.po @@ -0,0 +1,324 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_exception +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-01 10:38+0000\n" +"PO-Revision-Date: 2017-05-01 10:38+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Macedonian (https://www.transifex.com/oca/teams/23907/mk/)\n" +"Language: mk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "(Blocking exception)" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "self: Record on which the rule is evaluated." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__active +msgid "Active" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__model +msgid "Apply on" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Archived" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "As well as all the libraries provided in safe_eval." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_domain +msgid "By domain" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_method +msgid "By method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_py_code +msgid "By python code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__exception_type +msgid "" +"By python code: allow to define any arbitrary check\n" +"By domain: limited to a selection by an odoo domain:\n" +" performance can be better when exceptions are evaluated " +"with several records\n" +"By method: allow to select an existing check method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_uid +msgid "Created by" +msgstr "Креирано од" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_date +msgid "Created on" +msgstr "Креирано на" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__description +msgid "Description" +msgstr "Опис" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__display_name +msgid "Display Name" +msgstr "Прикажи име" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__domain +msgid "Domain" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Enter Python code here. Help about Python expression is available in the " +"help tab of this document." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"Error when evaluating the exception.rule rule:\n" +" %(rule_name)s \n" +"(%(error)s)" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception +#, fuzzy +msgid "Exception" +msgstr "Опис" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__name +msgid "Exception Name" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule +msgid "Exception Rule" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule_confirm +msgid "Exception Rule Confirm Wizard" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception_method +msgid "Exception Rule Methods" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Exception Rule Setup" +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_tree +#: model:ir.ui.menu,name:base_exception.menu_action_exception +msgid "Exception Rules" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__exception_type +msgid "Exception Type" +msgstr "" + +#. module: base_exception +#: model:res.groups,name:base_exception.group_exception_rule_manager +msgid "Exception manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exception_ids +msgid "Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exceptions_summary +#, fuzzy +msgid "Exceptions Summary" +msgstr "Опис" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__exception_ids +msgid "Exceptions to resolve" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__sequence +msgid "Gives the sequence order when applying the test" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help with Python expressions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__id +msgid "ID" +msgstr "ID" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__ignore_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__ignore +msgid "Ignore Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__is_blocking +msgid "Is Blocking" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule____last_update +msgid "Last Modified on" +msgstr "Последна промена на" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_uid +msgid "Last Updated by" +msgstr "Последно ажурирање од" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_date +msgid "Last Updated on" +msgstr "Последно ажурирање на" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__main_exception_id +msgid "Main Exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__method +msgid "Method" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/wizard/base_exception_confirm.py:0 +#, python-format +msgid "Only 1 ID accepted, got %r." +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_confirm +msgid "Outstanding exceptions to manage" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "Outstanding exceptions to manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__code +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Python Code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__code +msgid "" +"Python code executed to check if the exception apply or not. Use failed = " +"True to block the exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__related_model_id +#, fuzzy +msgid "Related Model" +msgstr "Креирано на" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__sequence +msgid "Sequence" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__smart_search +#: model:ir.model.fields,field_description:base_exception.field_base_exception_method__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__smart_search +msgid "Smart Search" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "The exceptions can not be ignored, because some of them are blocking." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"There is a problem of configuration, python code, domain or method is " +"missing to match the exception type." +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "To block the exception use: failed = True" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Various fields may use Python code or Python expressions. The following " +"variables can be used:" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__is_blocking +msgid "When checked the exception can not be ignored" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "_Close" +msgstr "" diff --git a/base_exception/i18n/mn.po b/base_exception/i18n/mn.po new file mode 100644 index 00000000..f59f142a --- /dev/null +++ b/base_exception/i18n/mn.po @@ -0,0 +1,324 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_exception +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-01 10:38+0000\n" +"PO-Revision-Date: 2017-05-01 10:38+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Mongolian (https://www.transifex.com/oca/teams/23907/mn/)\n" +"Language: mn\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "(Blocking exception)" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "self: Record on which the rule is evaluated." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__active +msgid "Active" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__model +msgid "Apply on" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Archived" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "As well as all the libraries provided in safe_eval." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_domain +msgid "By domain" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_method +msgid "By method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_py_code +msgid "By python code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__exception_type +msgid "" +"By python code: allow to define any arbitrary check\n" +"By domain: limited to a selection by an odoo domain:\n" +" performance can be better when exceptions are evaluated " +"with several records\n" +"By method: allow to select an existing check method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_uid +msgid "Created by" +msgstr "Үүсгэгч" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_date +msgid "Created on" +msgstr "Үүсгэсэн" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__description +msgid "Description" +msgstr "Тодорхойлолт" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__display_name +msgid "Display Name" +msgstr "Дэлгэцийн Нэр" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__domain +msgid "Domain" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Enter Python code here. Help about Python expression is available in the " +"help tab of this document." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"Error when evaluating the exception.rule rule:\n" +" %(rule_name)s \n" +"(%(error)s)" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception +#, fuzzy +msgid "Exception" +msgstr "Тодорхойлолт" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__name +msgid "Exception Name" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule +msgid "Exception Rule" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule_confirm +msgid "Exception Rule Confirm Wizard" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception_method +msgid "Exception Rule Methods" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Exception Rule Setup" +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_tree +#: model:ir.ui.menu,name:base_exception.menu_action_exception +msgid "Exception Rules" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__exception_type +msgid "Exception Type" +msgstr "" + +#. module: base_exception +#: model:res.groups,name:base_exception.group_exception_rule_manager +msgid "Exception manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exception_ids +msgid "Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exceptions_summary +#, fuzzy +msgid "Exceptions Summary" +msgstr "Тодорхойлолт" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__exception_ids +msgid "Exceptions to resolve" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__sequence +msgid "Gives the sequence order when applying the test" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help with Python expressions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__id +msgid "ID" +msgstr "ID" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__ignore_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__ignore +msgid "Ignore Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__is_blocking +msgid "Is Blocking" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule____last_update +msgid "Last Modified on" +msgstr "Сүүлийн засвар хийсэн огноо" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_uid +msgid "Last Updated by" +msgstr "Сүүлийн засвар хийсэн" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_date +msgid "Last Updated on" +msgstr "Сүүлийн засвар хийсэн огноо" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__main_exception_id +msgid "Main Exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__method +msgid "Method" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/wizard/base_exception_confirm.py:0 +#, python-format +msgid "Only 1 ID accepted, got %r." +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_confirm +msgid "Outstanding exceptions to manage" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "Outstanding exceptions to manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__code +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Python Code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__code +msgid "" +"Python code executed to check if the exception apply or not. Use failed = " +"True to block the exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__related_model_id +#, fuzzy +msgid "Related Model" +msgstr "Үүсгэсэн" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__sequence +msgid "Sequence" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__smart_search +#: model:ir.model.fields,field_description:base_exception.field_base_exception_method__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__smart_search +msgid "Smart Search" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "The exceptions can not be ignored, because some of them are blocking." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"There is a problem of configuration, python code, domain or method is " +"missing to match the exception type." +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "To block the exception use: failed = True" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Various fields may use Python code or Python expressions. The following " +"variables can be used:" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__is_blocking +msgid "When checked the exception can not be ignored" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "_Close" +msgstr "" diff --git a/base_exception/i18n/nb.po b/base_exception/i18n/nb.po new file mode 100644 index 00000000..3f28115f --- /dev/null +++ b/base_exception/i18n/nb.po @@ -0,0 +1,325 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_exception +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-01 10:38+0000\n" +"PO-Revision-Date: 2017-05-01 10:38+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/" +"nb/)\n" +"Language: nb\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "(Blocking exception)" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "self: Record on which the rule is evaluated." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__active +msgid "Active" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__model +msgid "Apply on" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Archived" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "As well as all the libraries provided in safe_eval." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_domain +msgid "By domain" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_method +msgid "By method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_py_code +msgid "By python code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__exception_type +msgid "" +"By python code: allow to define any arbitrary check\n" +"By domain: limited to a selection by an odoo domain:\n" +" performance can be better when exceptions are evaluated " +"with several records\n" +"By method: allow to select an existing check method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_uid +msgid "Created by" +msgstr "Opprettet av" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_date +msgid "Created on" +msgstr "Opprettet den" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__description +msgid "Description" +msgstr "Beskrivelse" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__display_name +msgid "Display Name" +msgstr "Visnings navn" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__domain +msgid "Domain" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Enter Python code here. Help about Python expression is available in the " +"help tab of this document." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"Error when evaluating the exception.rule rule:\n" +" %(rule_name)s \n" +"(%(error)s)" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception +#, fuzzy +msgid "Exception" +msgstr "Beskrivelse" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__name +msgid "Exception Name" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule +msgid "Exception Rule" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule_confirm +msgid "Exception Rule Confirm Wizard" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception_method +msgid "Exception Rule Methods" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Exception Rule Setup" +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_tree +#: model:ir.ui.menu,name:base_exception.menu_action_exception +msgid "Exception Rules" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__exception_type +msgid "Exception Type" +msgstr "" + +#. module: base_exception +#: model:res.groups,name:base_exception.group_exception_rule_manager +msgid "Exception manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exception_ids +msgid "Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exceptions_summary +#, fuzzy +msgid "Exceptions Summary" +msgstr "Beskrivelse" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__exception_ids +msgid "Exceptions to resolve" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__sequence +msgid "Gives the sequence order when applying the test" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help with Python expressions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__id +msgid "ID" +msgstr "ID" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__ignore_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__ignore +msgid "Ignore Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__is_blocking +msgid "Is Blocking" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule____last_update +msgid "Last Modified on" +msgstr "Sist oppdatert " + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_uid +msgid "Last Updated by" +msgstr "Sist oppdatert av" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_date +msgid "Last Updated on" +msgstr "Sist oppdatert" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__main_exception_id +msgid "Main Exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__method +msgid "Method" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/wizard/base_exception_confirm.py:0 +#, python-format +msgid "Only 1 ID accepted, got %r." +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_confirm +msgid "Outstanding exceptions to manage" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "Outstanding exceptions to manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__code +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Python Code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__code +msgid "" +"Python code executed to check if the exception apply or not. Use failed = " +"True to block the exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__related_model_id +#, fuzzy +msgid "Related Model" +msgstr "Opprettet den" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__sequence +msgid "Sequence" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__smart_search +#: model:ir.model.fields,field_description:base_exception.field_base_exception_method__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__smart_search +msgid "Smart Search" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "The exceptions can not be ignored, because some of them are blocking." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"There is a problem of configuration, python code, domain or method is " +"missing to match the exception type." +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "To block the exception use: failed = True" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Various fields may use Python code or Python expressions. The following " +"variables can be used:" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__is_blocking +msgid "When checked the exception can not be ignored" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "_Close" +msgstr "" diff --git a/base_exception/i18n/nb_NO.po b/base_exception/i18n/nb_NO.po new file mode 100644 index 00000000..1da540c3 --- /dev/null +++ b/base_exception/i18n/nb_NO.po @@ -0,0 +1,323 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_exception +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-01 10:38+0000\n" +"PO-Revision-Date: 2017-05-01 10:38+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/oca/" +"teams/23907/nb_NO/)\n" +"Language: nb_NO\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "(Blocking exception)" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "self: Record on which the rule is evaluated." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__active +msgid "Active" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__model +msgid "Apply on" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Archived" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "As well as all the libraries provided in safe_eval." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_domain +msgid "By domain" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_method +msgid "By method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_py_code +msgid "By python code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__exception_type +msgid "" +"By python code: allow to define any arbitrary check\n" +"By domain: limited to a selection by an odoo domain:\n" +" performance can be better when exceptions are evaluated " +"with several records\n" +"By method: allow to select an existing check method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_uid +msgid "Created by" +msgstr "Laget av" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_date +msgid "Created on" +msgstr "Laget den" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__description +msgid "Description" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__display_name +msgid "Display Name" +msgstr "Vis navn" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__domain +msgid "Domain" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Enter Python code here. Help about Python expression is available in the " +"help tab of this document." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"Error when evaluating the exception.rule rule:\n" +" %(rule_name)s \n" +"(%(error)s)" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception +msgid "Exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__name +msgid "Exception Name" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule +msgid "Exception Rule" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule_confirm +msgid "Exception Rule Confirm Wizard" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception_method +msgid "Exception Rule Methods" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Exception Rule Setup" +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_tree +#: model:ir.ui.menu,name:base_exception.menu_action_exception +msgid "Exception Rules" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__exception_type +msgid "Exception Type" +msgstr "" + +#. module: base_exception +#: model:res.groups,name:base_exception.group_exception_rule_manager +msgid "Exception manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exception_ids +msgid "Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exceptions_summary +msgid "Exceptions Summary" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__exception_ids +msgid "Exceptions to resolve" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__sequence +msgid "Gives the sequence order when applying the test" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help with Python expressions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__id +msgid "ID" +msgstr "ID" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__ignore_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__ignore +msgid "Ignore Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__is_blocking +msgid "Is Blocking" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule____last_update +msgid "Last Modified on" +msgstr "Sist endret den" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_uid +msgid "Last Updated by" +msgstr "Sist oppdatert av" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_date +msgid "Last Updated on" +msgstr "Sist oppdatert den" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__main_exception_id +msgid "Main Exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__method +msgid "Method" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/wizard/base_exception_confirm.py:0 +#, python-format +msgid "Only 1 ID accepted, got %r." +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_confirm +msgid "Outstanding exceptions to manage" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "Outstanding exceptions to manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__code +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Python Code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__code +msgid "" +"Python code executed to check if the exception apply or not. Use failed = " +"True to block the exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__related_model_id +#, fuzzy +msgid "Related Model" +msgstr "Laget den" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__sequence +msgid "Sequence" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__smart_search +#: model:ir.model.fields,field_description:base_exception.field_base_exception_method__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__smart_search +msgid "Smart Search" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "The exceptions can not be ignored, because some of them are blocking." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"There is a problem of configuration, python code, domain or method is " +"missing to match the exception type." +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "To block the exception use: failed = True" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Various fields may use Python code or Python expressions. The following " +"variables can be used:" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__is_blocking +msgid "When checked the exception can not be ignored" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "_Close" +msgstr "" diff --git a/base_exception/i18n/nl.po b/base_exception/i18n/nl.po new file mode 100644 index 00000000..37e390d3 --- /dev/null +++ b/base_exception/i18n/nl.po @@ -0,0 +1,324 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_exception +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-01 10:38+0000\n" +"PO-Revision-Date: 2017-05-01 10:38+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Dutch (https://www.transifex.com/oca/teams/23907/nl/)\n" +"Language: nl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "(Blocking exception)" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "self: Record on which the rule is evaluated." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__active +msgid "Active" +msgstr "Actief" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__model +msgid "Apply on" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Archived" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "As well as all the libraries provided in safe_eval." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_domain +msgid "By domain" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_method +msgid "By method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_py_code +msgid "By python code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__exception_type +msgid "" +"By python code: allow to define any arbitrary check\n" +"By domain: limited to a selection by an odoo domain:\n" +" performance can be better when exceptions are evaluated " +"with several records\n" +"By method: allow to select an existing check method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_uid +msgid "Created by" +msgstr "Aangemaakt door" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_date +msgid "Created on" +msgstr "Aangemaakt op" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__description +msgid "Description" +msgstr "Omschrijving" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__display_name +msgid "Display Name" +msgstr "Te tonen naam" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__domain +msgid "Domain" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Enter Python code here. Help about Python expression is available in the " +"help tab of this document." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"Error when evaluating the exception.rule rule:\n" +" %(rule_name)s \n" +"(%(error)s)" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception +#, fuzzy +msgid "Exception" +msgstr "Omschrijving" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__name +msgid "Exception Name" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule +msgid "Exception Rule" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule_confirm +msgid "Exception Rule Confirm Wizard" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception_method +msgid "Exception Rule Methods" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Exception Rule Setup" +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_tree +#: model:ir.ui.menu,name:base_exception.menu_action_exception +msgid "Exception Rules" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__exception_type +msgid "Exception Type" +msgstr "" + +#. module: base_exception +#: model:res.groups,name:base_exception.group_exception_rule_manager +msgid "Exception manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exception_ids +msgid "Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exceptions_summary +#, fuzzy +msgid "Exceptions Summary" +msgstr "Omschrijving" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__exception_ids +msgid "Exceptions to resolve" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__sequence +msgid "Gives the sequence order when applying the test" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help with Python expressions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__id +msgid "ID" +msgstr "ID" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__ignore_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__ignore +msgid "Ignore Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__is_blocking +msgid "Is Blocking" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule____last_update +msgid "Last Modified on" +msgstr "Laatst bijgewerkt op" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_uid +msgid "Last Updated by" +msgstr "Laatst bijgewerkt door" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_date +msgid "Last Updated on" +msgstr "Laatst bijgewerkt op" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__main_exception_id +msgid "Main Exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__method +msgid "Method" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/wizard/base_exception_confirm.py:0 +#, python-format +msgid "Only 1 ID accepted, got %r." +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_confirm +msgid "Outstanding exceptions to manage" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "Outstanding exceptions to manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__code +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Python Code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__code +msgid "" +"Python code executed to check if the exception apply or not. Use failed = " +"True to block the exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__related_model_id +#, fuzzy +msgid "Related Model" +msgstr "Aangemaakt op" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__sequence +msgid "Sequence" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__smart_search +#: model:ir.model.fields,field_description:base_exception.field_base_exception_method__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__smart_search +msgid "Smart Search" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "The exceptions can not be ignored, because some of them are blocking." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"There is a problem of configuration, python code, domain or method is " +"missing to match the exception type." +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "To block the exception use: failed = True" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Various fields may use Python code or Python expressions. The following " +"variables can be used:" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__is_blocking +msgid "When checked the exception can not be ignored" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "_Close" +msgstr "" diff --git a/base_exception/i18n/nl_BE.po b/base_exception/i18n/nl_BE.po new file mode 100644 index 00000000..271ed1b7 --- /dev/null +++ b/base_exception/i18n/nl_BE.po @@ -0,0 +1,325 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_exception +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-01 10:38+0000\n" +"PO-Revision-Date: 2017-05-01 10:38+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Dutch (Belgium) (https://www.transifex.com/oca/teams/23907/" +"nl_BE/)\n" +"Language: nl_BE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "(Blocking exception)" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "self: Record on which the rule is evaluated." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__active +msgid "Active" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__model +msgid "Apply on" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Archived" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "As well as all the libraries provided in safe_eval." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_domain +msgid "By domain" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_method +msgid "By method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_py_code +msgid "By python code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__exception_type +msgid "" +"By python code: allow to define any arbitrary check\n" +"By domain: limited to a selection by an odoo domain:\n" +" performance can be better when exceptions are evaluated " +"with several records\n" +"By method: allow to select an existing check method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_uid +msgid "Created by" +msgstr "Gemaakt door" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_date +msgid "Created on" +msgstr "Gemaakt op" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__description +msgid "Description" +msgstr "Omschrijving" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__display_name +msgid "Display Name" +msgstr "Schermnaam" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__domain +msgid "Domain" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Enter Python code here. Help about Python expression is available in the " +"help tab of this document." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"Error when evaluating the exception.rule rule:\n" +" %(rule_name)s \n" +"(%(error)s)" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception +#, fuzzy +msgid "Exception" +msgstr "Omschrijving" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__name +msgid "Exception Name" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule +msgid "Exception Rule" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule_confirm +msgid "Exception Rule Confirm Wizard" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception_method +msgid "Exception Rule Methods" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Exception Rule Setup" +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_tree +#: model:ir.ui.menu,name:base_exception.menu_action_exception +msgid "Exception Rules" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__exception_type +msgid "Exception Type" +msgstr "" + +#. module: base_exception +#: model:res.groups,name:base_exception.group_exception_rule_manager +msgid "Exception manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exception_ids +msgid "Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exceptions_summary +#, fuzzy +msgid "Exceptions Summary" +msgstr "Omschrijving" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__exception_ids +msgid "Exceptions to resolve" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__sequence +msgid "Gives the sequence order when applying the test" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help with Python expressions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__id +msgid "ID" +msgstr "ID" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__ignore_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__ignore +msgid "Ignore Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__is_blocking +msgid "Is Blocking" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule____last_update +msgid "Last Modified on" +msgstr "Laatst Aangepast op" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_uid +msgid "Last Updated by" +msgstr "Laatst bijgewerkt door" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_date +msgid "Last Updated on" +msgstr "Laatst bijgewerkt op" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__main_exception_id +msgid "Main Exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__method +msgid "Method" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/wizard/base_exception_confirm.py:0 +#, python-format +msgid "Only 1 ID accepted, got %r." +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_confirm +msgid "Outstanding exceptions to manage" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "Outstanding exceptions to manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__code +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Python Code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__code +msgid "" +"Python code executed to check if the exception apply or not. Use failed = " +"True to block the exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__related_model_id +#, fuzzy +msgid "Related Model" +msgstr "Gemaakt op" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__sequence +msgid "Sequence" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__smart_search +#: model:ir.model.fields,field_description:base_exception.field_base_exception_method__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__smart_search +msgid "Smart Search" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "The exceptions can not be ignored, because some of them are blocking." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"There is a problem of configuration, python code, domain or method is " +"missing to match the exception type." +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "To block the exception use: failed = True" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Various fields may use Python code or Python expressions. The following " +"variables can be used:" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__is_blocking +msgid "When checked the exception can not be ignored" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "_Close" +msgstr "" diff --git a/base_exception/i18n/nl_NL.po b/base_exception/i18n/nl_NL.po new file mode 100644 index 00000000..6d9845ef --- /dev/null +++ b/base_exception/i18n/nl_NL.po @@ -0,0 +1,336 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_exception +# +# Translators: +# Peter Hageman , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-22 01:11+0000\n" +"PO-Revision-Date: 2017-06-22 01:11+0000\n" +"Last-Translator: Peter Hageman , 2017\n" +"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/" +"teams/23907/nl_NL/)\n" +"Language: nl_NL\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "(Blocking exception)" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "self: Record on which the rule is evaluated." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__active +msgid "Active" +msgstr "Actief" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__model +msgid "Apply on" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Archived" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "As well as all the libraries provided in safe_eval." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_domain +msgid "By domain" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_method +msgid "By method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_py_code +msgid "By python code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__exception_type +msgid "" +"By python code: allow to define any arbitrary check\n" +"By domain: limited to a selection by an odoo domain:\n" +" performance can be better when exceptions are evaluated " +"with several records\n" +"By method: allow to select an existing check method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_uid +msgid "Created by" +msgstr "Aangemaakt door" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_date +msgid "Created on" +msgstr "Aangemaakt op" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__description +msgid "Description" +msgstr "Omschrijving" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__display_name +msgid "Display Name" +msgstr "weergavenaam" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__domain +msgid "Domain" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Enter Python code here. Help about Python expression is available in the " +"help tab of this document." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"Error when evaluating the exception.rule rule:\n" +" %(rule_name)s \n" +"(%(error)s)" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception +#, fuzzy +msgid "Exception" +msgstr "Uitzonderingen" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__name +msgid "Exception Name" +msgstr "Uitzonderingsnaam" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule +msgid "Exception Rule" +msgstr "Uitzonderingsregel" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule_confirm +#, fuzzy +msgid "Exception Rule Confirm Wizard" +msgstr "exception.rule.confirm" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception_method +#, fuzzy +msgid "Exception Rule Methods" +msgstr "Uitzonderingsregels" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Exception Rule Setup" +msgstr "Uitzonderingsregels-instellingen" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_tree +#: model:ir.ui.menu,name:base_exception.menu_action_exception +msgid "Exception Rules" +msgstr "Uitzonderingsregels" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__exception_type +#, fuzzy +msgid "Exception Type" +msgstr "Uitzonderingsnaam" + +#. module: base_exception +#: model:res.groups,name:base_exception.group_exception_rule_manager +msgid "Exception manager" +msgstr "Uitzonderingsmanager" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exception_ids +msgid "Exceptions" +msgstr "Uitzonderingen" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exceptions_summary +#, fuzzy +msgid "Exceptions Summary" +msgstr "Uitzonderingsmanager" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__exception_ids +msgid "Exceptions to resolve" +msgstr "Op te lossen uitzonderingen" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__sequence +msgid "Gives the sequence order when applying the test" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help with Python expressions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__id +msgid "ID" +msgstr "ID" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__ignore_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__ignore +msgid "Ignore Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__is_blocking +msgid "Is Blocking" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule____last_update +msgid "Last Modified on" +msgstr "Laatst gewijzigd op" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_uid +msgid "Last Updated by" +msgstr "Laatst bijgewerkt door" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_date +msgid "Last Updated on" +msgstr "Laatst bijgewerkt op" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__main_exception_id +msgid "Main Exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__method +msgid "Method" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/wizard/base_exception_confirm.py:0 +#, python-format +msgid "Only 1 ID accepted, got %r." +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_confirm +#, fuzzy +msgid "Outstanding exceptions to manage" +msgstr "Uitzonderingsmanager" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +#, fuzzy +msgid "Outstanding exceptions to manager" +msgstr "Uitzonderingsmanager" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__code +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Python Code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__code +msgid "" +"Python code executed to check if the exception apply or not. Use failed = " +"True to block the exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__related_model_id +#, fuzzy +msgid "Related Model" +msgstr "Aangemaakt op" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__sequence +msgid "Sequence" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__smart_search +#: model:ir.model.fields,field_description:base_exception.field_base_exception_method__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__smart_search +msgid "Smart Search" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "The exceptions can not be ignored, because some of them are blocking." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"There is a problem of configuration, python code, domain or method is " +"missing to match the exception type." +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "To block the exception use: failed = True" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Various fields may use Python code or Python expressions. The following " +"variables can be used:" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__is_blocking +msgid "When checked the exception can not be ignored" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "_Close" +msgstr "" + +#~ msgid "Exceptions Rules" +#~ msgstr "Uitzonderingsregels" + +#~ msgid "base.exception" +#~ msgstr "base.exception" diff --git a/base_exception/i18n/pl.po b/base_exception/i18n/pl.po new file mode 100644 index 00000000..32ac2c62 --- /dev/null +++ b/base_exception/i18n/pl.po @@ -0,0 +1,326 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_exception +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-01 10:38+0000\n" +"PO-Revision-Date: 2017-05-01 10:38+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Polish (https://www.transifex.com/oca/teams/23907/pl/)\n" +"Language: pl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" +"%100<12 || n%100>=14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" +"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "(Blocking exception)" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "self: Record on which the rule is evaluated." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__active +msgid "Active" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__model +msgid "Apply on" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Archived" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "As well as all the libraries provided in safe_eval." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_domain +msgid "By domain" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_method +msgid "By method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_py_code +msgid "By python code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__exception_type +msgid "" +"By python code: allow to define any arbitrary check\n" +"By domain: limited to a selection by an odoo domain:\n" +" performance can be better when exceptions are evaluated " +"with several records\n" +"By method: allow to select an existing check method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_uid +msgid "Created by" +msgstr "Utworzone przez" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_date +msgid "Created on" +msgstr "Utworzono" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__description +msgid "Description" +msgstr "Opis" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__display_name +msgid "Display Name" +msgstr "Wyświetlana nazwa " + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__domain +msgid "Domain" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Enter Python code here. Help about Python expression is available in the " +"help tab of this document." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"Error when evaluating the exception.rule rule:\n" +" %(rule_name)s \n" +"(%(error)s)" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception +#, fuzzy +msgid "Exception" +msgstr "Opis" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__name +msgid "Exception Name" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule +msgid "Exception Rule" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule_confirm +msgid "Exception Rule Confirm Wizard" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception_method +msgid "Exception Rule Methods" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Exception Rule Setup" +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_tree +#: model:ir.ui.menu,name:base_exception.menu_action_exception +msgid "Exception Rules" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__exception_type +msgid "Exception Type" +msgstr "" + +#. module: base_exception +#: model:res.groups,name:base_exception.group_exception_rule_manager +msgid "Exception manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exception_ids +msgid "Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exceptions_summary +#, fuzzy +msgid "Exceptions Summary" +msgstr "Opis" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__exception_ids +msgid "Exceptions to resolve" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__sequence +msgid "Gives the sequence order when applying the test" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help with Python expressions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__id +msgid "ID" +msgstr "ID" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__ignore_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__ignore +msgid "Ignore Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__is_blocking +msgid "Is Blocking" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule____last_update +msgid "Last Modified on" +msgstr "Ostatnio modyfikowano" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_uid +msgid "Last Updated by" +msgstr "Ostatnio modyfikowane przez" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_date +msgid "Last Updated on" +msgstr "Ostatnia zmiana" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__main_exception_id +msgid "Main Exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__method +msgid "Method" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/wizard/base_exception_confirm.py:0 +#, python-format +msgid "Only 1 ID accepted, got %r." +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_confirm +msgid "Outstanding exceptions to manage" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "Outstanding exceptions to manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__code +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Python Code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__code +msgid "" +"Python code executed to check if the exception apply or not. Use failed = " +"True to block the exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__related_model_id +#, fuzzy +msgid "Related Model" +msgstr "Utworzono" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__sequence +msgid "Sequence" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__smart_search +#: model:ir.model.fields,field_description:base_exception.field_base_exception_method__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__smart_search +msgid "Smart Search" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "The exceptions can not be ignored, because some of them are blocking." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"There is a problem of configuration, python code, domain or method is " +"missing to match the exception type." +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "To block the exception use: failed = True" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Various fields may use Python code or Python expressions. The following " +"variables can be used:" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__is_blocking +msgid "When checked the exception can not be ignored" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "_Close" +msgstr "" diff --git a/base_exception/i18n/pt.po b/base_exception/i18n/pt.po new file mode 100644 index 00000000..4f6b2cae --- /dev/null +++ b/base_exception/i18n/pt.po @@ -0,0 +1,364 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_exception +# +# Translators: +# OCA Transbot , 2017 +# Pedro Castro Silva , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-22 01:11+0000\n" +"PO-Revision-Date: 2019-08-14 12:44+0000\n" +"Last-Translator: Pedro Castro Silva \n" +"Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/pt/)\n" +"Language: pt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Weblate 3.7.1\n" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "(Blocking exception)" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "self: Record on which the rule is evaluated." +msgstr "self: Registo no qual a regra é avaliada." + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__active +msgid "Active" +msgstr "Ativo" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__model +msgid "Apply on" +msgstr "Aplicar em" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Archived" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "As well as all the libraries provided in safe_eval." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_domain +msgid "By domain" +msgstr "Por domínio" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_method +msgid "By method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_py_code +msgid "By python code" +msgstr "Por código Python" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__exception_type +msgid "" +"By python code: allow to define any arbitrary check\n" +"By domain: limited to a selection by an odoo domain:\n" +" performance can be better when exceptions are evaluated " +"with several records\n" +"By method: allow to select an existing check method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_uid +msgid "Created by" +msgstr "Criado por" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_date +msgid "Created on" +msgstr "Criado em" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__description +msgid "Description" +msgstr "Descrição" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__display_name +msgid "Display Name" +msgstr "Nome" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__domain +msgid "Domain" +msgstr "Domínio" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Enter Python code here. Help about Python expression is available in the " +"help tab of this document." +msgstr "" +"Introduza aqui código Python. A ajuda sobre expressões Python está " +"disponível no separador Ajuda deste documento." + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"Error when evaluating the exception.rule rule:\n" +" %(rule_name)s \n" +"(%(error)s)" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception +msgid "Exception" +msgstr "Exceção" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__name +msgid "Exception Name" +msgstr "Noma da Exceção" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule +msgid "Exception Rule" +msgstr "Regra da Exceção" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule_confirm +msgid "Exception Rule Confirm Wizard" +msgstr "Assistente de Confirmação de Regra de Exceção" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception_method +msgid "Exception Rule Methods" +msgstr "Métodos de Regras de Exceção" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Exception Rule Setup" +msgstr "Configuração da Regra de Exceção" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_tree +#: model:ir.ui.menu,name:base_exception.menu_action_exception +msgid "Exception Rules" +msgstr "Regras de Exceção" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__exception_type +msgid "Exception Type" +msgstr "Tipo de Exceção" + +#. module: base_exception +#: model:res.groups,name:base_exception.group_exception_rule_manager +msgid "Exception manager" +msgstr "Gestor de Exceções" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exception_ids +msgid "Exceptions" +msgstr "Exceções" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exceptions_summary +#, fuzzy +msgid "Exceptions Summary" +msgstr "Gestor de Exceções" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__exception_ids +msgid "Exceptions to resolve" +msgstr "Exceções para resolver" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__sequence +msgid "Gives the sequence order when applying the test" +msgstr "Fornece a ordem da sequência na aplicação do teste" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help" +msgstr "Ajuda" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help with Python expressions" +msgstr "Ajuda de expressões Python" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__id +msgid "ID" +msgstr "ID" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__ignore_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__ignore +msgid "Ignore Exceptions" +msgstr "Ignorar Exceções" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__is_blocking +msgid "Is Blocking" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule____last_update +msgid "Last Modified on" +msgstr "Última Modificação Em" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_uid +msgid "Last Updated by" +msgstr "Última Modificação Por" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_date +msgid "Last Updated on" +msgstr "Última Atualização Em" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__main_exception_id +msgid "Main Exception" +msgstr "Exceção Principal" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__method +msgid "Method" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/wizard/base_exception_confirm.py:0 +#, python-format +msgid "Only 1 ID accepted, got %r." +msgstr "Só é permitido 1 ID, obtidos %r." + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_confirm +msgid "Outstanding exceptions to manage" +msgstr "Exceções extraordinárias para gerir" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "Outstanding exceptions to manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__code +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Python Code" +msgstr "Código Python" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__code +msgid "" +"Python code executed to check if the exception apply or not. Use failed = " +"True to block the exception" +msgstr "" +"Código Python executado para verificar se a exceção se aplica ou não. Use " +"failed = True para bloquear a exceção" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__related_model_id +msgid "Related Model" +msgstr "Modelo Relacionado" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__sequence +msgid "Sequence" +msgstr "Sequência" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__smart_search +#: model:ir.model.fields,field_description:base_exception.field_base_exception_method__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__smart_search +msgid "Smart Search" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "The exceptions can not be ignored, because some of them are blocking." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"There is a problem of configuration, python code, domain or method is " +"missing to match the exception type." +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "To block the exception use: failed = True" +msgstr "Para bloquear a exceção utilize: failed = True" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Various fields may use Python code or Python expressions. The following " +"variables can be used:" +msgstr "" +"Vários campos podem usar código ou expressões Python. As seguintes variáveis " +"podem ser usadas:" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__is_blocking +msgid "When checked the exception can not be ignored" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "_Close" +msgstr "_Fechar" + +#, python-format +#~ msgid "" +#~ "Error when evaluating the exception.rule rule:\n" +#~ " %s \n" +#~ "(%s)" +#~ msgstr "" +#~ "Erro na avaliação da regra exception.rule:\n" +#~ " %s \n" +#~ "(%s)" + +#~ msgid "Exceptions Rules" +#~ msgstr "Regras de Exceções" + +#~ msgid "" +#~ "By python code: allow to define any arbitrary check\n" +#~ "By domain: limited to a selection by an odoo domain:\n" +#~ " performance can be better when exceptions are " +#~ "evaluated with several records" +#~ msgstr "" +#~ "Por código python: permite definir qualquer verificação arbitrária\n" +#~ "Por domínio: limitado a uma seleção por um domínio Odoo:\n" +#~ " o desempenho pode ser superior quando as exceções " +#~ "são avaliadas com vários registos" + +#~ msgid "" +#~ "There is a problem of configuration, python code or domain is missing to " +#~ "match the exception type." +#~ msgstr "" +#~ "Há um problema de configuração. Falta código python ou um domínio para " +#~ "verificação do tipo de exceção." + +#~ msgid "time: useful Python libraries" +#~ msgstr "time: bibliotecas Python úteis" diff --git a/base_exception/i18n/pt_BR.po b/base_exception/i18n/pt_BR.po new file mode 100644 index 00000000..1e91e7bf --- /dev/null +++ b/base_exception/i18n/pt_BR.po @@ -0,0 +1,397 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_exception +# +# Translators: +# OCA Transbot , 2017 +# falexandresilva , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-21 02:42+0000\n" +"PO-Revision-Date: 2019-11-24 19:57+0000\n" +"Last-Translator: Rodrigo Macedo \n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/" +"teams/23907/pt_BR/)\n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 3.8\n" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "(Blocking exception)" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "self: Record on which the rule is evaluated." +msgstr "self: Registro no qual a regra é avaliada." + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__active +msgid "Active" +msgstr "Ativo" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__model +msgid "Apply on" +msgstr "Aplicar no" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Archived" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "As well as all the libraries provided in safe_eval." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_domain +msgid "By domain" +msgstr "Por domínio" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_method +msgid "By method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_py_code +msgid "By python code" +msgstr "Por código python" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__exception_type +msgid "" +"By python code: allow to define any arbitrary check\n" +"By domain: limited to a selection by an odoo domain:\n" +" performance can be better when exceptions are evaluated " +"with several records\n" +"By method: allow to select an existing check method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_uid +msgid "Created by" +msgstr "Criado por" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_date +msgid "Created on" +msgstr "Criado em" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__description +msgid "Description" +msgstr "Descrição" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__display_name +msgid "Display Name" +msgstr "Mostrar Nome" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__domain +msgid "Domain" +msgstr "Domínio" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Enter Python code here. Help about Python expression is available in the " +"help tab of this document." +msgstr "" +"Digite o código Python aqui. A ajuda sobre a expressão Python está " +"disponível na guia de ajuda deste documento." + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"Error when evaluating the exception.rule rule:\n" +" %(rule_name)s \n" +"(%(error)s)" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception +msgid "Exception" +msgstr "Exceções" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__name +msgid "Exception Name" +msgstr "Nome da exceção" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule +msgid "Exception Rule" +msgstr "Regra de exceção" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule_confirm +msgid "Exception Rule Confirm Wizard" +msgstr "Assistente de confirmação de regra de exceção" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception_method +msgid "Exception Rule Methods" +msgstr "Métodos de regras de exceção" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Exception Rule Setup" +msgstr "Configuração da regra da execeção" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_tree +#: model:ir.ui.menu,name:base_exception.menu_action_exception +msgid "Exception Rules" +msgstr "Regras de exceção" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__exception_type +msgid "Exception Type" +msgstr "Tipo de exceção" + +#. module: base_exception +#: model:res.groups,name:base_exception.group_exception_rule_manager +msgid "Exception manager" +msgstr "Gerenciar Exceção" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exception_ids +msgid "Exceptions" +msgstr "Exceções" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exceptions_summary +msgid "Exceptions Summary" +msgstr "Resumo de Exceções" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__exception_ids +msgid "Exceptions to resolve" +msgstr "Exceções para resolver" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__sequence +msgid "Gives the sequence order when applying the test" +msgstr "Dá a ordem de sequência ao aplicar o teste" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help" +msgstr "Ajuda" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help with Python expressions" +msgstr "Ajuda com expressões python" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__id +msgid "ID" +msgstr "Identificação" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__ignore_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__ignore +msgid "Ignore Exceptions" +msgstr "Ignorar Exceções" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__is_blocking +msgid "Is Blocking" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule____last_update +msgid "Last Modified on" +msgstr "Última Modificação em" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_uid +msgid "Last Updated by" +msgstr "Última Atualização por" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_date +msgid "Last Updated on" +msgstr "Última Atualização em" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__main_exception_id +msgid "Main Exception" +msgstr "Exceção Principal" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__method +msgid "Method" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/wizard/base_exception_confirm.py:0 +#, python-format +msgid "Only 1 ID accepted, got %r." +msgstr "Apenas 1 ID aceito, tenho %r." + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_confirm +msgid "Outstanding exceptions to manage" +msgstr "Excepções excepcionais para gerir" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "Outstanding exceptions to manager" +msgstr "Exceções proeminentes para o gerente" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__code +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Python Code" +msgstr "Código Python" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__code +msgid "" +"Python code executed to check if the exception apply or not. Use failed = " +"True to block the exception" +msgstr "" +"Código Python executado para verificar se a exceção se aplica ou não. Use " +"failed = True para bloquear a exceção" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__related_model_id +msgid "Related Model" +msgstr "Modelo Relatado" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__sequence +msgid "Sequence" +msgstr "Sequência" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__smart_search +#: model:ir.model.fields,field_description:base_exception.field_base_exception_method__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__smart_search +msgid "Smart Search" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "The exceptions can not be ignored, because some of them are blocking." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"There is a problem of configuration, python code, domain or method is " +"missing to match the exception type." +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "To block the exception use: failed = True" +msgstr "Para bloquear a exceção, use: failed = True" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Various fields may use Python code or Python expressions. The following " +"variables can be used:" +msgstr "" +"Vários campos podem usar código python ou expressões python. As seguintes " +"variáveis podem ser usadas:" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__is_blocking +msgid "When checked the exception can not be ignored" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "_Close" +msgstr "_Fechar" + +#, python-format +#~ msgid "" +#~ "Error when evaluating the exception.rule rule:\n" +#~ " %s \n" +#~ "(%s)" +#~ msgstr "" +#~ "Erro ao avaliar a regra exception.rule:\n" +#~ " %s \n" +#~ "(%s)" + +#~ msgid "Exceptions Rules" +#~ msgstr "Regras de exceção" + +#~ msgid "" +#~ "By python code: allow to define any arbitrary check\n" +#~ "By domain: limited to a selection by an odoo domain:\n" +#~ " performance can be better when exceptions are " +#~ "evaluated with several records" +#~ msgstr "" +#~ "Por código python: permite definir qualquer verificação arbitrária\n" +#~ "Por domínio: limitado a uma seleção por um domínio odoo:\n" +#~ " o desempenho pode ser melhor quando exceções são avaliadas " +#~ "com vários registros" + +#~ msgid "" +#~ "There is a problem of configuration, python code or domain is missing to " +#~ "match the exception type." +#~ msgstr "" +#~ "Há um problema de configuração, está faltando código ou domínio python " +#~ "para corresponder ao tipo de exceção." + +#~ msgid "time: useful Python libraries" +#~ msgstr "time: bibliotecas python usáveis" + +#~ msgid "" +#~ "If we detect exception we set the state of object (ex purchase) to the " +#~ "next_state (ex 'to approve'). If there are more than one exception " +#~ "detected and all have a value for next_state, we usethe exception having " +#~ "the smallest sequence value" +#~ msgstr "" +#~ "Se detectarmos uma exceção, definimos o estado do objeto (ex-purchase) " +#~ "para o next_state (ex 'to approve'). Se houver mais de uma exceção " +#~ "detectada e todas tiverem um valor para next_state, usamos a exceção com " +#~ "o menor valor de sequência" + +#~ msgid "Next state" +#~ msgstr "Próximo estado" + +#~ msgid "Rule Group" +#~ msgstr "Regra de grupo" + +#~ msgid "" +#~ "Rule group is used to group the rules that must validated at same time " +#~ "for a target object. Ex: validate sale.order.line rules with sale order " +#~ "rules." +#~ msgstr "" +#~ "O grupo de regras é usado para agrupar as regras que devem ser validadas " +#~ "ao mesmo tempo para um objeto de destino. Ex: valide as regras de sale." +#~ "order.line com regras de ordem de venda." + +#~ msgid "" +#~ "The value \"%s\" you choose for the \"next state\" field state of \"%s\" " +#~ "is wrong. Value must be in this list %s" +#~ msgstr "" +#~ "O valor \"%s\" escolhido para o estado do campo \"próximo estado\" de \"%s" +#~ "\" está errado. O valor deve estar nesta lista %s" diff --git a/base_exception/i18n/pt_PT.po b/base_exception/i18n/pt_PT.po new file mode 100644 index 00000000..f723be03 --- /dev/null +++ b/base_exception/i18n/pt_PT.po @@ -0,0 +1,325 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_exception +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-01 02:43+0000\n" +"PO-Revision-Date: 2017-08-01 02:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/" +"teams/23907/pt_PT/)\n" +"Language: pt_PT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "(Blocking exception)" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "self: Record on which the rule is evaluated." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__active +msgid "Active" +msgstr "Ativo" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__model +msgid "Apply on" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Archived" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "As well as all the libraries provided in safe_eval." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_domain +msgid "By domain" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_method +msgid "By method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_py_code +msgid "By python code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__exception_type +msgid "" +"By python code: allow to define any arbitrary check\n" +"By domain: limited to a selection by an odoo domain:\n" +" performance can be better when exceptions are evaluated " +"with several records\n" +"By method: allow to select an existing check method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_uid +msgid "Created by" +msgstr "Criado por" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_date +msgid "Created on" +msgstr "Criado em" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__description +msgid "Description" +msgstr "Descrição" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__display_name +msgid "Display Name" +msgstr "Nome a Apresentar" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__domain +msgid "Domain" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Enter Python code here. Help about Python expression is available in the " +"help tab of this document." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"Error when evaluating the exception.rule rule:\n" +" %(rule_name)s \n" +"(%(error)s)" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception +#, fuzzy +msgid "Exception" +msgstr "Descrição" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__name +msgid "Exception Name" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule +msgid "Exception Rule" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule_confirm +msgid "Exception Rule Confirm Wizard" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception_method +msgid "Exception Rule Methods" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Exception Rule Setup" +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_tree +#: model:ir.ui.menu,name:base_exception.menu_action_exception +msgid "Exception Rules" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__exception_type +msgid "Exception Type" +msgstr "" + +#. module: base_exception +#: model:res.groups,name:base_exception.group_exception_rule_manager +msgid "Exception manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exception_ids +msgid "Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exceptions_summary +#, fuzzy +msgid "Exceptions Summary" +msgstr "Descrição" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__exception_ids +msgid "Exceptions to resolve" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__sequence +msgid "Gives the sequence order when applying the test" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help with Python expressions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__id +msgid "ID" +msgstr "ID" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__ignore_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__ignore +msgid "Ignore Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__is_blocking +msgid "Is Blocking" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule____last_update +msgid "Last Modified on" +msgstr "Última Modificação Em" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_uid +msgid "Last Updated by" +msgstr "Última Atualização Por" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_date +msgid "Last Updated on" +msgstr "Última Atualização Em" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__main_exception_id +msgid "Main Exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__method +msgid "Method" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/wizard/base_exception_confirm.py:0 +#, python-format +msgid "Only 1 ID accepted, got %r." +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_confirm +msgid "Outstanding exceptions to manage" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "Outstanding exceptions to manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__code +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Python Code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__code +msgid "" +"Python code executed to check if the exception apply or not. Use failed = " +"True to block the exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__related_model_id +#, fuzzy +msgid "Related Model" +msgstr "Criado em" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__sequence +msgid "Sequence" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__smart_search +#: model:ir.model.fields,field_description:base_exception.field_base_exception_method__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__smart_search +msgid "Smart Search" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "The exceptions can not be ignored, because some of them are blocking." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"There is a problem of configuration, python code, domain or method is " +"missing to match the exception type." +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "To block the exception use: failed = True" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Various fields may use Python code or Python expressions. The following " +"variables can be used:" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__is_blocking +msgid "When checked the exception can not be ignored" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "_Close" +msgstr "" diff --git a/base_exception/i18n/ro.po b/base_exception/i18n/ro.po new file mode 100644 index 00000000..6f5faa43 --- /dev/null +++ b/base_exception/i18n/ro.po @@ -0,0 +1,326 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_exception +# +# Translators: +# OCA Transbot , 2017 +# Daniel Schweiger , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-22 01:11+0000\n" +"PO-Revision-Date: 2017-06-22 01:11+0000\n" +"Last-Translator: Daniel Schweiger , 2017\n" +"Language-Team: Romanian (https://www.transifex.com/oca/teams/23907/ro/)\n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "(Blocking exception)" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "self: Record on which the rule is evaluated." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__active +msgid "Active" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__model +msgid "Apply on" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Archived" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "As well as all the libraries provided in safe_eval." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_domain +msgid "By domain" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_method +msgid "By method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_py_code +msgid "By python code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__exception_type +msgid "" +"By python code: allow to define any arbitrary check\n" +"By domain: limited to a selection by an odoo domain:\n" +" performance can be better when exceptions are evaluated " +"with several records\n" +"By method: allow to select an existing check method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_uid +msgid "Created by" +msgstr "Creat de" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_date +msgid "Created on" +msgstr "Creat la" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__description +msgid "Description" +msgstr "Descriere" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__display_name +msgid "Display Name" +msgstr "Nume Afişat" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__domain +msgid "Domain" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Enter Python code here. Help about Python expression is available in the " +"help tab of this document." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"Error when evaluating the exception.rule rule:\n" +" %(rule_name)s \n" +"(%(error)s)" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception +#, fuzzy +msgid "Exception" +msgstr "Descriere" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__name +msgid "Exception Name" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule +msgid "Exception Rule" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule_confirm +msgid "Exception Rule Confirm Wizard" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception_method +msgid "Exception Rule Methods" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Exception Rule Setup" +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_tree +#: model:ir.ui.menu,name:base_exception.menu_action_exception +msgid "Exception Rules" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__exception_type +msgid "Exception Type" +msgstr "" + +#. module: base_exception +#: model:res.groups,name:base_exception.group_exception_rule_manager +msgid "Exception manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exception_ids +msgid "Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exceptions_summary +#, fuzzy +msgid "Exceptions Summary" +msgstr "Descriere" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__exception_ids +msgid "Exceptions to resolve" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__sequence +msgid "Gives the sequence order when applying the test" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help with Python expressions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__id +msgid "ID" +msgstr "ID" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__ignore_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__ignore +msgid "Ignore Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__is_blocking +msgid "Is Blocking" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule____last_update +msgid "Last Modified on" +msgstr "Ultima actualizare în" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_uid +msgid "Last Updated by" +msgstr "Ultima actualizare făcută de" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_date +msgid "Last Updated on" +msgstr "Ultima actualizare la" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__main_exception_id +msgid "Main Exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__method +msgid "Method" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/wizard/base_exception_confirm.py:0 +#, python-format +msgid "Only 1 ID accepted, got %r." +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_confirm +msgid "Outstanding exceptions to manage" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "Outstanding exceptions to manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__code +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Python Code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__code +msgid "" +"Python code executed to check if the exception apply or not. Use failed = " +"True to block the exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__related_model_id +#, fuzzy +msgid "Related Model" +msgstr "Creat la" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__sequence +msgid "Sequence" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__smart_search +#: model:ir.model.fields,field_description:base_exception.field_base_exception_method__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__smart_search +msgid "Smart Search" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "The exceptions can not be ignored, because some of them are blocking." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"There is a problem of configuration, python code, domain or method is " +"missing to match the exception type." +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "To block the exception use: failed = True" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Various fields may use Python code or Python expressions. The following " +"variables can be used:" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__is_blocking +msgid "When checked the exception can not be ignored" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "_Close" +msgstr "" diff --git a/base_exception/i18n/ru.po b/base_exception/i18n/ru.po new file mode 100644 index 00000000..987f6860 --- /dev/null +++ b/base_exception/i18n/ru.po @@ -0,0 +1,326 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_exception +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-01 10:38+0000\n" +"PO-Revision-Date: 2017-05-01 10:38+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Russian (https://www.transifex.com/oca/teams/23907/ru/)\n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \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_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "(Blocking exception)" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "self: Record on which the rule is evaluated." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__active +msgid "Active" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__model +msgid "Apply on" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Archived" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "As well as all the libraries provided in safe_eval." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_domain +msgid "By domain" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_method +msgid "By method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_py_code +msgid "By python code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__exception_type +msgid "" +"By python code: allow to define any arbitrary check\n" +"By domain: limited to a selection by an odoo domain:\n" +" performance can be better when exceptions are evaluated " +"with several records\n" +"By method: allow to select an existing check method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_uid +msgid "Created by" +msgstr "Создано" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_date +msgid "Created on" +msgstr "Создан" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__description +msgid "Description" +msgstr "Описание" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__display_name +msgid "Display Name" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__domain +msgid "Domain" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Enter Python code here. Help about Python expression is available in the " +"help tab of this document." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"Error when evaluating the exception.rule rule:\n" +" %(rule_name)s \n" +"(%(error)s)" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception +#, fuzzy +msgid "Exception" +msgstr "Описание" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__name +msgid "Exception Name" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule +msgid "Exception Rule" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule_confirm +msgid "Exception Rule Confirm Wizard" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception_method +msgid "Exception Rule Methods" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Exception Rule Setup" +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_tree +#: model:ir.ui.menu,name:base_exception.menu_action_exception +msgid "Exception Rules" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__exception_type +msgid "Exception Type" +msgstr "" + +#. module: base_exception +#: model:res.groups,name:base_exception.group_exception_rule_manager +msgid "Exception manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exception_ids +msgid "Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exceptions_summary +#, fuzzy +msgid "Exceptions Summary" +msgstr "Описание" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__exception_ids +msgid "Exceptions to resolve" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__sequence +msgid "Gives the sequence order when applying the test" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help with Python expressions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__id +msgid "ID" +msgstr "ID" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__ignore_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__ignore +msgid "Ignore Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__is_blocking +msgid "Is Blocking" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule____last_update +msgid "Last Modified on" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_uid +msgid "Last Updated by" +msgstr "Последний раз обновлено" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_date +msgid "Last Updated on" +msgstr "Последний раз обновлено" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__main_exception_id +msgid "Main Exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__method +msgid "Method" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/wizard/base_exception_confirm.py:0 +#, python-format +msgid "Only 1 ID accepted, got %r." +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_confirm +msgid "Outstanding exceptions to manage" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "Outstanding exceptions to manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__code +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Python Code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__code +msgid "" +"Python code executed to check if the exception apply or not. Use failed = " +"True to block the exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__related_model_id +#, fuzzy +msgid "Related Model" +msgstr "Создан" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__sequence +msgid "Sequence" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__smart_search +#: model:ir.model.fields,field_description:base_exception.field_base_exception_method__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__smart_search +msgid "Smart Search" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "The exceptions can not be ignored, because some of them are blocking." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"There is a problem of configuration, python code, domain or method is " +"missing to match the exception type." +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "To block the exception use: failed = True" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Various fields may use Python code or Python expressions. The following " +"variables can be used:" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__is_blocking +msgid "When checked the exception can not be ignored" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "_Close" +msgstr "" diff --git a/base_exception/i18n/sk.po b/base_exception/i18n/sk.po new file mode 100644 index 00000000..c1272392 --- /dev/null +++ b/base_exception/i18n/sk.po @@ -0,0 +1,324 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_exception +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-01 02:43+0000\n" +"PO-Revision-Date: 2017-08-01 02:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Slovak (https://www.transifex.com/oca/teams/23907/sk/)\n" +"Language: sk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "(Blocking exception)" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "self: Record on which the rule is evaluated." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__active +msgid "Active" +msgstr "Aktívne" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__model +msgid "Apply on" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Archived" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "As well as all the libraries provided in safe_eval." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_domain +msgid "By domain" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_method +msgid "By method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_py_code +msgid "By python code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__exception_type +msgid "" +"By python code: allow to define any arbitrary check\n" +"By domain: limited to a selection by an odoo domain:\n" +" performance can be better when exceptions are evaluated " +"with several records\n" +"By method: allow to select an existing check method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_uid +msgid "Created by" +msgstr "Vytvoril" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_date +msgid "Created on" +msgstr "Vytvorené" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__description +msgid "Description" +msgstr "Popis" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__display_name +msgid "Display Name" +msgstr "Zobraziť meno" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__domain +msgid "Domain" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Enter Python code here. Help about Python expression is available in the " +"help tab of this document." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"Error when evaluating the exception.rule rule:\n" +" %(rule_name)s \n" +"(%(error)s)" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception +#, fuzzy +msgid "Exception" +msgstr "Popis" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__name +msgid "Exception Name" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule +msgid "Exception Rule" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule_confirm +msgid "Exception Rule Confirm Wizard" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception_method +msgid "Exception Rule Methods" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Exception Rule Setup" +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_tree +#: model:ir.ui.menu,name:base_exception.menu_action_exception +msgid "Exception Rules" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__exception_type +msgid "Exception Type" +msgstr "" + +#. module: base_exception +#: model:res.groups,name:base_exception.group_exception_rule_manager +msgid "Exception manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exception_ids +msgid "Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exceptions_summary +#, fuzzy +msgid "Exceptions Summary" +msgstr "Popis" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__exception_ids +msgid "Exceptions to resolve" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__sequence +msgid "Gives the sequence order when applying the test" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help with Python expressions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__id +msgid "ID" +msgstr "ID" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__ignore_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__ignore +msgid "Ignore Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__is_blocking +msgid "Is Blocking" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule____last_update +msgid "Last Modified on" +msgstr "Posledná modifikácia" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_uid +msgid "Last Updated by" +msgstr "Naposledy upravoval" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_date +msgid "Last Updated on" +msgstr "Naposledy upravované" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__main_exception_id +msgid "Main Exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__method +msgid "Method" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/wizard/base_exception_confirm.py:0 +#, python-format +msgid "Only 1 ID accepted, got %r." +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_confirm +msgid "Outstanding exceptions to manage" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "Outstanding exceptions to manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__code +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Python Code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__code +msgid "" +"Python code executed to check if the exception apply or not. Use failed = " +"True to block the exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__related_model_id +#, fuzzy +msgid "Related Model" +msgstr "Vytvorené" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__sequence +msgid "Sequence" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__smart_search +#: model:ir.model.fields,field_description:base_exception.field_base_exception_method__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__smart_search +msgid "Smart Search" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "The exceptions can not be ignored, because some of them are blocking." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"There is a problem of configuration, python code, domain or method is " +"missing to match the exception type." +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "To block the exception use: failed = True" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Various fields may use Python code or Python expressions. The following " +"variables can be used:" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__is_blocking +msgid "When checked the exception can not be ignored" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "_Close" +msgstr "" diff --git a/base_exception/i18n/sl.po b/base_exception/i18n/sl.po new file mode 100644 index 00000000..e9f8166d --- /dev/null +++ b/base_exception/i18n/sl.po @@ -0,0 +1,326 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_exception +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-01 02:43+0000\n" +"PO-Revision-Date: 2023-03-31 21:29+0000\n" +"Last-Translator: Matjaz Mozetic \n" +"Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3;\n" +"X-Generator: Weblate 4.14.1\n" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "(Blocking exception)" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "self: Record on which the rule is evaluated." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__active +msgid "Active" +msgstr "Aktivno" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__model +msgid "Apply on" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Archived" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "As well as all the libraries provided in safe_eval." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_domain +msgid "By domain" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_method +msgid "By method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_py_code +msgid "By python code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__exception_type +msgid "" +"By python code: allow to define any arbitrary check\n" +"By domain: limited to a selection by an odoo domain:\n" +" performance can be better when exceptions are evaluated " +"with several records\n" +"By method: allow to select an existing check method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_uid +msgid "Created by" +msgstr "Ustvaril" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_date +msgid "Created on" +msgstr "Ustvarjeno" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__description +msgid "Description" +msgstr "Opis" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__display_name +msgid "Display Name" +msgstr "Prikazani naziv" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__domain +msgid "Domain" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Enter Python code here. Help about Python expression is available in the " +"help tab of this document." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"Error when evaluating the exception.rule rule:\n" +" %(rule_name)s \n" +"(%(error)s)" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception +#, fuzzy +msgid "Exception" +msgstr "Opis" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__name +msgid "Exception Name" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule +msgid "Exception Rule" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule_confirm +msgid "Exception Rule Confirm Wizard" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception_method +msgid "Exception Rule Methods" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Exception Rule Setup" +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_tree +#: model:ir.ui.menu,name:base_exception.menu_action_exception +msgid "Exception Rules" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__exception_type +msgid "Exception Type" +msgstr "" + +#. module: base_exception +#: model:res.groups,name:base_exception.group_exception_rule_manager +msgid "Exception manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exception_ids +msgid "Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exceptions_summary +#, fuzzy +msgid "Exceptions Summary" +msgstr "Opis" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__exception_ids +msgid "Exceptions to resolve" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__sequence +msgid "Gives the sequence order when applying the test" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help with Python expressions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__id +msgid "ID" +msgstr "ID" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__ignore_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__ignore +msgid "Ignore Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__is_blocking +msgid "Is Blocking" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule____last_update +msgid "Last Modified on" +msgstr "Zadnjič spremenjeno" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_uid +msgid "Last Updated by" +msgstr "Zadnji posodobil" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_date +msgid "Last Updated on" +msgstr "Zadnjič posodobljeno" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__main_exception_id +msgid "Main Exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__method +msgid "Method" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/wizard/base_exception_confirm.py:0 +#, python-format +msgid "Only 1 ID accepted, got %r." +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_confirm +msgid "Outstanding exceptions to manage" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "Outstanding exceptions to manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__code +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Python Code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__code +msgid "" +"Python code executed to check if the exception apply or not. Use failed = " +"True to block the exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__related_model_id +#, fuzzy +msgid "Related Model" +msgstr "Ustvarjeno" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__sequence +msgid "Sequence" +msgstr "Zaporedje" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__smart_search +#: model:ir.model.fields,field_description:base_exception.field_base_exception_method__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__smart_search +msgid "Smart Search" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "The exceptions can not be ignored, because some of them are blocking." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"There is a problem of configuration, python code, domain or method is " +"missing to match the exception type." +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "To block the exception use: failed = True" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Various fields may use Python code or Python expressions. The following " +"variables can be used:" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__is_blocking +msgid "When checked the exception can not be ignored" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "_Close" +msgstr "" diff --git a/base_exception/i18n/sr.po b/base_exception/i18n/sr.po new file mode 100644 index 00000000..2e8f6b75 --- /dev/null +++ b/base_exception/i18n/sr.po @@ -0,0 +1,325 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_exception +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-01 10:38+0000\n" +"PO-Revision-Date: 2017-05-01 10:38+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Serbian (https://www.transifex.com/oca/teams/23907/sr/)\n" +"Language: sr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \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_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "(Blocking exception)" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "self: Record on which the rule is evaluated." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__active +msgid "Active" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__model +msgid "Apply on" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Archived" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "As well as all the libraries provided in safe_eval." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_domain +msgid "By domain" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_method +msgid "By method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_py_code +msgid "By python code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__exception_type +msgid "" +"By python code: allow to define any arbitrary check\n" +"By domain: limited to a selection by an odoo domain:\n" +" performance can be better when exceptions are evaluated " +"with several records\n" +"By method: allow to select an existing check method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_uid +msgid "Created by" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_date +msgid "Created on" +msgstr "Kreiran" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__description +msgid "Description" +msgstr "Opis" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__display_name +msgid "Display Name" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__domain +msgid "Domain" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Enter Python code here. Help about Python expression is available in the " +"help tab of this document." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"Error when evaluating the exception.rule rule:\n" +" %(rule_name)s \n" +"(%(error)s)" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception +#, fuzzy +msgid "Exception" +msgstr "Opis" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__name +msgid "Exception Name" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule +msgid "Exception Rule" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule_confirm +msgid "Exception Rule Confirm Wizard" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception_method +msgid "Exception Rule Methods" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Exception Rule Setup" +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_tree +#: model:ir.ui.menu,name:base_exception.menu_action_exception +msgid "Exception Rules" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__exception_type +msgid "Exception Type" +msgstr "" + +#. module: base_exception +#: model:res.groups,name:base_exception.group_exception_rule_manager +msgid "Exception manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exception_ids +msgid "Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exceptions_summary +#, fuzzy +msgid "Exceptions Summary" +msgstr "Opis" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__exception_ids +msgid "Exceptions to resolve" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__sequence +msgid "Gives the sequence order when applying the test" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help with Python expressions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__id +msgid "ID" +msgstr "ID" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__ignore_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__ignore +msgid "Ignore Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__is_blocking +msgid "Is Blocking" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule____last_update +msgid "Last Modified on" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_date +msgid "Last Updated on" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__main_exception_id +msgid "Main Exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__method +msgid "Method" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/wizard/base_exception_confirm.py:0 +#, python-format +msgid "Only 1 ID accepted, got %r." +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_confirm +msgid "Outstanding exceptions to manage" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "Outstanding exceptions to manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__code +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Python Code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__code +msgid "" +"Python code executed to check if the exception apply or not. Use failed = " +"True to block the exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__related_model_id +#, fuzzy +msgid "Related Model" +msgstr "Kreiran" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__sequence +msgid "Sequence" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__smart_search +#: model:ir.model.fields,field_description:base_exception.field_base_exception_method__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__smart_search +msgid "Smart Search" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "The exceptions can not be ignored, because some of them are blocking." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"There is a problem of configuration, python code, domain or method is " +"missing to match the exception type." +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "To block the exception use: failed = True" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Various fields may use Python code or Python expressions. The following " +"variables can be used:" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__is_blocking +msgid "When checked the exception can not be ignored" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "_Close" +msgstr "" diff --git a/base_exception/i18n/sr@latin.po b/base_exception/i18n/sr@latin.po new file mode 100644 index 00000000..a50413df --- /dev/null +++ b/base_exception/i18n/sr@latin.po @@ -0,0 +1,326 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_exception +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-01 10:38+0000\n" +"PO-Revision-Date: 2017-05-01 10:38+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/" +"sr@latin/)\n" +"Language: sr@latin\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \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_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "(Blocking exception)" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "self: Record on which the rule is evaluated." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__active +msgid "Active" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__model +msgid "Apply on" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Archived" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "As well as all the libraries provided in safe_eval." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_domain +msgid "By domain" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_method +msgid "By method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_py_code +msgid "By python code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__exception_type +msgid "" +"By python code: allow to define any arbitrary check\n" +"By domain: limited to a selection by an odoo domain:\n" +" performance can be better when exceptions are evaluated " +"with several records\n" +"By method: allow to select an existing check method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_date +msgid "Created on" +msgstr "Kreiran" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__description +msgid "Description" +msgstr "Opis" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__display_name +msgid "Display Name" +msgstr "Ime za prikaz" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__domain +msgid "Domain" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Enter Python code here. Help about Python expression is available in the " +"help tab of this document." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"Error when evaluating the exception.rule rule:\n" +" %(rule_name)s \n" +"(%(error)s)" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception +#, fuzzy +msgid "Exception" +msgstr "Opis" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__name +msgid "Exception Name" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule +msgid "Exception Rule" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule_confirm +msgid "Exception Rule Confirm Wizard" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception_method +msgid "Exception Rule Methods" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Exception Rule Setup" +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_tree +#: model:ir.ui.menu,name:base_exception.menu_action_exception +msgid "Exception Rules" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__exception_type +msgid "Exception Type" +msgstr "" + +#. module: base_exception +#: model:res.groups,name:base_exception.group_exception_rule_manager +msgid "Exception manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exception_ids +msgid "Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exceptions_summary +#, fuzzy +msgid "Exceptions Summary" +msgstr "Opis" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__exception_ids +msgid "Exceptions to resolve" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__sequence +msgid "Gives the sequence order when applying the test" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help with Python expressions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__id +msgid "ID" +msgstr "ID" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__ignore_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__ignore +msgid "Ignore Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__is_blocking +msgid "Is Blocking" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule____last_update +msgid "Last Modified on" +msgstr "Zadnja izmjena" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_uid +msgid "Last Updated by" +msgstr "Zadnja izmjena" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_date +msgid "Last Updated on" +msgstr "Zadnja izmjena" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__main_exception_id +msgid "Main Exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__method +msgid "Method" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/wizard/base_exception_confirm.py:0 +#, python-format +msgid "Only 1 ID accepted, got %r." +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_confirm +msgid "Outstanding exceptions to manage" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "Outstanding exceptions to manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__code +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Python Code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__code +msgid "" +"Python code executed to check if the exception apply or not. Use failed = " +"True to block the exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__related_model_id +#, fuzzy +msgid "Related Model" +msgstr "Kreiran" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__sequence +msgid "Sequence" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__smart_search +#: model:ir.model.fields,field_description:base_exception.field_base_exception_method__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__smart_search +msgid "Smart Search" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "The exceptions can not be ignored, because some of them are blocking." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"There is a problem of configuration, python code, domain or method is " +"missing to match the exception type." +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "To block the exception use: failed = True" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Various fields may use Python code or Python expressions. The following " +"variables can be used:" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__is_blocking +msgid "When checked the exception can not be ignored" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "_Close" +msgstr "" diff --git a/base_exception/i18n/sv.po b/base_exception/i18n/sv.po new file mode 100644 index 00000000..8381d4f3 --- /dev/null +++ b/base_exception/i18n/sv.po @@ -0,0 +1,324 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_exception +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-01 10:38+0000\n" +"PO-Revision-Date: 2017-05-01 10:38+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Swedish (https://www.transifex.com/oca/teams/23907/sv/)\n" +"Language: sv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "(Blocking exception)" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "self: Record on which the rule is evaluated." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__active +msgid "Active" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__model +msgid "Apply on" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Archived" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "As well as all the libraries provided in safe_eval." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_domain +msgid "By domain" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_method +msgid "By method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_py_code +msgid "By python code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__exception_type +msgid "" +"By python code: allow to define any arbitrary check\n" +"By domain: limited to a selection by an odoo domain:\n" +" performance can be better when exceptions are evaluated " +"with several records\n" +"By method: allow to select an existing check method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_uid +msgid "Created by" +msgstr "Skapad av" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_date +msgid "Created on" +msgstr "Skapad den" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__description +msgid "Description" +msgstr "Beskrivning" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__display_name +msgid "Display Name" +msgstr "Visa namn" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__domain +msgid "Domain" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Enter Python code here. Help about Python expression is available in the " +"help tab of this document." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"Error when evaluating the exception.rule rule:\n" +" %(rule_name)s \n" +"(%(error)s)" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception +#, fuzzy +msgid "Exception" +msgstr "Beskrivning" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__name +msgid "Exception Name" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule +msgid "Exception Rule" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule_confirm +msgid "Exception Rule Confirm Wizard" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception_method +msgid "Exception Rule Methods" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Exception Rule Setup" +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_tree +#: model:ir.ui.menu,name:base_exception.menu_action_exception +msgid "Exception Rules" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__exception_type +msgid "Exception Type" +msgstr "" + +#. module: base_exception +#: model:res.groups,name:base_exception.group_exception_rule_manager +msgid "Exception manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exception_ids +msgid "Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exceptions_summary +#, fuzzy +msgid "Exceptions Summary" +msgstr "Beskrivning" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__exception_ids +msgid "Exceptions to resolve" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__sequence +msgid "Gives the sequence order when applying the test" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help with Python expressions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__id +msgid "ID" +msgstr "ID" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__ignore_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__ignore +msgid "Ignore Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__is_blocking +msgid "Is Blocking" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule____last_update +msgid "Last Modified on" +msgstr "Senast redigerad" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_uid +msgid "Last Updated by" +msgstr "Senast uppdaterad av" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_date +msgid "Last Updated on" +msgstr "Senast uppdaterad" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__main_exception_id +msgid "Main Exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__method +msgid "Method" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/wizard/base_exception_confirm.py:0 +#, python-format +msgid "Only 1 ID accepted, got %r." +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_confirm +msgid "Outstanding exceptions to manage" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "Outstanding exceptions to manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__code +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Python Code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__code +msgid "" +"Python code executed to check if the exception apply or not. Use failed = " +"True to block the exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__related_model_id +#, fuzzy +msgid "Related Model" +msgstr "Skapad den" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__sequence +msgid "Sequence" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__smart_search +#: model:ir.model.fields,field_description:base_exception.field_base_exception_method__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__smart_search +msgid "Smart Search" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "The exceptions can not be ignored, because some of them are blocking." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"There is a problem of configuration, python code, domain or method is " +"missing to match the exception type." +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "To block the exception use: failed = True" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Various fields may use Python code or Python expressions. The following " +"variables can be used:" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__is_blocking +msgid "When checked the exception can not be ignored" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "_Close" +msgstr "" diff --git a/base_exception/i18n/th.po b/base_exception/i18n/th.po new file mode 100644 index 00000000..efb71764 --- /dev/null +++ b/base_exception/i18n/th.po @@ -0,0 +1,324 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_exception +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-01 10:38+0000\n" +"PO-Revision-Date: 2017-05-01 10:38+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Thai (https://www.transifex.com/oca/teams/23907/th/)\n" +"Language: th\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "(Blocking exception)" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "self: Record on which the rule is evaluated." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__active +msgid "Active" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__model +msgid "Apply on" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Archived" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "As well as all the libraries provided in safe_eval." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_domain +msgid "By domain" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_method +msgid "By method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_py_code +msgid "By python code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__exception_type +msgid "" +"By python code: allow to define any arbitrary check\n" +"By domain: limited to a selection by an odoo domain:\n" +" performance can be better when exceptions are evaluated " +"with several records\n" +"By method: allow to select an existing check method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_uid +msgid "Created by" +msgstr "สร้างโดย" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_date +msgid "Created on" +msgstr "สร้างเมื่อ" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__description +msgid "Description" +msgstr "รายละเอียด" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__display_name +msgid "Display Name" +msgstr "ชื่อที่ใช้แสดง" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__domain +msgid "Domain" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Enter Python code here. Help about Python expression is available in the " +"help tab of this document." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"Error when evaluating the exception.rule rule:\n" +" %(rule_name)s \n" +"(%(error)s)" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception +#, fuzzy +msgid "Exception" +msgstr "รายละเอียด" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__name +msgid "Exception Name" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule +msgid "Exception Rule" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule_confirm +msgid "Exception Rule Confirm Wizard" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception_method +msgid "Exception Rule Methods" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Exception Rule Setup" +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_tree +#: model:ir.ui.menu,name:base_exception.menu_action_exception +msgid "Exception Rules" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__exception_type +msgid "Exception Type" +msgstr "" + +#. module: base_exception +#: model:res.groups,name:base_exception.group_exception_rule_manager +msgid "Exception manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exception_ids +msgid "Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exceptions_summary +#, fuzzy +msgid "Exceptions Summary" +msgstr "รายละเอียด" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__exception_ids +msgid "Exceptions to resolve" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__sequence +msgid "Gives the sequence order when applying the test" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help with Python expressions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__id +msgid "ID" +msgstr "รหัส" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__ignore_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__ignore +msgid "Ignore Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__is_blocking +msgid "Is Blocking" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule____last_update +msgid "Last Modified on" +msgstr "แก้ไขครั้งสุดท้ายเมื่อ" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_uid +msgid "Last Updated by" +msgstr "อัพเดทครั้งสุดท้ายโดย" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_date +msgid "Last Updated on" +msgstr "อัพเดทครั้งสุดท้ายเมื่อ" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__main_exception_id +msgid "Main Exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__method +msgid "Method" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/wizard/base_exception_confirm.py:0 +#, python-format +msgid "Only 1 ID accepted, got %r." +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_confirm +msgid "Outstanding exceptions to manage" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "Outstanding exceptions to manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__code +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Python Code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__code +msgid "" +"Python code executed to check if the exception apply or not. Use failed = " +"True to block the exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__related_model_id +#, fuzzy +msgid "Related Model" +msgstr "สร้างเมื่อ" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__sequence +msgid "Sequence" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__smart_search +#: model:ir.model.fields,field_description:base_exception.field_base_exception_method__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__smart_search +msgid "Smart Search" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "The exceptions can not be ignored, because some of them are blocking." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"There is a problem of configuration, python code, domain or method is " +"missing to match the exception type." +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "To block the exception use: failed = True" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Various fields may use Python code or Python expressions. The following " +"variables can be used:" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__is_blocking +msgid "When checked the exception can not be ignored" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "_Close" +msgstr "" diff --git a/base_exception/i18n/tr.po b/base_exception/i18n/tr.po new file mode 100644 index 00000000..772b81dd --- /dev/null +++ b/base_exception/i18n/tr.po @@ -0,0 +1,324 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_exception +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-01 02:43+0000\n" +"PO-Revision-Date: 2017-08-01 02:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\n" +"Language: tr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "(Blocking exception)" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "self: Record on which the rule is evaluated." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__active +msgid "Active" +msgstr "Aktif" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__model +msgid "Apply on" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Archived" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "As well as all the libraries provided in safe_eval." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_domain +msgid "By domain" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_method +msgid "By method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_py_code +msgid "By python code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__exception_type +msgid "" +"By python code: allow to define any arbitrary check\n" +"By domain: limited to a selection by an odoo domain:\n" +" performance can be better when exceptions are evaluated " +"with several records\n" +"By method: allow to select an existing check method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_uid +msgid "Created by" +msgstr "Oluşturan" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_date +msgid "Created on" +msgstr "Oluşturuldu" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__description +msgid "Description" +msgstr "Açıklama" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__display_name +msgid "Display Name" +msgstr "Görünen İsim" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__domain +msgid "Domain" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Enter Python code here. Help about Python expression is available in the " +"help tab of this document." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"Error when evaluating the exception.rule rule:\n" +" %(rule_name)s \n" +"(%(error)s)" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception +#, fuzzy +msgid "Exception" +msgstr "Açıklama" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__name +msgid "Exception Name" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule +msgid "Exception Rule" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule_confirm +msgid "Exception Rule Confirm Wizard" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception_method +msgid "Exception Rule Methods" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Exception Rule Setup" +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_tree +#: model:ir.ui.menu,name:base_exception.menu_action_exception +msgid "Exception Rules" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__exception_type +msgid "Exception Type" +msgstr "" + +#. module: base_exception +#: model:res.groups,name:base_exception.group_exception_rule_manager +msgid "Exception manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exception_ids +msgid "Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exceptions_summary +#, fuzzy +msgid "Exceptions Summary" +msgstr "Açıklama" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__exception_ids +msgid "Exceptions to resolve" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__sequence +msgid "Gives the sequence order when applying the test" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help with Python expressions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__id +msgid "ID" +msgstr "ID" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__ignore_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__ignore +msgid "Ignore Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__is_blocking +msgid "Is Blocking" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule____last_update +msgid "Last Modified on" +msgstr "Son değişiklik" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_uid +msgid "Last Updated by" +msgstr "Son güncelleyen" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_date +msgid "Last Updated on" +msgstr "Son güncellenme" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__main_exception_id +msgid "Main Exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__method +msgid "Method" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/wizard/base_exception_confirm.py:0 +#, python-format +msgid "Only 1 ID accepted, got %r." +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_confirm +msgid "Outstanding exceptions to manage" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "Outstanding exceptions to manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__code +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Python Code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__code +msgid "" +"Python code executed to check if the exception apply or not. Use failed = " +"True to block the exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__related_model_id +#, fuzzy +msgid "Related Model" +msgstr "Oluşturuldu" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__sequence +msgid "Sequence" +msgstr "Sıra" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__smart_search +#: model:ir.model.fields,field_description:base_exception.field_base_exception_method__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__smart_search +msgid "Smart Search" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "The exceptions can not be ignored, because some of them are blocking." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"There is a problem of configuration, python code, domain or method is " +"missing to match the exception type." +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "To block the exception use: failed = True" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Various fields may use Python code or Python expressions. The following " +"variables can be used:" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__is_blocking +msgid "When checked the exception can not be ignored" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "_Close" +msgstr "" diff --git a/base_exception/i18n/tr_TR.po b/base_exception/i18n/tr_TR.po new file mode 100644 index 00000000..995014a2 --- /dev/null +++ b/base_exception/i18n/tr_TR.po @@ -0,0 +1,325 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_exception +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-01 02:43+0000\n" +"PO-Revision-Date: 2017-08-01 02:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/" +"tr_TR/)\n" +"Language: tr_TR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "(Blocking exception)" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "self: Record on which the rule is evaluated." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__active +msgid "Active" +msgstr "Etkin" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__model +msgid "Apply on" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Archived" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "As well as all the libraries provided in safe_eval." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_domain +msgid "By domain" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_method +msgid "By method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_py_code +msgid "By python code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__exception_type +msgid "" +"By python code: allow to define any arbitrary check\n" +"By domain: limited to a selection by an odoo domain:\n" +" performance can be better when exceptions are evaluated " +"with several records\n" +"By method: allow to select an existing check method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_uid +msgid "Created by" +msgstr "Oluşturan" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_date +msgid "Created on" +msgstr "Oluşturulma tarihi" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__description +msgid "Description" +msgstr "Açıklama" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__display_name +msgid "Display Name" +msgstr "Görünen ad" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__domain +msgid "Domain" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Enter Python code here. Help about Python expression is available in the " +"help tab of this document." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"Error when evaluating the exception.rule rule:\n" +" %(rule_name)s \n" +"(%(error)s)" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception +#, fuzzy +msgid "Exception" +msgstr "Açıklama" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__name +msgid "Exception Name" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule +msgid "Exception Rule" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule_confirm +msgid "Exception Rule Confirm Wizard" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception_method +msgid "Exception Rule Methods" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Exception Rule Setup" +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_tree +#: model:ir.ui.menu,name:base_exception.menu_action_exception +msgid "Exception Rules" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__exception_type +msgid "Exception Type" +msgstr "" + +#. module: base_exception +#: model:res.groups,name:base_exception.group_exception_rule_manager +msgid "Exception manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exception_ids +msgid "Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exceptions_summary +#, fuzzy +msgid "Exceptions Summary" +msgstr "Açıklama" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__exception_ids +msgid "Exceptions to resolve" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__sequence +msgid "Gives the sequence order when applying the test" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help with Python expressions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__id +msgid "ID" +msgstr "Kimlik" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__ignore_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__ignore +msgid "Ignore Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__is_blocking +msgid "Is Blocking" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule____last_update +msgid "Last Modified on" +msgstr "En son güncelleme tarihi" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_uid +msgid "Last Updated by" +msgstr "En son güncelleyen " + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_date +msgid "Last Updated on" +msgstr "En son güncelleme tarihi" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__main_exception_id +msgid "Main Exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__method +msgid "Method" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/wizard/base_exception_confirm.py:0 +#, python-format +msgid "Only 1 ID accepted, got %r." +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_confirm +msgid "Outstanding exceptions to manage" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "Outstanding exceptions to manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__code +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Python Code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__code +msgid "" +"Python code executed to check if the exception apply or not. Use failed = " +"True to block the exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__related_model_id +#, fuzzy +msgid "Related Model" +msgstr "Oluşturulma tarihi" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__sequence +msgid "Sequence" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__smart_search +#: model:ir.model.fields,field_description:base_exception.field_base_exception_method__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__smart_search +msgid "Smart Search" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "The exceptions can not be ignored, because some of them are blocking." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"There is a problem of configuration, python code, domain or method is " +"missing to match the exception type." +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "To block the exception use: failed = True" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Various fields may use Python code or Python expressions. The following " +"variables can be used:" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__is_blocking +msgid "When checked the exception can not be ignored" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "_Close" +msgstr "" diff --git a/base_exception/i18n/uk.po b/base_exception/i18n/uk.po new file mode 100644 index 00000000..e0ecaadc --- /dev/null +++ b/base_exception/i18n/uk.po @@ -0,0 +1,325 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_exception +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-01 10:38+0000\n" +"PO-Revision-Date: 2017-05-01 10:38+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Ukrainian (https://www.transifex.com/oca/teams/23907/uk/)\n" +"Language: uk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \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_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "(Blocking exception)" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "self: Record on which the rule is evaluated." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__active +msgid "Active" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__model +msgid "Apply on" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Archived" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "As well as all the libraries provided in safe_eval." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_domain +msgid "By domain" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_method +msgid "By method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_py_code +msgid "By python code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__exception_type +msgid "" +"By python code: allow to define any arbitrary check\n" +"By domain: limited to a selection by an odoo domain:\n" +" performance can be better when exceptions are evaluated " +"with several records\n" +"By method: allow to select an existing check method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_uid +msgid "Created by" +msgstr "Створив" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_date +msgid "Created on" +msgstr "Дата створення" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__description +msgid "Description" +msgstr "Опис" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__display_name +msgid "Display Name" +msgstr "Назва для відображення" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__domain +msgid "Domain" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Enter Python code here. Help about Python expression is available in the " +"help tab of this document." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"Error when evaluating the exception.rule rule:\n" +" %(rule_name)s \n" +"(%(error)s)" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception +#, fuzzy +msgid "Exception" +msgstr "Опис" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__name +msgid "Exception Name" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule +msgid "Exception Rule" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule_confirm +msgid "Exception Rule Confirm Wizard" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception_method +msgid "Exception Rule Methods" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Exception Rule Setup" +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_tree +#: model:ir.ui.menu,name:base_exception.menu_action_exception +msgid "Exception Rules" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__exception_type +msgid "Exception Type" +msgstr "" + +#. module: base_exception +#: model:res.groups,name:base_exception.group_exception_rule_manager +msgid "Exception manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exception_ids +msgid "Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exceptions_summary +#, fuzzy +msgid "Exceptions Summary" +msgstr "Опис" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__exception_ids +msgid "Exceptions to resolve" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__sequence +msgid "Gives the sequence order when applying the test" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help with Python expressions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__id +msgid "ID" +msgstr "ID" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__ignore_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__ignore +msgid "Ignore Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__is_blocking +msgid "Is Blocking" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule____last_update +msgid "Last Modified on" +msgstr "Остання модифікація" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_uid +msgid "Last Updated by" +msgstr "Востаннє оновив" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_date +msgid "Last Updated on" +msgstr "Останнє оновлення" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__main_exception_id +msgid "Main Exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__method +msgid "Method" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/wizard/base_exception_confirm.py:0 +#, python-format +msgid "Only 1 ID accepted, got %r." +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_confirm +msgid "Outstanding exceptions to manage" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "Outstanding exceptions to manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__code +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Python Code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__code +msgid "" +"Python code executed to check if the exception apply or not. Use failed = " +"True to block the exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__related_model_id +#, fuzzy +msgid "Related Model" +msgstr "Дата створення" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__sequence +msgid "Sequence" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__smart_search +#: model:ir.model.fields,field_description:base_exception.field_base_exception_method__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__smart_search +msgid "Smart Search" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "The exceptions can not be ignored, because some of them are blocking." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"There is a problem of configuration, python code, domain or method is " +"missing to match the exception type." +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "To block the exception use: failed = True" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Various fields may use Python code or Python expressions. The following " +"variables can be used:" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__is_blocking +msgid "When checked the exception can not be ignored" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "_Close" +msgstr "" diff --git a/base_exception/i18n/vi.po b/base_exception/i18n/vi.po new file mode 100644 index 00000000..e2b8106c --- /dev/null +++ b/base_exception/i18n/vi.po @@ -0,0 +1,324 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_exception +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-01 10:38+0000\n" +"PO-Revision-Date: 2017-05-01 10:38+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Vietnamese (https://www.transifex.com/oca/teams/23907/vi/)\n" +"Language: vi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "(Blocking exception)" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "self: Record on which the rule is evaluated." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__active +msgid "Active" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__model +msgid "Apply on" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Archived" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "As well as all the libraries provided in safe_eval." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_domain +msgid "By domain" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_method +msgid "By method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_py_code +msgid "By python code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__exception_type +msgid "" +"By python code: allow to define any arbitrary check\n" +"By domain: limited to a selection by an odoo domain:\n" +" performance can be better when exceptions are evaluated " +"with several records\n" +"By method: allow to select an existing check method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_uid +msgid "Created by" +msgstr "Được tạo bởi" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_date +msgid "Created on" +msgstr "Được tạo vào" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__description +msgid "Description" +msgstr "Miêu tả" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__display_name +msgid "Display Name" +msgstr "Tên hiển thị" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__domain +msgid "Domain" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Enter Python code here. Help about Python expression is available in the " +"help tab of this document." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"Error when evaluating the exception.rule rule:\n" +" %(rule_name)s \n" +"(%(error)s)" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception +#, fuzzy +msgid "Exception" +msgstr "Miêu tả" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__name +msgid "Exception Name" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule +msgid "Exception Rule" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule_confirm +msgid "Exception Rule Confirm Wizard" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception_method +msgid "Exception Rule Methods" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Exception Rule Setup" +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_tree +#: model:ir.ui.menu,name:base_exception.menu_action_exception +msgid "Exception Rules" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__exception_type +msgid "Exception Type" +msgstr "" + +#. module: base_exception +#: model:res.groups,name:base_exception.group_exception_rule_manager +msgid "Exception manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exception_ids +msgid "Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exceptions_summary +#, fuzzy +msgid "Exceptions Summary" +msgstr "Miêu tả" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__exception_ids +msgid "Exceptions to resolve" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__sequence +msgid "Gives the sequence order when applying the test" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help with Python expressions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__id +msgid "ID" +msgstr "ID" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__ignore_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__ignore +msgid "Ignore Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__is_blocking +msgid "Is Blocking" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule____last_update +msgid "Last Modified on" +msgstr "Sửa lần cuối vào" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_uid +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_date +msgid "Last Updated on" +msgstr "Cập nhật lần cuối vào" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__main_exception_id +msgid "Main Exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__method +msgid "Method" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/wizard/base_exception_confirm.py:0 +#, python-format +msgid "Only 1 ID accepted, got %r." +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_confirm +msgid "Outstanding exceptions to manage" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "Outstanding exceptions to manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__code +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Python Code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__code +msgid "" +"Python code executed to check if the exception apply or not. Use failed = " +"True to block the exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__related_model_id +#, fuzzy +msgid "Related Model" +msgstr "Được tạo vào" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__sequence +msgid "Sequence" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__smart_search +#: model:ir.model.fields,field_description:base_exception.field_base_exception_method__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__smart_search +msgid "Smart Search" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "The exceptions can not be ignored, because some of them are blocking." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"There is a problem of configuration, python code, domain or method is " +"missing to match the exception type." +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "To block the exception use: failed = True" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Various fields may use Python code or Python expressions. The following " +"variables can be used:" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__is_blocking +msgid "When checked the exception can not be ignored" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "_Close" +msgstr "" diff --git a/base_exception/i18n/vi_VN.po b/base_exception/i18n/vi_VN.po new file mode 100644 index 00000000..f79b93d8 --- /dev/null +++ b/base_exception/i18n/vi_VN.po @@ -0,0 +1,325 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_exception +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-01 10:38+0000\n" +"PO-Revision-Date: 2017-05-01 10:38+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/oca/" +"teams/23907/vi_VN/)\n" +"Language: vi_VN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "(Blocking exception)" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "self: Record on which the rule is evaluated." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__active +msgid "Active" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__model +msgid "Apply on" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Archived" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "As well as all the libraries provided in safe_eval." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_domain +msgid "By domain" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_method +msgid "By method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_py_code +msgid "By python code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__exception_type +msgid "" +"By python code: allow to define any arbitrary check\n" +"By domain: limited to a selection by an odoo domain:\n" +" performance can be better when exceptions are evaluated " +"with several records\n" +"By method: allow to select an existing check method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_uid +msgid "Created by" +msgstr "Tạo bởi" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_date +msgid "Created on" +msgstr "Tạo vào" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__description +msgid "Description" +msgstr "Mô tả" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__display_name +msgid "Display Name" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__domain +msgid "Domain" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Enter Python code here. Help about Python expression is available in the " +"help tab of this document." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"Error when evaluating the exception.rule rule:\n" +" %(rule_name)s \n" +"(%(error)s)" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception +#, fuzzy +msgid "Exception" +msgstr "Mô tả" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__name +msgid "Exception Name" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule +msgid "Exception Rule" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule_confirm +msgid "Exception Rule Confirm Wizard" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception_method +msgid "Exception Rule Methods" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Exception Rule Setup" +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_tree +#: model:ir.ui.menu,name:base_exception.menu_action_exception +msgid "Exception Rules" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__exception_type +msgid "Exception Type" +msgstr "" + +#. module: base_exception +#: model:res.groups,name:base_exception.group_exception_rule_manager +msgid "Exception manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exception_ids +msgid "Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exceptions_summary +#, fuzzy +msgid "Exceptions Summary" +msgstr "Mô tả" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__exception_ids +msgid "Exceptions to resolve" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__sequence +msgid "Gives the sequence order when applying the test" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help with Python expressions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__id +msgid "ID" +msgstr "ID" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__ignore_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__ignore +msgid "Ignore Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__is_blocking +msgid "Is Blocking" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule____last_update +msgid "Last Modified on" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_uid +msgid "Last Updated by" +msgstr "Cập nhật lần cuối bởi" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_date +msgid "Last Updated on" +msgstr "Cập nhật lần cuối vào" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__main_exception_id +msgid "Main Exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__method +msgid "Method" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/wizard/base_exception_confirm.py:0 +#, python-format +msgid "Only 1 ID accepted, got %r." +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_confirm +msgid "Outstanding exceptions to manage" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "Outstanding exceptions to manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__code +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Python Code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__code +msgid "" +"Python code executed to check if the exception apply or not. Use failed = " +"True to block the exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__related_model_id +#, fuzzy +msgid "Related Model" +msgstr "Tạo vào" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__sequence +msgid "Sequence" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__smart_search +#: model:ir.model.fields,field_description:base_exception.field_base_exception_method__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__smart_search +msgid "Smart Search" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "The exceptions can not be ignored, because some of them are blocking." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"There is a problem of configuration, python code, domain or method is " +"missing to match the exception type." +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "To block the exception use: failed = True" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Various fields may use Python code or Python expressions. The following " +"variables can be used:" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__is_blocking +msgid "When checked the exception can not be ignored" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "_Close" +msgstr "" diff --git a/base_exception/i18n/zh_CN.po b/base_exception/i18n/zh_CN.po new file mode 100644 index 00000000..57da4be0 --- /dev/null +++ b/base_exception/i18n/zh_CN.po @@ -0,0 +1,356 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_exception +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-01 10:38+0000\n" +"PO-Revision-Date: 2019-08-31 04:24+0000\n" +"Last-Translator: 黎伟杰 <674416404@qq.com>\n" +"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/" +"zh_CN/)\n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 3.8\n" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "(Blocking exception)" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "self: Record on which the rule is evaluated." +msgstr "self: 记录对规则求值的位置。" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__active +msgid "Active" +msgstr "有效" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__model +msgid "Apply on" +msgstr "应用于" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Archived" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "As well as all the libraries provided in safe_eval." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_domain +msgid "By domain" +msgstr "通过域" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_method +msgid "By method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_py_code +msgid "By python code" +msgstr "通过python代码" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__exception_type +msgid "" +"By python code: allow to define any arbitrary check\n" +"By domain: limited to a selection by an odoo domain:\n" +" performance can be better when exceptions are evaluated " +"with several records\n" +"By method: allow to select an existing check method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_uid +msgid "Created by" +msgstr "创建者" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_date +msgid "Created on" +msgstr "创建时间" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__description +msgid "Description" +msgstr "说明" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__display_name +msgid "Display Name" +msgstr "显示名称" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__domain +msgid "Domain" +msgstr "域" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Enter Python code here. Help about Python expression is available in the " +"help tab of this document." +msgstr "" +"在这里输入Python代码。有关Python表达式的帮助,请参阅本文档的帮助选项卡。" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"Error when evaluating the exception.rule rule:\n" +" %(rule_name)s \n" +"(%(error)s)" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception +msgid "Exception" +msgstr "异常" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__name +msgid "Exception Name" +msgstr "异常名称" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule +msgid "Exception Rule" +msgstr "异常规则" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule_confirm +msgid "Exception Rule Confirm Wizard" +msgstr "异常规则确认向导" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception_method +msgid "Exception Rule Methods" +msgstr "异常规则方法" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Exception Rule Setup" +msgstr "异常规则设置" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_tree +#: model:ir.ui.menu,name:base_exception.menu_action_exception +msgid "Exception Rules" +msgstr "异常规则" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__exception_type +msgid "Exception Type" +msgstr "异常类型" + +#. module: base_exception +#: model:res.groups,name:base_exception.group_exception_rule_manager +msgid "Exception manager" +msgstr "异常管理" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exception_ids +msgid "Exceptions" +msgstr "异常" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exceptions_summary +#, fuzzy +msgid "Exceptions Summary" +msgstr "异常管理" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__exception_ids +msgid "Exceptions to resolve" +msgstr "解决的异常情况" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__sequence +msgid "Gives the sequence order when applying the test" +msgstr "应用测试时给出序列顺序" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help" +msgstr "帮助" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help with Python expressions" +msgstr "帮助Python表达式" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__id +msgid "ID" +msgstr "ID" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__ignore_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__ignore +msgid "Ignore Exceptions" +msgstr "忽略异常" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__is_blocking +msgid "Is Blocking" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule____last_update +msgid "Last Modified on" +msgstr "最后修改时间" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_uid +msgid "Last Updated by" +msgstr "最后更新者" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_date +msgid "Last Updated on" +msgstr "最后更新时间" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__main_exception_id +msgid "Main Exception" +msgstr "主要异常" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__method +msgid "Method" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/wizard/base_exception_confirm.py:0 +#, python-format +msgid "Only 1 ID accepted, got %r." +msgstr "只接受了一个ID,得到 %r。" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_confirm +msgid "Outstanding exceptions to manage" +msgstr "管理异常的情况" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "Outstanding exceptions to manager" +msgstr "管理异常的情况" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__code +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Python Code" +msgstr "Python代码" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__code +msgid "" +"Python code executed to check if the exception apply or not. Use failed = " +"True to block the exception" +msgstr "执行Python代码以检查异常是否适用。使用failed = True可阻止异常" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__related_model_id +msgid "Related Model" +msgstr "相关模型" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__sequence +msgid "Sequence" +msgstr "序列" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__smart_search +#: model:ir.model.fields,field_description:base_exception.field_base_exception_method__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__smart_search +msgid "Smart Search" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "The exceptions can not be ignored, because some of them are blocking." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"There is a problem of configuration, python code, domain or method is " +"missing to match the exception type." +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "To block the exception use: failed = True" +msgstr "阻止异常使用: failed = True" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Various fields may use Python code or Python expressions. The following " +"variables can be used:" +msgstr "各种字段可能使用Python代码或Python表达式。可以使用以下变量:" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__is_blocking +msgid "When checked the exception can not be ignored" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "_Close" +msgstr "关闭" + +#, python-format +#~ msgid "" +#~ "Error when evaluating the exception.rule rule:\n" +#~ " %s \n" +#~ "(%s)" +#~ msgstr "" +#~ "评估exception.rule规则时出错:\n" +#~ " %s \n" +#~ "(%s)" + +#~ msgid "Exceptions Rules" +#~ msgstr "异常规则" + +#~ msgid "" +#~ "By python code: allow to define any arbitrary check\n" +#~ "By domain: limited to a selection by an odoo domain:\n" +#~ " performance can be better when exceptions are " +#~ "evaluated with several records" +#~ msgstr "" +#~ "通过python代码:允许定义任意检查\n" +#~ "通过域: 仅限于odoo域的选择:\n" +#~ " 在评估异常情况时 可以使用几种记录来改进性能" + +#~ msgid "" +#~ "There is a problem of configuration, python code or domain is missing to " +#~ "match the exception type." +#~ msgstr "存在配置问题,缺少python代码或域以匹配异常类型。" + +#~ msgid "time: useful Python libraries" +#~ msgstr "time: 有用的Python库" diff --git a/base_exception/i18n/zh_TW.po b/base_exception/i18n/zh_TW.po new file mode 100644 index 00000000..0aad712f --- /dev/null +++ b/base_exception/i18n/zh_TW.po @@ -0,0 +1,325 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_exception +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-01 10:38+0000\n" +"PO-Revision-Date: 2017-05-01 10:38+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Chinese (Taiwan) (https://www.transifex.com/oca/teams/23907/" +"zh_TW/)\n" +"Language: zh_TW\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "(Blocking exception)" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "self: Record on which the rule is evaluated." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__active +msgid "Active" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__model +msgid "Apply on" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Archived" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "As well as all the libraries provided in safe_eval." +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_domain +msgid "By domain" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_method +msgid "By method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields.selection,name:base_exception.selection__exception_rule__exception_type__by_py_code +msgid "By python code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__exception_type +msgid "" +"By python code: allow to define any arbitrary check\n" +"By domain: limited to a selection by an odoo domain:\n" +" performance can be better when exceptions are evaluated " +"with several records\n" +"By method: allow to select an existing check method" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_uid +msgid "Created by" +msgstr "建立者" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__create_date +msgid "Created on" +msgstr "建立於" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__description +msgid "Description" +msgstr "說明" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__display_name +msgid "Display Name" +msgstr "顯示名稱" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__domain +msgid "Domain" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Enter Python code here. Help about Python expression is available in the " +"help tab of this document." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"Error when evaluating the exception.rule rule:\n" +" %(rule_name)s \n" +"(%(error)s)" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception +#, fuzzy +msgid "Exception" +msgstr "說明" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__name +msgid "Exception Name" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule +msgid "Exception Rule" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_exception_rule_confirm +msgid "Exception Rule Confirm Wizard" +msgstr "" + +#. module: base_exception +#: model:ir.model,name:base_exception.model_base_exception_method +msgid "Exception Rule Methods" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Exception Rule Setup" +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_tree +#: model:ir.ui.menu,name:base_exception.menu_action_exception +msgid "Exception Rules" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__exception_type +msgid "Exception Type" +msgstr "" + +#. module: base_exception +#: model:res.groups,name:base_exception.group_exception_rule_manager +msgid "Exception manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exception_ids +msgid "Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__exceptions_summary +#, fuzzy +msgid "Exceptions Summary" +msgstr "說明" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__exception_ids +msgid "Exceptions to resolve" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__sequence +msgid "Gives the sequence order when applying the test" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Help with Python expressions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__id +msgid "ID" +msgstr "編號" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__ignore_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__ignore +msgid "Ignore Exceptions" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__is_blocking +msgid "Is Blocking" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule____last_update +msgid "Last Modified on" +msgstr "最後修改:" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_uid +msgid "Last Updated by" +msgstr "最後更新:" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__write_date +msgid "Last Updated on" +msgstr "最後更新於" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__main_exception_id +msgid "Main Exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__method +msgid "Method" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/wizard/base_exception_confirm.py:0 +#, python-format +msgid "Only 1 ID accepted, got %r." +msgstr "" + +#. module: base_exception +#: model:ir.actions.act_window,name:base_exception.action_exception_rule_confirm +msgid "Outstanding exceptions to manage" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "Outstanding exceptions to manager" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__code +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "Python Code" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__code +msgid "" +"Python code executed to check if the exception apply or not. Use failed = " +"True to block the exception" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__related_model_id +#, fuzzy +msgid "Related Model" +msgstr "建立於" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__sequence +msgid "Sequence" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,field_description:base_exception.field_base_exception__smart_search +#: model:ir.model.fields,field_description:base_exception.field_base_exception_method__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule__smart_search +#: model:ir.model.fields,field_description:base_exception.field_exception_rule_confirm__smart_search +msgid "Smart Search" +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "The exceptions can not be ignored, because some of them are blocking." +msgstr "" + +#. module: base_exception +#. odoo-python +#: code:addons/base_exception/models/base_exception.py:0 +#, python-format +msgid "" +"There is a problem of configuration, python code, domain or method is " +"missing to match the exception type." +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "To block the exception use: failed = True" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_form +msgid "" +"Various fields may use Python code or Python expressions. The following " +"variables can be used:" +msgstr "" + +#. module: base_exception +#: model:ir.model.fields,help:base_exception.field_exception_rule__is_blocking +msgid "When checked the exception can not be ignored" +msgstr "" + +#. module: base_exception +#: model_terms:ir.ui.view,arch_db:base_exception.view_exception_rule_confirm +msgid "_Close" +msgstr "" diff --git a/base_exception/models/__init__.py b/base_exception/models/__init__.py new file mode 100644 index 00000000..495e1fe2 --- /dev/null +++ b/base_exception/models/__init__.py @@ -0,0 +1 @@ +from . import base_exception diff --git a/base_exception/models/base_exception.py b/base_exception/models/base_exception.py new file mode 100644 index 00000000..0ea2a31b --- /dev/null +++ b/base_exception/models/base_exception.py @@ -0,0 +1,318 @@ +# Copyright 2011 Raphaël Valyi, Renato Lima, Guewen Baconnier, Sodexis +# Copyright 2017 Akretion (http://www.akretion.com) +# Mourad EL HADJ MIMOUNE +# Copyright 2020 Hibou Corp. +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). + +import html +import logging + +from odoo import _, api, fields, models +from odoo.exceptions import UserError, ValidationError +from odoo.osv import expression +from odoo.tools.safe_eval import safe_eval + +_logger = logging.getLogger(__name__) + + +class ExceptionRule(models.Model): + _name = "exception.rule" + _description = "Exception Rule" + _order = "active desc, sequence asc" + + name = fields.Char("Exception Name", required=True, translate=True) + description = fields.Text(translate=True) + sequence = fields.Integer(help="Gives the sequence order when applying the test") + model = fields.Selection(selection=[], string="Apply on", required=True) + + exception_type = fields.Selection( + selection=[ + ("by_domain", "By domain"), + ("by_py_code", "By python code"), + ("by_method", "By method"), + ], + required=True, + default="by_py_code", + help="By python code: allow to define any arbitrary check\n" + "By domain: limited to a selection by an odoo domain:\n" + " performance can be better when exceptions" + " are evaluated with several records\n" + "By method: allow to select an existing check method", + ) + domain = fields.Char() + method = fields.Selection(selection=[], readonly=True) + active = fields.Boolean(default=True) + code = fields.Text( + "Python Code", + help="Python code executed to check if the exception apply or " + "not. Use failed = True to block the exception", + ) + is_blocking = fields.Boolean( + help="When checked the exception can not be ignored", + ) + + @api.constrains("exception_type", "domain", "code", "model") + def check_exception_type_consistency(self): + for rule in self: + if ( + (rule.exception_type == "by_py_code" and not rule.code) + or (rule.exception_type == "by_domain" and not rule.domain) + or (rule.exception_type == "by_method" and not rule.method) + ): + raise ValidationError( + _( + "There is a problem of configuration, python code, " + "domain or method is missing to match the exception " + "type." + ) + ) + + def _get_domain(self): + """override me to customize domains according exceptions cases""" + self.ensure_one() + return safe_eval(self.domain) + + +class BaseExceptionMethod(models.AbstractModel): + _name = "base.exception.method" + _description = "Exception Rule Methods" + + def _get_main_records(self): + """ + Used in case we check exceptions on a record but write these + exceptions on a parent record. Typical example is with + sale.order.line. We check exceptions on some sale order lines but + write these exceptions on the sale order, so they are visible. + """ + return self + + def _reverse_field(self): + raise NotImplementedError() + + def _rule_domain(self): + """Filter exception.rules. + By default, only the rules with the correct model + will be used. + """ + return [("model", "=", self._name), ("active", "=", True)] + + def detect_exceptions(self): + """List all exception_ids applied on self + Exception ids are also written on records + """ + rules = self.env["exception.rule"].sudo().search(self._rule_domain()) + all_exception_ids = [] + rules_to_remove = {} + rules_to_add = {} + for rule in rules: + records_with_exception = self._detect_exceptions(rule) + reverse_field = self._reverse_field() + main_records = self._get_main_records() + commons = main_records & rule[reverse_field] + to_remove = commons - records_with_exception + to_add = records_with_exception - commons + # we expect to always work on the same model type + if rule.id not in rules_to_remove: + rules_to_remove[rule.id] = main_records.browse() + rules_to_remove[rule.id] |= to_remove + if rule.id not in rules_to_add: + rules_to_add[rule.id] = main_records.browse() + rules_to_add[rule.id] |= to_add + if records_with_exception: + all_exception_ids.append(rule.id) + # Cumulate all the records to attach to the rule + # before linking. We don't want to call "rule.write()" + # which would: + # * write on write_date so lock the exception.rule + # * trigger the recomputation of "main_exception_id" on + # all the sale orders related to the rule, locking them all + # and preventing concurrent writes + # Reversing the write by writing on SaleOrder instead of + # ExceptionRule fixes the 2 kinds of unexpected locks. + # It should not result in more queries than writing on ExceptionRule: + # the "to remove" part generates one DELETE per rule on the relation + # table + # and the "to add" part generates one INSERT (with unnest) per rule. + for rule_id, records in rules_to_remove.items(): + records.write({"exception_ids": [(3, rule_id)]}) + for rule_id, records in rules_to_add.items(): + records.write({"exception_ids": [(4, rule_id)]}) + return all_exception_ids + + @api.model + def _exception_rule_eval_context(self, rec): + return { + "self": rec, + "object": rec, + "obj": rec, + } + + @api.model + def _rule_eval(self, rule, rec): + expr = rule.code + space = self._exception_rule_eval_context(rec) + try: + safe_eval( + expr, space, mode="exec", nocopy=True + ) # nocopy allows to return 'result' + except Exception as e: + _logger.exception(e) + raise UserError( + _( + "Error when evaluating the exception.rule" + " rule:\n %(rule_name)s \n(%(error)s)" + ) + % {"rule_name": rule.name, "error": e} + ) from e + return space.get("failed", False) + + def _detect_exceptions(self, rule): + if rule.exception_type == "by_py_code": + return self._detect_exceptions_by_py_code(rule) + elif rule.exception_type == "by_domain": + return self._detect_exceptions_by_domain(rule) + elif rule.exception_type == "by_method": + return self._detect_exceptions_by_method(rule) + + def _get_base_domain(self): + return [("ignore_exception", "=", False), ("id", "in", self.ids)] + + def _detect_exceptions_by_py_code(self, rule): + """ + Find exceptions found on self. + """ + domain = self._get_base_domain() + records = self.search(domain) + records_with_exception = self.env[self._name] + for record in records: + if self._rule_eval(rule, record): + records_with_exception |= record + return records_with_exception + + def _detect_exceptions_by_domain(self, rule): + """ + Find exceptions found on self. + """ + base_domain = self._get_base_domain() + rule_domain = rule._get_domain() + domain = expression.AND([base_domain, rule_domain]) + return self.search(domain) + + def _detect_exceptions_by_method(self, rule): + """ + Find exceptions found on self. + """ + base_domain = self._get_base_domain() + records = self.search(base_domain) + return getattr(records, rule.method)() + + +class BaseExceptionModel(models.AbstractModel): + _inherit = "base.exception.method" + _name = "base.exception" + _order = "main_exception_id asc" + _description = "Exception" + + main_exception_id = fields.Many2one( + "exception.rule", + compute="_compute_main_error", + string="Main Exception", + store=True, + ) + exceptions_summary = fields.Html(compute="_compute_exceptions_summary") + exception_ids = fields.Many2many("exception.rule", string="Exceptions", copy=False) + ignore_exception = fields.Boolean("Ignore Exceptions", copy=False) + + def action_ignore_exceptions(self): + if any(self.exception_ids.mapped("is_blocking")): + raise UserError( + _( + "The exceptions can not be ignored, because " + "some of them are blocking." + ) + ) + self.write({"ignore_exception": True}) + return True + + @api.depends("exception_ids", "ignore_exception") + def _compute_main_error(self): + for rec in self: + if not rec.ignore_exception and rec.exception_ids: + rec.main_exception_id = rec.exception_ids[0] + else: + rec.main_exception_id = False + + @api.depends("exception_ids", "ignore_exception") + def _compute_exceptions_summary(self): + for rec in self: + if rec.exception_ids and not rec.ignore_exception: + rec.exceptions_summary = "
    %s
" % "".join( + [ + "
  • %s: %s %s
  • " + % tuple( + map( + html.escape, + ( + e.name, + e.description or "", + _("(Blocking exception)") if e.is_blocking else "", + ), + ) + ) + for e in rec.exception_ids + ] + ) + else: + rec.exceptions_summary = False + + def _popup_exceptions(self): + """This method is used to show the popup action view. + Used in several dependent modules.""" + record = self._get_popup_action() + action = record.sudo().read()[0] + action = { + field: value + for field, value in action.items() + if field in record._get_readable_fields() + } + action.update( + { + "context": { + "active_id": self.ids[0], + "active_ids": self.ids, + "active_model": self._name, + } + } + ) + return action + + @api.model + def _get_popup_action(self): + return self.env.ref("base_exception.action_exception_rule_confirm") + + def _check_exception(self): + """Check exceptions + + This method must be used in a constraint that must be created in the + object that inherits for base.exception. + + .. code-block:: python + + @api.constrains("ignore_exception") + def sale_check_exception(self): + # ... + self._check_exception() + + For convenience, this check can be skipped by setting check_exception=False + in context. + + Exceptions will be raised as ValidationError, but this can be disabled + by setting raise_exception=False in context. They will still be detected + and updated on the related record, though. + """ + if not self.env.context.get("check_exception", True): # pragma: no cover + return True + exception_ids = self.detect_exceptions() + if exception_ids and self.env.context.get("raise_exception", True): + exceptions = self.env["exception.rule"].browse(exception_ids) + raise ValidationError("\n".join(exceptions.mapped("name"))) diff --git a/base_exception/readme/CONTRIBUTORS.rst b/base_exception/readme/CONTRIBUTORS.rst new file mode 100644 index 00000000..2786adc4 --- /dev/null +++ b/base_exception/readme/CONTRIBUTORS.rst @@ -0,0 +1,15 @@ +* Raphaël Valyi +* Renato Lima +* Sébastien BEAU +* Guewen Baconnier +* Yannick Vaucher +* SodexisTeam +* Mourad EL HADJ MIMOUNE +* Raphaël Reverdy +* Iván Todorovich + +* Tecnativa + + * João Marques + +* Kevin Khao diff --git a/base_exception/readme/DESCRIPTION.rst b/base_exception/readme/DESCRIPTION.rst new file mode 100644 index 00000000..1aaab6ff --- /dev/null +++ b/base_exception/readme/DESCRIPTION.rst @@ -0,0 +1,6 @@ +This module provide an abstract model to manage customizable +exceptions to be applied on different models (sale order, invoice, ...). + +It is not useful by itself. You can see an example of implementation +in the 'sale_exception' module. (sale-workflow repository) or +'purchase_exception' module (purchase-workflow repository). diff --git a/base_exception/readme/ROADMAP.rst b/base_exception/readme/ROADMAP.rst new file mode 100644 index 00000000..af3e865f --- /dev/null +++ b/base_exception/readme/ROADMAP.rst @@ -0,0 +1,3 @@ +This module executes user-provided code though a safe_eval which might be +unsecure. +How to mitigate risks should be adressed in future versions of this module. diff --git a/base_exception/security/base_exception_security.xml b/base_exception/security/base_exception_security.xml new file mode 100644 index 00000000..4a6502e4 --- /dev/null +++ b/base_exception/security/base_exception_security.xml @@ -0,0 +1,7 @@ + + + + Exception manager + + + diff --git a/base_exception/security/ir.model.access.csv b/base_exception/security/ir.model.access.csv new file mode 100644 index 00000000..38331a4f --- /dev/null +++ b/base_exception/security/ir.model.access.csv @@ -0,0 +1,5 @@ +id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink +access_exception_rule,base.exception,model_exception_rule,base.group_user,1,0,0,0 +access_exception_rule_manager,base.exception,model_exception_rule,base_exception.group_exception_rule_manager,1,1,1,1 +access_base_exception,base.exception,model_base_exception,base.group_user,1,0,0,0 +access_base_exception_manager,base.exception,model_base_exception,base_exception.group_exception_rule_manager,1,1,1,1 diff --git a/base_exception/static/description/icon.png b/base_exception/static/description/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..3a0328b516c4980e8e44cdb63fd945757ddd132d GIT binary patch literal 9455 zcmW++2RxMjAAjx~&dlBk9S+%}OXg)AGE&Cb*&}d0jUxM@u(PQx^-s)697TX`ehR4?GS^qbkof1cslKgkU)h65qZ9Oc=ml_0temigYLJfnz{IDzUf>bGs4N!v3=Z3jMq&A#7%rM5eQ#dc?k~! zVpnB`o+K7|Al`Q_U;eD$B zfJtP*jH`siUq~{KE)`jP2|#TUEFGRryE2`i0**z#*^6~AI|YzIWy$Cu#CSLW3q=GA z6`?GZymC;dCPk~rBS%eCb`5OLr;RUZ;D`}um=H)BfVIq%7VhiMr)_#G0N#zrNH|__ zc+blN2UAB0=617@>_u;MPHN;P;N#YoE=)R#i$k_`UAA>WWCcEVMh~L_ zj--gtp&|K1#58Yz*AHCTMziU1Jzt_jG0I@qAOHsk$2}yTmVkBp_eHuY$A9)>P6o~I z%aQ?!(GqeQ-Y+b0I(m9pwgi(IIZZzsbMv+9w{PFtd_<_(LA~0H(xz{=FhLB@(1&qHA5EJw1>>=%q2f&^X>IQ{!GJ4e9U z&KlB)z(84HmNgm2hg2C0>WM{E(DdPr+EeU_N@57;PC2&DmGFW_9kP&%?X4}+xWi)( z;)z%wI5>D4a*5XwD)P--sPkoY(a~WBw;E~AW`Yue4kFa^LM3X`8x|}ZUeMnqr}>kH zG%WWW>3ml$Yez?i%)2pbKPI7?5o?hydokgQyZsNEr{a|mLdt;X2TX(#B1j35xPnPW z*bMSSOauW>o;*=kO8ojw91VX!qoOQb)zHJ!odWB}d+*K?#sY_jqPdg{Sm2HdYzdEx zOGVPhVRTGPtv0o}RfVP;Nd(|CB)I;*t&QO8h zFfekr30S!-LHmV_Su-W+rEwYXJ^;6&3|L$mMC8*bQptyOo9;>Qb9Q9`ySe3%V$A*9 zeKEe+b0{#KWGp$F+tga)0RtI)nhMa-K@JS}2krK~n8vJ=Ngm?R!9G<~RyuU0d?nz# z-5EK$o(!F?hmX*2Yt6+coY`6jGbb7tF#6nHA zuKk=GGJ;ZwON1iAfG$E#Y7MnZVmrY|j0eVI(DN_MNFJmyZ|;w4tf@=CCDZ#5N_0K= z$;R~bbk?}TpfDjfB&aiQ$VA}s?P}xPERJG{kxk5~R`iRS(SK5d+Xs9swCozZISbnS zk!)I0>t=A<-^z(cmSFz3=jZ23u13X><0b)P)^1T_))Kr`e!-pb#q&J*Q`p+B6la%C zuVl&0duN<;uOsB3%T9Fp8t{ED108<+W(nOZd?gDnfNBC3>M8WE61$So|P zVvqH0SNtDTcsUdzaMDpT=Ty0pDHHNL@Z0w$Y`XO z2M-_r1S+GaH%pz#Uy0*w$Vdl=X=rQXEzO}d6J^R6zjM1u&c9vYLvLp?W7w(?np9x1 zE_0JSAJCPB%i7p*Wvg)pn5T`8k3-uR?*NT|J`eS#_#54p>!p(mLDvmc-3o0mX*mp_ zN*AeS<>#^-{S%W<*mz^!X$w_2dHWpcJ6^j64qFBft-o}o_Vx80o0>}Du;>kLts;$8 zC`7q$QI(dKYG`Wa8#wl@V4jVWBRGQ@1dr-hstpQL)Tl+aqVpGpbSfN>5i&QMXfiZ> zaA?T1VGe?rpQ@;+pkrVdd{klI&jVS@I5_iz!=UMpTsa~mBga?1r}aRBm1WS;TT*s0f0lY=JBl66Upy)-k4J}lh=P^8(SXk~0xW=T9v*B|gzIhN z>qsO7dFd~mgxAy4V?&)=5ieYq?zi?ZEoj)&2o)RLy=@hbCRcfT5jigwtQGE{L*8<@Yd{zg;CsL5mvzfDY}P-wos_6PfprFVaeqNE%h zKZhLtcQld;ZD+>=nqN~>GvROfueSzJD&BE*}XfU|H&(FssBqY=hPCt`d zH?@s2>I(|;fcW&YM6#V#!kUIP8$Nkdh0A(bEVj``-AAyYgwY~jB zT|I7Bf@%;7aL7Wf4dZ%VqF$eiaC38OV6oy3Z#TER2G+fOCd9Iaoy6aLYbPTN{XRPz z;U!V|vBf%H!}52L2gH_+j;`bTcQRXB+y9onc^wLm5wi3-Be}U>k_u>2Eg$=k!(l@I zcCg+flakT2Nej3i0yn+g+}%NYb?ta;R?(g5SnwsQ49U8Wng8d|{B+lyRcEDvR3+`O{zfmrmvFrL6acVP%yG98X zo&+VBg@px@i)%o?dG(`T;n*$S5*rnyiR#=wW}}GsAcfyQpE|>a{=$Hjg=-*_K;UtD z#z-)AXwSRY?OPefw^iI+ z)AXz#PfEjlwTes|_{sB?4(O@fg0AJ^g8gP}ex9Ucf*@_^J(s_5jJV}c)s$`Myn|Kd z$6>}#q^n{4vN@+Os$m7KV+`}c%4)4pv@06af4-x5#wj!KKb%caK{A&Y#Rfs z-po?Dcb1({W=6FKIUirH&(yg=*6aLCekcKwyfK^JN5{wcA3nhO(o}SK#!CINhI`-I z1)6&n7O&ZmyFMuNwvEic#IiOAwNkR=u5it{B9n2sAJV5pNhar=j5`*N!Na;c7g!l$ z3aYBqUkqqTJ=Re-;)s!EOeij=7SQZ3Hq}ZRds%IM*PtM$wV z@;rlc*NRK7i3y5BETSKuumEN`Xu_8GP1Ri=OKQ$@I^ko8>H6)4rjiG5{VBM>B|%`&&s^)jS|-_95&yc=GqjNo{zFkw%%HHhS~e=s zD#sfS+-?*t|J!+ozP6KvtOl!R)@@-z24}`9{QaVLD^9VCSR2b`b!KC#o;Ki<+wXB6 zx3&O0LOWcg4&rv4QG0)4yb}7BFSEg~=IR5#ZRj8kg}dS7_V&^%#Do==#`u zpy6{ox?jWuR(;pg+f@mT>#HGWHAJRRDDDv~@(IDw&R>9643kK#HN`!1vBJHnC+RM&yIh8{gG2q zA%e*U3|N0XSRa~oX-3EAneep)@{h2vvd3Xvy$7og(sayr@95+e6~Xvi1tUqnIxoIH zVWo*OwYElb#uyW{Imam6f2rGbjR!Y3`#gPqkv57dB6K^wRGxc9B(t|aYDGS=m$&S!NmCtrMMaUg(c zc2qC=2Z`EEFMW-me5B)24AqF*bV5Dr-M5ig(l-WPS%CgaPzs6p_gnCIvTJ=Y<6!gT zVt@AfYCzjjsMEGi=rDQHo0yc;HqoRNnNFeWZgcm?f;cp(6CNylj36DoL(?TS7eU#+ z7&mfr#y))+CJOXQKUMZ7QIdS9@#-}7y2K1{8)cCt0~-X0O!O?Qx#E4Og+;A2SjalQ zs7r?qn0H044=sDN$SRG$arw~n=+T_DNdSrarmu)V6@|?1-ZB#hRn`uilTGPJ@fqEy zGt(f0B+^JDP&f=r{#Y_wi#AVDf-y!RIXU^0jXsFpf>=Ji*TeqSY!H~AMbJdCGLhC) zn7Rx+sXw6uYj;WRYrLd^5IZq@6JI1C^YkgnedZEYy<&4(z%Q$5yv#Boo{AH8n$a zhb4Y3PWdr269&?V%uI$xMcUrMzl=;w<_nm*qr=c3Rl@i5wWB;e-`t7D&c-mcQl7x! zZWB`UGcw=Y2=}~wzrfLx=uet<;m3~=8I~ZRuzvMQUQdr+yTV|ATf1Uuomr__nDf=X zZ3WYJtHp_ri(}SQAPjv+Y+0=fH4krOP@S&=zZ-t1jW1o@}z;xk8 z(Nz1co&El^HK^NrhVHa-_;&88vTU>_J33=%{if;BEY*J#1n59=07jrGQ#IP>@u#3A z;!q+E1Rj3ZJ+!4bq9F8PXJ@yMgZL;>&gYA0%_Kbi8?S=XGM~dnQZQ!yBSgcZhY96H zrWnU;k)qy`rX&&xlDyA%(a1Hhi5CWkmg(`Gb%m(HKi-7Z!LKGRP_B8@`7&hdDy5n= z`OIxqxiVfX@OX1p(mQu>0Ai*v_cTMiw4qRt3~NBvr9oBy0)r>w3p~V0SCm=An6@3n)>@z!|o-$HvDK z|3D2ZMJkLE5loMKl6R^ez@Zz%S$&mbeoqH5`Bb){Ei21q&VP)hWS2tjShfFtGE+$z zzCR$P#uktu+#!w)cX!lWN1XU%K-r=s{|j?)Akf@q#3b#{6cZCuJ~gCxuMXRmI$nGtnH+-h z+GEi!*X=AP<|fG`1>MBdTb?28JYc=fGvAi2I<$B(rs$;eoJCyR6_bc~p!XR@O-+sD z=eH`-ye})I5ic1eL~TDmtfJ|8`0VJ*Yr=hNCd)G1p2MMz4C3^Mj?7;!w|Ly%JqmuW zlIEW^Ft%z?*|fpXda>Jr^1noFZEwFgVV%|*XhH@acv8rdGxeEX{M$(vG{Zw+x(ei@ zmfXb22}8-?Fi`vo-YVrTH*C?a8%M=Hv9MqVH7H^J$KsD?>!SFZ;ZsvnHr_gn=7acz z#W?0eCdVhVMWN12VV^$>WlQ?f;P^{(&pYTops|btm6aj>_Uz+hqpGwB)vWp0Cf5y< zft8-je~nn?W11plq}N)4A{l8I7$!ks_x$PXW-2XaRFswX_BnF{R#6YIwMhAgd5F9X zGmwdadS6(a^fjHtXg8=l?Rc0Sm%hk6E9!5cLVloEy4eh(=FwgP`)~I^5~pBEWo+F6 zSf2ncyMurJN91#cJTy_u8Y}@%!bq1RkGC~-bV@SXRd4F{R-*V`bS+6;W5vZ(&+I<9$;-V|eNfLa5n-6% z2(}&uGRF;p92eS*sE*oR$@pexaqr*meB)VhmIg@h{uzkk$9~qh#cHhw#>O%)b@+(| z^IQgqzuj~Sk(J;swEM-3TrJAPCq9k^^^`q{IItKBRXYe}e0Tdr=Huf7da3$l4PdpwWDop%^}n;dD#K4s#DYA8SHZ z&1!riV4W4R7R#C))JH1~axJ)RYnM$$lIR%6fIVA@zV{XVyx}C+a-Dt8Y9M)^KU0+H zR4IUb2CJ{Hg>CuaXtD50jB(_Tcx=Z$^WYu2u5kubqmwp%drJ6 z?Fo40g!Qd<-l=TQxqHEOuPX0;^z7iX?Ke^a%XT<13TA^5`4Xcw6D@Ur&VT&CUe0d} z1GjOVF1^L@>O)l@?bD~$wzgf(nxX1OGD8fEV?TdJcZc2KoUe|oP1#=$$7ee|xbY)A zDZq+cuTpc(fFdj^=!;{k03C69lMQ(|>uhRfRu%+!k&YOi-3|1QKB z z?n?eq1XP>p-IM$Z^C;2L3itnbJZAip*Zo0aw2bs8@(s^~*8T9go!%dHcAz2lM;`yp zD=7&xjFV$S&5uDaiScyD?B-i1ze`+CoRtz`Wn+Zl&#s4&}MO{@N!ufrzjG$B79)Y2d3tBk&)TxUTw@QS0TEL_?njX|@vq?Uz(nBFK5Pq7*xj#u*R&i|?7+6# z+|r_n#SW&LXhtheZdah{ZVoqwyT{D>MC3nkFF#N)xLi{p7J1jXlmVeb;cP5?e(=f# zuT7fvjSbjS781v?7{)-X3*?>tq?)Yd)~|1{BDS(pqC zC}~H#WXlkUW*H5CDOo<)#x7%RY)A;ShGhI5s*#cRDA8YgqG(HeKDx+#(ZQ?386dv! zlXCO)w91~Vw4AmOcATuV653fa9R$fyK8ul%rG z-wfS zihugoZyr38Im?Zuh6@RcF~t1anQu7>#lPpb#}4cOA!EM11`%f*07RqOVkmX{p~KJ9 z^zP;K#|)$`^Rb{rnHGH{~>1(fawV0*Z#)}M`m8-?ZJV<+e}s9wE# z)l&az?w^5{)`S(%MRzxdNqrs1n*-=jS^_jqE*5XDrA0+VE`5^*p3CuM<&dZEeCjoz zR;uu_H9ZPZV|fQq`Cyw4nscrVwi!fE6ciMmX$!_hN7uF;jjKG)d2@aC4ropY)8etW=xJvni)8eHi`H$%#zn^WJ5NLc-rqk|u&&4Z6fD_m&JfSI1Bvb?b<*n&sfl0^t z=HnmRl`XrFvMKB%9}>PaA`m-fK6a0(8=qPkWS5bb4=v?XcWi&hRY?O5HdulRi4?fN zlsJ*N-0Qw+Yic@s0(2uy%F@ib;GjXt01Fmx5XbRo6+n|pP(&nodMoap^z{~q ziEeaUT@Mxe3vJSfI6?uLND(CNr=#^W<1b}jzW58bIfyWTDle$mmS(|x-0|2UlX+9k zQ^EX7Nw}?EzVoBfT(-LT|=9N@^hcn-_p&sqG z&*oVs2JSU+N4ZD`FhCAWaS;>|wH2G*Id|?pa#@>tyxX`+4HyIArWDvVrX)2WAOQff z0qyHu&-S@i^MS-+j--!pr4fPBj~_8({~e1bfcl0wI1kaoN>mJL6KUPQm5N7lB(ui1 zE-o%kq)&djzWJ}ob<-GfDlkB;F31j-VHKvQUGQ3sp`CwyGJk_i!y^sD0fqC@$9|jO zOqN!r!8-p==F@ZVP=U$qSpY(gQ0)59P1&t@y?5rvg<}E+GB}26NYPp4f2YFQrQtot5mn3wu_qprZ=>Ig-$ zbW26Ws~IgY>}^5w`vTB(G`PTZaDiGBo5o(tp)qli|NeV( z@H_=R8V39rt5J5YB2Ky?4eJJ#b`_iBe2ot~6%7mLt5t8Vwi^Jy7|jWXqa3amOIoRb zOr}WVFP--DsS`1WpN%~)t3R!arKF^Q$e12KEqU36AWwnCBICpH4XCsfnyrHr>$I$4 z!DpKX$OKLWarN7nv@!uIA+~RNO)l$$w}p(;b>mx8pwYvu;dD_unryX_NhT8*Tj>BTrTTL&!?O+%Rv;b?B??gSzdp?6Uug9{ zd@V08Z$BdI?fpoCS$)t4mg4rT8Q_I}h`0d-vYZ^|dOB*Q^S|xqTV*vIg?@fVFSmMpaw0qtTRbx} z({Pg?#{2`sc9)M5N$*N|4;^t$+QP?#mov zGVC@I*lBVrOU-%2y!7%)fAKjpEFsgQc4{amtiHb95KQEwvf<(3T<9-Zm$xIew#P22 zc2Ix|App^>v6(3L_MCU0d3W##AB0M~3D00EWoKZqsJYT(#@w$Y_H7G22M~ApVFTRHMI_3be)Lkn#0F*V8Pq zc}`Cjy$bE;FJ6H7p=0y#R>`}-m4(0F>%@P|?7fx{=R^uFdISRnZ2W_xQhD{YuR3t< z{6yxu=4~JkeA;|(J6_nv#>Nvs&FuLA&PW^he@t(UwFFE8)|a!R{`E`K`i^ZnyE4$k z;(749Ix|oi$c3QbEJ3b~D_kQsPz~fIUKym($a_7dJ?o+40*OLl^{=&oq$<#Q(yyrp z{J-FAniyAw9tPbe&IhQ|a`DqFTVQGQ&Gq3!C2==4x{6EJwiPZ8zub-iXoUtkJiG{} zPaR&}_fn8_z~(=;5lD-aPWD3z8PZS@AaUiomF!G8I}Mf>e~0g#BelA-5#`cj;O5>N Xviia!U7SGha1wx#SCgwmn*{w2TRX*I literal 0 HcmV?d00001 diff --git a/base_exception/static/description/index.html b/base_exception/static/description/index.html new file mode 100644 index 00000000..f1128a1f --- /dev/null +++ b/base_exception/static/description/index.html @@ -0,0 +1,447 @@ + + + + + + +Exception Rule + + + +
    +

    Exception Rule

    + + +

    Mature License: AGPL-3 OCA/server-tools Translate me on Weblate Try me on Runbot

    +

    This module provide an abstract model to manage customizable +exceptions to be applied on different models (sale order, invoice, …).

    +

    It is not useful by itself. You can see an example of implementation +in the ‘sale_exception’ module. (sale-workflow repository) or +‘purchase_exception’ module (purchase-workflow repository).

    +

    Table of contents

    + +
    +

    Known issues / Roadmap

    +

    This module executes user-provided code though a safe_eval which might be +unsecure. +How to mitigate risks should be adressed in future versions of this module.

    +
    +
    +

    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.

    +

    Do not contact contributors directly about support or help with technical issues.

    +
    +
    +

    Credits

    +
    +

    Authors

    +
      +
    • Akretion
    • +
    • Sodexis
    • +
    • Camptocamp
    • +
    +
    +
    +

    Contributors

    + +
    +
    +

    Maintainers

    +

    This module is maintained by the OCA.

    +Odoo Community Association +

    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.

    +

    Current maintainers:

    +

    hparfr sebastienbeau

    +

    This module is part of the OCA/server-tools project on GitHub.

    +

    You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

    +
    +
    +
    + + diff --git a/base_exception/tests/__init__.py b/base_exception/tests/__init__.py new file mode 100644 index 00000000..101708f2 --- /dev/null +++ b/base_exception/tests/__init__.py @@ -0,0 +1 @@ +from . import test_base_exception diff --git a/base_exception/tests/purchase_test.py b/base_exception/tests/purchase_test.py new file mode 100644 index 00000000..b1bc61ae --- /dev/null +++ b/base_exception/tests/purchase_test.py @@ -0,0 +1,104 @@ +# Copyright 2016 Akretion Mourad EL HADJ MIMOUNE +# Copyright 2020 Hibou Corp. +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). +from odoo import api, fields, models + + +class ExceptionRule(models.Model): + _inherit = "exception.rule" + _name = "exception.rule" + + method = fields.Selection( + selection_add=[("exception_method_no_zip", "Purchase exception no zip")] + ) + model = fields.Selection( + selection_add=[("base.exception.test.purchase", "Purchase Test")], + ondelete={"base.exception.test.purchase": "cascade"}, + ) + test_purchase_ids = fields.Many2many("base.exception.test.purchase") + + +class PurchaseTest(models.Model): + _inherit = "base.exception" + _name = "base.exception.test.purchase" + _description = "Base Exception Test Model" + + name = fields.Char(required=True) + user_id = fields.Many2one("res.users", string="Responsible") + state = fields.Selection( + [ + ("draft", "New"), + ("cancel", "Cancelled"), + ("purchase", "Purchase"), + ("to approve", "To approve"), + ("done", "Done"), + ], + string="Status", + readonly=True, + default="draft", + ) + active = fields.Boolean(default=True) + partner_id = fields.Many2one("res.partner", string="Partner") + line_ids = fields.One2many("base.exception.test.purchase.line", "lead_id") + amount_total = fields.Float(compute="_compute_amount_total", store=True) + + @api.depends("line_ids") + def _compute_amount_total(self): + for record in self: + for line in record.line_ids: + record.amount_total += line.amount * line.qty + + @api.constrains("ignore_exception", "line_ids", "state") + def test_purchase_check_exception(self): + orders = self.filtered(lambda s: s.state == "purchase") + if orders: + orders._check_exception() + + def button_approve(self, force=False): + self.write({"state": "to approve"}) + return {} + + def button_draft(self): + self.write({"state": "draft"}) + return {} + + def button_confirm(self): + self.write({"state": "purchase"}) + return True + + def button_cancel(self): + self.write({"state": "cancel"}) + + def _reverse_field(self): + return "test_purchase_ids" + + def exception_method_no_zip(self): + records_fail = self.env["base.exception.test.purchase"] + for rec in self: + if not rec.partner_id.zip: + records_fail += rec + return records_fail + + +class LineTest(models.Model): + _name = "base.exception.test.purchase.line" + _description = "Base Exception Test Model Line" + + name = fields.Char() + lead_id = fields.Many2one("base.exception.test.purchase", ondelete="cascade") + qty = fields.Float() + amount = fields.Float() + + +class WizardTest(models.TransientModel): + _name = "exception.rule.confirm.test.purchase" + _inherit = "exception.rule.confirm" + _description = "Base Exception Test Model Confirm" + + related_model_id = fields.Many2one("base.exception.test.purchase", "Purchase") + + def action_confirm(self): + self.ensure_one() + if self.ignore: + self.related_model_id.ignore_exception = True + return super().action_confirm() diff --git a/base_exception/tests/test_base_exception.py b/base_exception/tests/test_base_exception.py new file mode 100644 index 00000000..2b8a6a07 --- /dev/null +++ b/base_exception/tests/test_base_exception.py @@ -0,0 +1,150 @@ +# Copyright 2016 Akretion Mourad EL HADJ MIMOUNE +# Copyright 2020 Hibou Corp. +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). + + +from odoo_test_helper import FakeModelLoader + +from odoo.exceptions import UserError, ValidationError +from odoo.tests import TransactionCase + + +class TestBaseException(TransactionCase): + @classmethod + def setUpClass(cls): + super().setUpClass() + + cls.loader = FakeModelLoader(cls.env, cls.__module__) + cls.loader.backup_registry() + from .purchase_test import ExceptionRule, LineTest, PurchaseTest, WizardTest + + cls.loader.update_registry((ExceptionRule, LineTest, PurchaseTest, WizardTest)) + cls.partner = cls.env["res.partner"].create({"name": "Foo"}) + cls.po = cls.env["base.exception.test.purchase"].create( + { + "name": "Test base exception to basic purchase", + "partner_id": cls.partner.id, + "line_ids": [ + (0, 0, {"name": "line test", "amount": 120.0, "qty": 1.5}) + ], + } + ) + cls.exception_rule = cls.env["exception.rule"].create( + { + "name": "No ZIP code on destination", + "sequence": 10, + "model": "base.exception.test.purchase", + "code": "if not self.partner_id.zip: failed=True", + "exception_type": "by_py_code", + } + ) + exception_rule_confirm_obj = cls.env["exception.rule.confirm.test.purchase"] + cls.exception_rule_confirm = exception_rule_confirm_obj.with_context( + active_model="base.exception.test.purchase", active_ids=cls.po.ids + ).create( + { + "related_model_id": cls.po.id, + "ignore": False, + } + ) + + @classmethod + def tearDownClass(cls): + cls.loader.restore_registry() + return super().tearDownClass() + + def test_valid(self): + self.partner.write({"zip": "00000"}) + self.exception_rule.active = False + self.po.button_confirm() + self.assertFalse(self.po.exception_ids) + + def test_exception_rule_confirm(self): + self.exception_rule_confirm.action_confirm() + self.assertFalse(self.exception_rule_confirm.exception_ids) + + def test_fail_by_py(self): + with self.assertRaises(ValidationError): + self.po.button_confirm() + self.po.with_context(raise_exception=False).button_confirm() + self.assertTrue(self.po.exception_ids) + + def test_fail_by_domain(self): + self.exception_rule.write( + { + "domain": "[('partner_id.zip', '=', False)]", + "exception_type": "by_domain", + } + ) + with self.assertRaises(ValidationError): + self.po.button_confirm() + self.po.with_context(raise_exception=False).button_confirm() + self.assertTrue(self.po.exception_ids) + + def test_fail_by_method(self): + self.exception_rule.write( + { + "method": "exception_method_no_zip", + "exception_type": "by_method", + } + ) + with self.assertRaises(ValidationError): + self.po.button_confirm() + self.po.with_context(raise_exception=False).button_confirm() + self.assertTrue(self.po.exception_ids) + + def test_ignorable_exception(self): + # Block because of exception during validation + with self.assertRaises(ValidationError): + self.po.button_confirm() + self.po.with_context(raise_exception=False).button_confirm() + # Test that we have linked exceptions + self.assertTrue(self.po.exception_ids) + # Test ignore exeception make possible for the po to validate + self.po.action_ignore_exceptions() + self.assertTrue(self.po.ignore_exception) + self.assertFalse(self.po.exceptions_summary) + self.po.button_confirm() + self.assertEqual(self.po.state, "purchase") + + def test_purchase_check_exception(self): + self.po.test_purchase_check_exception() + + def test_purchase_check_button_approve(self): + self.po.button_approve() + self.assertEqual(self.po.state, "to approve") + + def test_purchase_check_button_draft(self): + self.po.button_draft() + self.assertEqual(self.po.state, "draft") + + def test_purchase_check_button_confirm(self): + self.partner.write({"zip": "00000"}) + self.po.button_confirm() + self.assertEqual(self.po.state, "purchase") + + def test_purchase_check_button_cancel(self): + self.po.button_cancel() + self.assertEqual(self.po.state, "cancel") + + def test_detect_exceptions(self): + self.po.detect_exceptions() + + def test_blocking_exception(self): + self.exception_rule.is_blocking = True + # Block because of exception during validation + with self.assertRaises(ValidationError): + self.po.button_confirm() + # Test that we have linked exceptions + self.po.with_context(raise_exception=False).button_confirm() + self.assertTrue(self.po.exception_ids) + self.assertTrue(self.po.exceptions_summary) + # Test cannot ignore blocked exception + with self.assertRaises(UserError): + self.po.action_ignore_exceptions() + self.assertFalse(self.po.ignore_exception) + with self.assertRaises(ValidationError): + self.po.button_confirm() + self.po.with_context(raise_exception=False).button_confirm() + self.assertTrue(self.po.exception_ids) + self.assertTrue(self.po.exceptions_summary) diff --git a/base_exception/views/base_exception_view.xml b/base_exception/views/base_exception_view.xml new file mode 100644 index 00000000..2c0a614e --- /dev/null +++ b/base_exception/views/base_exception_view.xml @@ -0,0 +1,109 @@ + + + + exception.rule.tree + exception.rule + + + + + + + + + + + + exception.rule.form + exception.rule + +
    + + +
    +
    +
    +
    + + + + + + + + + + + + + + + + + + + + + +
    +

    Help with Python expressions

    +

    Various fields may use Python code or Python expressions. The following variables can be used:

    +
      +
    • self: Record on which the rule is evaluated.
    • +
    • To block the exception use: failed = True
    • +
    +

    As well as all the libraries provided in safe_eval.

    +
    +
    +
    +
    +
    +
    +
    +
    + + Exception Rules + exception.rule + tree,form + + {'active_test': False} + + +
    diff --git a/base_exception/wizard/__init__.py b/base_exception/wizard/__init__.py new file mode 100644 index 00000000..a31f679e --- /dev/null +++ b/base_exception/wizard/__init__.py @@ -0,0 +1 @@ +from . import base_exception_confirm diff --git a/base_exception/wizard/base_exception_confirm.py b/base_exception/wizard/base_exception_confirm.py new file mode 100644 index 00000000..60f4dc04 --- /dev/null +++ b/base_exception/wizard/base_exception_confirm.py @@ -0,0 +1,37 @@ +# Copyright 2011 Raphaël Valyi, Renato Lima, Guewen Baconnier, Sodexis +# Copyright 2017 Akretion (http://www.akretion.com) +# Mourad EL HADJ MIMOUNE +# Copyright 2020 Hibou Corp. +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). +from odoo import _, api, fields, models +from odoo.exceptions import ValidationError + + +class ExceptionRuleConfirm(models.AbstractModel): + _name = "exception.rule.confirm" + _description = "Exception Rule Confirm Wizard" + + related_model_id = fields.Many2one("base.exception") + exception_ids = fields.Many2many( + "exception.rule", string="Exceptions to resolve", readonly=True + ) + ignore = fields.Boolean("Ignore Exceptions") + + @api.model + def default_get(self, field_list): + res = super().default_get(field_list) + current_model = self.env.context.get("active_model") + model_except_obj = self.env[current_model] + active_ids = self.env.context.get("active_ids") + if len(active_ids) > 1: + raise ValidationError(_("Only 1 ID accepted, got %r.") % active_ids) + active_id = active_ids[0] + related_model_except = model_except_obj.browse(active_id) + exception_ids = related_model_except.exception_ids.ids + res.update({"exception_ids": [(6, 0, exception_ids)]}) + res.update({"related_model_id": active_id}) + return res + + def action_confirm(self): + self.ensure_one() + return {"type": "ir.actions.act_window_close"} diff --git a/base_exception/wizard/base_exception_confirm_view.xml b/base_exception/wizard/base_exception_confirm_view.xml new file mode 100644 index 00000000..1a9401c9 --- /dev/null +++ b/base_exception/wizard/base_exception_confirm_view.xml @@ -0,0 +1,43 @@ + + + + Exceptions Rules + exception.rule.confirm + +
    + + + + + + + + + + + + +
    +
    +
    +
    +
    + + Outstanding exceptions to manage + ir.actions.act_window + exception.rule.confirm + form + + new + +
    diff --git a/purchase_exception/README.rst b/purchase_exception/README.rst new file mode 100644 index 00000000..82d96e63 --- /dev/null +++ b/purchase_exception/README.rst @@ -0,0 +1,83 @@ +================== +Purchase Exception +================== + +.. + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! source digest: sha256:13e705a989553963c08fec98f1429871babc04da48d0b493ed8a6a89a407e10d + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png + :target: https://odoo-community.org/page/development-status + :alt: Beta +.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 +.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fpurchase--workflow-lightgray.png?logo=github + :target: https://github.com/OCA/purchase-workflow/tree/16.0/purchase_exception + :alt: OCA/purchase-workflow +.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png + :target: https://translation.odoo-community.org/projects/purchase-workflow-16-0/purchase-workflow-16-0-purchase_exception + :alt: Translate me on Weblate +.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png + :target: https://runboat.odoo-community.org/builds?repo=OCA/purchase-workflow&target_branch=16.0 + :alt: Try me on Runboat + +|badge1| |badge2| |badge3| |badge4| |badge5| + +This module allows you attach several customizable exceptions to your +purchase order in a way that you can filter orders by exceptions type and fix them. + +This is especially useful in an scenario for mass purchases order import, because it's likely some orders have +errors when you import them (like product not found in Odoo, wrong line +format etc.) + +**Table of contents** + +.. contents:: + :local: + +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 to smash it by providing a detailed and welcomed +`feedback `_. + +Do not contact contributors directly about support or help with technical issues. + +Credits +======= + +Authors +~~~~~~~ + +* Akretion + +Contributors +~~~~~~~~~~~~ + +* Mourad EL HADJ MIMOUNE +* Sudhir Arya +* Kitti U. (migration to v14) + +Maintainers +~~~~~~~~~~~ + +This module is maintained by the OCA. + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +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. + +This module is part of the `OCA/purchase-workflow `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/purchase_exception/__init__.py b/purchase_exception/__init__.py new file mode 100644 index 00000000..b046ff82 --- /dev/null +++ b/purchase_exception/__init__.py @@ -0,0 +1 @@ +from . import models, wizard diff --git a/purchase_exception/__manifest__.py b/purchase_exception/__manifest__.py new file mode 100644 index 00000000..c9ae93bf --- /dev/null +++ b/purchase_exception/__manifest__.py @@ -0,0 +1,21 @@ +# Copyright 2017 Akretion (http://www.akretion.com) +# Mourad EL HADJ MIMOUNE +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). + +{ + "name": "Purchase Exception", + "summary": "Custom exceptions on purchase order", + "version": "16.0.1.0.0", + "category": "Generic Modules/Purchase", + "author": "Akretion, Odoo Community Association (OCA)", + "website": "https://github.com/OCA/purchase-workflow", + "depends": ["purchase", "base_exception"], + "license": "AGPL-3", + "data": [ + "security/ir.model.access.csv", + "data/purchase_exception_data.xml", + "wizard/purchase_exception_confirm_view.xml", + "views/purchase_view.xml", + ], + "installable": True, +} diff --git a/purchase_exception/data/purchase_exception_data.xml b/purchase_exception/data/purchase_exception_data.xml new file mode 100644 index 00000000..631fb7b0 --- /dev/null +++ b/purchase_exception/data/purchase_exception_data.xml @@ -0,0 +1,34 @@ + + + + + Purchase: Test Draft Orders Exception + + code + model.test_all_draft_orders() + + 20 + minutes + -1 + + + + + No email on vendor + No Email for Vendor + 50 + purchase.order + if not self.partner_id.email: + failed=True + + + + Quantity not positive + Purchase line quantity must be positive + 50 + purchase.order.line + if self.product_qty < 0: + failed=True + + + diff --git a/purchase_exception/i18n/es.po b/purchase_exception/i18n/es.po new file mode 100644 index 00000000..cb6062e6 --- /dev/null +++ b/purchase_exception/i18n/es.po @@ -0,0 +1,181 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * purchase_exception +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-02-21 14:26+0000\n" +"PO-Revision-Date: 2023-07-20 18:09+0000\n" +"Last-Translator: Ivorra78 \n" +"Language-Team: \n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.17\n" + +#. module: purchase_exception +#: model_terms:ir.ui.view,arch_db:purchase_exception.view_order_form +msgid "There are exceptions blocking this Purchase Order:" +msgstr "Hay excepciones que bloquean este Pedido:" + +#. module: purchase_exception +#: model:ir.model.fields,field_description:purchase_exception.field_exception_rule__model +msgid "Apply on" +msgstr "Aplicar en" + +#. module: purchase_exception +#: model_terms:ir.ui.view,arch_db:purchase_exception.view_purchase_order_filter +msgid "Blocked in Draft" +msgstr "Bloqueado en borrador" + +#. module: purchase_exception +#: model_terms:ir.ui.view,arch_db:purchase_exception.view_order_form +msgid "" +"Click here to be able to confirm this Agreement regardless of the exceptions." +msgstr "" +"Haga clic aquí para poder confirmar este Acuerdo independientemente de las " +"excepciones." + +#. module: purchase_exception +#: model:ir.model.fields,field_description:purchase_exception.field_purchase_exception_confirm__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: purchase_exception +#: model:ir.model.fields,field_description:purchase_exception.field_purchase_exception_confirm__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: purchase_exception +#: model:ir.model.fields,field_description:purchase_exception.field_purchase_exception_confirm__display_name +msgid "Display Name" +msgstr "Nombre" + +#. module: purchase_exception +#: model:ir.model,name:purchase_exception.model_exception_rule +msgid "Exception Rule" +msgstr "Regla de excepción" + +#. module: purchase_exception +#: model:ir.model.fields,field_description:purchase_exception.field_purchase_order__exception_ids +msgid "Exceptions" +msgstr "Excepciones" + +#. module: purchase_exception +#: model:ir.model.fields,field_description:purchase_exception.field_purchase_order__exceptions_summary +msgid "Exceptions Summary" +msgstr "Resumen de excepciones" + +#. module: purchase_exception +#: model:ir.model.fields,field_description:purchase_exception.field_purchase_exception_confirm__exception_ids +msgid "Exceptions to resolve" +msgstr "Excepciones a resolver" + +#. module: purchase_exception +#: model:ir.model.fields,field_description:purchase_exception.field_purchase_exception_confirm__id +msgid "ID" +msgstr "ID (identificación)" + +#. module: purchase_exception +#: model:ir.model.fields,field_description:purchase_exception.field_purchase_exception_confirm__ignore +#: model:ir.model.fields,field_description:purchase_exception.field_purchase_order__ignore_exception +#: model:ir.model.fields,field_description:purchase_exception.field_purchase_order_line__ignore_exception +#: model_terms:ir.ui.view,arch_db:purchase_exception.view_order_form +msgid "Ignore Exceptions" +msgstr "Ignorar excepciones" + +#. module: purchase_exception +#: model:ir.model.fields,field_description:purchase_exception.field_purchase_exception_confirm____last_update +msgid "Last Modified on" +msgstr "Última modificación el" + +#. module: purchase_exception +#: model:ir.model.fields,field_description:purchase_exception.field_purchase_exception_confirm__write_uid +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: purchase_exception +#: model:ir.model.fields,field_description:purchase_exception.field_purchase_exception_confirm__write_date +msgid "Last Updated on" +msgstr "Última actualización el" + +#. module: purchase_exception +#: model:ir.model.fields,field_description:purchase_exception.field_purchase_order__main_exception_id +msgid "Main Exception" +msgstr "Excepción principal" + +#. module: purchase_exception +#: model:exception.rule,description:purchase_exception.po_excep_no_email +msgid "No Email for Vendor" +msgstr "no hay correo electrónico para el vendedor" + +#. module: purchase_exception +#: model:exception.rule,name:purchase_exception.po_excep_no_email +msgid "No email on vendor" +msgstr "No hay correo electrónico sobre el vendedor" + +#. module: purchase_exception +#: model:ir.actions.act_window,name:purchase_exception.action_purchase_exception_confirm +msgid "Outstanding exceptions to manage" +msgstr "Excepciones pendientes para administrar" + +#. module: purchase_exception +#: model:ir.model.fields,field_description:purchase_exception.field_purchase_exception_confirm__related_model_id +msgid "Purchase" +msgstr "Compra" + +#. module: purchase_exception +#: model:ir.actions.act_window,name:purchase_exception.action_purchase_test_tree +#: model:ir.ui.menu,name:purchase_exception.menu_purchase_test +msgid "Purchase Exception Rules" +msgstr "Reglas de excepción de compra" + +#. module: purchase_exception +#: model:ir.model,name:purchase_exception.model_purchase_order +msgid "Purchase Order" +msgstr "Pedido de compra" + +#. module: purchase_exception +#: model:ir.model,name:purchase_exception.model_purchase_order_line +msgid "Purchase Order Line" +msgstr "Línea de pedido de compra" + +#. module: purchase_exception +#: model:ir.model,name:purchase_exception.model_purchase_exception_confirm +msgid "Purchase exception wizard" +msgstr "Asistente para excepciones de compra" + +#. module: purchase_exception +#: model:exception.rule,description:purchase_exception.pol_excep_qty_check +msgid "Purchase line quantity must be positive" +msgstr "La cantidad de la línea de compra debe ser positiva" + +#. module: purchase_exception +#: model:ir.model.fields.selection,name:purchase_exception.selection__exception_rule__model__purchase_order +msgid "Purchase order" +msgstr "Pedido de compra" + +#. module: purchase_exception +#: model:ir.model.fields.selection,name:purchase_exception.selection__exception_rule__model__purchase_order_line +msgid "Purchase order line" +msgstr "Línea de pedido de compra" + +#. module: purchase_exception +#: model:ir.actions.server,name:purchase_exception.ir_cron_test_po_order_except_ir_actions_server +#: model:ir.cron,cron_name:purchase_exception.ir_cron_test_po_order_except +msgid "Purchase: Test Draft Orders Exception" +msgstr "Compra: Excepción de borradores de órdenes de prueba" + +#. module: purchase_exception +#: model:ir.model.fields,field_description:purchase_exception.field_exception_rule__purchase_ids +msgid "Purchases" +msgstr "Compras" + +#. module: purchase_exception +#: model:exception.rule,name:purchase_exception.pol_excep_qty_check +msgid "Quantity not positive" +msgstr "Cantidad no positiva" diff --git a/purchase_exception/i18n/fr.po b/purchase_exception/i18n/fr.po new file mode 100644 index 00000000..524e2b7c --- /dev/null +++ b/purchase_exception/i18n/fr.po @@ -0,0 +1,204 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * purchase_exception +# +# Translators: +# Quentin THEURET , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 11.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-02-23 17:50+0000\n" +"PO-Revision-Date: 2018-02-23 17:50+0000\n" +"Last-Translator: Quentin THEURET , 2018\n" +"Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: purchase_exception +#: model_terms:ir.ui.view,arch_db:purchase_exception.view_order_form +msgid "There are exceptions blocking this Purchase Order:" +msgstr "" + +#. module: purchase_exception +#: model:ir.model.fields,field_description:purchase_exception.field_exception_rule__model +msgid "Apply on" +msgstr "" + +#. module: purchase_exception +#: model_terms:ir.ui.view,arch_db:purchase_exception.view_purchase_order_filter +#, fuzzy +msgid "Blocked in Draft" +msgstr "Bloquée en brouillon" + +#. module: purchase_exception +#: model_terms:ir.ui.view,arch_db:purchase_exception.view_order_form +msgid "" +"Click here to be able to confirm this Agreement regardless of the exceptions." +msgstr "" + +#. module: purchase_exception +#: model:ir.model.fields,field_description:purchase_exception.field_purchase_exception_confirm__create_uid +msgid "Created by" +msgstr "Créé par" + +#. module: purchase_exception +#: model:ir.model.fields,field_description:purchase_exception.field_purchase_exception_confirm__create_date +msgid "Created on" +msgstr "Créé le" + +#. module: purchase_exception +#: model:ir.model.fields,field_description:purchase_exception.field_purchase_exception_confirm__display_name +msgid "Display Name" +msgstr "Nom affiché" + +#. module: purchase_exception +#: model:ir.model,name:purchase_exception.model_exception_rule +#, fuzzy +msgid "Exception Rule" +msgstr "Règles d'exception" + +#. module: purchase_exception +#: model:ir.model.fields,field_description:purchase_exception.field_purchase_order__exception_ids +msgid "Exceptions" +msgstr "Exceptions" + +#. module: purchase_exception +#: model:ir.model.fields,field_description:purchase_exception.field_purchase_order__exceptions_summary +msgid "Exceptions Summary" +msgstr "" + +#. module: purchase_exception +#: model:ir.model.fields,field_description:purchase_exception.field_purchase_exception_confirm__exception_ids +#, fuzzy +msgid "Exceptions to resolve" +msgstr "Règles d'exception" + +#. module: purchase_exception +#: model:ir.model.fields,field_description:purchase_exception.field_purchase_exception_confirm__id +msgid "ID" +msgstr "ID" + +#. module: purchase_exception +#: model:ir.model.fields,field_description:purchase_exception.field_purchase_exception_confirm__ignore +#: model:ir.model.fields,field_description:purchase_exception.field_purchase_order__ignore_exception +#: model:ir.model.fields,field_description:purchase_exception.field_purchase_order_line__ignore_exception +#: model_terms:ir.ui.view,arch_db:purchase_exception.view_order_form +#, fuzzy +msgid "Ignore Exceptions" +msgstr "Exceptions" + +#. module: purchase_exception +#: model:ir.model.fields,field_description:purchase_exception.field_purchase_exception_confirm____last_update +msgid "Last Modified on" +msgstr "Dernière modification le" + +#. module: purchase_exception +#: model:ir.model.fields,field_description:purchase_exception.field_purchase_exception_confirm__write_uid +msgid "Last Updated by" +msgstr "Dernière mise à jour par" + +#. module: purchase_exception +#: model:ir.model.fields,field_description:purchase_exception.field_purchase_exception_confirm__write_date +msgid "Last Updated on" +msgstr "Dernière mise à jour le" + +#. module: purchase_exception +#: model:ir.model.fields,field_description:purchase_exception.field_purchase_order__main_exception_id +msgid "Main Exception" +msgstr "" + +#. module: purchase_exception +#: model:exception.rule,description:purchase_exception.po_excep_no_email +msgid "No Email for Vendor" +msgstr "Pas de courriel pour le fournisseur" + +#. module: purchase_exception +#: model:exception.rule,name:purchase_exception.po_excep_no_email +msgid "No email on vendor" +msgstr "Pas de courriel pour le fournisseur" + +#. module: purchase_exception +#: model:ir.actions.act_window,name:purchase_exception.action_purchase_exception_confirm +msgid "Outstanding exceptions to manage" +msgstr "Exceptions non résolue à traiter" + +#. module: purchase_exception +#: model:ir.model.fields,field_description:purchase_exception.field_purchase_exception_confirm__related_model_id +msgid "Purchase" +msgstr "Achat" + +#. module: purchase_exception +#: model:ir.actions.act_window,name:purchase_exception.action_purchase_test_tree +#: model:ir.ui.menu,name:purchase_exception.menu_purchase_test +msgid "Purchase Exception Rules" +msgstr "Règles d'exception des achats" + +#. module: purchase_exception +#: model:ir.model,name:purchase_exception.model_purchase_order +msgid "Purchase Order" +msgstr "Commande" + +#. module: purchase_exception +#: model:ir.model,name:purchase_exception.model_purchase_order_line +#, fuzzy +msgid "Purchase Order Line" +msgstr "Commande" + +#. module: purchase_exception +#: model:ir.model,name:purchase_exception.model_purchase_exception_confirm +msgid "Purchase exception wizard" +msgstr "" + +#. module: purchase_exception +#: model:exception.rule,description:purchase_exception.pol_excep_qty_check +msgid "Purchase line quantity must be positive" +msgstr "La quantité sur la ligne doit être positive" + +#. module: purchase_exception +#: model:ir.model.fields.selection,name:purchase_exception.selection__exception_rule__model__purchase_order +#, fuzzy +msgid "Purchase order" +msgstr "Commande" + +#. module: purchase_exception +#: model:ir.model.fields.selection,name:purchase_exception.selection__exception_rule__model__purchase_order_line +#, fuzzy +msgid "Purchase order line" +msgstr "Commande" + +#. module: purchase_exception +#: model:ir.actions.server,name:purchase_exception.ir_cron_test_po_order_except_ir_actions_server +#: model:ir.cron,cron_name:purchase_exception.ir_cron_test_po_order_except +msgid "Purchase: Test Draft Orders Exception" +msgstr "Achat : Test des exceptions des commandes en brouillon" + +#. module: purchase_exception +#: model:ir.model.fields,field_description:purchase_exception.field_exception_rule__purchase_ids +#, fuzzy +msgid "Purchases" +msgstr "Achat" + +#. module: purchase_exception +#: model:exception.rule,name:purchase_exception.pol_excep_qty_check +msgid "Quantity not positive" +msgstr "" + +#~ msgid "" +#~ "You have an outstanding\n" +#~ " exception to manage:" +#~ msgstr "" +#~ "Vous avez une exception\n" +#~ " non résolue à traiter :" + +#~ msgid "Quantity not negative" +#~ msgstr "Quantité non négative" + +#~ msgid "purchase.exception.confirm" +#~ msgstr "purchase.exception.confirm" + +#~ msgid "Rule Group" +#~ msgstr "Groupe de règle" diff --git a/purchase_exception/i18n/purchase_exception.pot b/purchase_exception/i18n/purchase_exception.pot new file mode 100644 index 00000000..009219f6 --- /dev/null +++ b/purchase_exception/i18n/purchase_exception.pot @@ -0,0 +1,176 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * purchase_exception +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: purchase_exception +#: model_terms:ir.ui.view,arch_db:purchase_exception.view_order_form +msgid "There are exceptions blocking this Purchase Order:" +msgstr "" + +#. module: purchase_exception +#: model:ir.model.fields,field_description:purchase_exception.field_exception_rule__model +msgid "Apply on" +msgstr "" + +#. module: purchase_exception +#: model_terms:ir.ui.view,arch_db:purchase_exception.view_purchase_order_filter +msgid "Blocked in Draft" +msgstr "" + +#. module: purchase_exception +#: model_terms:ir.ui.view,arch_db:purchase_exception.view_order_form +msgid "" +"Click here to be able to confirm this Agreement regardless of the " +"exceptions." +msgstr "" + +#. module: purchase_exception +#: model:ir.model.fields,field_description:purchase_exception.field_purchase_exception_confirm__create_uid +msgid "Created by" +msgstr "" + +#. module: purchase_exception +#: model:ir.model.fields,field_description:purchase_exception.field_purchase_exception_confirm__create_date +msgid "Created on" +msgstr "" + +#. module: purchase_exception +#: model:ir.model.fields,field_description:purchase_exception.field_purchase_exception_confirm__display_name +msgid "Display Name" +msgstr "" + +#. module: purchase_exception +#: model:ir.model,name:purchase_exception.model_exception_rule +msgid "Exception Rule" +msgstr "" + +#. module: purchase_exception +#: model:ir.model.fields,field_description:purchase_exception.field_purchase_order__exception_ids +msgid "Exceptions" +msgstr "" + +#. module: purchase_exception +#: model:ir.model.fields,field_description:purchase_exception.field_purchase_order__exceptions_summary +msgid "Exceptions Summary" +msgstr "" + +#. module: purchase_exception +#: model:ir.model.fields,field_description:purchase_exception.field_purchase_exception_confirm__exception_ids +msgid "Exceptions to resolve" +msgstr "" + +#. module: purchase_exception +#: model:ir.model.fields,field_description:purchase_exception.field_purchase_exception_confirm__id +msgid "ID" +msgstr "" + +#. module: purchase_exception +#: model:ir.model.fields,field_description:purchase_exception.field_purchase_exception_confirm__ignore +#: model:ir.model.fields,field_description:purchase_exception.field_purchase_order__ignore_exception +#: model:ir.model.fields,field_description:purchase_exception.field_purchase_order_line__ignore_exception +#: model_terms:ir.ui.view,arch_db:purchase_exception.view_order_form +msgid "Ignore Exceptions" +msgstr "" + +#. module: purchase_exception +#: model:ir.model.fields,field_description:purchase_exception.field_purchase_exception_confirm____last_update +msgid "Last Modified on" +msgstr "" + +#. module: purchase_exception +#: model:ir.model.fields,field_description:purchase_exception.field_purchase_exception_confirm__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: purchase_exception +#: model:ir.model.fields,field_description:purchase_exception.field_purchase_exception_confirm__write_date +msgid "Last Updated on" +msgstr "" + +#. module: purchase_exception +#: model:ir.model.fields,field_description:purchase_exception.field_purchase_order__main_exception_id +msgid "Main Exception" +msgstr "" + +#. module: purchase_exception +#: model:exception.rule,description:purchase_exception.po_excep_no_email +msgid "No Email for Vendor" +msgstr "" + +#. module: purchase_exception +#: model:exception.rule,name:purchase_exception.po_excep_no_email +msgid "No email on vendor" +msgstr "" + +#. module: purchase_exception +#: model:ir.actions.act_window,name:purchase_exception.action_purchase_exception_confirm +msgid "Outstanding exceptions to manage" +msgstr "" + +#. module: purchase_exception +#: model:ir.model.fields,field_description:purchase_exception.field_purchase_exception_confirm__related_model_id +msgid "Purchase" +msgstr "" + +#. module: purchase_exception +#: model:ir.actions.act_window,name:purchase_exception.action_purchase_test_tree +#: model:ir.ui.menu,name:purchase_exception.menu_purchase_test +msgid "Purchase Exception Rules" +msgstr "" + +#. module: purchase_exception +#: model:ir.model,name:purchase_exception.model_purchase_order +msgid "Purchase Order" +msgstr "" + +#. module: purchase_exception +#: model:ir.model,name:purchase_exception.model_purchase_order_line +msgid "Purchase Order Line" +msgstr "" + +#. module: purchase_exception +#: model:ir.model,name:purchase_exception.model_purchase_exception_confirm +msgid "Purchase exception wizard" +msgstr "" + +#. module: purchase_exception +#: model:exception.rule,description:purchase_exception.pol_excep_qty_check +msgid "Purchase line quantity must be positive" +msgstr "" + +#. module: purchase_exception +#: model:ir.model.fields.selection,name:purchase_exception.selection__exception_rule__model__purchase_order +msgid "Purchase order" +msgstr "" + +#. module: purchase_exception +#: model:ir.model.fields.selection,name:purchase_exception.selection__exception_rule__model__purchase_order_line +msgid "Purchase order line" +msgstr "" + +#. module: purchase_exception +#: model:ir.actions.server,name:purchase_exception.ir_cron_test_po_order_except_ir_actions_server +#: model:ir.cron,cron_name:purchase_exception.ir_cron_test_po_order_except +msgid "Purchase: Test Draft Orders Exception" +msgstr "" + +#. module: purchase_exception +#: model:ir.model.fields,field_description:purchase_exception.field_exception_rule__purchase_ids +msgid "Purchases" +msgstr "" + +#. module: purchase_exception +#: model:exception.rule,name:purchase_exception.pol_excep_qty_check +msgid "Quantity not positive" +msgstr "" diff --git a/purchase_exception/i18n/zh_CN.po b/purchase_exception/i18n/zh_CN.po new file mode 100644 index 00000000..65763140 --- /dev/null +++ b/purchase_exception/i18n/zh_CN.po @@ -0,0 +1,191 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * purchase_exception +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2019-09-02 14:40+0000\n" +"Last-Translator: 黎伟杰 <674416404@qq.com>\n" +"Language-Team: none\n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 3.8\n" + +#. module: purchase_exception +#: model_terms:ir.ui.view,arch_db:purchase_exception.view_order_form +msgid "There are exceptions blocking this Purchase Order:" +msgstr "" + +#. module: purchase_exception +#: model:ir.model.fields,field_description:purchase_exception.field_exception_rule__model +msgid "Apply on" +msgstr "应用于" + +#. module: purchase_exception +#: model_terms:ir.ui.view,arch_db:purchase_exception.view_purchase_order_filter +msgid "Blocked in Draft" +msgstr "在草稿中阻止" + +#. module: purchase_exception +#: model_terms:ir.ui.view,arch_db:purchase_exception.view_order_form +msgid "" +"Click here to be able to confirm this Agreement regardless of the exceptions." +msgstr "" + +#. module: purchase_exception +#: model:ir.model.fields,field_description:purchase_exception.field_purchase_exception_confirm__create_uid +msgid "Created by" +msgstr "创建者" + +#. module: purchase_exception +#: model:ir.model.fields,field_description:purchase_exception.field_purchase_exception_confirm__create_date +msgid "Created on" +msgstr "创建时间" + +#. module: purchase_exception +#: model:ir.model.fields,field_description:purchase_exception.field_purchase_exception_confirm__display_name +msgid "Display Name" +msgstr "显示名称" + +#. module: purchase_exception +#: model:ir.model,name:purchase_exception.model_exception_rule +msgid "Exception Rule" +msgstr "异常规则" + +#. module: purchase_exception +#: model:ir.model.fields,field_description:purchase_exception.field_purchase_order__exception_ids +msgid "Exceptions" +msgstr "异常" + +#. module: purchase_exception +#: model:ir.model.fields,field_description:purchase_exception.field_purchase_order__exceptions_summary +msgid "Exceptions Summary" +msgstr "" + +#. module: purchase_exception +#: model:ir.model.fields,field_description:purchase_exception.field_purchase_exception_confirm__exception_ids +msgid "Exceptions to resolve" +msgstr "解决的异常情况" + +#. module: purchase_exception +#: model:ir.model.fields,field_description:purchase_exception.field_purchase_exception_confirm__id +msgid "ID" +msgstr "ID" + +#. module: purchase_exception +#: model:ir.model.fields,field_description:purchase_exception.field_purchase_exception_confirm__ignore +#: model:ir.model.fields,field_description:purchase_exception.field_purchase_order__ignore_exception +#: model:ir.model.fields,field_description:purchase_exception.field_purchase_order_line__ignore_exception +#: model_terms:ir.ui.view,arch_db:purchase_exception.view_order_form +msgid "Ignore Exceptions" +msgstr "忽略异常" + +#. module: purchase_exception +#: model:ir.model.fields,field_description:purchase_exception.field_purchase_exception_confirm____last_update +msgid "Last Modified on" +msgstr "最后修改时间" + +#. module: purchase_exception +#: model:ir.model.fields,field_description:purchase_exception.field_purchase_exception_confirm__write_uid +msgid "Last Updated by" +msgstr "最后更新者" + +#. module: purchase_exception +#: model:ir.model.fields,field_description:purchase_exception.field_purchase_exception_confirm__write_date +msgid "Last Updated on" +msgstr "最后更新时间" + +#. module: purchase_exception +#: model:ir.model.fields,field_description:purchase_exception.field_purchase_order__main_exception_id +msgid "Main Exception" +msgstr "" + +#. module: purchase_exception +#: model:exception.rule,description:purchase_exception.po_excep_no_email +msgid "No Email for Vendor" +msgstr "供应商没有Email" + +#. module: purchase_exception +#: model:exception.rule,name:purchase_exception.po_excep_no_email +msgid "No email on vendor" +msgstr "供应商没有Email" + +#. module: purchase_exception +#: model:ir.actions.act_window,name:purchase_exception.action_purchase_exception_confirm +msgid "Outstanding exceptions to manage" +msgstr "管理异常的情况" + +#. module: purchase_exception +#: model:ir.model.fields,field_description:purchase_exception.field_purchase_exception_confirm__related_model_id +msgid "Purchase" +msgstr "采购" + +#. module: purchase_exception +#: model:ir.actions.act_window,name:purchase_exception.action_purchase_test_tree +#: model:ir.ui.menu,name:purchase_exception.menu_purchase_test +msgid "Purchase Exception Rules" +msgstr "采购异常规则" + +#. module: purchase_exception +#: model:ir.model,name:purchase_exception.model_purchase_order +msgid "Purchase Order" +msgstr "采购订单" + +#. module: purchase_exception +#: model:ir.model,name:purchase_exception.model_purchase_order_line +msgid "Purchase Order Line" +msgstr "采购订单行" + +#. module: purchase_exception +#: model:ir.model,name:purchase_exception.model_purchase_exception_confirm +msgid "Purchase exception wizard" +msgstr "" + +#. module: purchase_exception +#: model:exception.rule,description:purchase_exception.pol_excep_qty_check +msgid "Purchase line quantity must be positive" +msgstr "采购行数量必须为正数" + +#. module: purchase_exception +#: model:ir.model.fields.selection,name:purchase_exception.selection__exception_rule__model__purchase_order +msgid "Purchase order" +msgstr "采购订单" + +#. module: purchase_exception +#: model:ir.model.fields.selection,name:purchase_exception.selection__exception_rule__model__purchase_order_line +msgid "Purchase order line" +msgstr "采购订单行" + +#. module: purchase_exception +#: model:ir.actions.server,name:purchase_exception.ir_cron_test_po_order_except_ir_actions_server +#: model:ir.cron,cron_name:purchase_exception.ir_cron_test_po_order_except +msgid "Purchase: Test Draft Orders Exception" +msgstr "购买:测试草稿订单异常" + +#. module: purchase_exception +#: model:ir.model.fields,field_description:purchase_exception.field_exception_rule__purchase_ids +msgid "Purchases" +msgstr "采购" + +#. module: purchase_exception +#: model:exception.rule,name:purchase_exception.pol_excep_qty_check +msgid "Quantity not positive" +msgstr "" + +#~ msgid "" +#~ "You have an outstanding\n" +#~ " exception to manage:" +#~ msgstr "" +#~ "你有一个突出的\n" +#~ " 异常需要管理:" + +#~ msgid "Quantity not negative" +#~ msgstr "数量不是负数" + +#~ msgid "purchase.exception.confirm" +#~ msgstr "purchase.exception.confirm" diff --git a/purchase_exception/models/__init__.py b/purchase_exception/models/__init__.py new file mode 100644 index 00000000..fbaca613 --- /dev/null +++ b/purchase_exception/models/__init__.py @@ -0,0 +1,3 @@ +from . import exception_rule +from . import purchase +from . import purchase_line diff --git a/purchase_exception/models/exception_rule.py b/purchase_exception/models/exception_rule.py new file mode 100644 index 00000000..45f8d68f --- /dev/null +++ b/purchase_exception/models/exception_rule.py @@ -0,0 +1,19 @@ +# Copyright 2017 Akretion (http://www.akretion.com) +# Copyright 2020 Camptocamp SA +# Mourad EL HADJ MIMOUNE +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). + +from odoo import fields, models + + +class ExceptionRule(models.Model): + _inherit = "exception.rule" + + purchase_ids = fields.Many2many(comodel_name="purchase.order", string="Purchases") + model = fields.Selection( + selection_add=[ + ("purchase.order", "Purchase order"), + ("purchase.order.line", "Purchase order line"), + ], + ondelete={"purchase.order": "cascade", "purchase.order.line": "cascade"}, + ) diff --git a/purchase_exception/models/purchase.py b/purchase_exception/models/purchase.py new file mode 100644 index 00000000..e376696c --- /dev/null +++ b/purchase_exception/models/purchase.py @@ -0,0 +1,70 @@ +# Copyright 2017 Akretion (http://www.akretion.com) +# Copyright 2020 Camptocamp SA +# Mourad EL HADJ MIMOUNE +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). + +from odoo import api, models + + +class PurchaseOrder(models.Model): + _inherit = ["purchase.order", "base.exception"] + _name = "purchase.order" + _order = "main_exception_id asc, date_order desc, name desc" + + @api.model + def test_all_draft_orders(self): + order_set = self.search([("state", "=", "draft")]) + order_set.detect_exceptions() + return True + + @api.model + def _reverse_field(self): + return "purchase_ids" + + def detect_exceptions(self): + all_exceptions = super().detect_exceptions() + lines = self.mapped("order_line") + all_exceptions += lines.detect_exceptions() + return all_exceptions + + def _fields_trigger_check_exception(self): + return ["ignore_exception", "order_line", "state"] + + def _check_purchase_check_exception(self, vals): + check_exceptions = any( + field in vals for field in self._fields_trigger_check_exception() + ) + if check_exceptions: + self.purchase_check_exception() + + def write(self, vals): + result = super().write(vals) + self._check_purchase_check_exception(vals) + return result + + def purchase_check_exception(self): + orders = self.filtered(lambda s: s.state == "purchase") + if orders: + orders._check_exception() + + def button_confirm(self): + if self.detect_exceptions() and not self.ignore_exception: + return self._popup_exceptions() + return super().button_confirm() + + def button_draft(self): + res = super().button_draft() + for order in self: + order.exception_ids = False + order.main_exception_id = False + order.ignore_exception = False + return res + + def _purchase_get_lines(self): + self.ensure_one() + return self.order_line + + @api.model + def _get_popup_action(self): + action = self.env.ref("purchase_exception.action_purchase_exception_confirm") + return action diff --git a/purchase_exception/models/purchase_line.py b/purchase_exception/models/purchase_line.py new file mode 100644 index 00000000..cbd50a20 --- /dev/null +++ b/purchase_exception/models/purchase_line.py @@ -0,0 +1,26 @@ +# Copyright 2017 Akretion (http://www.akretion.com) +# Copyright 2020 Camptocamp SA +# Mourad EL HADJ MIMOUNE +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). + +from odoo import api, fields, models + + +class PurchaseOrderLine(models.Model): + _inherit = ["purchase.order.line", "base.exception.method"] + _name = "purchase.order.line" + + ignore_exception = fields.Boolean( + related="order_id.ignore_exception", store=True, string="Ignore Exceptions" + ) + + def _get_main_records(self): + return self.mapped("order_id") + + @api.model + def _reverse_field(self): + return "purchase_ids" + + def _detect_exceptions(self, rule): + records = super()._detect_exceptions(rule) + return records.mapped("order_id") diff --git a/purchase_exception/readme/CONTRIBUTORS.rst b/purchase_exception/readme/CONTRIBUTORS.rst new file mode 100644 index 00000000..7a447a78 --- /dev/null +++ b/purchase_exception/readme/CONTRIBUTORS.rst @@ -0,0 +1,3 @@ +* Mourad EL HADJ MIMOUNE +* Sudhir Arya +* Kitti U. (migration to v14) diff --git a/purchase_exception/readme/DESCRIPTION.rst b/purchase_exception/readme/DESCRIPTION.rst new file mode 100644 index 00000000..efbd2ddf --- /dev/null +++ b/purchase_exception/readme/DESCRIPTION.rst @@ -0,0 +1,6 @@ +This module allows you attach several customizable exceptions to your +purchase order in a way that you can filter orders by exceptions type and fix them. + +This is especially useful in an scenario for mass purchases order import, because it's likely some orders have +errors when you import them (like product not found in Odoo, wrong line +format etc.) diff --git a/purchase_exception/security/ir.model.access.csv b/purchase_exception/security/ir.model.access.csv new file mode 100644 index 00000000..4580d8c1 --- /dev/null +++ b/purchase_exception/security/ir.model.access.csv @@ -0,0 +1,2 @@ +id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink +access_purchase_exception_confirm,access_purchase_exception_confirm,model_purchase_exception_confirm,base.group_user,1,1,1,1 diff --git a/purchase_exception/static/description/icon.png b/purchase_exception/static/description/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..3a0328b516c4980e8e44cdb63fd945757ddd132d GIT binary patch literal 9455 zcmW++2RxMjAAjx~&dlBk9S+%}OXg)AGE&Cb*&}d0jUxM@u(PQx^-s)697TX`ehR4?GS^qbkof1cslKgkU)h65qZ9Oc=ml_0temigYLJfnz{IDzUf>bGs4N!v3=Z3jMq&A#7%rM5eQ#dc?k~! zVpnB`o+K7|Al`Q_U;eD$B zfJtP*jH`siUq~{KE)`jP2|#TUEFGRryE2`i0**z#*^6~AI|YzIWy$Cu#CSLW3q=GA z6`?GZymC;dCPk~rBS%eCb`5OLr;RUZ;D`}um=H)BfVIq%7VhiMr)_#G0N#zrNH|__ zc+blN2UAB0=617@>_u;MPHN;P;N#YoE=)R#i$k_`UAA>WWCcEVMh~L_ zj--gtp&|K1#58Yz*AHCTMziU1Jzt_jG0I@qAOHsk$2}yTmVkBp_eHuY$A9)>P6o~I z%aQ?!(GqeQ-Y+b0I(m9pwgi(IIZZzsbMv+9w{PFtd_<_(LA~0H(xz{=FhLB@(1&qHA5EJw1>>=%q2f&^X>IQ{!GJ4e9U z&KlB)z(84HmNgm2hg2C0>WM{E(DdPr+EeU_N@57;PC2&DmGFW_9kP&%?X4}+xWi)( z;)z%wI5>D4a*5XwD)P--sPkoY(a~WBw;E~AW`Yue4kFa^LM3X`8x|}ZUeMnqr}>kH zG%WWW>3ml$Yez?i%)2pbKPI7?5o?hydokgQyZsNEr{a|mLdt;X2TX(#B1j35xPnPW z*bMSSOauW>o;*=kO8ojw91VX!qoOQb)zHJ!odWB}d+*K?#sY_jqPdg{Sm2HdYzdEx zOGVPhVRTGPtv0o}RfVP;Nd(|CB)I;*t&QO8h zFfekr30S!-LHmV_Su-W+rEwYXJ^;6&3|L$mMC8*bQptyOo9;>Qb9Q9`ySe3%V$A*9 zeKEe+b0{#KWGp$F+tga)0RtI)nhMa-K@JS}2krK~n8vJ=Ngm?R!9G<~RyuU0d?nz# z-5EK$o(!F?hmX*2Yt6+coY`6jGbb7tF#6nHA zuKk=GGJ;ZwON1iAfG$E#Y7MnZVmrY|j0eVI(DN_MNFJmyZ|;w4tf@=CCDZ#5N_0K= z$;R~bbk?}TpfDjfB&aiQ$VA}s?P}xPERJG{kxk5~R`iRS(SK5d+Xs9swCozZISbnS zk!)I0>t=A<-^z(cmSFz3=jZ23u13X><0b)P)^1T_))Kr`e!-pb#q&J*Q`p+B6la%C zuVl&0duN<;uOsB3%T9Fp8t{ED108<+W(nOZd?gDnfNBC3>M8WE61$So|P zVvqH0SNtDTcsUdzaMDpT=Ty0pDHHNL@Z0w$Y`XO z2M-_r1S+GaH%pz#Uy0*w$Vdl=X=rQXEzO}d6J^R6zjM1u&c9vYLvLp?W7w(?np9x1 zE_0JSAJCPB%i7p*Wvg)pn5T`8k3-uR?*NT|J`eS#_#54p>!p(mLDvmc-3o0mX*mp_ zN*AeS<>#^-{S%W<*mz^!X$w_2dHWpcJ6^j64qFBft-o}o_Vx80o0>}Du;>kLts;$8 zC`7q$QI(dKYG`Wa8#wl@V4jVWBRGQ@1dr-hstpQL)Tl+aqVpGpbSfN>5i&QMXfiZ> zaA?T1VGe?rpQ@;+pkrVdd{klI&jVS@I5_iz!=UMpTsa~mBga?1r}aRBm1WS;TT*s0f0lY=JBl66Upy)-k4J}lh=P^8(SXk~0xW=T9v*B|gzIhN z>qsO7dFd~mgxAy4V?&)=5ieYq?zi?ZEoj)&2o)RLy=@hbCRcfT5jigwtQGE{L*8<@Yd{zg;CsL5mvzfDY}P-wos_6PfprFVaeqNE%h zKZhLtcQld;ZD+>=nqN~>GvROfueSzJD&BE*}XfU|H&(FssBqY=hPCt`d zH?@s2>I(|;fcW&YM6#V#!kUIP8$Nkdh0A(bEVj``-AAyYgwY~jB zT|I7Bf@%;7aL7Wf4dZ%VqF$eiaC38OV6oy3Z#TER2G+fOCd9Iaoy6aLYbPTN{XRPz z;U!V|vBf%H!}52L2gH_+j;`bTcQRXB+y9onc^wLm5wi3-Be}U>k_u>2Eg$=k!(l@I zcCg+flakT2Nej3i0yn+g+}%NYb?ta;R?(g5SnwsQ49U8Wng8d|{B+lyRcEDvR3+`O{zfmrmvFrL6acVP%yG98X zo&+VBg@px@i)%o?dG(`T;n*$S5*rnyiR#=wW}}GsAcfyQpE|>a{=$Hjg=-*_K;UtD z#z-)AXwSRY?OPefw^iI+ z)AXz#PfEjlwTes|_{sB?4(O@fg0AJ^g8gP}ex9Ucf*@_^J(s_5jJV}c)s$`Myn|Kd z$6>}#q^n{4vN@+Os$m7KV+`}c%4)4pv@06af4-x5#wj!KKb%caK{A&Y#Rfs z-po?Dcb1({W=6FKIUirH&(yg=*6aLCekcKwyfK^JN5{wcA3nhO(o}SK#!CINhI`-I z1)6&n7O&ZmyFMuNwvEic#IiOAwNkR=u5it{B9n2sAJV5pNhar=j5`*N!Na;c7g!l$ z3aYBqUkqqTJ=Re-;)s!EOeij=7SQZ3Hq}ZRds%IM*PtM$wV z@;rlc*NRK7i3y5BETSKuumEN`Xu_8GP1Ri=OKQ$@I^ko8>H6)4rjiG5{VBM>B|%`&&s^)jS|-_95&yc=GqjNo{zFkw%%HHhS~e=s zD#sfS+-?*t|J!+ozP6KvtOl!R)@@-z24}`9{QaVLD^9VCSR2b`b!KC#o;Ki<+wXB6 zx3&O0LOWcg4&rv4QG0)4yb}7BFSEg~=IR5#ZRj8kg}dS7_V&^%#Do==#`u zpy6{ox?jWuR(;pg+f@mT>#HGWHAJRRDDDv~@(IDw&R>9643kK#HN`!1vBJHnC+RM&yIh8{gG2q zA%e*U3|N0XSRa~oX-3EAneep)@{h2vvd3Xvy$7og(sayr@95+e6~Xvi1tUqnIxoIH zVWo*OwYElb#uyW{Imam6f2rGbjR!Y3`#gPqkv57dB6K^wRGxc9B(t|aYDGS=m$&S!NmCtrMMaUg(c zc2qC=2Z`EEFMW-me5B)24AqF*bV5Dr-M5ig(l-WPS%CgaPzs6p_gnCIvTJ=Y<6!gT zVt@AfYCzjjsMEGi=rDQHo0yc;HqoRNnNFeWZgcm?f;cp(6CNylj36DoL(?TS7eU#+ z7&mfr#y))+CJOXQKUMZ7QIdS9@#-}7y2K1{8)cCt0~-X0O!O?Qx#E4Og+;A2SjalQ zs7r?qn0H044=sDN$SRG$arw~n=+T_DNdSrarmu)V6@|?1-ZB#hRn`uilTGPJ@fqEy zGt(f0B+^JDP&f=r{#Y_wi#AVDf-y!RIXU^0jXsFpf>=Ji*TeqSY!H~AMbJdCGLhC) zn7Rx+sXw6uYj;WRYrLd^5IZq@6JI1C^YkgnedZEYy<&4(z%Q$5yv#Boo{AH8n$a zhb4Y3PWdr269&?V%uI$xMcUrMzl=;w<_nm*qr=c3Rl@i5wWB;e-`t7D&c-mcQl7x! zZWB`UGcw=Y2=}~wzrfLx=uet<;m3~=8I~ZRuzvMQUQdr+yTV|ATf1Uuomr__nDf=X zZ3WYJtHp_ri(}SQAPjv+Y+0=fH4krOP@S&=zZ-t1jW1o@}z;xk8 z(Nz1co&El^HK^NrhVHa-_;&88vTU>_J33=%{if;BEY*J#1n59=07jrGQ#IP>@u#3A z;!q+E1Rj3ZJ+!4bq9F8PXJ@yMgZL;>&gYA0%_Kbi8?S=XGM~dnQZQ!yBSgcZhY96H zrWnU;k)qy`rX&&xlDyA%(a1Hhi5CWkmg(`Gb%m(HKi-7Z!LKGRP_B8@`7&hdDy5n= z`OIxqxiVfX@OX1p(mQu>0Ai*v_cTMiw4qRt3~NBvr9oBy0)r>w3p~V0SCm=An6@3n)>@z!|o-$HvDK z|3D2ZMJkLE5loMKl6R^ez@Zz%S$&mbeoqH5`Bb){Ei21q&VP)hWS2tjShfFtGE+$z zzCR$P#uktu+#!w)cX!lWN1XU%K-r=s{|j?)Akf@q#3b#{6cZCuJ~gCxuMXRmI$nGtnH+-h z+GEi!*X=AP<|fG`1>MBdTb?28JYc=fGvAi2I<$B(rs$;eoJCyR6_bc~p!XR@O-+sD z=eH`-ye})I5ic1eL~TDmtfJ|8`0VJ*Yr=hNCd)G1p2MMz4C3^Mj?7;!w|Ly%JqmuW zlIEW^Ft%z?*|fpXda>Jr^1noFZEwFgVV%|*XhH@acv8rdGxeEX{M$(vG{Zw+x(ei@ zmfXb22}8-?Fi`vo-YVrTH*C?a8%M=Hv9MqVH7H^J$KsD?>!SFZ;ZsvnHr_gn=7acz z#W?0eCdVhVMWN12VV^$>WlQ?f;P^{(&pYTops|btm6aj>_Uz+hqpGwB)vWp0Cf5y< zft8-je~nn?W11plq}N)4A{l8I7$!ks_x$PXW-2XaRFswX_BnF{R#6YIwMhAgd5F9X zGmwdadS6(a^fjHtXg8=l?Rc0Sm%hk6E9!5cLVloEy4eh(=FwgP`)~I^5~pBEWo+F6 zSf2ncyMurJN91#cJTy_u8Y}@%!bq1RkGC~-bV@SXRd4F{R-*V`bS+6;W5vZ(&+I<9$;-V|eNfLa5n-6% z2(}&uGRF;p92eS*sE*oR$@pexaqr*meB)VhmIg@h{uzkk$9~qh#cHhw#>O%)b@+(| z^IQgqzuj~Sk(J;swEM-3TrJAPCq9k^^^`q{IItKBRXYe}e0Tdr=Huf7da3$l4PdpwWDop%^}n;dD#K4s#DYA8SHZ z&1!riV4W4R7R#C))JH1~axJ)RYnM$$lIR%6fIVA@zV{XVyx}C+a-Dt8Y9M)^KU0+H zR4IUb2CJ{Hg>CuaXtD50jB(_Tcx=Z$^WYu2u5kubqmwp%drJ6 z?Fo40g!Qd<-l=TQxqHEOuPX0;^z7iX?Ke^a%XT<13TA^5`4Xcw6D@Ur&VT&CUe0d} z1GjOVF1^L@>O)l@?bD~$wzgf(nxX1OGD8fEV?TdJcZc2KoUe|oP1#=$$7ee|xbY)A zDZq+cuTpc(fFdj^=!;{k03C69lMQ(|>uhRfRu%+!k&YOi-3|1QKB z z?n?eq1XP>p-IM$Z^C;2L3itnbJZAip*Zo0aw2bs8@(s^~*8T9go!%dHcAz2lM;`yp zD=7&xjFV$S&5uDaiScyD?B-i1ze`+CoRtz`Wn+Zl&#s4&}MO{@N!ufrzjG$B79)Y2d3tBk&)TxUTw@QS0TEL_?njX|@vq?Uz(nBFK5Pq7*xj#u*R&i|?7+6# z+|r_n#SW&LXhtheZdah{ZVoqwyT{D>MC3nkFF#N)xLi{p7J1jXlmVeb;cP5?e(=f# zuT7fvjSbjS781v?7{)-X3*?>tq?)Yd)~|1{BDS(pqC zC}~H#WXlkUW*H5CDOo<)#x7%RY)A;ShGhI5s*#cRDA8YgqG(HeKDx+#(ZQ?386dv! zlXCO)w91~Vw4AmOcATuV653fa9R$fyK8ul%rG z-wfS zihugoZyr38Im?Zuh6@RcF~t1anQu7>#lPpb#}4cOA!EM11`%f*07RqOVkmX{p~KJ9 z^zP;K#|)$`^Rb{rnHGH{~>1(fawV0*Z#)}M`m8-?ZJV<+e}s9wE# z)l&az?w^5{)`S(%MRzxdNqrs1n*-=jS^_jqE*5XDrA0+VE`5^*p3CuM<&dZEeCjoz zR;uu_H9ZPZV|fQq`Cyw4nscrVwi!fE6ciMmX$!_hN7uF;jjKG)d2@aC4ropY)8etW=xJvni)8eHi`H$%#zn^WJ5NLc-rqk|u&&4Z6fD_m&JfSI1Bvb?b<*n&sfl0^t z=HnmRl`XrFvMKB%9}>PaA`m-fK6a0(8=qPkWS5bb4=v?XcWi&hRY?O5HdulRi4?fN zlsJ*N-0Qw+Yic@s0(2uy%F@ib;GjXt01Fmx5XbRo6+n|pP(&nodMoap^z{~q ziEeaUT@Mxe3vJSfI6?uLND(CNr=#^W<1b}jzW58bIfyWTDle$mmS(|x-0|2UlX+9k zQ^EX7Nw}?EzVoBfT(-LT|=9N@^hcn-_p&sqG z&*oVs2JSU+N4ZD`FhCAWaS;>|wH2G*Id|?pa#@>tyxX`+4HyIArWDvVrX)2WAOQff z0qyHu&-S@i^MS-+j--!pr4fPBj~_8({~e1bfcl0wI1kaoN>mJL6KUPQm5N7lB(ui1 zE-o%kq)&djzWJ}ob<-GfDlkB;F31j-VHKvQUGQ3sp`CwyGJk_i!y^sD0fqC@$9|jO zOqN!r!8-p==F@ZVP=U$qSpY(gQ0)59P1&t@y?5rvg<}E+GB}26NYPp4f2YFQrQtot5mn3wu_qprZ=>Ig-$ zbW26Ws~IgY>}^5w`vTB(G`PTZaDiGBo5o(tp)qli|NeV( z@H_=R8V39rt5J5YB2Ky?4eJJ#b`_iBe2ot~6%7mLt5t8Vwi^Jy7|jWXqa3amOIoRb zOr}WVFP--DsS`1WpN%~)t3R!arKF^Q$e12KEqU36AWwnCBICpH4XCsfnyrHr>$I$4 z!DpKX$OKLWarN7nv@!uIA+~RNO)l$$w}p(;b>mx8pwYvu;dD_unryX_NhT8*Tj>BTrTTL&!?O+%Rv;b?B??gSzdp?6Uug9{ zd@V08Z$BdI?fpoCS$)t4mg4rT8Q_I}h`0d-vYZ^|dOB*Q^S|xqTV*vIg?@fVFSmMpaw0qtTRbx} z({Pg?#{2`sc9)M5N$*N|4;^t$+QP?#mov zGVC@I*lBVrOU-%2y!7%)fAKjpEFsgQc4{amtiHb95KQEwvf<(3T<9-Zm$xIew#P22 zc2Ix|App^>v6(3L_MCU0d3W##AB0M~3D00EWoKZqsJYT(#@w$Y_H7G22M~ApVFTRHMI_3be)Lkn#0F*V8Pq zc}`Cjy$bE;FJ6H7p=0y#R>`}-m4(0F>%@P|?7fx{=R^uFdISRnZ2W_xQhD{YuR3t< z{6yxu=4~JkeA;|(J6_nv#>Nvs&FuLA&PW^he@t(UwFFE8)|a!R{`E`K`i^ZnyE4$k z;(749Ix|oi$c3QbEJ3b~D_kQsPz~fIUKym($a_7dJ?o+40*OLl^{=&oq$<#Q(yyrp z{J-FAniyAw9tPbe&IhQ|a`DqFTVQGQ&Gq3!C2==4x{6EJwiPZ8zub-iXoUtkJiG{} zPaR&}_fn8_z~(=;5lD-aPWD3z8PZS@AaUiomF!G8I}Mf>e~0g#BelA-5#`cj;O5>N Xviia!U7SGha1wx#SCgwmn*{w2TRX*I literal 0 HcmV?d00001 diff --git a/purchase_exception/static/description/index.html b/purchase_exception/static/description/index.html new file mode 100644 index 00000000..375e5917 --- /dev/null +++ b/purchase_exception/static/description/index.html @@ -0,0 +1,427 @@ + + + + + + +Purchase Exception + + + +
    +

    Purchase Exception

    + + +

    Beta License: AGPL-3 OCA/purchase-workflow Translate me on Weblate Try me on Runboat

    +

    This module allows you attach several customizable exceptions to your +purchase order in a way that you can filter orders by exceptions type and fix them.

    +

    This is especially useful in an scenario for mass purchases order import, because it’s likely some orders have +errors when you import them (like product not found in Odoo, wrong line +format etc.)

    +

    Table of contents

    + +
    +

    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 to smash it by providing a detailed and welcomed +feedback.

    +

    Do not contact contributors directly about support or help with technical issues.

    +
    +
    +

    Credits

    +
    +

    Authors

    +
      +
    • Akretion
    • +
    +
    +
    +

    Contributors

    + +
    +
    +

    Maintainers

    +

    This module is maintained by the OCA.

    +Odoo Community Association +

    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.

    +

    This module is part of the OCA/purchase-workflow project on GitHub.

    +

    You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

    +
    +
    +
    + + diff --git a/purchase_exception/tests/__init__.py b/purchase_exception/tests/__init__.py new file mode 100644 index 00000000..e7de2017 --- /dev/null +++ b/purchase_exception/tests/__init__.py @@ -0,0 +1 @@ +from . import test_purchase_exception diff --git a/purchase_exception/tests/test_purchase_exception.py b/purchase_exception/tests/test_purchase_exception.py new file mode 100644 index 00000000..545bb106 --- /dev/null +++ b/purchase_exception/tests/test_purchase_exception.py @@ -0,0 +1,148 @@ +# Copyright 2017 Akretion (http://www.akretion.com) +# Copyright 2020 Camptocamp SA +# Mourad EL HADJ MIMOUNE +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). +from datetime import datetime + +from odoo.tests.common import TransactionCase +from odoo.tools import DEFAULT_SERVER_DATETIME_FORMAT + + +class TestPurchaseException(TransactionCase): + @classmethod + def setUpClass(cls): + super().setUpClass() + # Useful models + cls.PurchaseOrder = cls.env["purchase.order"] + cls.PurchaseOrderLine = cls.env["purchase.order.line"] + cls.partner_id = cls.env.ref("base.res_partner_1") + cls.product_id_1 = cls.env.ref("product.product_product_6") + cls.product_id_2 = cls.env.ref("product.product_product_7") + cls.product_id_3 = cls.env.ref("product.product_product_7") + cls.date_planned = datetime.today().strftime(DEFAULT_SERVER_DATETIME_FORMAT) + cls.purchase_exception_confirm = cls.env["purchase.exception.confirm"] + cls.exception_noemail = cls.env.ref("purchase_exception.po_excep_no_email") + cls.exception_qtycheck = cls.env.ref("purchase_exception.pol_excep_qty_check") + cls.po_vals = { + "partner_id": cls.partner_id.id, + "order_line": [ + ( + 0, + 0, + { + "name": cls.product_id_1.name, + "product_id": cls.product_id_1.id, + "product_qty": 5.0, + "product_uom": cls.product_id_1.uom_po_id.id, + "price_unit": 500.0, + "date_planned": cls.date_planned, + }, + ), + ( + 0, + 0, + { + "name": cls.product_id_2.name, + "product_id": cls.product_id_2.id, + "product_qty": 5.0, + "product_uom": cls.product_id_2.uom_po_id.id, + "price_unit": 250.0, + "date_planned": cls.date_planned, + }, + ), + ], + } + cls.po_vals2 = { + "partner_id": cls.partner_id.id, + "order_line": [ + ( + 0, + 0, + { + "name": cls.product_id_3.name, + "product_id": cls.product_id_3.id, + "product_qty": -1.0, + "product_uom": cls.product_id_3.uom_po_id.id, + "price_unit": 20.0, + "date_planned": cls.date_planned, + }, + ), + ], + } + + def test_purchase_order_exception(self): + self.exception_noemail.active = True + self.exception_qtycheck.active = True + self.partner_id.email = False + self.po = self.PurchaseOrder.create(self.po_vals.copy()) + + # confirm quotation + self.po.button_confirm() + self.assertEqual(self.po.state, "draft") + # test all draft po + self.po2 = self.PurchaseOrder.create(self.po_vals.copy()) + + self.PurchaseOrder.test_all_draft_orders() + self.assertEqual(self.po2.state, "draft") + # Set ignore_exception flag (Done after ignore is selected at wizard) + self.po.ignore_exception = True + self.po.button_confirm() + self.assertEqual(self.po.state, "purchase") + + # Add a order line to test after PO is confirmed + field_onchange = self.PurchaseOrder._onchange_spec() + self.assertEqual(field_onchange.get("order_line"), "1") + self.po3New = self.PurchaseOrder.new(self.po_vals.copy()) + self.po3New.ignore_exception = True + self.po3New.state = "purchase" + self.po.write( + { + "order_line": [ + ( + 0, + 0, + { + "name": self.product_id_3.name, + "product_id": self.product_id_3.id, + "product_qty": 2, + "product_uom": self.product_id_3.uom_id.id, + "price_unit": 30, + "date_planned": self.date_planned, + }, + ) + ] + } + ) + + # Set ignore exception True (Done manually by user) + self.po.ignore_exception = True + self.po.button_cancel() + self.po.button_draft() + self.assertEqual(self.po.state, "draft") + self.assertTrue(not self.po.ignore_exception) + self.po.button_confirm() + self.assertTrue(self.po.state, "to approve") + + # Simulation the opening of the wizard purchase_exception_confirm and + # set ignore_exception to True + po_except_confirm = self.purchase_exception_confirm.with_context( + active_id=self.po.id, + active_ids=[self.po.id], + active_model=self.po._name, + ).create({"ignore": True}) + po_except_confirm.action_confirm() + + def test_exception_qtycheck(self): + # No allow ignoring exceptions if the "is_blocking" field is checked + self.exception_qtycheck.active = True + self.exception_qtycheck.is_blocking = True + self.po = self.PurchaseOrder.create(self.po_vals2.copy()) + po_except_confirm = self.purchase_exception_confirm.with_context( + **{ + "active_id": self.po.id, + "active_ids": [self.po.id], + "active_model": self.po._name, + } + ).create({"ignore": True}) + po_except_confirm.exception_ids = self.exception_qtycheck + po_except_confirm.action_confirm() diff --git a/purchase_exception/views/purchase_view.xml b/purchase_exception/views/purchase_view.xml new file mode 100644 index 00000000..a35691d2 --- /dev/null +++ b/purchase_exception/views/purchase_view.xml @@ -0,0 +1,85 @@ + + + + Purchase Exception Rules + exception.rule + tree,form + + [('model', 'in', ['purchase.order', 'purchase.order.line'])] + {'active_test': False, 'default_model' : 'purchase.order'} + + + + purchase_exception.view_order_form + purchase.order + + + + + + + + + + + + + + + purchase_exception.view_order_tree + purchase.order + + + + + + + + + purchase_exception.view_purchases_order_filter + purchase.order + + + + + + + + + diff --git a/purchase_exception/wizard/__init__.py b/purchase_exception/wizard/__init__.py new file mode 100644 index 00000000..3037c295 --- /dev/null +++ b/purchase_exception/wizard/__init__.py @@ -0,0 +1 @@ +from . import purchase_exception_confirm diff --git a/purchase_exception/wizard/purchase_exception_confirm.py b/purchase_exception/wizard/purchase_exception_confirm.py new file mode 100644 index 00000000..f0d0107b --- /dev/null +++ b/purchase_exception/wizard/purchase_exception_confirm.py @@ -0,0 +1,25 @@ +# Copyright 2017 Akretion (http://www.akretion.com) +# Copyright 2020 Camptocamp SA +# Mourad EL HADJ MIMOUNE +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). + +from odoo import fields, models + + +class PurchaseExceptionConfirm(models.TransientModel): + _name = "purchase.exception.confirm" + _description = "Purchase exception wizard" + _inherit = ["exception.rule.confirm"] + + related_model_id = fields.Many2one("purchase.order", "Purchase") + + def action_confirm(self): + self.ensure_one() + exceptions_blocking = self.exception_ids.filtered("is_blocking") + if self.ignore and not exceptions_blocking: + self.related_model_id.button_draft() + self.related_model_id.ignore_exception = True + self.related_model_id.button_confirm() + else: + self.related_model_id.ignore_exception = False + return super().action_confirm() diff --git a/purchase_exception/wizard/purchase_exception_confirm_view.xml b/purchase_exception/wizard/purchase_exception_confirm_view.xml new file mode 100644 index 00000000..583c0734 --- /dev/null +++ b/purchase_exception/wizard/purchase_exception_confirm_view.xml @@ -0,0 +1,11 @@ + + + + Outstanding exceptions to manage + ir.actions.act_window + purchase.exception.confirm + form + + new + + diff --git a/setup/base_exception/odoo/addons/base_exception b/setup/base_exception/odoo/addons/base_exception new file mode 120000 index 00000000..970ba184 --- /dev/null +++ b/setup/base_exception/odoo/addons/base_exception @@ -0,0 +1 @@ +../../../../base_exception \ No newline at end of file diff --git a/setup/base_exception/setup.py b/setup/base_exception/setup.py new file mode 100644 index 00000000..28c57bb6 --- /dev/null +++ b/setup/base_exception/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +) diff --git a/setup/purchase_exception/odoo/addons/purchase_exception b/setup/purchase_exception/odoo/addons/purchase_exception new file mode 120000 index 00000000..362c6367 --- /dev/null +++ b/setup/purchase_exception/odoo/addons/purchase_exception @@ -0,0 +1 @@ +../../../../purchase_exception \ No newline at end of file diff --git a/setup/purchase_exception/setup.py b/setup/purchase_exception/setup.py new file mode 100644 index 00000000..28c57bb6 --- /dev/null +++ b/setup/purchase_exception/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)