diff --git a/account_journal_lock_date/README.rst b/account_journal_lock_date/README.rst new file mode 100644 index 00000000000..0f0d5bb5978 --- /dev/null +++ b/account_journal_lock_date/README.rst @@ -0,0 +1,75 @@ +.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 + +========================= +Account Journal Lock Date +========================= + +Lock each accounting journal independently. + +In addition to the lock dates provided by standard Odoo and +account_permanent_lock_move, provide a per journal lock date. + +Note: this module depends on account_permanent_lock_move because it +implements stricter checks than standard Odoo, such as verifying that +one cannot create draft moves before the lock date. + +Note: the journal lock date is ignored for users that are part of +the Adviser group. This rule can be adapted by overriding method +`_can_bypass_journal_lock_date` of `account.journal`. + +Usage +===== + +To use this module, you need to set + +.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas + :alt: Try me on Runbot + :target: https://runbot.odoo-community.org/runbot/{repo_id}/{branch} + +.. repo_id is available in https://github.com/OCA/maintainer-tools/blob/master/tools/repos_with_ids.txt +.. branch is "8.0" for example + +Known issues / Roadmap +====================== + +* a wizard to set the lock date on several journals could be nice to have +* the module does not check that all moves prior the lock date are posted, this could be + made as part of the wizard + +Bug Tracker +=========== + +Bugs are tracked on `GitHub Issues +`_. In case of trouble, please +check there if your issue has already been reported. If you spotted it first, +help us smashing it by providing a detailed and welcomed feedback. + +Credits +======= + +Images +------ + +* Odoo Community Association: `Icon `_. + +Contributors +------------ + +* Stéphane Bidoul + +Maintainer +---------- + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +This module is maintained by the OCA. + +OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use. + +To contribute to this module, please visit https://odoo-community.org. diff --git a/account_journal_lock_date/__init__.py b/account_journal_lock_date/__init__.py new file mode 100644 index 00000000000..0650744f6bc --- /dev/null +++ b/account_journal_lock_date/__init__.py @@ -0,0 +1 @@ +from . import models diff --git a/account_journal_lock_date/__manifest__.py b/account_journal_lock_date/__manifest__.py new file mode 100644 index 00000000000..c375a171028 --- /dev/null +++ b/account_journal_lock_date/__manifest__.py @@ -0,0 +1,18 @@ +# Copyright 2017 ACSONE SA/NV +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +{ + 'name': 'Account Journal Lock Date', + 'summary': """ + Lock each journal independently""", + 'version': '11.0.1.0.0', + 'license': 'AGPL-3', + 'author': 'ACSONE SA/NV,Odoo Community Association (OCA)', + 'website': 'https://github.com/OCA/account-financial-tools', + 'depends': [ + 'account_permanent_lock_move', + ], + 'data': [ + 'views/account_journal.xml', + ], +} diff --git a/account_journal_lock_date/exceptions.py b/account_journal_lock_date/exceptions.py new file mode 100644 index 00000000000..222caf8a212 --- /dev/null +++ b/account_journal_lock_date/exceptions.py @@ -0,0 +1,8 @@ +# Copyright 2017 ACSONE SA/NV +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from odoo.exceptions import UserError + + +class JournalLockDateError(UserError): + pass diff --git a/account_journal_lock_date/i18n/account_journal_lock_date.pot b/account_journal_lock_date/i18n/account_journal_lock_date.pot new file mode 100644 index 00000000000..b52413a9d8c --- /dev/null +++ b/account_journal_lock_date/i18n/account_journal_lock_date.pot @@ -0,0 +1,41 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_journal_lock_date +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.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: account_journal_lock_date +#: model:ir.model,name:account_journal_lock_date.model_account_move +msgid "Account Entry" +msgstr "" + +#. module: account_journal_lock_date +#: model:ir.model,name:account_journal_lock_date.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_journal_lock_date +#: model:ir.model.fields,field_description:account_journal_lock_date.field_account_journal_journal_lock_date +msgid "Lock date" +msgstr "" + +#. module: account_journal_lock_date +#: model:ir.model.fields,help:account_journal_lock_date.field_account_journal_journal_lock_date +msgid "Moves cannot be entered nor modified in this journal prior to the lock date, unless the user has the Adviser role." +msgstr "" + +#. module: account_journal_lock_date +#: code:addons/account_journal_lock_date/models/account_move.py:23 +#, python-format +msgid "You cannot add/modify entries prior to and inclusive of the journal lock date %s" +msgstr "" + diff --git a/account_journal_lock_date/i18n/am.po b/account_journal_lock_date/i18n/am.po new file mode 100644 index 00000000000..0e754a77ac3 --- /dev/null +++ b/account_journal_lock_date/i18n/am.po @@ -0,0 +1,49 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_journal_lock_date +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-30 00:47+0000\n" +"PO-Revision-Date: 2017-05-30 00:47+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: account_journal_lock_date +#: model:ir.model,name:account_journal_lock_date.model_account_move +msgid "Account Entry" +msgstr "Asiento contable" + +#. module: account_journal_lock_date +#: model:ir.model,name:account_journal_lock_date.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_journal_lock_date +#: model:ir.model.fields,field_description:account_journal_lock_date.field_account_journal_journal_lock_date +msgid "Lock date" +msgstr "" + +#. module: account_journal_lock_date +#: model:ir.model.fields,help:account_journal_lock_date.field_account_journal_journal_lock_date +msgid "" +"Moves cannot be entered nor modified in this journal prior to the lock date, " +"unless the user has the Adviser role." +msgstr "" + +#. module: account_journal_lock_date +#: code:addons/account_journal_lock_date/models/account_move.py:23 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the journal lock " +"date %s" +msgstr "" diff --git a/account_journal_lock_date/i18n/ar.po b/account_journal_lock_date/i18n/ar.po new file mode 100644 index 00000000000..7f5227d68a3 --- /dev/null +++ b/account_journal_lock_date/i18n/ar.po @@ -0,0 +1,50 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_journal_lock_date +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-30 00:47+0000\n" +"PO-Revision-Date: 2017-05-30 00:47+0000\n" +"Last-Translator: OCA Transbot , 2017\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 && n%100<=99 ? 4 : 5;\n" + +#. module: account_journal_lock_date +#: model:ir.model,name:account_journal_lock_date.model_account_move +msgid "Account Entry" +msgstr "" + +#. module: account_journal_lock_date +#: model:ir.model,name:account_journal_lock_date.model_account_journal +msgid "Journal" +msgstr "السجل اليومي" + +#. module: account_journal_lock_date +#: model:ir.model.fields,field_description:account_journal_lock_date.field_account_journal_journal_lock_date +msgid "Lock date" +msgstr "" + +#. module: account_journal_lock_date +#: model:ir.model.fields,help:account_journal_lock_date.field_account_journal_journal_lock_date +msgid "" +"Moves cannot be entered nor modified in this journal prior to the lock date, " +"unless the user has the Adviser role." +msgstr "" + +#. module: account_journal_lock_date +#: code:addons/account_journal_lock_date/models/account_move.py:23 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the journal lock " +"date %s" +msgstr "" diff --git a/account_journal_lock_date/i18n/bs.po b/account_journal_lock_date/i18n/bs.po new file mode 100644 index 00000000000..fe2e982abe9 --- /dev/null +++ b/account_journal_lock_date/i18n/bs.po @@ -0,0 +1,50 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_journal_lock_date +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-30 00:47+0000\n" +"PO-Revision-Date: 2017-05-30 00:47+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: account_journal_lock_date +#: model:ir.model,name:account_journal_lock_date.model_account_move +msgid "Account Entry" +msgstr "" + +#. module: account_journal_lock_date +#: model:ir.model,name:account_journal_lock_date.model_account_journal +msgid "Journal" +msgstr "Dnevnik" + +#. module: account_journal_lock_date +#: model:ir.model.fields,field_description:account_journal_lock_date.field_account_journal_journal_lock_date +msgid "Lock date" +msgstr "" + +#. module: account_journal_lock_date +#: model:ir.model.fields,help:account_journal_lock_date.field_account_journal_journal_lock_date +msgid "" +"Moves cannot be entered nor modified in this journal prior to the lock date, " +"unless the user has the Adviser role." +msgstr "" + +#. module: account_journal_lock_date +#: code:addons/account_journal_lock_date/models/account_move.py:23 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the journal lock " +"date %s" +msgstr "" diff --git a/account_journal_lock_date/i18n/ca.po b/account_journal_lock_date/i18n/ca.po new file mode 100644 index 00000000000..9f24f47e6e7 --- /dev/null +++ b/account_journal_lock_date/i18n/ca.po @@ -0,0 +1,49 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_journal_lock_date +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-30 00:47+0000\n" +"PO-Revision-Date: 2017-05-30 00:47+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: account_journal_lock_date +#: model:ir.model,name:account_journal_lock_date.model_account_move +msgid "Account Entry" +msgstr "Assentament comptable" + +#. module: account_journal_lock_date +#: model:ir.model,name:account_journal_lock_date.model_account_journal +msgid "Journal" +msgstr "Diari" + +#. module: account_journal_lock_date +#: model:ir.model.fields,field_description:account_journal_lock_date.field_account_journal_journal_lock_date +msgid "Lock date" +msgstr "" + +#. module: account_journal_lock_date +#: model:ir.model.fields,help:account_journal_lock_date.field_account_journal_journal_lock_date +msgid "" +"Moves cannot be entered nor modified in this journal prior to the lock date, " +"unless the user has the Adviser role." +msgstr "" + +#. module: account_journal_lock_date +#: code:addons/account_journal_lock_date/models/account_move.py:23 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the journal lock " +"date %s" +msgstr "" diff --git a/account_journal_lock_date/i18n/cs.po b/account_journal_lock_date/i18n/cs.po new file mode 100644 index 00000000000..8447365c90b --- /dev/null +++ b/account_journal_lock_date/i18n/cs.po @@ -0,0 +1,49 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_journal_lock_date +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-30 00:47+0000\n" +"PO-Revision-Date: 2017-05-30 00:47+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: account_journal_lock_date +#: model:ir.model,name:account_journal_lock_date.model_account_move +msgid "Account Entry" +msgstr "" + +#. module: account_journal_lock_date +#: model:ir.model,name:account_journal_lock_date.model_account_journal +msgid "Journal" +msgstr "Deník" + +#. module: account_journal_lock_date +#: model:ir.model.fields,field_description:account_journal_lock_date.field_account_journal_journal_lock_date +msgid "Lock date" +msgstr "" + +#. module: account_journal_lock_date +#: model:ir.model.fields,help:account_journal_lock_date.field_account_journal_journal_lock_date +msgid "" +"Moves cannot be entered nor modified in this journal prior to the lock date, " +"unless the user has the Adviser role." +msgstr "" + +#. module: account_journal_lock_date +#: code:addons/account_journal_lock_date/models/account_move.py:23 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the journal lock " +"date %s" +msgstr "" diff --git a/account_journal_lock_date/i18n/de.po b/account_journal_lock_date/i18n/de.po new file mode 100644 index 00000000000..d0fad333a3e --- /dev/null +++ b/account_journal_lock_date/i18n/de.po @@ -0,0 +1,49 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_journal_lock_date +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-30 00:47+0000\n" +"PO-Revision-Date: 2017-05-30 00:47+0000\n" +"Last-Translator: OCA Transbot , 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: account_journal_lock_date +#: model:ir.model,name:account_journal_lock_date.model_account_move +msgid "Account Entry" +msgstr "Kontobuchung" + +#. module: account_journal_lock_date +#: model:ir.model,name:account_journal_lock_date.model_account_journal +msgid "Journal" +msgstr "Journal" + +#. module: account_journal_lock_date +#: model:ir.model.fields,field_description:account_journal_lock_date.field_account_journal_journal_lock_date +msgid "Lock date" +msgstr "" + +#. module: account_journal_lock_date +#: model:ir.model.fields,help:account_journal_lock_date.field_account_journal_journal_lock_date +msgid "" +"Moves cannot be entered nor modified in this journal prior to the lock date, " +"unless the user has the Adviser role." +msgstr "" + +#. module: account_journal_lock_date +#: code:addons/account_journal_lock_date/models/account_move.py:23 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the journal lock " +"date %s" +msgstr "" diff --git a/account_journal_lock_date/i18n/en_GB.po b/account_journal_lock_date/i18n/en_GB.po new file mode 100644 index 00000000000..28071d1f3b3 --- /dev/null +++ b/account_journal_lock_date/i18n/en_GB.po @@ -0,0 +1,50 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_journal_lock_date +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-30 00:47+0000\n" +"PO-Revision-Date: 2017-05-30 00:47+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: account_journal_lock_date +#: model:ir.model,name:account_journal_lock_date.model_account_move +msgid "Account Entry" +msgstr "" + +#. module: account_journal_lock_date +#: model:ir.model,name:account_journal_lock_date.model_account_journal +msgid "Journal" +msgstr "Journal" + +#. module: account_journal_lock_date +#: model:ir.model.fields,field_description:account_journal_lock_date.field_account_journal_journal_lock_date +msgid "Lock date" +msgstr "" + +#. module: account_journal_lock_date +#: model:ir.model.fields,help:account_journal_lock_date.field_account_journal_journal_lock_date +msgid "" +"Moves cannot be entered nor modified in this journal prior to the lock date, " +"unless the user has the Adviser role." +msgstr "" + +#. module: account_journal_lock_date +#: code:addons/account_journal_lock_date/models/account_move.py:23 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the journal lock " +"date %s" +msgstr "" diff --git a/account_journal_lock_date/i18n/es.po b/account_journal_lock_date/i18n/es.po new file mode 100644 index 00000000000..dc2adcb6b2e --- /dev/null +++ b/account_journal_lock_date/i18n/es.po @@ -0,0 +1,49 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_journal_lock_date +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-30 00:47+0000\n" +"PO-Revision-Date: 2017-05-30 00:47+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\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" + +#. module: account_journal_lock_date +#: model:ir.model,name:account_journal_lock_date.model_account_move +msgid "Account Entry" +msgstr "Asiento contable" + +#. module: account_journal_lock_date +#: model:ir.model,name:account_journal_lock_date.model_account_journal +msgid "Journal" +msgstr "Diario" + +#. module: account_journal_lock_date +#: model:ir.model.fields,field_description:account_journal_lock_date.field_account_journal_journal_lock_date +msgid "Lock date" +msgstr "" + +#. module: account_journal_lock_date +#: model:ir.model.fields,help:account_journal_lock_date.field_account_journal_journal_lock_date +msgid "" +"Moves cannot be entered nor modified in this journal prior to the lock date, " +"unless the user has the Adviser role." +msgstr "" + +#. module: account_journal_lock_date +#: code:addons/account_journal_lock_date/models/account_move.py:23 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the journal lock " +"date %s" +msgstr "" diff --git a/account_journal_lock_date/i18n/es_CR.po b/account_journal_lock_date/i18n/es_CR.po new file mode 100644 index 00000000000..dd04bd4ef5b --- /dev/null +++ b/account_journal_lock_date/i18n/es_CR.po @@ -0,0 +1,50 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_journal_lock_date +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-30 00:47+0000\n" +"PO-Revision-Date: 2017-05-30 00:47+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: account_journal_lock_date +#: model:ir.model,name:account_journal_lock_date.model_account_move +msgid "Account Entry" +msgstr "" + +#. module: account_journal_lock_date +#: model:ir.model,name:account_journal_lock_date.model_account_journal +msgid "Journal" +msgstr "Diario" + +#. module: account_journal_lock_date +#: model:ir.model.fields,field_description:account_journal_lock_date.field_account_journal_journal_lock_date +msgid "Lock date" +msgstr "" + +#. module: account_journal_lock_date +#: model:ir.model.fields,help:account_journal_lock_date.field_account_journal_journal_lock_date +msgid "" +"Moves cannot be entered nor modified in this journal prior to the lock date, " +"unless the user has the Adviser role." +msgstr "" + +#. module: account_journal_lock_date +#: code:addons/account_journal_lock_date/models/account_move.py:23 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the journal lock " +"date %s" +msgstr "" diff --git a/account_journal_lock_date/i18n/es_EC.po b/account_journal_lock_date/i18n/es_EC.po new file mode 100644 index 00000000000..65d390193e5 --- /dev/null +++ b/account_journal_lock_date/i18n/es_EC.po @@ -0,0 +1,50 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_journal_lock_date +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-30 00:47+0000\n" +"PO-Revision-Date: 2017-05-30 00:47+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: account_journal_lock_date +#: model:ir.model,name:account_journal_lock_date.model_account_move +msgid "Account Entry" +msgstr "" + +#. module: account_journal_lock_date +#: model:ir.model,name:account_journal_lock_date.model_account_journal +msgid "Journal" +msgstr "Diario" + +#. module: account_journal_lock_date +#: model:ir.model.fields,field_description:account_journal_lock_date.field_account_journal_journal_lock_date +msgid "Lock date" +msgstr "" + +#. module: account_journal_lock_date +#: model:ir.model.fields,help:account_journal_lock_date.field_account_journal_journal_lock_date +msgid "" +"Moves cannot be entered nor modified in this journal prior to the lock date, " +"unless the user has the Adviser role." +msgstr "" + +#. module: account_journal_lock_date +#: code:addons/account_journal_lock_date/models/account_move.py:23 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the journal lock " +"date %s" +msgstr "" diff --git a/account_journal_lock_date/i18n/es_MX.po b/account_journal_lock_date/i18n/es_MX.po new file mode 100644 index 00000000000..9ad0d40ed27 --- /dev/null +++ b/account_journal_lock_date/i18n/es_MX.po @@ -0,0 +1,50 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_journal_lock_date +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-30 00:47+0000\n" +"PO-Revision-Date: 2017-05-30 00:47+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: account_journal_lock_date +#: model:ir.model,name:account_journal_lock_date.model_account_move +msgid "Account Entry" +msgstr "" + +#. module: account_journal_lock_date +#: model:ir.model,name:account_journal_lock_date.model_account_journal +msgid "Journal" +msgstr "Diario" + +#. module: account_journal_lock_date +#: model:ir.model.fields,field_description:account_journal_lock_date.field_account_journal_journal_lock_date +msgid "Lock date" +msgstr "" + +#. module: account_journal_lock_date +#: model:ir.model.fields,help:account_journal_lock_date.field_account_journal_journal_lock_date +msgid "" +"Moves cannot be entered nor modified in this journal prior to the lock date, " +"unless the user has the Adviser role." +msgstr "" + +#. module: account_journal_lock_date +#: code:addons/account_journal_lock_date/models/account_move.py:23 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the journal lock " +"date %s" +msgstr "" diff --git a/account_journal_lock_date/i18n/es_VE.po b/account_journal_lock_date/i18n/es_VE.po new file mode 100644 index 00000000000..afdb080173d --- /dev/null +++ b/account_journal_lock_date/i18n/es_VE.po @@ -0,0 +1,50 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_journal_lock_date +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-30 00:47+0000\n" +"PO-Revision-Date: 2017-05-30 00:47+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: account_journal_lock_date +#: model:ir.model,name:account_journal_lock_date.model_account_move +msgid "Account Entry" +msgstr "" + +#. module: account_journal_lock_date +#: model:ir.model,name:account_journal_lock_date.model_account_journal +msgid "Journal" +msgstr "Diario" + +#. module: account_journal_lock_date +#: model:ir.model.fields,field_description:account_journal_lock_date.field_account_journal_journal_lock_date +msgid "Lock date" +msgstr "" + +#. module: account_journal_lock_date +#: model:ir.model.fields,help:account_journal_lock_date.field_account_journal_journal_lock_date +msgid "" +"Moves cannot be entered nor modified in this journal prior to the lock date, " +"unless the user has the Adviser role." +msgstr "" + +#. module: account_journal_lock_date +#: code:addons/account_journal_lock_date/models/account_move.py:23 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the journal lock " +"date %s" +msgstr "" diff --git a/account_journal_lock_date/i18n/et.po b/account_journal_lock_date/i18n/et.po new file mode 100644 index 00000000000..840dd85bae2 --- /dev/null +++ b/account_journal_lock_date/i18n/et.po @@ -0,0 +1,49 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_journal_lock_date +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-30 00:47+0000\n" +"PO-Revision-Date: 2017-05-30 00:47+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: account_journal_lock_date +#: model:ir.model,name:account_journal_lock_date.model_account_move +msgid "Account Entry" +msgstr "" + +#. module: account_journal_lock_date +#: model:ir.model,name:account_journal_lock_date.model_account_journal +msgid "Journal" +msgstr "Päevik" + +#. module: account_journal_lock_date +#: model:ir.model.fields,field_description:account_journal_lock_date.field_account_journal_journal_lock_date +msgid "Lock date" +msgstr "" + +#. module: account_journal_lock_date +#: model:ir.model.fields,help:account_journal_lock_date.field_account_journal_journal_lock_date +msgid "" +"Moves cannot be entered nor modified in this journal prior to the lock date, " +"unless the user has the Adviser role." +msgstr "" + +#. module: account_journal_lock_date +#: code:addons/account_journal_lock_date/models/account_move.py:23 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the journal lock " +"date %s" +msgstr "" diff --git a/account_journal_lock_date/i18n/fr.po b/account_journal_lock_date/i18n/fr.po new file mode 100644 index 00000000000..4e7bde88106 --- /dev/null +++ b/account_journal_lock_date/i18n/fr.po @@ -0,0 +1,49 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_journal_lock_date +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-30 00:47+0000\n" +"PO-Revision-Date: 2017-05-30 00:47+0000\n" +"Last-Translator: OCA Transbot , 2017\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: account_journal_lock_date +#: model:ir.model,name:account_journal_lock_date.model_account_move +msgid "Account Entry" +msgstr "Pièce comptable" + +#. module: account_journal_lock_date +#: model:ir.model,name:account_journal_lock_date.model_account_journal +msgid "Journal" +msgstr "Journal" + +#. module: account_journal_lock_date +#: model:ir.model.fields,field_description:account_journal_lock_date.field_account_journal_journal_lock_date +msgid "Lock date" +msgstr "" + +#. module: account_journal_lock_date +#: model:ir.model.fields,help:account_journal_lock_date.field_account_journal_journal_lock_date +msgid "" +"Moves cannot be entered nor modified in this journal prior to the lock date, " +"unless the user has the Adviser role." +msgstr "" + +#. module: account_journal_lock_date +#: code:addons/account_journal_lock_date/models/account_move.py:23 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the journal lock " +"date %s" +msgstr "" diff --git a/account_journal_lock_date/i18n/gl.po b/account_journal_lock_date/i18n/gl.po new file mode 100644 index 00000000000..1a549e87ffe --- /dev/null +++ b/account_journal_lock_date/i18n/gl.po @@ -0,0 +1,49 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_journal_lock_date +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-30 00:47+0000\n" +"PO-Revision-Date: 2017-05-30 00:47+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: account_journal_lock_date +#: model:ir.model,name:account_journal_lock_date.model_account_move +msgid "Account Entry" +msgstr "Asento contable" + +#. module: account_journal_lock_date +#: model:ir.model,name:account_journal_lock_date.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_journal_lock_date +#: model:ir.model.fields,field_description:account_journal_lock_date.field_account_journal_journal_lock_date +msgid "Lock date" +msgstr "" + +#. module: account_journal_lock_date +#: model:ir.model.fields,help:account_journal_lock_date.field_account_journal_journal_lock_date +msgid "" +"Moves cannot be entered nor modified in this journal prior to the lock date, " +"unless the user has the Adviser role." +msgstr "" + +#. module: account_journal_lock_date +#: code:addons/account_journal_lock_date/models/account_move.py:23 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the journal lock " +"date %s" +msgstr "" diff --git a/account_journal_lock_date/i18n/hr.po b/account_journal_lock_date/i18n/hr.po new file mode 100644 index 00000000000..74adb299ba8 --- /dev/null +++ b/account_journal_lock_date/i18n/hr.po @@ -0,0 +1,54 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_journal_lock_date +# +# Translators: +# Bole , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-02-23 01:41+0000\n" +"PO-Revision-Date: 2018-02-23 01:41+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: account_journal_lock_date +#: model:ir.model,name:account_journal_lock_date.model_account_move +msgid "Account Entry" +msgstr "Stavka knjiženja" + +#. module: account_journal_lock_date +#: model:ir.model,name:account_journal_lock_date.model_account_journal +msgid "Journal" +msgstr "Dnevnik" + +#. module: account_journal_lock_date +#: model:ir.model.fields,field_description:account_journal_lock_date.field_account_journal_journal_lock_date +msgid "Lock date" +msgstr "Datum zaključavanja" + +#. module: account_journal_lock_date +#: model:ir.model.fields,help:account_journal_lock_date.field_account_journal_journal_lock_date +msgid "" +"Moves cannot be entered nor modified in this journal prior to the lock date, " +"unless the user has the Adviser role." +msgstr "" +"Stavke nije moguće unesti ili urediti u ovom dnevniku prije datuma " +"zaključavanja, osim ukoliko korisnik ima rolu Savjetnika" + +#. module: account_journal_lock_date +#: code:addons/account_journal_lock_date/models/account_move.py:23 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the journal lock " +"date %s" +msgstr "" +"Nije moguće unositi/uređivati stavke prije i uključivo sa datum " +"zaključavanja dnevnika %s" diff --git a/account_journal_lock_date/i18n/hr_HR.po b/account_journal_lock_date/i18n/hr_HR.po new file mode 100644 index 00000000000..1dce9c88c63 --- /dev/null +++ b/account_journal_lock_date/i18n/hr_HR.po @@ -0,0 +1,51 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_journal_lock_date +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-30 00:47+0000\n" +"PO-Revision-Date: 2017-05-30 00:47+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: account_journal_lock_date +#: model:ir.model,name:account_journal_lock_date.model_account_move +msgid "Account Entry" +msgstr "Stavka dnevnika" + +#. module: account_journal_lock_date +#: model:ir.model,name:account_journal_lock_date.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_journal_lock_date +#: model:ir.model.fields,field_description:account_journal_lock_date.field_account_journal_journal_lock_date +msgid "Lock date" +msgstr "" + +#. module: account_journal_lock_date +#: model:ir.model.fields,help:account_journal_lock_date.field_account_journal_journal_lock_date +msgid "" +"Moves cannot be entered nor modified in this journal prior to the lock date, " +"unless the user has the Adviser role." +msgstr "" + +#. module: account_journal_lock_date +#: code:addons/account_journal_lock_date/models/account_move.py:23 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the journal lock " +"date %s" +msgstr "" diff --git a/account_journal_lock_date/i18n/hu.po b/account_journal_lock_date/i18n/hu.po new file mode 100644 index 00000000000..9e9c06cb626 --- /dev/null +++ b/account_journal_lock_date/i18n/hu.po @@ -0,0 +1,49 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_journal_lock_date +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-30 00:47+0000\n" +"PO-Revision-Date: 2017-05-30 00:47+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: account_journal_lock_date +#: model:ir.model,name:account_journal_lock_date.model_account_move +msgid "Account Entry" +msgstr "" + +#. module: account_journal_lock_date +#: model:ir.model,name:account_journal_lock_date.model_account_journal +msgid "Journal" +msgstr "Napló" + +#. module: account_journal_lock_date +#: model:ir.model.fields,field_description:account_journal_lock_date.field_account_journal_journal_lock_date +msgid "Lock date" +msgstr "" + +#. module: account_journal_lock_date +#: model:ir.model.fields,help:account_journal_lock_date.field_account_journal_journal_lock_date +msgid "" +"Moves cannot be entered nor modified in this journal prior to the lock date, " +"unless the user has the Adviser role." +msgstr "" + +#. module: account_journal_lock_date +#: code:addons/account_journal_lock_date/models/account_move.py:23 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the journal lock " +"date %s" +msgstr "" diff --git a/account_journal_lock_date/i18n/id.po b/account_journal_lock_date/i18n/id.po new file mode 100644 index 00000000000..a6b9ffd410e --- /dev/null +++ b/account_journal_lock_date/i18n/id.po @@ -0,0 +1,49 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_journal_lock_date +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-30 00:47+0000\n" +"PO-Revision-Date: 2017-05-30 00:47+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: account_journal_lock_date +#: model:ir.model,name:account_journal_lock_date.model_account_move +msgid "Account Entry" +msgstr "" + +#. module: account_journal_lock_date +#: model:ir.model,name:account_journal_lock_date.model_account_journal +msgid "Journal" +msgstr "Jurnal" + +#. module: account_journal_lock_date +#: model:ir.model.fields,field_description:account_journal_lock_date.field_account_journal_journal_lock_date +msgid "Lock date" +msgstr "" + +#. module: account_journal_lock_date +#: model:ir.model.fields,help:account_journal_lock_date.field_account_journal_journal_lock_date +msgid "" +"Moves cannot be entered nor modified in this journal prior to the lock date, " +"unless the user has the Adviser role." +msgstr "" + +#. module: account_journal_lock_date +#: code:addons/account_journal_lock_date/models/account_move.py:23 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the journal lock " +"date %s" +msgstr "" diff --git a/account_journal_lock_date/i18n/it.po b/account_journal_lock_date/i18n/it.po new file mode 100644 index 00000000000..24c278b7481 --- /dev/null +++ b/account_journal_lock_date/i18n/it.po @@ -0,0 +1,49 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_journal_lock_date +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-30 00:47+0000\n" +"PO-Revision-Date: 2017-05-30 00:47+0000\n" +"Last-Translator: OCA Transbot , 2017\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" + +#. module: account_journal_lock_date +#: model:ir.model,name:account_journal_lock_date.model_account_move +msgid "Account Entry" +msgstr "Registrazione Contabile" + +#. module: account_journal_lock_date +#: model:ir.model,name:account_journal_lock_date.model_account_journal +msgid "Journal" +msgstr "Sezionale" + +#. module: account_journal_lock_date +#: model:ir.model.fields,field_description:account_journal_lock_date.field_account_journal_journal_lock_date +msgid "Lock date" +msgstr "" + +#. module: account_journal_lock_date +#: model:ir.model.fields,help:account_journal_lock_date.field_account_journal_journal_lock_date +msgid "" +"Moves cannot be entered nor modified in this journal prior to the lock date, " +"unless the user has the Adviser role." +msgstr "" + +#. module: account_journal_lock_date +#: code:addons/account_journal_lock_date/models/account_move.py:23 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the journal lock " +"date %s" +msgstr "" diff --git a/account_journal_lock_date/i18n/ja.po b/account_journal_lock_date/i18n/ja.po new file mode 100644 index 00000000000..636acfb2cd0 --- /dev/null +++ b/account_journal_lock_date/i18n/ja.po @@ -0,0 +1,49 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_journal_lock_date +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-30 00:47+0000\n" +"PO-Revision-Date: 2017-05-30 00:47+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: account_journal_lock_date +#: model:ir.model,name:account_journal_lock_date.model_account_move +msgid "Account Entry" +msgstr "" + +#. module: account_journal_lock_date +#: model:ir.model,name:account_journal_lock_date.model_account_journal +msgid "Journal" +msgstr "仕訳帳" + +#. module: account_journal_lock_date +#: model:ir.model.fields,field_description:account_journal_lock_date.field_account_journal_journal_lock_date +msgid "Lock date" +msgstr "" + +#. module: account_journal_lock_date +#: model:ir.model.fields,help:account_journal_lock_date.field_account_journal_journal_lock_date +msgid "" +"Moves cannot be entered nor modified in this journal prior to the lock date, " +"unless the user has the Adviser role." +msgstr "" + +#. module: account_journal_lock_date +#: code:addons/account_journal_lock_date/models/account_move.py:23 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the journal lock " +"date %s" +msgstr "" diff --git a/account_journal_lock_date/i18n/lt.po b/account_journal_lock_date/i18n/lt.po new file mode 100644 index 00000000000..b106564643c --- /dev/null +++ b/account_journal_lock_date/i18n/lt.po @@ -0,0 +1,50 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_journal_lock_date +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-30 00:47+0000\n" +"PO-Revision-Date: 2017-05-30 00:47+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: account_journal_lock_date +#: model:ir.model,name:account_journal_lock_date.model_account_move +msgid "Account Entry" +msgstr "" + +#. module: account_journal_lock_date +#: model:ir.model,name:account_journal_lock_date.model_account_journal +msgid "Journal" +msgstr "Žurnalas" + +#. module: account_journal_lock_date +#: model:ir.model.fields,field_description:account_journal_lock_date.field_account_journal_journal_lock_date +msgid "Lock date" +msgstr "" + +#. module: account_journal_lock_date +#: model:ir.model.fields,help:account_journal_lock_date.field_account_journal_journal_lock_date +msgid "" +"Moves cannot be entered nor modified in this journal prior to the lock date, " +"unless the user has the Adviser role." +msgstr "" + +#. module: account_journal_lock_date +#: code:addons/account_journal_lock_date/models/account_move.py:23 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the journal lock " +"date %s" +msgstr "" diff --git a/account_journal_lock_date/i18n/mk.po b/account_journal_lock_date/i18n/mk.po new file mode 100644 index 00000000000..f1a4a8702df --- /dev/null +++ b/account_journal_lock_date/i18n/mk.po @@ -0,0 +1,49 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_journal_lock_date +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-30 00:47+0000\n" +"PO-Revision-Date: 2017-05-30 00:47+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: account_journal_lock_date +#: model:ir.model,name:account_journal_lock_date.model_account_move +msgid "Account Entry" +msgstr "" + +#. module: account_journal_lock_date +#: model:ir.model,name:account_journal_lock_date.model_account_journal +msgid "Journal" +msgstr "Дневник" + +#. module: account_journal_lock_date +#: model:ir.model.fields,field_description:account_journal_lock_date.field_account_journal_journal_lock_date +msgid "Lock date" +msgstr "" + +#. module: account_journal_lock_date +#: model:ir.model.fields,help:account_journal_lock_date.field_account_journal_journal_lock_date +msgid "" +"Moves cannot be entered nor modified in this journal prior to the lock date, " +"unless the user has the Adviser role." +msgstr "" + +#. module: account_journal_lock_date +#: code:addons/account_journal_lock_date/models/account_move.py:23 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the journal lock " +"date %s" +msgstr "" diff --git a/account_journal_lock_date/i18n/mn.po b/account_journal_lock_date/i18n/mn.po new file mode 100644 index 00000000000..f0d70f7c5c0 --- /dev/null +++ b/account_journal_lock_date/i18n/mn.po @@ -0,0 +1,49 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_journal_lock_date +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-30 00:47+0000\n" +"PO-Revision-Date: 2017-05-30 00:47+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: account_journal_lock_date +#: model:ir.model,name:account_journal_lock_date.model_account_move +msgid "Account Entry" +msgstr "" + +#. module: account_journal_lock_date +#: model:ir.model,name:account_journal_lock_date.model_account_journal +msgid "Journal" +msgstr "Журнал" + +#. module: account_journal_lock_date +#: model:ir.model.fields,field_description:account_journal_lock_date.field_account_journal_journal_lock_date +msgid "Lock date" +msgstr "" + +#. module: account_journal_lock_date +#: model:ir.model.fields,help:account_journal_lock_date.field_account_journal_journal_lock_date +msgid "" +"Moves cannot be entered nor modified in this journal prior to the lock date, " +"unless the user has the Adviser role." +msgstr "" + +#. module: account_journal_lock_date +#: code:addons/account_journal_lock_date/models/account_move.py:23 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the journal lock " +"date %s" +msgstr "" diff --git a/account_journal_lock_date/i18n/nb.po b/account_journal_lock_date/i18n/nb.po new file mode 100644 index 00000000000..2cd1dc9ce70 --- /dev/null +++ b/account_journal_lock_date/i18n/nb.po @@ -0,0 +1,50 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_journal_lock_date +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-30 00:47+0000\n" +"PO-Revision-Date: 2017-05-30 00:47+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: account_journal_lock_date +#: model:ir.model,name:account_journal_lock_date.model_account_move +msgid "Account Entry" +msgstr "" + +#. module: account_journal_lock_date +#: model:ir.model,name:account_journal_lock_date.model_account_journal +msgid "Journal" +msgstr "Journal" + +#. module: account_journal_lock_date +#: model:ir.model.fields,field_description:account_journal_lock_date.field_account_journal_journal_lock_date +msgid "Lock date" +msgstr "" + +#. module: account_journal_lock_date +#: model:ir.model.fields,help:account_journal_lock_date.field_account_journal_journal_lock_date +msgid "" +"Moves cannot be entered nor modified in this journal prior to the lock date, " +"unless the user has the Adviser role." +msgstr "" + +#. module: account_journal_lock_date +#: code:addons/account_journal_lock_date/models/account_move.py:23 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the journal lock " +"date %s" +msgstr "" diff --git a/account_journal_lock_date/i18n/nl.po b/account_journal_lock_date/i18n/nl.po new file mode 100644 index 00000000000..9737b4d121d --- /dev/null +++ b/account_journal_lock_date/i18n/nl.po @@ -0,0 +1,49 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_journal_lock_date +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-30 00:47+0000\n" +"PO-Revision-Date: 2017-05-30 00:47+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: account_journal_lock_date +#: model:ir.model,name:account_journal_lock_date.model_account_move +msgid "Account Entry" +msgstr "Boeking" + +#. module: account_journal_lock_date +#: model:ir.model,name:account_journal_lock_date.model_account_journal +msgid "Journal" +msgstr "Dagboek" + +#. module: account_journal_lock_date +#: model:ir.model.fields,field_description:account_journal_lock_date.field_account_journal_journal_lock_date +msgid "Lock date" +msgstr "" + +#. module: account_journal_lock_date +#: model:ir.model.fields,help:account_journal_lock_date.field_account_journal_journal_lock_date +msgid "" +"Moves cannot be entered nor modified in this journal prior to the lock date, " +"unless the user has the Adviser role." +msgstr "" + +#. module: account_journal_lock_date +#: code:addons/account_journal_lock_date/models/account_move.py:23 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the journal lock " +"date %s" +msgstr "" diff --git a/account_journal_lock_date/i18n/nl_BE.po b/account_journal_lock_date/i18n/nl_BE.po new file mode 100644 index 00000000000..f7b90116522 --- /dev/null +++ b/account_journal_lock_date/i18n/nl_BE.po @@ -0,0 +1,50 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_journal_lock_date +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-30 00:47+0000\n" +"PO-Revision-Date: 2017-05-30 00:47+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: account_journal_lock_date +#: model:ir.model,name:account_journal_lock_date.model_account_move +msgid "Account Entry" +msgstr "" + +#. module: account_journal_lock_date +#: model:ir.model,name:account_journal_lock_date.model_account_journal +msgid "Journal" +msgstr "Journaal" + +#. module: account_journal_lock_date +#: model:ir.model.fields,field_description:account_journal_lock_date.field_account_journal_journal_lock_date +msgid "Lock date" +msgstr "" + +#. module: account_journal_lock_date +#: model:ir.model.fields,help:account_journal_lock_date.field_account_journal_journal_lock_date +msgid "" +"Moves cannot be entered nor modified in this journal prior to the lock date, " +"unless the user has the Adviser role." +msgstr "" + +#. module: account_journal_lock_date +#: code:addons/account_journal_lock_date/models/account_move.py:23 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the journal lock " +"date %s" +msgstr "" diff --git a/account_journal_lock_date/i18n/pl.po b/account_journal_lock_date/i18n/pl.po new file mode 100644 index 00000000000..d6cfd38051a --- /dev/null +++ b/account_journal_lock_date/i18n/pl.po @@ -0,0 +1,51 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_journal_lock_date +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-30 00:47+0000\n" +"PO-Revision-Date: 2017-05-30 00:47+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: account_journal_lock_date +#: model:ir.model,name:account_journal_lock_date.model_account_move +msgid "Account Entry" +msgstr "" + +#. module: account_journal_lock_date +#: model:ir.model,name:account_journal_lock_date.model_account_journal +msgid "Journal" +msgstr "Dziennik" + +#. module: account_journal_lock_date +#: model:ir.model.fields,field_description:account_journal_lock_date.field_account_journal_journal_lock_date +msgid "Lock date" +msgstr "" + +#. module: account_journal_lock_date +#: model:ir.model.fields,help:account_journal_lock_date.field_account_journal_journal_lock_date +msgid "" +"Moves cannot be entered nor modified in this journal prior to the lock date, " +"unless the user has the Adviser role." +msgstr "" + +#. module: account_journal_lock_date +#: code:addons/account_journal_lock_date/models/account_move.py:23 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the journal lock " +"date %s" +msgstr "" diff --git a/account_journal_lock_date/i18n/pt.po b/account_journal_lock_date/i18n/pt.po new file mode 100644 index 00000000000..e2ad2a832d2 --- /dev/null +++ b/account_journal_lock_date/i18n/pt.po @@ -0,0 +1,49 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_journal_lock_date +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-30 00:47+0000\n" +"PO-Revision-Date: 2017-05-30 00:47+0000\n" +"Last-Translator: OCA Transbot , 2017\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" + +#. module: account_journal_lock_date +#: model:ir.model,name:account_journal_lock_date.model_account_move +msgid "Account Entry" +msgstr "Movimento de Conta" + +#. module: account_journal_lock_date +#: model:ir.model,name:account_journal_lock_date.model_account_journal +msgid "Journal" +msgstr "Diário" + +#. module: account_journal_lock_date +#: model:ir.model.fields,field_description:account_journal_lock_date.field_account_journal_journal_lock_date +msgid "Lock date" +msgstr "" + +#. module: account_journal_lock_date +#: model:ir.model.fields,help:account_journal_lock_date.field_account_journal_journal_lock_date +msgid "" +"Moves cannot be entered nor modified in this journal prior to the lock date, " +"unless the user has the Adviser role." +msgstr "" + +#. module: account_journal_lock_date +#: code:addons/account_journal_lock_date/models/account_move.py:23 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the journal lock " +"date %s" +msgstr "" diff --git a/account_journal_lock_date/i18n/pt_BR.po b/account_journal_lock_date/i18n/pt_BR.po new file mode 100644 index 00000000000..32b1a157642 --- /dev/null +++ b/account_journal_lock_date/i18n/pt_BR.po @@ -0,0 +1,50 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_journal_lock_date +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-30 00:47+0000\n" +"PO-Revision-Date: 2017-05-30 00:47+0000\n" +"Last-Translator: OCA Transbot , 2017\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" + +#. module: account_journal_lock_date +#: model:ir.model,name:account_journal_lock_date.model_account_move +msgid "Account Entry" +msgstr "Entrada de conta" + +#. module: account_journal_lock_date +#: model:ir.model,name:account_journal_lock_date.model_account_journal +msgid "Journal" +msgstr "Diário" + +#. module: account_journal_lock_date +#: model:ir.model.fields,field_description:account_journal_lock_date.field_account_journal_journal_lock_date +msgid "Lock date" +msgstr "" + +#. module: account_journal_lock_date +#: model:ir.model.fields,help:account_journal_lock_date.field_account_journal_journal_lock_date +msgid "" +"Moves cannot be entered nor modified in this journal prior to the lock date, " +"unless the user has the Adviser role." +msgstr "" + +#. module: account_journal_lock_date +#: code:addons/account_journal_lock_date/models/account_move.py:23 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the journal lock " +"date %s" +msgstr "" diff --git a/account_journal_lock_date/i18n/pt_PT.po b/account_journal_lock_date/i18n/pt_PT.po new file mode 100644 index 00000000000..238e349188b --- /dev/null +++ b/account_journal_lock_date/i18n/pt_PT.po @@ -0,0 +1,50 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_journal_lock_date +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-30 00:47+0000\n" +"PO-Revision-Date: 2017-05-30 00:47+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: account_journal_lock_date +#: model:ir.model,name:account_journal_lock_date.model_account_move +msgid "Account Entry" +msgstr "Movimento de Conta" + +#. module: account_journal_lock_date +#: model:ir.model,name:account_journal_lock_date.model_account_journal +msgid "Journal" +msgstr "Diário" + +#. module: account_journal_lock_date +#: model:ir.model.fields,field_description:account_journal_lock_date.field_account_journal_journal_lock_date +msgid "Lock date" +msgstr "" + +#. module: account_journal_lock_date +#: model:ir.model.fields,help:account_journal_lock_date.field_account_journal_journal_lock_date +msgid "" +"Moves cannot be entered nor modified in this journal prior to the lock date, " +"unless the user has the Adviser role." +msgstr "" + +#. module: account_journal_lock_date +#: code:addons/account_journal_lock_date/models/account_move.py:23 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the journal lock " +"date %s" +msgstr "" diff --git a/account_journal_lock_date/i18n/ro.po b/account_journal_lock_date/i18n/ro.po new file mode 100644 index 00000000000..b573c90ab2d --- /dev/null +++ b/account_journal_lock_date/i18n/ro.po @@ -0,0 +1,50 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_journal_lock_date +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-30 00:47+0000\n" +"PO-Revision-Date: 2017-05-30 00:47+0000\n" +"Last-Translator: OCA Transbot , 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: account_journal_lock_date +#: model:ir.model,name:account_journal_lock_date.model_account_move +msgid "Account Entry" +msgstr "" + +#. module: account_journal_lock_date +#: model:ir.model,name:account_journal_lock_date.model_account_journal +msgid "Journal" +msgstr "Registru" + +#. module: account_journal_lock_date +#: model:ir.model.fields,field_description:account_journal_lock_date.field_account_journal_journal_lock_date +msgid "Lock date" +msgstr "" + +#. module: account_journal_lock_date +#: model:ir.model.fields,help:account_journal_lock_date.field_account_journal_journal_lock_date +msgid "" +"Moves cannot be entered nor modified in this journal prior to the lock date, " +"unless the user has the Adviser role." +msgstr "" + +#. module: account_journal_lock_date +#: code:addons/account_journal_lock_date/models/account_move.py:23 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the journal lock " +"date %s" +msgstr "" diff --git a/account_journal_lock_date/i18n/ru.po b/account_journal_lock_date/i18n/ru.po new file mode 100644 index 00000000000..ad23e3b7060 --- /dev/null +++ b/account_journal_lock_date/i18n/ru.po @@ -0,0 +1,51 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_journal_lock_date +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-30 00:47+0000\n" +"PO-Revision-Date: 2017-05-30 00:47+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: account_journal_lock_date +#: model:ir.model,name:account_journal_lock_date.model_account_move +msgid "Account Entry" +msgstr "" + +#. module: account_journal_lock_date +#: model:ir.model,name:account_journal_lock_date.model_account_journal +msgid "Journal" +msgstr "Журнал" + +#. module: account_journal_lock_date +#: model:ir.model.fields,field_description:account_journal_lock_date.field_account_journal_journal_lock_date +msgid "Lock date" +msgstr "" + +#. module: account_journal_lock_date +#: model:ir.model.fields,help:account_journal_lock_date.field_account_journal_journal_lock_date +msgid "" +"Moves cannot be entered nor modified in this journal prior to the lock date, " +"unless the user has the Adviser role." +msgstr "" + +#. module: account_journal_lock_date +#: code:addons/account_journal_lock_date/models/account_move.py:23 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the journal lock " +"date %s" +msgstr "" diff --git a/account_journal_lock_date/i18n/sl.po b/account_journal_lock_date/i18n/sl.po new file mode 100644 index 00000000000..4d26d42acc8 --- /dev/null +++ b/account_journal_lock_date/i18n/sl.po @@ -0,0 +1,50 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_journal_lock_date +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-30 00:47+0000\n" +"PO-Revision-Date: 2017-05-30 00:47+0000\n" +"Last-Translator: OCA Transbot , 2017\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" + +#. module: account_journal_lock_date +#: model:ir.model,name:account_journal_lock_date.model_account_move +msgid "Account Entry" +msgstr "Knjigovodski vnos" + +#. module: account_journal_lock_date +#: model:ir.model,name:account_journal_lock_date.model_account_journal +msgid "Journal" +msgstr "Dnevnik" + +#. module: account_journal_lock_date +#: model:ir.model.fields,field_description:account_journal_lock_date.field_account_journal_journal_lock_date +msgid "Lock date" +msgstr "" + +#. module: account_journal_lock_date +#: model:ir.model.fields,help:account_journal_lock_date.field_account_journal_journal_lock_date +msgid "" +"Moves cannot be entered nor modified in this journal prior to the lock date, " +"unless the user has the Adviser role." +msgstr "" + +#. module: account_journal_lock_date +#: code:addons/account_journal_lock_date/models/account_move.py:23 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the journal lock " +"date %s" +msgstr "" diff --git a/account_journal_lock_date/i18n/sr@latin.po b/account_journal_lock_date/i18n/sr@latin.po new file mode 100644 index 00000000000..e935e571abc --- /dev/null +++ b/account_journal_lock_date/i18n/sr@latin.po @@ -0,0 +1,51 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_journal_lock_date +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-30 00:47+0000\n" +"PO-Revision-Date: 2017-05-30 00:47+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: account_journal_lock_date +#: model:ir.model,name:account_journal_lock_date.model_account_move +msgid "Account Entry" +msgstr "" + +#. module: account_journal_lock_date +#: model:ir.model,name:account_journal_lock_date.model_account_journal +msgid "Journal" +msgstr "Dnevnik" + +#. module: account_journal_lock_date +#: model:ir.model.fields,field_description:account_journal_lock_date.field_account_journal_journal_lock_date +msgid "Lock date" +msgstr "" + +#. module: account_journal_lock_date +#: model:ir.model.fields,help:account_journal_lock_date.field_account_journal_journal_lock_date +msgid "" +"Moves cannot be entered nor modified in this journal prior to the lock date, " +"unless the user has the Adviser role." +msgstr "" + +#. module: account_journal_lock_date +#: code:addons/account_journal_lock_date/models/account_move.py:23 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the journal lock " +"date %s" +msgstr "" diff --git a/account_journal_lock_date/i18n/sv.po b/account_journal_lock_date/i18n/sv.po new file mode 100644 index 00000000000..be03adfd67d --- /dev/null +++ b/account_journal_lock_date/i18n/sv.po @@ -0,0 +1,49 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_journal_lock_date +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-30 00:47+0000\n" +"PO-Revision-Date: 2017-05-30 00:47+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: account_journal_lock_date +#: model:ir.model,name:account_journal_lock_date.model_account_move +msgid "Account Entry" +msgstr "" + +#. module: account_journal_lock_date +#: model:ir.model,name:account_journal_lock_date.model_account_journal +msgid "Journal" +msgstr "Journal" + +#. module: account_journal_lock_date +#: model:ir.model.fields,field_description:account_journal_lock_date.field_account_journal_journal_lock_date +msgid "Lock date" +msgstr "" + +#. module: account_journal_lock_date +#: model:ir.model.fields,help:account_journal_lock_date.field_account_journal_journal_lock_date +msgid "" +"Moves cannot be entered nor modified in this journal prior to the lock date, " +"unless the user has the Adviser role." +msgstr "" + +#. module: account_journal_lock_date +#: code:addons/account_journal_lock_date/models/account_move.py:23 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the journal lock " +"date %s" +msgstr "" diff --git a/account_journal_lock_date/i18n/tr.po b/account_journal_lock_date/i18n/tr.po new file mode 100644 index 00000000000..98dd6de1d11 --- /dev/null +++ b/account_journal_lock_date/i18n/tr.po @@ -0,0 +1,49 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_journal_lock_date +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-30 00:47+0000\n" +"PO-Revision-Date: 2017-05-30 00:47+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: account_journal_lock_date +#: model:ir.model,name:account_journal_lock_date.model_account_move +msgid "Account Entry" +msgstr "" + +#. module: account_journal_lock_date +#: model:ir.model,name:account_journal_lock_date.model_account_journal +msgid "Journal" +msgstr "Günlük" + +#. module: account_journal_lock_date +#: model:ir.model.fields,field_description:account_journal_lock_date.field_account_journal_journal_lock_date +msgid "Lock date" +msgstr "" + +#. module: account_journal_lock_date +#: model:ir.model.fields,help:account_journal_lock_date.field_account_journal_journal_lock_date +msgid "" +"Moves cannot be entered nor modified in this journal prior to the lock date, " +"unless the user has the Adviser role." +msgstr "" + +#. module: account_journal_lock_date +#: code:addons/account_journal_lock_date/models/account_move.py:23 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the journal lock " +"date %s" +msgstr "" diff --git a/account_journal_lock_date/i18n/tr_TR.po b/account_journal_lock_date/i18n/tr_TR.po new file mode 100644 index 00000000000..2911090aa1a --- /dev/null +++ b/account_journal_lock_date/i18n/tr_TR.po @@ -0,0 +1,50 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_journal_lock_date +# +# Translators: +# Ediz Duman , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-30 00:47+0000\n" +"PO-Revision-Date: 2017-05-30 00:47+0000\n" +"Last-Translator: Ediz Duman , 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: account_journal_lock_date +#: model:ir.model,name:account_journal_lock_date.model_account_move +msgid "Account Entry" +msgstr "" + +#. module: account_journal_lock_date +#: model:ir.model,name:account_journal_lock_date.model_account_journal +msgid "Journal" +msgstr "Yevmiye" + +#. module: account_journal_lock_date +#: model:ir.model.fields,field_description:account_journal_lock_date.field_account_journal_journal_lock_date +msgid "Lock date" +msgstr "" + +#. module: account_journal_lock_date +#: model:ir.model.fields,help:account_journal_lock_date.field_account_journal_journal_lock_date +msgid "" +"Moves cannot be entered nor modified in this journal prior to the lock date, " +"unless the user has the Adviser role." +msgstr "" + +#. module: account_journal_lock_date +#: code:addons/account_journal_lock_date/models/account_move.py:23 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the journal lock " +"date %s" +msgstr "" diff --git a/account_journal_lock_date/i18n/vi.po b/account_journal_lock_date/i18n/vi.po new file mode 100644 index 00000000000..08c14178757 --- /dev/null +++ b/account_journal_lock_date/i18n/vi.po @@ -0,0 +1,49 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_journal_lock_date +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-30 00:47+0000\n" +"PO-Revision-Date: 2017-05-30 00:47+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: account_journal_lock_date +#: model:ir.model,name:account_journal_lock_date.model_account_move +msgid "Account Entry" +msgstr "" + +#. module: account_journal_lock_date +#: model:ir.model,name:account_journal_lock_date.model_account_journal +msgid "Journal" +msgstr "Sổ nhật ký" + +#. module: account_journal_lock_date +#: model:ir.model.fields,field_description:account_journal_lock_date.field_account_journal_journal_lock_date +msgid "Lock date" +msgstr "" + +#. module: account_journal_lock_date +#: model:ir.model.fields,help:account_journal_lock_date.field_account_journal_journal_lock_date +msgid "" +"Moves cannot be entered nor modified in this journal prior to the lock date, " +"unless the user has the Adviser role." +msgstr "" + +#. module: account_journal_lock_date +#: code:addons/account_journal_lock_date/models/account_move.py:23 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the journal lock " +"date %s" +msgstr "" diff --git a/account_journal_lock_date/i18n/zh_CN.po b/account_journal_lock_date/i18n/zh_CN.po new file mode 100644 index 00000000000..e7c34fce510 --- /dev/null +++ b/account_journal_lock_date/i18n/zh_CN.po @@ -0,0 +1,50 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_journal_lock_date +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-30 00:47+0000\n" +"PO-Revision-Date: 2017-05-30 00:47+0000\n" +"Last-Translator: OCA Transbot , 2017\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" + +#. module: account_journal_lock_date +#: model:ir.model,name:account_journal_lock_date.model_account_move +msgid "Account Entry" +msgstr "" + +#. module: account_journal_lock_date +#: model:ir.model,name:account_journal_lock_date.model_account_journal +msgid "Journal" +msgstr "凭证簿" + +#. module: account_journal_lock_date +#: model:ir.model.fields,field_description:account_journal_lock_date.field_account_journal_journal_lock_date +msgid "Lock date" +msgstr "" + +#. module: account_journal_lock_date +#: model:ir.model.fields,help:account_journal_lock_date.field_account_journal_journal_lock_date +msgid "" +"Moves cannot be entered nor modified in this journal prior to the lock date, " +"unless the user has the Adviser role." +msgstr "" + +#. module: account_journal_lock_date +#: code:addons/account_journal_lock_date/models/account_move.py:23 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the journal lock " +"date %s" +msgstr "" diff --git a/account_journal_lock_date/i18n/zh_TW.po b/account_journal_lock_date/i18n/zh_TW.po new file mode 100644 index 00000000000..4354c0965b9 --- /dev/null +++ b/account_journal_lock_date/i18n/zh_TW.po @@ -0,0 +1,50 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_journal_lock_date +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-30 00:47+0000\n" +"PO-Revision-Date: 2017-05-30 00:47+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: account_journal_lock_date +#: model:ir.model,name:account_journal_lock_date.model_account_move +msgid "Account Entry" +msgstr "" + +#. module: account_journal_lock_date +#: model:ir.model,name:account_journal_lock_date.model_account_journal +msgid "Journal" +msgstr "帳簿" + +#. module: account_journal_lock_date +#: model:ir.model.fields,field_description:account_journal_lock_date.field_account_journal_journal_lock_date +msgid "Lock date" +msgstr "" + +#. module: account_journal_lock_date +#: model:ir.model.fields,help:account_journal_lock_date.field_account_journal_journal_lock_date +msgid "" +"Moves cannot be entered nor modified in this journal prior to the lock date, " +"unless the user has the Adviser role." +msgstr "" + +#. module: account_journal_lock_date +#: code:addons/account_journal_lock_date/models/account_move.py:23 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the journal lock " +"date %s" +msgstr "" diff --git a/account_journal_lock_date/models/__init__.py b/account_journal_lock_date/models/__init__.py new file mode 100644 index 00000000000..067db8c5faa --- /dev/null +++ b/account_journal_lock_date/models/__init__.py @@ -0,0 +1,2 @@ +from . import account_journal +from . import account_move diff --git a/account_journal_lock_date/models/account_journal.py b/account_journal_lock_date/models/account_journal.py new file mode 100644 index 00000000000..bd1cc73934f --- /dev/null +++ b/account_journal_lock_date/models/account_journal.py @@ -0,0 +1,22 @@ +# Copyright 2017 ACSONE SA/NV +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from odoo import api, fields, models + + +class AccountJournal(models.Model): + + _inherit = 'account.journal' + + journal_lock_date = fields.Date( + string="Lock date", + help="Moves cannot be entered nor modified in this " + "journal prior to the lock date, unless the user " + "has the Adviser role." + ) + + @api.model + def _can_bypass_journal_lock_date(self): + """ This method is meant to be overridden to provide + finer control on who can bypass the lock date """ + return self.env.user.has_group('account.group_account_manager') diff --git a/account_journal_lock_date/models/account_move.py b/account_journal_lock_date/models/account_move.py new file mode 100644 index 00000000000..9c114ee0556 --- /dev/null +++ b/account_journal_lock_date/models/account_move.py @@ -0,0 +1,25 @@ +# Copyright 2017 ACSONE SA/NV +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from odoo import api, models, _ + +from ..exceptions import JournalLockDateError + + +class AccountMove(models.Model): + + _inherit = 'account.move' + + @api.multi + def _check_lock_date(self): + res = super(AccountMove, self)._check_lock_date() + if self.env['account.journal']._can_bypass_journal_lock_date(): + return res + for move in self: + lock_date = move.journal_id.journal_lock_date + if lock_date and move.date <= lock_date: + raise JournalLockDateError( + _("You cannot add/modify entries prior to and " + "inclusive of the journal lock date %s") % + (lock_date, )) + return res diff --git a/account_journal_lock_date/static/description/icon.png b/account_journal_lock_date/static/description/icon.png new file mode 100644 index 00000000000..3a0328b516c Binary files /dev/null and b/account_journal_lock_date/static/description/icon.png differ diff --git a/account_journal_lock_date/tests/__init__.py b/account_journal_lock_date/tests/__init__.py new file mode 100644 index 00000000000..a82bf0bfa26 --- /dev/null +++ b/account_journal_lock_date/tests/__init__.py @@ -0,0 +1 @@ +from . import test_journal_lock_date diff --git a/account_journal_lock_date/tests/test_journal_lock_date.py b/account_journal_lock_date/tests/test_journal_lock_date.py new file mode 100644 index 00000000000..f88303dd61a --- /dev/null +++ b/account_journal_lock_date/tests/test_journal_lock_date.py @@ -0,0 +1,122 @@ +# Copyright 2017 ACSONE SA/NV +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from datetime import date, timedelta + +from odoo import fields, tools +from odoo.modules import get_module_resource +from odoo.tests import common + +from ..exceptions import JournalLockDateError + + +class TestJournalLockDate(common.TransactionCase): + + def setUp(self): + super(TestJournalLockDate, self).setUp() + tools.convert_file(self.cr, 'account', + get_module_resource('account', 'test', + 'account_minimal_test.xml'), + {}, 'init', False, 'test') + self.account_move_obj = self.env["account.move"] + self.account_move_line_obj = \ + self.env["account.move.line"] + self.company_id = self.ref('base.main_company') + self.partner = self.browse_ref("base.res_partner_12") + self.account = self.browse_ref("account.a_recv") + self.account2 = self.browse_ref("account.a_expense") + self.journal = self.browse_ref("account.bank_journal") + + def test_journal_lock_date(self): + # remove the user from all groups + self.env.user.write({'groups_id': [(5, False, False)]}) + # add the user to group account user + self.env.user.write({ + 'groups_id': [(4, self.ref('account.group_account_user'), False)], + }) + self.assertFalse(self.env.user.has_group( + 'account.group_account_manager')) + + # create a move and post it + move = self.account_move_obj.create({ + 'date': fields.Date.today(), + 'journal_id': self.journal.id, + 'line_ids': [(0, 0, { + 'account_id': self.account.id, + 'credit': 1000.0, + 'name': 'Credit line', + }), (0, 0, { + 'account_id': self.account2.id, + 'debit': 1000.0, + 'name': 'Debit line', + })] + }) + move.post() + + # lock journal + self.journal.journal_lock_date = fields.Date.today() + + # Test that the move cannot be created, written, or cancelled + with self.assertRaises(JournalLockDateError): + self.account_move_obj.create({ + 'date': fields.Date.today(), + 'journal_id': self.journal.id, + 'line_ids': [(0, 0, { + 'account_id': self.account.id, + 'credit': 1000.0, + 'name': 'Credit line', + }), (0, 0, { + 'account_id': self.account2.id, + 'debit': 1000.0, + 'name': 'Debit line', + })] + }) + + with self.assertRaises(JournalLockDateError): + move.write({'name': 'TEST'}) + + with self.assertRaises(JournalLockDateError): + move.button_cancel() + + # create a move after ther lock date and post it + tomorrow = date.today() + timedelta(days=1) + move3 = self.account_move_obj.create({ + 'date': tomorrow, + 'journal_id': self.journal.id, + 'line_ids': [(0, 0, { + 'account_id': self.account.id, + 'credit': 1000.0, + 'name': 'Credit line', + }), (0, 0, { + 'account_id': self.account2.id, + 'debit': 1000.0, + 'name': 'Debit line', + })] + }) + move3.post() + + def test_journal_lock_date_adviser(self): + """ The journal lock date is ignored for Advisers """ + self.env.user.write({ + 'groups_id': [(4, self.ref('account.group_account_manager'))], + }) + self.assertTrue(self.env.user.has_group( + 'account.group_account_manager')) + + # lock journal + self.journal.journal_lock_date = fields.Date.today() + + # advisers can create moves before or on the lock date + self.account_move_obj.create({ + 'date': fields.Date.today(), + 'journal_id': self.journal.id, + 'line_ids': [(0, 0, { + 'account_id': self.account.id, + 'credit': 1000.0, + 'name': 'Credit line', + }), (0, 0, { + 'account_id': self.account2.id, + 'debit': 1000.0, + 'name': 'Debit line', + })] + }) diff --git a/account_journal_lock_date/views/account_journal.xml b/account_journal_lock_date/views/account_journal.xml new file mode 100644 index 00000000000..25a27799972 --- /dev/null +++ b/account_journal_lock_date/views/account_journal.xml @@ -0,0 +1,28 @@ + + + + + + account.journal.form (in account_journal_lock_date) + account.journal + + + + + + + + + + + account.journal.tree (in account_journal_lock_date) + account.journal + + + + + + + + diff --git a/account_lock_to_date/models/account_move.py b/account_lock_to_date/models/account_move.py index 28d9b146e76..eb446dc3bdf 100644 --- a/account_lock_to_date/models/account_move.py +++ b/account_lock_to_date/models/account_move.py @@ -12,11 +12,11 @@ def _check_lock_date(self): res = super()._check_lock_date() for move in self: lock_to_date = min( - move.company_id.period_lock_to_date or '0000-00-00', - move.company_id.fiscalyear_lock_to_date or '0000-00-00') + move.company_id.period_lock_to_date, + move.company_id.fiscalyear_lock_to_date) or False if self.user_has_groups('account.group_account_manager'): - lock_to_date = move.company_id.fiscalyear_lock_to_date - if lock_to_date and move.date >= (lock_to_date or '0000-00-00'): + lock_to_date = move.company_id.fiscalyear_lock_to_date or False + if lock_to_date and move.date >= lock_to_date: if self.user_has_groups('account.group_account_manager'): message = _("You cannot add/modify entries after and " "inclusive of the lock to date %s") % ( diff --git a/account_permanent_lock_move/README.rst b/account_permanent_lock_move/README.rst new file mode 100644 index 00000000000..c3bc54e27ed --- /dev/null +++ b/account_permanent_lock_move/README.rst @@ -0,0 +1,60 @@ +.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 + +=================== +Permanent Lock Move +=================== + +This module extends the functionality of the basic "lock date" +functionality in invoicing, in order to add a more definitive +lock date (which cannot be empty or set in the past, and only +accepts unposted moves) + +Configuration +============= + +To configure this module, you need to: + +#. Go to Invoicing -> Settings +#. Set the Permanent Lock Date. + +.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas + :alt: Try me on Runbot + :target: https://runbot.odoo-community.org/runbot/92/10.0 + +Bug Tracker +=========== + +Bugs are tracked on `GitHub Issues +`_. In case of trouble, please +check there if your issue has already been reported. If you spotted it first, +help us smashing it by providing a detailed and welcomed feedback. + +Credits +======= + +Images +------ + +* Odoo Community Association: `Icon `_. + +Contributors +------------ + +* Matthieu Dietrich + +Maintainer +---------- + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +This module is maintained by the OCA. + +OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use. + +To contribute to this module, please visit https://odoo-community.org. diff --git a/account_permanent_lock_move/__init__.py b/account_permanent_lock_move/__init__.py new file mode 100755 index 00000000000..0217b0f920b --- /dev/null +++ b/account_permanent_lock_move/__init__.py @@ -0,0 +1,3 @@ + +from . import models +from . import wizard diff --git a/account_permanent_lock_move/__manifest__.py b/account_permanent_lock_move/__manifest__.py new file mode 100644 index 00000000000..613a235aa47 --- /dev/null +++ b/account_permanent_lock_move/__manifest__.py @@ -0,0 +1,17 @@ +# © 2016 Camptocamp SA (Matthieu Dietrich) +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). +{ + "name": "Permanent Lock Move", + "version": "11.0.1.0.0", + "depends": ["account"], + "author": "Camptocamp,Odoo Community Association (OCA)", + "website": 'https://github.com/OCA/account-financial-tools', + "category": "Finance", + "data": [ + "views/res_config_view.xml", + "wizard/permanent_lock_date_wizard.xml", + ], + 'license': 'AGPL-3', + "auto_install": False, + 'installable': True, +} diff --git a/account_permanent_lock_move/i18n/account_permanent_lock_move.pot b/account_permanent_lock_move/i18n/account_permanent_lock_move.pot new file mode 100644 index 00000000000..bb4d5b45a5e --- /dev/null +++ b/account_permanent_lock_move/i18n/account_permanent_lock_move.pot @@ -0,0 +1,139 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_permanent_lock_move +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.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: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_move +msgid "Account Entry" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "All journal entries prior to and included at this date will be permanently locked." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Cancel" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_res_company +msgid "Companies" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_company_id +msgid "Company" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_uid +msgid "Created by" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_date +msgid "Created on" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_display_name +msgid "Display Name" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_id +msgid "ID" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard___last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_uid +msgid "Last Updated by" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_date +msgid "Last Updated on" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_lock_date +msgid "Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock Journal Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock permanently entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +msgid "Non-revertible closing of accounts prior to and inclusive of this date. Use it for fiscal year locking instead of \"Lock Date\"." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "Non-revertible closing of accounts prior to and inclusive of this date. Use it for fiscal year locking instead of Lock Date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "Permanent Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.view_account_config_settings_permanent_lock +msgid "Permanently Lock Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/models/account_move.py:15 +#, python-format +msgid "You cannot add/modify entries prior to and inclusive of the permanent lock date." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:22 +#, python-format +msgid "You cannot set the permanent lock date in the past." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:31 +#, python-format +msgid "You cannot set the permanent lock date since entries are still unposted before this date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_config_settings +msgid "account.config.settings" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_permanent_lock_date_wizard +msgid "permanent.lock.date.wizard" +msgstr "" + diff --git a/account_permanent_lock_move/i18n/am.po b/account_permanent_lock_move/i18n/am.po new file mode 100644 index 00000000000..a027387b03b --- /dev/null +++ b/account_permanent_lock_move/i18n/am.po @@ -0,0 +1,153 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_permanent_lock_move +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-11 00:39+0000\n" +"PO-Revision-Date: 2017-05-11 00:39+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: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_move +msgid "Account Entry" +msgstr "Asiento contable" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "" +"All journal entries prior to and included at this date will be permanently " +"locked." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_res_company +msgid "Companies" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_company_id +msgid "Company" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_display_name +msgid "Display Name" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_id +msgid "ID" +msgstr "ID" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard___last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_uid +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_lock_date +msgid "Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock Journal Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock permanently entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of \"Lock Date\"." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of Lock Date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "Permanent Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.view_account_config_settings_permanent_lock +msgid "Permanently Lock Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/models/account_move.py:15 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the permanent lock " +"date." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:22 +#, python-format +msgid "You cannot set the permanent lock date in the past." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:31 +#, python-format +msgid "" +"You cannot set the permanent lock date since entries are still unposted " +"before this date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_config_settings +msgid "account.config.settings" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_permanent_lock_date_wizard +msgid "permanent.lock.date.wizard" +msgstr "" diff --git a/account_permanent_lock_move/i18n/ar.po b/account_permanent_lock_move/i18n/ar.po new file mode 100644 index 00000000000..fc0cb65bce1 --- /dev/null +++ b/account_permanent_lock_move/i18n/ar.po @@ -0,0 +1,154 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_permanent_lock_move +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-11 00:39+0000\n" +"PO-Revision-Date: 2017-05-11 00:39+0000\n" +"Last-Translator: OCA Transbot , 2017\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 && n%100<=99 ? 4 : 5;\n" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_move +msgid "Account Entry" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "" +"All journal entries prior to and included at this date will be permanently " +"locked." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Cancel" +msgstr "إلغاء" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_res_company +msgid "Companies" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_company_id +msgid "Company" +msgstr "الشركة" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_uid +msgid "Created by" +msgstr "أنشئ بواسطة" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_date +msgid "Created on" +msgstr "أنشئ في" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_display_name +msgid "Display Name" +msgstr "اسم العرض" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_id +msgid "ID" +msgstr "المعرف" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard___last_update +msgid "Last Modified on" +msgstr "آخر تعديل في" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_uid +msgid "Last Updated by" +msgstr "آخر تحديث بواسطة" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_date +msgid "Last Updated on" +msgstr "آخر تحديث في" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_lock_date +msgid "Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock Journal Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock permanently entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of \"Lock Date\"." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of Lock Date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "Permanent Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.view_account_config_settings_permanent_lock +msgid "Permanently Lock Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/models/account_move.py:15 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the permanent lock " +"date." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:22 +#, python-format +msgid "You cannot set the permanent lock date in the past." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:31 +#, python-format +msgid "" +"You cannot set the permanent lock date since entries are still unposted " +"before this date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_config_settings +msgid "account.config.settings" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_permanent_lock_date_wizard +msgid "permanent.lock.date.wizard" +msgstr "" diff --git a/account_permanent_lock_move/i18n/bg.po b/account_permanent_lock_move/i18n/bg.po new file mode 100644 index 00000000000..c5ac726a692 --- /dev/null +++ b/account_permanent_lock_move/i18n/bg.po @@ -0,0 +1,153 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_permanent_lock_move +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-11 00:39+0000\n" +"PO-Revision-Date: 2017-05-11 00:39+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: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_move +msgid "Account Entry" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "" +"All journal entries prior to and included at this date will be permanently " +"locked." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Cancel" +msgstr "Отмяна" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_res_company +msgid "Companies" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_company_id +msgid "Company" +msgstr "Фирма" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_uid +msgid "Created by" +msgstr "Създадено от" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_date +msgid "Created on" +msgstr "Създадено на" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_display_name +msgid "Display Name" +msgstr "Име за показване" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_id +msgid "ID" +msgstr "ID" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard___last_update +msgid "Last Modified on" +msgstr "Последно обновено на" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_uid +msgid "Last Updated by" +msgstr "Последно обновено от" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_date +msgid "Last Updated on" +msgstr "Последно обновено на" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_lock_date +msgid "Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock Journal Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock permanently entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of \"Lock Date\"." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of Lock Date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "Permanent Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.view_account_config_settings_permanent_lock +msgid "Permanently Lock Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/models/account_move.py:15 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the permanent lock " +"date." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:22 +#, python-format +msgid "You cannot set the permanent lock date in the past." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:31 +#, python-format +msgid "" +"You cannot set the permanent lock date since entries are still unposted " +"before this date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_config_settings +msgid "account.config.settings" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_permanent_lock_date_wizard +msgid "permanent.lock.date.wizard" +msgstr "" diff --git a/account_permanent_lock_move/i18n/bs.po b/account_permanent_lock_move/i18n/bs.po new file mode 100644 index 00000000000..57240030dea --- /dev/null +++ b/account_permanent_lock_move/i18n/bs.po @@ -0,0 +1,154 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_permanent_lock_move +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-11 00:39+0000\n" +"PO-Revision-Date: 2017-05-11 00:39+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: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_move +msgid "Account Entry" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "" +"All journal entries prior to and included at this date will be permanently " +"locked." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Cancel" +msgstr "Otkaži" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_res_company +msgid "Companies" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_company_id +msgid "Company" +msgstr "Kompanija" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_date +msgid "Created on" +msgstr "Kreirano" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_display_name +msgid "Display Name" +msgstr "Prikaži naziv" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_id +msgid "ID" +msgstr "ID" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard___last_update +msgid "Last Modified on" +msgstr "Zadnje mijenjano" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_uid +msgid "Last Updated by" +msgstr "Zadnji ažurirao" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_date +msgid "Last Updated on" +msgstr "Zadnje ažurirano" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_lock_date +msgid "Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock Journal Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock permanently entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of \"Lock Date\"." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of Lock Date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "Permanent Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.view_account_config_settings_permanent_lock +msgid "Permanently Lock Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/models/account_move.py:15 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the permanent lock " +"date." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:22 +#, python-format +msgid "You cannot set the permanent lock date in the past." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:31 +#, python-format +msgid "" +"You cannot set the permanent lock date since entries are still unposted " +"before this date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_config_settings +msgid "account.config.settings" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_permanent_lock_date_wizard +msgid "permanent.lock.date.wizard" +msgstr "" diff --git a/account_permanent_lock_move/i18n/ca.po b/account_permanent_lock_move/i18n/ca.po new file mode 100644 index 00000000000..5ab26bf6e3c --- /dev/null +++ b/account_permanent_lock_move/i18n/ca.po @@ -0,0 +1,153 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_permanent_lock_move +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-11 00:39+0000\n" +"PO-Revision-Date: 2017-05-11 00:39+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: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_move +msgid "Account Entry" +msgstr "Assentament comptable" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "" +"All journal entries prior to and included at this date will be permanently " +"locked." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Cancel" +msgstr "Cancel·la" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_res_company +msgid "Companies" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_company_id +msgid "Company" +msgstr "Companyia" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_uid +msgid "Created by" +msgstr "Creat per" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_date +msgid "Created on" +msgstr "Creat el" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_display_name +msgid "Display Name" +msgstr "Veure el nom" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_id +msgid "ID" +msgstr "ID" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard___last_update +msgid "Last Modified on" +msgstr "Darrera modificació el" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_uid +msgid "Last Updated by" +msgstr "Darrera Actualització per" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_date +msgid "Last Updated on" +msgstr "Darrera Actualització el" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_lock_date +msgid "Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock Journal Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock permanently entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of \"Lock Date\"." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of Lock Date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "Permanent Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.view_account_config_settings_permanent_lock +msgid "Permanently Lock Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/models/account_move.py:15 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the permanent lock " +"date." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:22 +#, python-format +msgid "You cannot set the permanent lock date in the past." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:31 +#, python-format +msgid "" +"You cannot set the permanent lock date since entries are still unposted " +"before this date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_config_settings +msgid "account.config.settings" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_permanent_lock_date_wizard +msgid "permanent.lock.date.wizard" +msgstr "" diff --git a/account_permanent_lock_move/i18n/ca_ES.po b/account_permanent_lock_move/i18n/ca_ES.po new file mode 100644 index 00000000000..bf6e13b6486 --- /dev/null +++ b/account_permanent_lock_move/i18n/ca_ES.po @@ -0,0 +1,154 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_permanent_lock_move +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-11 00:39+0000\n" +"PO-Revision-Date: 2017-05-11 00:39+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Catalan (Spain) (https://www.transifex.com/oca/teams/23907/" +"ca_ES/)\n" +"Language: ca_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: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_move +msgid "Account Entry" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "" +"All journal entries prior to and included at this date will be permanently " +"locked." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Cancel" +msgstr "Cancel·la" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_res_company +msgid "Companies" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_company_id +msgid "Company" +msgstr "Companyia" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_uid +msgid "Created by" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_date +msgid "Created on" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_display_name +msgid "Display Name" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_id +msgid "ID" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard___last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_uid +msgid "Last Updated by" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_date +msgid "Last Updated on" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_lock_date +msgid "Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock Journal Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock permanently entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of \"Lock Date\"." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of Lock Date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "Permanent Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.view_account_config_settings_permanent_lock +msgid "Permanently Lock Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/models/account_move.py:15 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the permanent lock " +"date." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:22 +#, python-format +msgid "You cannot set the permanent lock date in the past." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:31 +#, python-format +msgid "" +"You cannot set the permanent lock date since entries are still unposted " +"before this date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_config_settings +msgid "account.config.settings" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_permanent_lock_date_wizard +msgid "permanent.lock.date.wizard" +msgstr "" diff --git a/account_permanent_lock_move/i18n/cs.po b/account_permanent_lock_move/i18n/cs.po new file mode 100644 index 00000000000..e621a9d7fbe --- /dev/null +++ b/account_permanent_lock_move/i18n/cs.po @@ -0,0 +1,153 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_permanent_lock_move +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-11 00:39+0000\n" +"PO-Revision-Date: 2017-05-11 00:39+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: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_move +msgid "Account Entry" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "" +"All journal entries prior to and included at this date will be permanently " +"locked." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Cancel" +msgstr "Zrušit" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_res_company +msgid "Companies" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_company_id +msgid "Company" +msgstr "Společnost" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_uid +msgid "Created by" +msgstr "Vytvořil(a)" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_date +msgid "Created on" +msgstr "Vytvořeno" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_display_name +msgid "Display Name" +msgstr "Zobrazovaný název" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_id +msgid "ID" +msgstr "ID" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard___last_update +msgid "Last Modified on" +msgstr "Naposled upraveno" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_uid +msgid "Last Updated by" +msgstr "Naposled upraveno" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_date +msgid "Last Updated on" +msgstr "Naposled upraveno" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_lock_date +msgid "Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock Journal Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock permanently entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of \"Lock Date\"." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of Lock Date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "Permanent Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.view_account_config_settings_permanent_lock +msgid "Permanently Lock Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/models/account_move.py:15 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the permanent lock " +"date." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:22 +#, python-format +msgid "You cannot set the permanent lock date in the past." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:31 +#, python-format +msgid "" +"You cannot set the permanent lock date since entries are still unposted " +"before this date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_config_settings +msgid "account.config.settings" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_permanent_lock_date_wizard +msgid "permanent.lock.date.wizard" +msgstr "" diff --git a/account_permanent_lock_move/i18n/da.po b/account_permanent_lock_move/i18n/da.po new file mode 100644 index 00000000000..415ae5ab481 --- /dev/null +++ b/account_permanent_lock_move/i18n/da.po @@ -0,0 +1,153 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_permanent_lock_move +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-11 00:39+0000\n" +"PO-Revision-Date: 2017-05-11 00:39+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: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_move +msgid "Account Entry" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "" +"All journal entries prior to and included at this date will be permanently " +"locked." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Cancel" +msgstr "Annuller" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_res_company +msgid "Companies" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_company_id +msgid "Company" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_uid +msgid "Created by" +msgstr "Oprettet af" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_date +msgid "Created on" +msgstr "Oprettet den" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_display_name +msgid "Display Name" +msgstr "Vist navn" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_id +msgid "ID" +msgstr "Id" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard___last_update +msgid "Last Modified on" +msgstr "Sidst ændret den" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_uid +msgid "Last Updated by" +msgstr "Sidst opdateret af" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_date +msgid "Last Updated on" +msgstr "Sidst opdateret den" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_lock_date +msgid "Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock Journal Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock permanently entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of \"Lock Date\"." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of Lock Date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "Permanent Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.view_account_config_settings_permanent_lock +msgid "Permanently Lock Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/models/account_move.py:15 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the permanent lock " +"date." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:22 +#, python-format +msgid "You cannot set the permanent lock date in the past." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:31 +#, python-format +msgid "" +"You cannot set the permanent lock date since entries are still unposted " +"before this date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_config_settings +msgid "account.config.settings" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_permanent_lock_date_wizard +msgid "permanent.lock.date.wizard" +msgstr "" diff --git a/account_permanent_lock_move/i18n/de.po b/account_permanent_lock_move/i18n/de.po new file mode 100644 index 00000000000..c3dfef39999 --- /dev/null +++ b/account_permanent_lock_move/i18n/de.po @@ -0,0 +1,153 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_permanent_lock_move +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-28 23:24+0000\n" +"PO-Revision-Date: 2017-11-28 23:24+0000\n" +"Last-Translator: OCA Transbot , 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: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_move +msgid "Account Entry" +msgstr "Kontobuchung" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "" +"All journal entries prior to and included at this date will be permanently " +"locked." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Cancel" +msgstr "Abbrechen" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_res_company +msgid "Companies" +msgstr "Unternehmen" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_company_id +msgid "Company" +msgstr "Unternehmen" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_uid +msgid "Created by" +msgstr "Erstellt von" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_date +msgid "Created on" +msgstr "Erstellt am" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_display_name +msgid "Display Name" +msgstr "Anzeigename" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_id +msgid "ID" +msgstr "ID" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard___last_update +msgid "Last Modified on" +msgstr "Zuletzt geändert am" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_uid +msgid "Last Updated by" +msgstr "Zuletzt geändert von" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_date +msgid "Last Updated on" +msgstr "Zuletzt geändert am" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_lock_date +msgid "Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock Journal Entries" +msgstr "Journalposten sperren" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock permanently entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of \"Lock Date\"." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of Lock Date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "Permanent Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.view_account_config_settings_permanent_lock +msgid "Permanently Lock Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/models/account_move.py:15 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the permanent lock " +"date." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:22 +#, python-format +msgid "You cannot set the permanent lock date in the past." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:31 +#, python-format +msgid "" +"You cannot set the permanent lock date since entries are still unposted " +"before this date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_config_settings +msgid "account.config.settings" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_permanent_lock_date_wizard +msgid "permanent.lock.date.wizard" +msgstr "" diff --git a/account_permanent_lock_move/i18n/el_GR.po b/account_permanent_lock_move/i18n/el_GR.po new file mode 100644 index 00000000000..a8849028cbb --- /dev/null +++ b/account_permanent_lock_move/i18n/el_GR.po @@ -0,0 +1,154 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_permanent_lock_move +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-11 00:39+0000\n" +"PO-Revision-Date: 2017-05-11 00:39+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: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_move +msgid "Account Entry" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "" +"All journal entries prior to and included at this date will be permanently " +"locked." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Cancel" +msgstr "Άκυρο" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_res_company +msgid "Companies" +msgstr "Εταιρείες" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_company_id +msgid "Company" +msgstr "Εταιρεία" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_uid +msgid "Created by" +msgstr "Δημιουργήθηκε από " + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_date +msgid "Created on" +msgstr "Δημιουργήθηκε στις" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_display_name +msgid "Display Name" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_id +msgid "ID" +msgstr "Κωδικός" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard___last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_uid +msgid "Last Updated by" +msgstr "Τελευταία ενημέρωση από" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_date +msgid "Last Updated on" +msgstr "Τελευταία ενημέρωση στις" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_lock_date +msgid "Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock Journal Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock permanently entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of \"Lock Date\"." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of Lock Date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "Permanent Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.view_account_config_settings_permanent_lock +msgid "Permanently Lock Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/models/account_move.py:15 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the permanent lock " +"date." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:22 +#, python-format +msgid "You cannot set the permanent lock date in the past." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:31 +#, python-format +msgid "" +"You cannot set the permanent lock date since entries are still unposted " +"before this date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_config_settings +msgid "account.config.settings" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_permanent_lock_date_wizard +msgid "permanent.lock.date.wizard" +msgstr "" diff --git a/account_permanent_lock_move/i18n/en_AU.po b/account_permanent_lock_move/i18n/en_AU.po new file mode 100644 index 00000000000..281af9e616c --- /dev/null +++ b/account_permanent_lock_move/i18n/en_AU.po @@ -0,0 +1,154 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_permanent_lock_move +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-11 00:39+0000\n" +"PO-Revision-Date: 2017-05-11 00:39+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: English (Australia) (https://www.transifex.com/oca/" +"teams/23907/en_AU/)\n" +"Language: en_AU\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_move +msgid "Account Entry" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "" +"All journal entries prior to and included at this date will be permanently " +"locked." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Cancel" +msgstr "Cancel" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_res_company +msgid "Companies" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_company_id +msgid "Company" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_uid +msgid "Created by" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_date +msgid "Created on" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_display_name +msgid "Display Name" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_id +msgid "ID" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard___last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_uid +msgid "Last Updated by" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_date +msgid "Last Updated on" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_lock_date +msgid "Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock Journal Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock permanently entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of \"Lock Date\"." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of Lock Date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "Permanent Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.view_account_config_settings_permanent_lock +msgid "Permanently Lock Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/models/account_move.py:15 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the permanent lock " +"date." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:22 +#, python-format +msgid "You cannot set the permanent lock date in the past." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:31 +#, python-format +msgid "" +"You cannot set the permanent lock date since entries are still unposted " +"before this date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_config_settings +msgid "account.config.settings" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_permanent_lock_date_wizard +msgid "permanent.lock.date.wizard" +msgstr "" diff --git a/account_permanent_lock_move/i18n/en_GB.po b/account_permanent_lock_move/i18n/en_GB.po new file mode 100644 index 00000000000..6dc7ddc8cbe --- /dev/null +++ b/account_permanent_lock_move/i18n/en_GB.po @@ -0,0 +1,154 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_permanent_lock_move +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-11 00:39+0000\n" +"PO-Revision-Date: 2017-05-11 00:39+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: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_move +msgid "Account Entry" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "" +"All journal entries prior to and included at this date will be permanently " +"locked." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Cancel" +msgstr "Cancel" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_res_company +msgid "Companies" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_company_id +msgid "Company" +msgstr "Company" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_uid +msgid "Created by" +msgstr "Created by" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_date +msgid "Created on" +msgstr "Created on" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_display_name +msgid "Display Name" +msgstr "Display Name" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_id +msgid "ID" +msgstr "ID" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard___last_update +msgid "Last Modified on" +msgstr "Last Modified on" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_uid +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_date +msgid "Last Updated on" +msgstr "Last Updated on" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_lock_date +msgid "Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock Journal Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock permanently entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of \"Lock Date\"." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of Lock Date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "Permanent Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.view_account_config_settings_permanent_lock +msgid "Permanently Lock Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/models/account_move.py:15 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the permanent lock " +"date." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:22 +#, python-format +msgid "You cannot set the permanent lock date in the past." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:31 +#, python-format +msgid "" +"You cannot set the permanent lock date since entries are still unposted " +"before this date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_config_settings +msgid "account.config.settings" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_permanent_lock_date_wizard +msgid "permanent.lock.date.wizard" +msgstr "" diff --git a/account_permanent_lock_move/i18n/es.po b/account_permanent_lock_move/i18n/es.po new file mode 100644 index 00000000000..e8725e16584 --- /dev/null +++ b/account_permanent_lock_move/i18n/es.po @@ -0,0 +1,153 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_permanent_lock_move +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-11 00:39+0000\n" +"PO-Revision-Date: 2017-05-11 00:39+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\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" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_move +msgid "Account Entry" +msgstr "Asiento contable" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "" +"All journal entries prior to and included at this date will be permanently " +"locked." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_res_company +msgid "Companies" +msgstr "Compañías" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_company_id +msgid "Company" +msgstr "Compañía" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_id +msgid "ID" +msgstr "ID" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard___last_update +msgid "Last Modified on" +msgstr "Última modificación el" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_uid +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_lock_date +msgid "Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock Journal Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock permanently entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of \"Lock Date\"." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of Lock Date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "Permanent Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.view_account_config_settings_permanent_lock +msgid "Permanently Lock Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/models/account_move.py:15 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the permanent lock " +"date." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:22 +#, python-format +msgid "You cannot set the permanent lock date in the past." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:31 +#, python-format +msgid "" +"You cannot set the permanent lock date since entries are still unposted " +"before this date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_config_settings +msgid "account.config.settings" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_permanent_lock_date_wizard +msgid "permanent.lock.date.wizard" +msgstr "" diff --git a/account_permanent_lock_move/i18n/es_AR.po b/account_permanent_lock_move/i18n/es_AR.po new file mode 100644 index 00000000000..178ad33e10a --- /dev/null +++ b/account_permanent_lock_move/i18n/es_AR.po @@ -0,0 +1,154 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_permanent_lock_move +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-11 00:39+0000\n" +"PO-Revision-Date: 2017-05-11 00:39+0000\n" +"Last-Translator: OCA Transbot , 2017\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" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_move +msgid "Account Entry" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "" +"All journal entries prior to and included at this date will be permanently " +"locked." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_res_company +msgid "Companies" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_company_id +msgid "Company" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_display_name +msgid "Display Name" +msgstr "Mostrar Nombre" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_id +msgid "ID" +msgstr "ID" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard___last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_uid +msgid "Last Updated by" +msgstr "Última actualización realizada por" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_date +msgid "Last Updated on" +msgstr "Última actualización el" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_lock_date +msgid "Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock Journal Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock permanently entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of \"Lock Date\"." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of Lock Date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "Permanent Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.view_account_config_settings_permanent_lock +msgid "Permanently Lock Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/models/account_move.py:15 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the permanent lock " +"date." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:22 +#, python-format +msgid "You cannot set the permanent lock date in the past." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:31 +#, python-format +msgid "" +"You cannot set the permanent lock date since entries are still unposted " +"before this date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_config_settings +msgid "account.config.settings" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_permanent_lock_date_wizard +msgid "permanent.lock.date.wizard" +msgstr "" diff --git a/account_permanent_lock_move/i18n/es_CL.po b/account_permanent_lock_move/i18n/es_CL.po new file mode 100644 index 00000000000..5a5f0eb601e --- /dev/null +++ b/account_permanent_lock_move/i18n/es_CL.po @@ -0,0 +1,154 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_permanent_lock_move +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-11 00:39+0000\n" +"PO-Revision-Date: 2017-05-11 00:39+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: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_move +msgid "Account Entry" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "" +"All journal entries prior to and included at this date will be permanently " +"locked." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_res_company +msgid "Companies" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_company_id +msgid "Company" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_id +msgid "ID" +msgstr "ID (identificación)" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard___last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_uid +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_lock_date +msgid "Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock Journal Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock permanently entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of \"Lock Date\"." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of Lock Date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "Permanent Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.view_account_config_settings_permanent_lock +msgid "Permanently Lock Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/models/account_move.py:15 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the permanent lock " +"date." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:22 +#, python-format +msgid "You cannot set the permanent lock date in the past." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:31 +#, python-format +msgid "" +"You cannot set the permanent lock date since entries are still unposted " +"before this date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_config_settings +msgid "account.config.settings" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_permanent_lock_date_wizard +msgid "permanent.lock.date.wizard" +msgstr "" diff --git a/account_permanent_lock_move/i18n/es_CO.po b/account_permanent_lock_move/i18n/es_CO.po new file mode 100644 index 00000000000..0238bd7fc22 --- /dev/null +++ b/account_permanent_lock_move/i18n/es_CO.po @@ -0,0 +1,154 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_permanent_lock_move +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-11 00:39+0000\n" +"PO-Revision-Date: 2017-05-11 00:39+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: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_move +msgid "Account Entry" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "" +"All journal entries prior to and included at this date will be permanently " +"locked." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_res_company +msgid "Companies" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_company_id +msgid "Company" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_date +msgid "Created on" +msgstr "Creado" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_display_name +msgid "Display Name" +msgstr "Nombre Público" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_id +msgid "ID" +msgstr "ID" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard___last_update +msgid "Last Modified on" +msgstr "Última Modificación el" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_uid +msgid "Last Updated by" +msgstr "Actualizado por" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_date +msgid "Last Updated on" +msgstr "Actualizado" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_lock_date +msgid "Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock Journal Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock permanently entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of \"Lock Date\"." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of Lock Date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "Permanent Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.view_account_config_settings_permanent_lock +msgid "Permanently Lock Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/models/account_move.py:15 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the permanent lock " +"date." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:22 +#, python-format +msgid "You cannot set the permanent lock date in the past." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:31 +#, python-format +msgid "" +"You cannot set the permanent lock date since entries are still unposted " +"before this date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_config_settings +msgid "account.config.settings" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_permanent_lock_date_wizard +msgid "permanent.lock.date.wizard" +msgstr "" diff --git a/account_permanent_lock_move/i18n/es_CR.po b/account_permanent_lock_move/i18n/es_CR.po new file mode 100644 index 00000000000..94a2899607f --- /dev/null +++ b/account_permanent_lock_move/i18n/es_CR.po @@ -0,0 +1,154 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_permanent_lock_move +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-11 00:39+0000\n" +"PO-Revision-Date: 2017-05-11 00:39+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: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_move +msgid "Account Entry" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "" +"All journal entries prior to and included at this date will be permanently " +"locked." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_res_company +msgid "Companies" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_company_id +msgid "Company" +msgstr "Compañía" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_display_name +msgid "Display Name" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_id +msgid "ID" +msgstr "ID" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard___last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_uid +msgid "Last Updated by" +msgstr "Ultima actualización por" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_date +msgid "Last Updated on" +msgstr "Ultima actualización en" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_lock_date +msgid "Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock Journal Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock permanently entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of \"Lock Date\"." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of Lock Date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "Permanent Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.view_account_config_settings_permanent_lock +msgid "Permanently Lock Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/models/account_move.py:15 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the permanent lock " +"date." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:22 +#, python-format +msgid "You cannot set the permanent lock date in the past." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:31 +#, python-format +msgid "" +"You cannot set the permanent lock date since entries are still unposted " +"before this date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_config_settings +msgid "account.config.settings" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_permanent_lock_date_wizard +msgid "permanent.lock.date.wizard" +msgstr "" diff --git a/account_permanent_lock_move/i18n/es_DO.po b/account_permanent_lock_move/i18n/es_DO.po new file mode 100644 index 00000000000..f33263442d3 --- /dev/null +++ b/account_permanent_lock_move/i18n/es_DO.po @@ -0,0 +1,154 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_permanent_lock_move +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-11 00:39+0000\n" +"PO-Revision-Date: 2017-05-11 00:39+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: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_move +msgid "Account Entry" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "" +"All journal entries prior to and included at this date will be permanently " +"locked." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_res_company +msgid "Companies" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_company_id +msgid "Company" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_id +msgid "ID" +msgstr "ID" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard___last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_uid +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_lock_date +msgid "Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock Journal Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock permanently entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of \"Lock Date\"." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of Lock Date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "Permanent Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.view_account_config_settings_permanent_lock +msgid "Permanently Lock Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/models/account_move.py:15 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the permanent lock " +"date." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:22 +#, python-format +msgid "You cannot set the permanent lock date in the past." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:31 +#, python-format +msgid "" +"You cannot set the permanent lock date since entries are still unposted " +"before this date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_config_settings +msgid "account.config.settings" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_permanent_lock_date_wizard +msgid "permanent.lock.date.wizard" +msgstr "" diff --git a/account_permanent_lock_move/i18n/es_EC.po b/account_permanent_lock_move/i18n/es_EC.po new file mode 100644 index 00000000000..618a24fff3f --- /dev/null +++ b/account_permanent_lock_move/i18n/es_EC.po @@ -0,0 +1,155 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_permanent_lock_move +# +# Translators: +# OCA Transbot , 2017 +# Cristian Salamea , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-28 23:24+0000\n" +"PO-Revision-Date: 2017-11-28 23:24+0000\n" +"Last-Translator: Cristian Salamea , 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: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_move +msgid "Account Entry" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "" +"All journal entries prior to and included at this date will be permanently " +"locked." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_res_company +msgid "Companies" +msgstr "Compañías" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_company_id +msgid "Company" +msgstr "Compañía" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_id +msgid "ID" +msgstr "ID (identificación)" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard___last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_uid +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_lock_date +msgid "Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock Journal Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock permanently entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of \"Lock Date\"." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of Lock Date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "Permanent Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.view_account_config_settings_permanent_lock +msgid "Permanently Lock Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/models/account_move.py:15 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the permanent lock " +"date." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:22 +#, python-format +msgid "You cannot set the permanent lock date in the past." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:31 +#, python-format +msgid "" +"You cannot set the permanent lock date since entries are still unposted " +"before this date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_config_settings +msgid "account.config.settings" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_permanent_lock_date_wizard +msgid "permanent.lock.date.wizard" +msgstr "" diff --git a/account_permanent_lock_move/i18n/es_ES.po b/account_permanent_lock_move/i18n/es_ES.po new file mode 100644 index 00000000000..6104005f00d --- /dev/null +++ b/account_permanent_lock_move/i18n/es_ES.po @@ -0,0 +1,154 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_permanent_lock_move +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-02-01 03:44+0000\n" +"PO-Revision-Date: 2018-02-01 03:44+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: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_move +msgid "Account Entry" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "" +"All journal entries prior to and included at this date will be permanently " +"locked." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_res_company +msgid "Companies" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_company_id +msgid "Company" +msgstr "Compañía" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_display_name +msgid "Display Name" +msgstr "Nombre para mostrar" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_id +msgid "ID" +msgstr "ID" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard___last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_uid +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_lock_date +msgid "Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock Journal Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock permanently entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of \"Lock Date\"." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of Lock Date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "Permanent Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.view_account_config_settings_permanent_lock +msgid "Permanently Lock Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/models/account_move.py:15 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the permanent lock " +"date." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:22 +#, python-format +msgid "You cannot set the permanent lock date in the past." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:31 +#, python-format +msgid "" +"You cannot set the permanent lock date since entries are still unposted " +"before this date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_config_settings +msgid "account.config.settings" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_permanent_lock_date_wizard +msgid "permanent.lock.date.wizard" +msgstr "" diff --git a/account_permanent_lock_move/i18n/es_MX.po b/account_permanent_lock_move/i18n/es_MX.po new file mode 100644 index 00000000000..087b92caf01 --- /dev/null +++ b/account_permanent_lock_move/i18n/es_MX.po @@ -0,0 +1,154 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_permanent_lock_move +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-11 00:39+0000\n" +"PO-Revision-Date: 2017-05-11 00:39+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: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_move +msgid "Account Entry" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "" +"All journal entries prior to and included at this date will be permanently " +"locked." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_res_company +msgid "Companies" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_company_id +msgid "Company" +msgstr "Compañía" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_display_name +msgid "Display Name" +msgstr "Nombre desplegado" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_id +msgid "ID" +msgstr "ID" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard___last_update +msgid "Last Modified on" +msgstr "Ultima modificacion realizada" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_uid +msgid "Last Updated by" +msgstr "Ultima actualizacion por" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_date +msgid "Last Updated on" +msgstr "Ultima actualización realizada" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_lock_date +msgid "Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock Journal Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock permanently entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of \"Lock Date\"." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of Lock Date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "Permanent Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.view_account_config_settings_permanent_lock +msgid "Permanently Lock Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/models/account_move.py:15 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the permanent lock " +"date." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:22 +#, python-format +msgid "You cannot set the permanent lock date in the past." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:31 +#, python-format +msgid "" +"You cannot set the permanent lock date since entries are still unposted " +"before this date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_config_settings +msgid "account.config.settings" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_permanent_lock_date_wizard +msgid "permanent.lock.date.wizard" +msgstr "" diff --git a/account_permanent_lock_move/i18n/es_PE.po b/account_permanent_lock_move/i18n/es_PE.po new file mode 100644 index 00000000000..6e558f54ebf --- /dev/null +++ b/account_permanent_lock_move/i18n/es_PE.po @@ -0,0 +1,154 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_permanent_lock_move +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-11 00:39+0000\n" +"PO-Revision-Date: 2017-05-11 00:39+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: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_move +msgid "Account Entry" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "" +"All journal entries prior to and included at this date will be permanently " +"locked." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Cancel" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_res_company +msgid "Companies" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_company_id +msgid "Company" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_display_name +msgid "Display Name" +msgstr "Nombre a Mostrar" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_id +msgid "ID" +msgstr "ID" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard___last_update +msgid "Last Modified on" +msgstr "Ultima Modificación en" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_uid +msgid "Last Updated by" +msgstr "Actualizado última vez por" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_date +msgid "Last Updated on" +msgstr "Ultima Actualización" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_lock_date +msgid "Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock Journal Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock permanently entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of \"Lock Date\"." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of Lock Date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "Permanent Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.view_account_config_settings_permanent_lock +msgid "Permanently Lock Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/models/account_move.py:15 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the permanent lock " +"date." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:22 +#, python-format +msgid "You cannot set the permanent lock date in the past." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:31 +#, python-format +msgid "" +"You cannot set the permanent lock date since entries are still unposted " +"before this date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_config_settings +msgid "account.config.settings" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_permanent_lock_date_wizard +msgid "permanent.lock.date.wizard" +msgstr "" diff --git a/account_permanent_lock_move/i18n/es_PY.po b/account_permanent_lock_move/i18n/es_PY.po new file mode 100644 index 00000000000..bddb71d795e --- /dev/null +++ b/account_permanent_lock_move/i18n/es_PY.po @@ -0,0 +1,154 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_permanent_lock_move +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-11 00:39+0000\n" +"PO-Revision-Date: 2017-05-11 00:39+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: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_move +msgid "Account Entry" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "" +"All journal entries prior to and included at this date will be permanently " +"locked." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_res_company +msgid "Companies" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_company_id +msgid "Company" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_display_name +msgid "Display Name" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_id +msgid "ID" +msgstr "ID" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard___last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_uid +msgid "Last Updated by" +msgstr "Ultima actualización por" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_date +msgid "Last Updated on" +msgstr "Ultima actualización en" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_lock_date +msgid "Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock Journal Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock permanently entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of \"Lock Date\"." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of Lock Date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "Permanent Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.view_account_config_settings_permanent_lock +msgid "Permanently Lock Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/models/account_move.py:15 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the permanent lock " +"date." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:22 +#, python-format +msgid "You cannot set the permanent lock date in the past." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:31 +#, python-format +msgid "" +"You cannot set the permanent lock date since entries are still unposted " +"before this date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_config_settings +msgid "account.config.settings" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_permanent_lock_date_wizard +msgid "permanent.lock.date.wizard" +msgstr "" diff --git a/account_permanent_lock_move/i18n/es_VE.po b/account_permanent_lock_move/i18n/es_VE.po new file mode 100644 index 00000000000..f6f28c7d2c2 --- /dev/null +++ b/account_permanent_lock_move/i18n/es_VE.po @@ -0,0 +1,154 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_permanent_lock_move +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-11 00:39+0000\n" +"PO-Revision-Date: 2017-05-11 00:39+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: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_move +msgid "Account Entry" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "" +"All journal entries prior to and included at this date will be permanently " +"locked." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_res_company +msgid "Companies" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_company_id +msgid "Company" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_display_name +msgid "Display Name" +msgstr "Mostrar nombre" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_id +msgid "ID" +msgstr "ID" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard___last_update +msgid "Last Modified on" +msgstr "Modificada por última vez" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_uid +msgid "Last Updated by" +msgstr "Última actualización realizada por" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_date +msgid "Last Updated on" +msgstr "Ultima actualizacion en" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_lock_date +msgid "Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock Journal Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock permanently entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of \"Lock Date\"." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of Lock Date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "Permanent Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.view_account_config_settings_permanent_lock +msgid "Permanently Lock Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/models/account_move.py:15 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the permanent lock " +"date." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:22 +#, python-format +msgid "You cannot set the permanent lock date in the past." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:31 +#, python-format +msgid "" +"You cannot set the permanent lock date since entries are still unposted " +"before this date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_config_settings +msgid "account.config.settings" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_permanent_lock_date_wizard +msgid "permanent.lock.date.wizard" +msgstr "" diff --git a/account_permanent_lock_move/i18n/et.po b/account_permanent_lock_move/i18n/et.po new file mode 100644 index 00000000000..d6d938c5539 --- /dev/null +++ b/account_permanent_lock_move/i18n/et.po @@ -0,0 +1,153 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_permanent_lock_move +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-11 00:39+0000\n" +"PO-Revision-Date: 2017-05-11 00:39+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: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_move +msgid "Account Entry" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "" +"All journal entries prior to and included at this date will be permanently " +"locked." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Cancel" +msgstr "Loobu" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_res_company +msgid "Companies" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_company_id +msgid "Company" +msgstr "Ettevõte" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_uid +msgid "Created by" +msgstr "Loonud" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_date +msgid "Created on" +msgstr "Loodud" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_display_name +msgid "Display Name" +msgstr "Näidatav nimi" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_id +msgid "ID" +msgstr "ID" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard___last_update +msgid "Last Modified on" +msgstr "Viimati muudetud" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_uid +msgid "Last Updated by" +msgstr "Viimati uuendatud" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_date +msgid "Last Updated on" +msgstr "Viimati uuendatud" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_lock_date +msgid "Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock Journal Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock permanently entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of \"Lock Date\"." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of Lock Date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "Permanent Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.view_account_config_settings_permanent_lock +msgid "Permanently Lock Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/models/account_move.py:15 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the permanent lock " +"date." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:22 +#, python-format +msgid "You cannot set the permanent lock date in the past." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:31 +#, python-format +msgid "" +"You cannot set the permanent lock date since entries are still unposted " +"before this date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_config_settings +msgid "account.config.settings" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_permanent_lock_date_wizard +msgid "permanent.lock.date.wizard" +msgstr "" diff --git a/account_permanent_lock_move/i18n/eu.po b/account_permanent_lock_move/i18n/eu.po new file mode 100644 index 00000000000..32dda2fbeb5 --- /dev/null +++ b/account_permanent_lock_move/i18n/eu.po @@ -0,0 +1,153 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_permanent_lock_move +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-11 00:39+0000\n" +"PO-Revision-Date: 2017-05-11 00:39+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: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_move +msgid "Account Entry" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "" +"All journal entries prior to and included at this date will be permanently " +"locked." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Cancel" +msgstr "Ezeztatu" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_res_company +msgid "Companies" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_company_id +msgid "Company" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_uid +msgid "Created by" +msgstr "Nork sortua" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_date +msgid "Created on" +msgstr "Created on" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_display_name +msgid "Display Name" +msgstr "Izena erakutsi" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_id +msgid "ID" +msgstr "ID" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard___last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_uid +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_date +msgid "Last Updated on" +msgstr "Last Updated on" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_lock_date +msgid "Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock Journal Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock permanently entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of \"Lock Date\"." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of Lock Date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "Permanent Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.view_account_config_settings_permanent_lock +msgid "Permanently Lock Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/models/account_move.py:15 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the permanent lock " +"date." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:22 +#, python-format +msgid "You cannot set the permanent lock date in the past." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:31 +#, python-format +msgid "" +"You cannot set the permanent lock date since entries are still unposted " +"before this date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_config_settings +msgid "account.config.settings" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_permanent_lock_date_wizard +msgid "permanent.lock.date.wizard" +msgstr "" diff --git a/account_permanent_lock_move/i18n/fa.po b/account_permanent_lock_move/i18n/fa.po new file mode 100644 index 00000000000..29977d726fb --- /dev/null +++ b/account_permanent_lock_move/i18n/fa.po @@ -0,0 +1,153 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_permanent_lock_move +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-11 00:39+0000\n" +"PO-Revision-Date: 2017-05-11 00:39+0000\n" +"Last-Translator: OCA Transbot , 2017\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" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_move +msgid "Account Entry" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "" +"All journal entries prior to and included at this date will be permanently " +"locked." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Cancel" +msgstr "لغو" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_res_company +msgid "Companies" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_company_id +msgid "Company" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_uid +msgid "Created by" +msgstr "ایجاد شده توسط" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_date +msgid "Created on" +msgstr "ایجاد شده در" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_display_name +msgid "Display Name" +msgstr "نام نمایشی" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_id +msgid "ID" +msgstr "شناسه" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard___last_update +msgid "Last Modified on" +msgstr "تاریخ آخرین به‌روزرسانی" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_uid +msgid "Last Updated by" +msgstr "آخرین به روز رسانی توسط" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_date +msgid "Last Updated on" +msgstr "آخرین به روز رسانی در" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_lock_date +msgid "Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock Journal Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock permanently entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of \"Lock Date\"." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of Lock Date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "Permanent Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.view_account_config_settings_permanent_lock +msgid "Permanently Lock Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/models/account_move.py:15 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the permanent lock " +"date." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:22 +#, python-format +msgid "You cannot set the permanent lock date in the past." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:31 +#, python-format +msgid "" +"You cannot set the permanent lock date since entries are still unposted " +"before this date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_config_settings +msgid "account.config.settings" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_permanent_lock_date_wizard +msgid "permanent.lock.date.wizard" +msgstr "" diff --git a/account_permanent_lock_move/i18n/fi.po b/account_permanent_lock_move/i18n/fi.po new file mode 100644 index 00000000000..fc84b14f1bc --- /dev/null +++ b/account_permanent_lock_move/i18n/fi.po @@ -0,0 +1,153 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_permanent_lock_move +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-11 00:39+0000\n" +"PO-Revision-Date: 2017-05-11 00:39+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: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_move +msgid "Account Entry" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "" +"All journal entries prior to and included at this date will be permanently " +"locked." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Cancel" +msgstr "Peruuta" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_res_company +msgid "Companies" +msgstr "Yritykset" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_company_id +msgid "Company" +msgstr "Yritys" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_uid +msgid "Created by" +msgstr "Luonut" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_date +msgid "Created on" +msgstr "Luotu" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_display_name +msgid "Display Name" +msgstr "Nimi" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_id +msgid "ID" +msgstr "ID" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard___last_update +msgid "Last Modified on" +msgstr "Viimeksi muokattu" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_uid +msgid "Last Updated by" +msgstr "Viimeksi päivittänyt" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_date +msgid "Last Updated on" +msgstr "Viimeksi päivitetty" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_lock_date +msgid "Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock Journal Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock permanently entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of \"Lock Date\"." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of Lock Date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "Permanent Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.view_account_config_settings_permanent_lock +msgid "Permanently Lock Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/models/account_move.py:15 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the permanent lock " +"date." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:22 +#, python-format +msgid "You cannot set the permanent lock date in the past." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:31 +#, python-format +msgid "" +"You cannot set the permanent lock date since entries are still unposted " +"before this date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_config_settings +msgid "account.config.settings" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_permanent_lock_date_wizard +msgid "permanent.lock.date.wizard" +msgstr "" diff --git a/account_permanent_lock_move/i18n/fr.po b/account_permanent_lock_move/i18n/fr.po new file mode 100644 index 00000000000..b13901c8d22 --- /dev/null +++ b/account_permanent_lock_move/i18n/fr.po @@ -0,0 +1,153 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_permanent_lock_move +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-28 23:24+0000\n" +"PO-Revision-Date: 2017-11-28 23:24+0000\n" +"Last-Translator: OCA Transbot , 2017\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: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_move +msgid "Account Entry" +msgstr "Pièce comptable" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "" +"All journal entries prior to and included at this date will be permanently " +"locked." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Cancel" +msgstr "Annuler" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_res_company +msgid "Companies" +msgstr "Sociétés" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_company_id +msgid "Company" +msgstr "Société" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_uid +msgid "Created by" +msgstr "Créé par" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_date +msgid "Created on" +msgstr "Créé le" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_display_name +msgid "Display Name" +msgstr "Afficher le nom" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_id +msgid "ID" +msgstr "ID" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard___last_update +msgid "Last Modified on" +msgstr "Dernière Modification le" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_uid +msgid "Last Updated by" +msgstr "Dernière mise à jour par" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_date +msgid "Last Updated on" +msgstr "Dernière mise à jour le" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_lock_date +msgid "Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock Journal Entries" +msgstr "Verrouiler les écritues comptables" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock permanently entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of \"Lock Date\"." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of Lock Date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "Permanent Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.view_account_config_settings_permanent_lock +msgid "Permanently Lock Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/models/account_move.py:15 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the permanent lock " +"date." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:22 +#, python-format +msgid "You cannot set the permanent lock date in the past." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:31 +#, python-format +msgid "" +"You cannot set the permanent lock date since entries are still unposted " +"before this date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_config_settings +msgid "account.config.settings" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_permanent_lock_date_wizard +msgid "permanent.lock.date.wizard" +msgstr "" diff --git a/account_permanent_lock_move/i18n/fr_CA.po b/account_permanent_lock_move/i18n/fr_CA.po new file mode 100644 index 00000000000..94a99264f6e --- /dev/null +++ b/account_permanent_lock_move/i18n/fr_CA.po @@ -0,0 +1,154 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_permanent_lock_move +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-11 00:39+0000\n" +"PO-Revision-Date: 2017-05-11 00:39+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: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_move +msgid "Account Entry" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "" +"All journal entries prior to and included at this date will be permanently " +"locked." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Cancel" +msgstr "Annuler" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_res_company +msgid "Companies" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_company_id +msgid "Company" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_uid +msgid "Created by" +msgstr "Créé par" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_date +msgid "Created on" +msgstr "Créé le" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_display_name +msgid "Display Name" +msgstr "Afficher le nom" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_id +msgid "ID" +msgstr "Identifiant" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard___last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_uid +msgid "Last Updated by" +msgstr "Dernière mise à jour par" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_date +msgid "Last Updated on" +msgstr "Dernière mise à jour le" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_lock_date +msgid "Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock Journal Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock permanently entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of \"Lock Date\"." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of Lock Date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "Permanent Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.view_account_config_settings_permanent_lock +msgid "Permanently Lock Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/models/account_move.py:15 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the permanent lock " +"date." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:22 +#, python-format +msgid "You cannot set the permanent lock date in the past." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:31 +#, python-format +msgid "" +"You cannot set the permanent lock date since entries are still unposted " +"before this date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_config_settings +msgid "account.config.settings" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_permanent_lock_date_wizard +msgid "permanent.lock.date.wizard" +msgstr "" diff --git a/account_permanent_lock_move/i18n/fr_CH.po b/account_permanent_lock_move/i18n/fr_CH.po new file mode 100644 index 00000000000..ee489c79a91 --- /dev/null +++ b/account_permanent_lock_move/i18n/fr_CH.po @@ -0,0 +1,154 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_permanent_lock_move +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-11 00:39+0000\n" +"PO-Revision-Date: 2017-05-11 00:39+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: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_move +msgid "Account Entry" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "" +"All journal entries prior to and included at this date will be permanently " +"locked." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Cancel" +msgstr "Annuler" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_res_company +msgid "Companies" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_company_id +msgid "Company" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_uid +msgid "Created by" +msgstr "Créé par" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_date +msgid "Created on" +msgstr "Créé le" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_display_name +msgid "Display Name" +msgstr "Nom affiché" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_id +msgid "ID" +msgstr "ID" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard___last_update +msgid "Last Modified on" +msgstr "Dernière modification le" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_uid +msgid "Last Updated by" +msgstr "Modifié par" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_date +msgid "Last Updated on" +msgstr "Modifié le" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_lock_date +msgid "Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock Journal Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock permanently entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of \"Lock Date\"." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of Lock Date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "Permanent Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.view_account_config_settings_permanent_lock +msgid "Permanently Lock Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/models/account_move.py:15 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the permanent lock " +"date." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:22 +#, python-format +msgid "You cannot set the permanent lock date in the past." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:31 +#, python-format +msgid "" +"You cannot set the permanent lock date since entries are still unposted " +"before this date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_config_settings +msgid "account.config.settings" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_permanent_lock_date_wizard +msgid "permanent.lock.date.wizard" +msgstr "" diff --git a/account_permanent_lock_move/i18n/fr_FR.po b/account_permanent_lock_move/i18n/fr_FR.po new file mode 100644 index 00000000000..7420a30cac5 --- /dev/null +++ b/account_permanent_lock_move/i18n/fr_FR.po @@ -0,0 +1,154 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_permanent_lock_move +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-11 00:39+0000\n" +"PO-Revision-Date: 2017-05-11 00:39+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: French (France) (https://www.transifex.com/oca/teams/23907/" +"fr_FR/)\n" +"Language: fr_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: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_move +msgid "Account Entry" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "" +"All journal entries prior to and included at this date will be permanently " +"locked." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Cancel" +msgstr "Annuler" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_res_company +msgid "Companies" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_company_id +msgid "Company" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_uid +msgid "Created by" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_date +msgid "Created on" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_display_name +msgid "Display Name" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_id +msgid "ID" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard___last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_uid +msgid "Last Updated by" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_date +msgid "Last Updated on" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_lock_date +msgid "Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock Journal Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock permanently entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of \"Lock Date\"." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of Lock Date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "Permanent Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.view_account_config_settings_permanent_lock +msgid "Permanently Lock Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/models/account_move.py:15 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the permanent lock " +"date." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:22 +#, python-format +msgid "You cannot set the permanent lock date in the past." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:31 +#, python-format +msgid "" +"You cannot set the permanent lock date since entries are still unposted " +"before this date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_config_settings +msgid "account.config.settings" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_permanent_lock_date_wizard +msgid "permanent.lock.date.wizard" +msgstr "" diff --git a/account_permanent_lock_move/i18n/gl.po b/account_permanent_lock_move/i18n/gl.po new file mode 100644 index 00000000000..30a1f1d8f32 --- /dev/null +++ b/account_permanent_lock_move/i18n/gl.po @@ -0,0 +1,153 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_permanent_lock_move +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-11 00:39+0000\n" +"PO-Revision-Date: 2017-05-11 00:39+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: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_move +msgid "Account Entry" +msgstr "Asento contable" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "" +"All journal entries prior to and included at this date will be permanently " +"locked." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_res_company +msgid "Companies" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_company_id +msgid "Company" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_display_name +msgid "Display Name" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_id +msgid "ID" +msgstr "ID" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard___last_update +msgid "Last Modified on" +msgstr "Última modificación" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_uid +msgid "Last Updated by" +msgstr "ültima actualización por" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_lock_date +msgid "Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock Journal Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock permanently entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of \"Lock Date\"." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of Lock Date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "Permanent Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.view_account_config_settings_permanent_lock +msgid "Permanently Lock Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/models/account_move.py:15 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the permanent lock " +"date." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:22 +#, python-format +msgid "You cannot set the permanent lock date in the past." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:31 +#, python-format +msgid "" +"You cannot set the permanent lock date since entries are still unposted " +"before this date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_config_settings +msgid "account.config.settings" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_permanent_lock_date_wizard +msgid "permanent.lock.date.wizard" +msgstr "" diff --git a/account_permanent_lock_move/i18n/gl_ES.po b/account_permanent_lock_move/i18n/gl_ES.po new file mode 100644 index 00000000000..8a0c8ceccbf --- /dev/null +++ b/account_permanent_lock_move/i18n/gl_ES.po @@ -0,0 +1,153 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_permanent_lock_move +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-05-27 02:44+0000\n" +"PO-Revision-Date: 2016-05-26 05:40+0000\n" +"Last-Translator: <>\n" +"Language-Team: Galician (Spain) (http://www.transifex.com/oca/OCA-account-" +"financial-tools-9-0/language/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: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_move +msgid "Account Entry" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "" +"All journal entries prior to and included at this date will be permanently " +"locked." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Cancel" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_res_company +msgid "Companies" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_company_id +msgid "Company" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_uid +msgid "Created by" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_date +msgid "Created on" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_display_name +msgid "Display Name" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_id +msgid "ID" +msgstr "ID" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard___last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_uid +msgid "Last Updated by" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_date +msgid "Last Updated on" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_lock_date +msgid "Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock Journal Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock permanently entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of \"Lock Date\"." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of Lock Date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "Permanent Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.view_account_config_settings_permanent_lock +msgid "Permanently Lock Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/models/account_move.py:15 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the permanent lock " +"date." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:22 +#, python-format +msgid "You cannot set the permanent lock date in the past." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:31 +#, python-format +msgid "" +"You cannot set the permanent lock date since entries are still unposted " +"before this date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_config_settings +msgid "account.config.settings" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_permanent_lock_date_wizard +msgid "permanent.lock.date.wizard" +msgstr "" diff --git a/account_permanent_lock_move/i18n/gu.po b/account_permanent_lock_move/i18n/gu.po new file mode 100644 index 00000000000..3493087da46 --- /dev/null +++ b/account_permanent_lock_move/i18n/gu.po @@ -0,0 +1,153 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_permanent_lock_move +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-11 00:39+0000\n" +"PO-Revision-Date: 2017-05-11 00:39+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Gujarati (https://www.transifex.com/oca/teams/23907/gu/)\n" +"Language: gu\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: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_move +msgid "Account Entry" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "" +"All journal entries prior to and included at this date will be permanently " +"locked." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Cancel" +msgstr "રદ કરો" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_res_company +msgid "Companies" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_company_id +msgid "Company" +msgstr "કંપની" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_uid +msgid "Created by" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_date +msgid "Created on" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_display_name +msgid "Display Name" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_id +msgid "ID" +msgstr "ઓળખ" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard___last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_uid +msgid "Last Updated by" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_date +msgid "Last Updated on" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_lock_date +msgid "Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock Journal Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock permanently entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of \"Lock Date\"." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of Lock Date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "Permanent Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.view_account_config_settings_permanent_lock +msgid "Permanently Lock Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/models/account_move.py:15 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the permanent lock " +"date." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:22 +#, python-format +msgid "You cannot set the permanent lock date in the past." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:31 +#, python-format +msgid "" +"You cannot set the permanent lock date since entries are still unposted " +"before this date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_config_settings +msgid "account.config.settings" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_permanent_lock_date_wizard +msgid "permanent.lock.date.wizard" +msgstr "" diff --git a/account_permanent_lock_move/i18n/he.po b/account_permanent_lock_move/i18n/he.po new file mode 100644 index 00000000000..f6297f90fb6 --- /dev/null +++ b/account_permanent_lock_move/i18n/he.po @@ -0,0 +1,153 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_permanent_lock_move +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-11 00:39+0000\n" +"PO-Revision-Date: 2017-05-11 00:39+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: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_move +msgid "Account Entry" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "" +"All journal entries prior to and included at this date will be permanently " +"locked." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Cancel" +msgstr "בטל" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_res_company +msgid "Companies" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_company_id +msgid "Company" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_uid +msgid "Created by" +msgstr "נוצר על ידי" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_date +msgid "Created on" +msgstr "נוצר ב-" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_display_name +msgid "Display Name" +msgstr "השם המוצג" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_id +msgid "ID" +msgstr "מזהה" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard___last_update +msgid "Last Modified on" +msgstr "תאריך שינוי אחרון" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_uid +msgid "Last Updated by" +msgstr "עודכן לאחרונה על ידי" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_date +msgid "Last Updated on" +msgstr "עודכן לאחרונה על" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_lock_date +msgid "Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock Journal Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock permanently entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of \"Lock Date\"." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of Lock Date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "Permanent Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.view_account_config_settings_permanent_lock +msgid "Permanently Lock Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/models/account_move.py:15 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the permanent lock " +"date." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:22 +#, python-format +msgid "You cannot set the permanent lock date in the past." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:31 +#, python-format +msgid "" +"You cannot set the permanent lock date since entries are still unposted " +"before this date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_config_settings +msgid "account.config.settings" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_permanent_lock_date_wizard +msgid "permanent.lock.date.wizard" +msgstr "" diff --git a/account_permanent_lock_move/i18n/hi.po b/account_permanent_lock_move/i18n/hi.po new file mode 100644 index 00000000000..b8448911115 --- /dev/null +++ b/account_permanent_lock_move/i18n/hi.po @@ -0,0 +1,153 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_permanent_lock_move +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-11 00:39+0000\n" +"PO-Revision-Date: 2017-05-11 00:39+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Hindi (https://www.transifex.com/oca/teams/23907/hi/)\n" +"Language: hi\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: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_move +msgid "Account Entry" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "" +"All journal entries prior to and included at this date will be permanently " +"locked." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Cancel" +msgstr "रद्द" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_res_company +msgid "Companies" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_company_id +msgid "Company" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_uid +msgid "Created by" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_date +msgid "Created on" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_display_name +msgid "Display Name" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_id +msgid "ID" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard___last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_uid +msgid "Last Updated by" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_date +msgid "Last Updated on" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_lock_date +msgid "Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock Journal Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock permanently entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of \"Lock Date\"." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of Lock Date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "Permanent Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.view_account_config_settings_permanent_lock +msgid "Permanently Lock Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/models/account_move.py:15 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the permanent lock " +"date." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:22 +#, python-format +msgid "You cannot set the permanent lock date in the past." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:31 +#, python-format +msgid "" +"You cannot set the permanent lock date since entries are still unposted " +"before this date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_config_settings +msgid "account.config.settings" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_permanent_lock_date_wizard +msgid "permanent.lock.date.wizard" +msgstr "" diff --git a/account_permanent_lock_move/i18n/hr.po b/account_permanent_lock_move/i18n/hr.po new file mode 100644 index 00000000000..7fd4b04a0fa --- /dev/null +++ b/account_permanent_lock_move/i18n/hr.po @@ -0,0 +1,155 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_permanent_lock_move +# +# Translators: +# OCA Transbot , 2017 +# Bole , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-02-23 01:41+0000\n" +"PO-Revision-Date: 2018-02-23 01:41+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: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_move +msgid "Account Entry" +msgstr "Stavka knjiženja" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "" +"All journal entries prior to and included at this date will be permanently " +"locked." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Cancel" +msgstr "Odustani" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_res_company +msgid "Companies" +msgstr "Poduzeća" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_company_id +msgid "Company" +msgstr "Organizacija" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_date +msgid "Created on" +msgstr "Kreirano" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_display_name +msgid "Display Name" +msgstr "Prikaži ime" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_id +msgid "ID" +msgstr "ID" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard___last_update +msgid "Last Modified on" +msgstr "Zadnja izmjena dana" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_uid +msgid "Last Updated by" +msgstr "Zadnji ažurirao" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_date +msgid "Last Updated on" +msgstr "Zadnje ažurirano dana" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_lock_date +msgid "Lock Date" +msgstr "Datum zaključavanja" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock Journal Entries" +msgstr "Zaključaj stavke dnevnika" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock permanently entries" +msgstr "Trajno zaključaj stavke" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of \"Lock Date\"." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of Lock Date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "Permanent Lock Date" +msgstr "Datum trajnog zaključavanja" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.view_account_config_settings_permanent_lock +msgid "Permanently Lock Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/models/account_move.py:15 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the permanent lock " +"date." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:22 +#, python-format +msgid "You cannot set the permanent lock date in the past." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:31 +#, python-format +msgid "" +"You cannot set the permanent lock date since entries are still unposted " +"before this date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_config_settings +msgid "account.config.settings" +msgstr "account.config.settings" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_permanent_lock_date_wizard +msgid "permanent.lock.date.wizard" +msgstr "permanent.lock.date.wizard" diff --git a/account_permanent_lock_move/i18n/hr_HR.po b/account_permanent_lock_move/i18n/hr_HR.po new file mode 100644 index 00000000000..b2558eb5dcd --- /dev/null +++ b/account_permanent_lock_move/i18n/hr_HR.po @@ -0,0 +1,161 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_permanent_lock_move +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-28 23:24+0000\n" +"PO-Revision-Date: 2017-11-28 23:24+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: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_move +msgid "Account Entry" +msgstr "Stavka dnevnika" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "" +"All journal entries prior to and included at this date will be permanently " +"locked." +msgstr "" +"Sve stavke dnevnika prije i uključujući ovaj datum biti će kompletno " +"zaključani." + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Cancel" +msgstr "Otkaži" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_res_company +msgid "Companies" +msgstr "Poduzeća" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_company_id +msgid "Company" +msgstr "Poduzeće" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_date +msgid "Created on" +msgstr "Kreirano" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_display_name +msgid "Display Name" +msgstr "Naziv" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_id +msgid "ID" +msgstr "ID" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard___last_update +msgid "Last Modified on" +msgstr "Zadnje modificirano" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_uid +msgid "Last Updated by" +msgstr "Zadnji ažurirao" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_date +msgid "Last Updated on" +msgstr "Zadnje ažurirano" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_lock_date +msgid "Lock Date" +msgstr "Datum zaključavanja" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock Journal Entries" +msgstr "Zaključaj stavke dnevnika" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock permanently entries" +msgstr "Kompletno zaključaj stavke" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of \"Lock Date\"." +msgstr "" +"Nepovratno zaključavanje stavaka prije i uključujući ovaj datum. Koristite " +"ga za zaključavanje fiskalnog perioda umjesto \"Datum zaključavanja\" polja" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of Lock Date." +msgstr "" +"Nepovratno zaključavanje stavaka prije i uključujući ovaj datum. Koristite " +"ga za zaključavanje fiskalnog perioda umjesto polja Datum zaključavanja" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "Permanent Lock Date" +msgstr "Datum trajnog zaključavanja" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.view_account_config_settings_permanent_lock +msgid "Permanently Lock Entries" +msgstr "Trajno zaključaj stavke" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/models/account_move.py:15 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the permanent lock " +"date." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:22 +#, python-format +msgid "You cannot set the permanent lock date in the past." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:31 +#, python-format +msgid "" +"You cannot set the permanent lock date since entries are still unposted " +"before this date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_config_settings +msgid "account.config.settings" +msgstr "account.config.settings" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_permanent_lock_date_wizard +msgid "permanent.lock.date.wizard" +msgstr "permanent.lock.date.wizard" diff --git a/account_permanent_lock_move/i18n/hu.po b/account_permanent_lock_move/i18n/hu.po new file mode 100644 index 00000000000..dc09035e553 --- /dev/null +++ b/account_permanent_lock_move/i18n/hu.po @@ -0,0 +1,153 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_permanent_lock_move +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-11 00:39+0000\n" +"PO-Revision-Date: 2017-05-11 00:39+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: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_move +msgid "Account Entry" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "" +"All journal entries prior to and included at this date will be permanently " +"locked." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Cancel" +msgstr "Mégsem" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_res_company +msgid "Companies" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_company_id +msgid "Company" +msgstr "Vállalat" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_uid +msgid "Created by" +msgstr "Készítette" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_date +msgid "Created on" +msgstr "Létrehozás dátuma" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_display_name +msgid "Display Name" +msgstr "Név megjelenítése" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_id +msgid "ID" +msgstr "ID" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard___last_update +msgid "Last Modified on" +msgstr "Utolsó frissítés dátuma" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_uid +msgid "Last Updated by" +msgstr "Utoljára frissítve, által" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_date +msgid "Last Updated on" +msgstr "Utoljára frissítve " + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_lock_date +msgid "Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock Journal Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock permanently entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of \"Lock Date\"." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of Lock Date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "Permanent Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.view_account_config_settings_permanent_lock +msgid "Permanently Lock Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/models/account_move.py:15 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the permanent lock " +"date." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:22 +#, python-format +msgid "You cannot set the permanent lock date in the past." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:31 +#, python-format +msgid "" +"You cannot set the permanent lock date since entries are still unposted " +"before this date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_config_settings +msgid "account.config.settings" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_permanent_lock_date_wizard +msgid "permanent.lock.date.wizard" +msgstr "" diff --git a/account_permanent_lock_move/i18n/id.po b/account_permanent_lock_move/i18n/id.po new file mode 100644 index 00000000000..900b95b833d --- /dev/null +++ b/account_permanent_lock_move/i18n/id.po @@ -0,0 +1,153 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_permanent_lock_move +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-11 00:39+0000\n" +"PO-Revision-Date: 2017-05-11 00:39+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: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_move +msgid "Account Entry" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "" +"All journal entries prior to and included at this date will be permanently " +"locked." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Cancel" +msgstr "Batalkan" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_res_company +msgid "Companies" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_company_id +msgid "Company" +msgstr "Perusahaan" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_uid +msgid "Created by" +msgstr "Dibuat oleh" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_date +msgid "Created on" +msgstr "Dibuat pada" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_display_name +msgid "Display Name" +msgstr "Nama Tampilan" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_id +msgid "ID" +msgstr "ID" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard___last_update +msgid "Last Modified on" +msgstr "Terakhir Dimodifikasi pada" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_uid +msgid "Last Updated by" +msgstr "Diperbaharui oleh" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_date +msgid "Last Updated on" +msgstr "Diperbaharui pada" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_lock_date +msgid "Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock Journal Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock permanently entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of \"Lock Date\"." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of Lock Date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "Permanent Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.view_account_config_settings_permanent_lock +msgid "Permanently Lock Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/models/account_move.py:15 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the permanent lock " +"date." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:22 +#, python-format +msgid "You cannot set the permanent lock date in the past." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:31 +#, python-format +msgid "" +"You cannot set the permanent lock date since entries are still unposted " +"before this date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_config_settings +msgid "account.config.settings" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_permanent_lock_date_wizard +msgid "permanent.lock.date.wizard" +msgstr "" diff --git a/account_permanent_lock_move/i18n/it.po b/account_permanent_lock_move/i18n/it.po new file mode 100644 index 00000000000..573a29a0323 --- /dev/null +++ b/account_permanent_lock_move/i18n/it.po @@ -0,0 +1,153 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_permanent_lock_move +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-11 00:39+0000\n" +"PO-Revision-Date: 2017-05-11 00:39+0000\n" +"Last-Translator: OCA Transbot , 2017\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" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_move +msgid "Account Entry" +msgstr "Registrazione Contabile" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "" +"All journal entries prior to and included at this date will be permanently " +"locked." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Cancel" +msgstr "Annulla" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_res_company +msgid "Companies" +msgstr "Azienda" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_company_id +msgid "Company" +msgstr "Azienda" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_uid +msgid "Created by" +msgstr "Creato da" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_date +msgid "Created on" +msgstr "Creato il" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_display_name +msgid "Display Name" +msgstr "Nome da visualizzare" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_id +msgid "ID" +msgstr "ID" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard___last_update +msgid "Last Modified on" +msgstr "Ultima modifica il" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_uid +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_date +msgid "Last Updated on" +msgstr "Last Updated on" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_lock_date +msgid "Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock Journal Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock permanently entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of \"Lock Date\"." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of Lock Date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "Permanent Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.view_account_config_settings_permanent_lock +msgid "Permanently Lock Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/models/account_move.py:15 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the permanent lock " +"date." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:22 +#, python-format +msgid "You cannot set the permanent lock date in the past." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:31 +#, python-format +msgid "" +"You cannot set the permanent lock date since entries are still unposted " +"before this date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_config_settings +msgid "account.config.settings" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_permanent_lock_date_wizard +msgid "permanent.lock.date.wizard" +msgstr "" diff --git a/account_permanent_lock_move/i18n/ja.po b/account_permanent_lock_move/i18n/ja.po new file mode 100644 index 00000000000..38468635fc6 --- /dev/null +++ b/account_permanent_lock_move/i18n/ja.po @@ -0,0 +1,153 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_permanent_lock_move +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-11 00:39+0000\n" +"PO-Revision-Date: 2017-05-11 00:39+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: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_move +msgid "Account Entry" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "" +"All journal entries prior to and included at this date will be permanently " +"locked." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Cancel" +msgstr "キャンセル" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_res_company +msgid "Companies" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_company_id +msgid "Company" +msgstr "会社" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_uid +msgid "Created by" +msgstr "作成者" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_date +msgid "Created on" +msgstr "作成日" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_display_name +msgid "Display Name" +msgstr "表示名" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_id +msgid "ID" +msgstr "ID" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard___last_update +msgid "Last Modified on" +msgstr "最終更新日" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_uid +msgid "Last Updated by" +msgstr "最終更新者" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_date +msgid "Last Updated on" +msgstr "最終更新日" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_lock_date +msgid "Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock Journal Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock permanently entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of \"Lock Date\"." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of Lock Date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "Permanent Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.view_account_config_settings_permanent_lock +msgid "Permanently Lock Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/models/account_move.py:15 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the permanent lock " +"date." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:22 +#, python-format +msgid "You cannot set the permanent lock date in the past." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:31 +#, python-format +msgid "" +"You cannot set the permanent lock date since entries are still unposted " +"before this date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_config_settings +msgid "account.config.settings" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_permanent_lock_date_wizard +msgid "permanent.lock.date.wizard" +msgstr "" diff --git a/account_permanent_lock_move/i18n/ko.po b/account_permanent_lock_move/i18n/ko.po new file mode 100644 index 00000000000..6c9580812b6 --- /dev/null +++ b/account_permanent_lock_move/i18n/ko.po @@ -0,0 +1,153 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_permanent_lock_move +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-11 00:39+0000\n" +"PO-Revision-Date: 2017-05-11 00:39+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: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_move +msgid "Account Entry" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "" +"All journal entries prior to and included at this date will be permanently " +"locked." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Cancel" +msgstr "취소" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_res_company +msgid "Companies" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_company_id +msgid "Company" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_uid +msgid "Created by" +msgstr "작성자" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_date +msgid "Created on" +msgstr "작성일" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_display_name +msgid "Display Name" +msgstr "표시 이름" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_id +msgid "ID" +msgstr "ID" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard___last_update +msgid "Last Modified on" +msgstr "최근 수정" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_uid +msgid "Last Updated by" +msgstr "최근 갱신한 사람" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_date +msgid "Last Updated on" +msgstr "최근 갱신 날짜" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_lock_date +msgid "Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock Journal Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock permanently entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of \"Lock Date\"." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of Lock Date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "Permanent Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.view_account_config_settings_permanent_lock +msgid "Permanently Lock Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/models/account_move.py:15 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the permanent lock " +"date." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:22 +#, python-format +msgid "You cannot set the permanent lock date in the past." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:31 +#, python-format +msgid "" +"You cannot set the permanent lock date since entries are still unposted " +"before this date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_config_settings +msgid "account.config.settings" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_permanent_lock_date_wizard +msgid "permanent.lock.date.wizard" +msgstr "" diff --git a/account_permanent_lock_move/i18n/lo.po b/account_permanent_lock_move/i18n/lo.po new file mode 100644 index 00000000000..8aac27bd29d --- /dev/null +++ b/account_permanent_lock_move/i18n/lo.po @@ -0,0 +1,153 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_permanent_lock_move +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-11 00:39+0000\n" +"PO-Revision-Date: 2017-05-11 00:39+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Lao (https://www.transifex.com/oca/teams/23907/lo/)\n" +"Language: lo\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: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_move +msgid "Account Entry" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "" +"All journal entries prior to and included at this date will be permanently " +"locked." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Cancel" +msgstr "ຍົກເລີອກ" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_res_company +msgid "Companies" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_company_id +msgid "Company" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_uid +msgid "Created by" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_date +msgid "Created on" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_display_name +msgid "Display Name" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_id +msgid "ID" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard___last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_uid +msgid "Last Updated by" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_date +msgid "Last Updated on" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_lock_date +msgid "Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock Journal Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock permanently entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of \"Lock Date\"." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of Lock Date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "Permanent Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.view_account_config_settings_permanent_lock +msgid "Permanently Lock Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/models/account_move.py:15 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the permanent lock " +"date." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:22 +#, python-format +msgid "You cannot set the permanent lock date in the past." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:31 +#, python-format +msgid "" +"You cannot set the permanent lock date since entries are still unposted " +"before this date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_config_settings +msgid "account.config.settings" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_permanent_lock_date_wizard +msgid "permanent.lock.date.wizard" +msgstr "" diff --git a/account_permanent_lock_move/i18n/lt.po b/account_permanent_lock_move/i18n/lt.po new file mode 100644 index 00000000000..dc2c9e34e78 --- /dev/null +++ b/account_permanent_lock_move/i18n/lt.po @@ -0,0 +1,155 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_permanent_lock_move +# +# Translators: +# OCA Transbot , 2017 +# Viktoras Norkus , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-25 11:47+0000\n" +"PO-Revision-Date: 2018-01-25 11:47+0000\n" +"Last-Translator: Viktoras Norkus , 2018\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: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_move +msgid "Account Entry" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "" +"All journal entries prior to and included at this date will be permanently " +"locked." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Cancel" +msgstr "Atšaukti" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_res_company +msgid "Companies" +msgstr "Įmonės" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_company_id +msgid "Company" +msgstr "Įmonė" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_uid +msgid "Created by" +msgstr "Sukūrė" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_date +msgid "Created on" +msgstr "Sukurta" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_display_name +msgid "Display Name" +msgstr "Vaizduojamas pavadinimas" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_id +msgid "ID" +msgstr "ID" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard___last_update +msgid "Last Modified on" +msgstr "Paskutinį kartą keista" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_uid +msgid "Last Updated by" +msgstr "Paskutinį kartą atnaujino" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_date +msgid "Last Updated on" +msgstr "Paskutinį kartą atnaujinta" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_lock_date +msgid "Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock Journal Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock permanently entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of \"Lock Date\"." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of Lock Date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "Permanent Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.view_account_config_settings_permanent_lock +msgid "Permanently Lock Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/models/account_move.py:15 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the permanent lock " +"date." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:22 +#, python-format +msgid "You cannot set the permanent lock date in the past." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:31 +#, python-format +msgid "" +"You cannot set the permanent lock date since entries are still unposted " +"before this date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_config_settings +msgid "account.config.settings" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_permanent_lock_date_wizard +msgid "permanent.lock.date.wizard" +msgstr "" diff --git a/account_permanent_lock_move/i18n/lt_LT.po b/account_permanent_lock_move/i18n/lt_LT.po new file mode 100644 index 00000000000..aa8811ec01a --- /dev/null +++ b/account_permanent_lock_move/i18n/lt_LT.po @@ -0,0 +1,155 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_permanent_lock_move +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-11 00:39+0000\n" +"PO-Revision-Date: 2017-05-11 00:39+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: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_move +msgid "Account Entry" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "" +"All journal entries prior to and included at this date will be permanently " +"locked." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Cancel" +msgstr "Atšaukti" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_res_company +msgid "Companies" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_company_id +msgid "Company" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_uid +msgid "Created by" +msgstr "Sukūrė" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_date +msgid "Created on" +msgstr "Sukurta" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_display_name +msgid "Display Name" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_id +msgid "ID" +msgstr "ID" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard___last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_uid +msgid "Last Updated by" +msgstr "Paskutinį kartą atnaujino" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_date +msgid "Last Updated on" +msgstr "Paskutinį kartą atnaujinta" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_lock_date +msgid "Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock Journal Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock permanently entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of \"Lock Date\"." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of Lock Date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "Permanent Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.view_account_config_settings_permanent_lock +msgid "Permanently Lock Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/models/account_move.py:15 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the permanent lock " +"date." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:22 +#, python-format +msgid "You cannot set the permanent lock date in the past." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:31 +#, python-format +msgid "" +"You cannot set the permanent lock date since entries are still unposted " +"before this date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_config_settings +msgid "account.config.settings" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_permanent_lock_date_wizard +msgid "permanent.lock.date.wizard" +msgstr "" diff --git a/account_permanent_lock_move/i18n/lv.po b/account_permanent_lock_move/i18n/lv.po new file mode 100644 index 00000000000..f96f3f14c58 --- /dev/null +++ b/account_permanent_lock_move/i18n/lv.po @@ -0,0 +1,154 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_permanent_lock_move +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-11 00:39+0000\n" +"PO-Revision-Date: 2017-05-11 00:39+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: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_move +msgid "Account Entry" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "" +"All journal entries prior to and included at this date will be permanently " +"locked." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Cancel" +msgstr "Atcelt" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_res_company +msgid "Companies" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_company_id +msgid "Company" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_uid +msgid "Created by" +msgstr "Izveidoja" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_date +msgid "Created on" +msgstr "Izveidots" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_display_name +msgid "Display Name" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_id +msgid "ID" +msgstr "ID" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard___last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_uid +msgid "Last Updated by" +msgstr "Pēdējo reizi atjaunoja" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_date +msgid "Last Updated on" +msgstr "Pēdējās izmaiņas" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_lock_date +msgid "Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock Journal Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock permanently entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of \"Lock Date\"." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of Lock Date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "Permanent Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.view_account_config_settings_permanent_lock +msgid "Permanently Lock Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/models/account_move.py:15 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the permanent lock " +"date." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:22 +#, python-format +msgid "You cannot set the permanent lock date in the past." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:31 +#, python-format +msgid "" +"You cannot set the permanent lock date since entries are still unposted " +"before this date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_config_settings +msgid "account.config.settings" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_permanent_lock_date_wizard +msgid "permanent.lock.date.wizard" +msgstr "" diff --git a/account_permanent_lock_move/i18n/mk.po b/account_permanent_lock_move/i18n/mk.po new file mode 100644 index 00000000000..c41bb2f222e --- /dev/null +++ b/account_permanent_lock_move/i18n/mk.po @@ -0,0 +1,153 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_permanent_lock_move +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-11 00:39+0000\n" +"PO-Revision-Date: 2017-05-11 00:39+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: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_move +msgid "Account Entry" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "" +"All journal entries prior to and included at this date will be permanently " +"locked." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Cancel" +msgstr "Откажи" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_res_company +msgid "Companies" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_company_id +msgid "Company" +msgstr "Компанија" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_uid +msgid "Created by" +msgstr "Креирано од" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_date +msgid "Created on" +msgstr "Креирано на" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_display_name +msgid "Display Name" +msgstr "Прикажи име" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_id +msgid "ID" +msgstr "ID" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard___last_update +msgid "Last Modified on" +msgstr "Последна промена на" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_uid +msgid "Last Updated by" +msgstr "Последно ажурирање од" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_date +msgid "Last Updated on" +msgstr "Последно ажурирање на" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_lock_date +msgid "Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock Journal Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock permanently entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of \"Lock Date\"." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of Lock Date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "Permanent Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.view_account_config_settings_permanent_lock +msgid "Permanently Lock Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/models/account_move.py:15 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the permanent lock " +"date." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:22 +#, python-format +msgid "You cannot set the permanent lock date in the past." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:31 +#, python-format +msgid "" +"You cannot set the permanent lock date since entries are still unposted " +"before this date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_config_settings +msgid "account.config.settings" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_permanent_lock_date_wizard +msgid "permanent.lock.date.wizard" +msgstr "" diff --git a/account_permanent_lock_move/i18n/mn.po b/account_permanent_lock_move/i18n/mn.po new file mode 100644 index 00000000000..c03d05c20cd --- /dev/null +++ b/account_permanent_lock_move/i18n/mn.po @@ -0,0 +1,153 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_permanent_lock_move +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-11 00:39+0000\n" +"PO-Revision-Date: 2017-05-11 00:39+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: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_move +msgid "Account Entry" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "" +"All journal entries prior to and included at this date will be permanently " +"locked." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Cancel" +msgstr "Цуцлах" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_res_company +msgid "Companies" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_company_id +msgid "Company" +msgstr "Компани" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_uid +msgid "Created by" +msgstr "Үүсгэгч" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_date +msgid "Created on" +msgstr "Үүсгэсэн" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_display_name +msgid "Display Name" +msgstr "Дэлгэцийн Нэр" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_id +msgid "ID" +msgstr "ID" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard___last_update +msgid "Last Modified on" +msgstr "Сүүлийн засвар хийсэн огноо" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_uid +msgid "Last Updated by" +msgstr "Сүүлийн засвар хийсэн" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_date +msgid "Last Updated on" +msgstr "Сүүлийн засвар хийсэн огноо" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_lock_date +msgid "Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock Journal Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock permanently entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of \"Lock Date\"." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of Lock Date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "Permanent Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.view_account_config_settings_permanent_lock +msgid "Permanently Lock Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/models/account_move.py:15 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the permanent lock " +"date." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:22 +#, python-format +msgid "You cannot set the permanent lock date in the past." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:31 +#, python-format +msgid "" +"You cannot set the permanent lock date since entries are still unposted " +"before this date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_config_settings +msgid "account.config.settings" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_permanent_lock_date_wizard +msgid "permanent.lock.date.wizard" +msgstr "" diff --git a/account_permanent_lock_move/i18n/nb.po b/account_permanent_lock_move/i18n/nb.po new file mode 100644 index 00000000000..d393da1621f --- /dev/null +++ b/account_permanent_lock_move/i18n/nb.po @@ -0,0 +1,154 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_permanent_lock_move +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-11 00:39+0000\n" +"PO-Revision-Date: 2017-05-11 00:39+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: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_move +msgid "Account Entry" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "" +"All journal entries prior to and included at this date will be permanently " +"locked." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Cancel" +msgstr "Avbryt" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_res_company +msgid "Companies" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_company_id +msgid "Company" +msgstr "Firma" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_uid +msgid "Created by" +msgstr "Opprettet av" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_date +msgid "Created on" +msgstr "Opprettet den" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_display_name +msgid "Display Name" +msgstr "Visnings navn" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_id +msgid "ID" +msgstr "ID" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard___last_update +msgid "Last Modified on" +msgstr "Sist oppdatert " + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_uid +msgid "Last Updated by" +msgstr "Sist oppdatert av" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_date +msgid "Last Updated on" +msgstr "Sist oppdatert" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_lock_date +msgid "Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock Journal Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock permanently entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of \"Lock Date\"." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of Lock Date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "Permanent Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.view_account_config_settings_permanent_lock +msgid "Permanently Lock Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/models/account_move.py:15 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the permanent lock " +"date." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:22 +#, python-format +msgid "You cannot set the permanent lock date in the past." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:31 +#, python-format +msgid "" +"You cannot set the permanent lock date since entries are still unposted " +"before this date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_config_settings +msgid "account.config.settings" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_permanent_lock_date_wizard +msgid "permanent.lock.date.wizard" +msgstr "" diff --git a/account_permanent_lock_move/i18n/nb_NO.po b/account_permanent_lock_move/i18n/nb_NO.po new file mode 100644 index 00000000000..9ee3d6640dc --- /dev/null +++ b/account_permanent_lock_move/i18n/nb_NO.po @@ -0,0 +1,154 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_permanent_lock_move +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-11 00:39+0000\n" +"PO-Revision-Date: 2017-05-11 00:39+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: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_move +msgid "Account Entry" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "" +"All journal entries prior to and included at this date will be permanently " +"locked." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Cancel" +msgstr "Lukk" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_res_company +msgid "Companies" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_company_id +msgid "Company" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_uid +msgid "Created by" +msgstr "Laget av" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_date +msgid "Created on" +msgstr "Laget den" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_display_name +msgid "Display Name" +msgstr "Vis navn" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_id +msgid "ID" +msgstr "ID" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard___last_update +msgid "Last Modified on" +msgstr "Sist endret den" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_uid +msgid "Last Updated by" +msgstr "Sist oppdatert av" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_date +msgid "Last Updated on" +msgstr "Sist oppdatert den" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_lock_date +msgid "Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock Journal Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock permanently entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of \"Lock Date\"." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of Lock Date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "Permanent Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.view_account_config_settings_permanent_lock +msgid "Permanently Lock Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/models/account_move.py:15 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the permanent lock " +"date." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:22 +#, python-format +msgid "You cannot set the permanent lock date in the past." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:31 +#, python-format +msgid "" +"You cannot set the permanent lock date since entries are still unposted " +"before this date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_config_settings +msgid "account.config.settings" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_permanent_lock_date_wizard +msgid "permanent.lock.date.wizard" +msgstr "" diff --git a/account_permanent_lock_move/i18n/nl.po b/account_permanent_lock_move/i18n/nl.po new file mode 100644 index 00000000000..d474c818c32 --- /dev/null +++ b/account_permanent_lock_move/i18n/nl.po @@ -0,0 +1,154 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_permanent_lock_move +# +# Translators: +# OCA Transbot , 2017 +# Frank Schellenberg , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-25 11:47+0000\n" +"PO-Revision-Date: 2018-01-25 11:47+0000\n" +"Last-Translator: Frank Schellenberg , 2018\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: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_move +msgid "Account Entry" +msgstr "Boeking" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "" +"All journal entries prior to and included at this date will be permanently " +"locked." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Cancel" +msgstr "Annuleren" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_res_company +msgid "Companies" +msgstr "Bedrijven" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_company_id +msgid "Company" +msgstr "Bedrijf" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_uid +msgid "Created by" +msgstr "Aangemaakt door" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_date +msgid "Created on" +msgstr "Aangemaakt op" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_display_name +msgid "Display Name" +msgstr "Te tonen naam" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_id +msgid "ID" +msgstr "ID" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard___last_update +msgid "Last Modified on" +msgstr "Laatst bijgewerkt op" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_uid +msgid "Last Updated by" +msgstr "Laatst bijgewerkt door" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_date +msgid "Last Updated on" +msgstr "Laatst bijgewerkt op" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_lock_date +msgid "Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock Journal Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock permanently entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of \"Lock Date\"." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of Lock Date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "Permanent Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.view_account_config_settings_permanent_lock +msgid "Permanently Lock Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/models/account_move.py:15 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the permanent lock " +"date." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:22 +#, python-format +msgid "You cannot set the permanent lock date in the past." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:31 +#, python-format +msgid "" +"You cannot set the permanent lock date since entries are still unposted " +"before this date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_config_settings +msgid "account.config.settings" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_permanent_lock_date_wizard +msgid "permanent.lock.date.wizard" +msgstr "" diff --git a/account_permanent_lock_move/i18n/nl_BE.po b/account_permanent_lock_move/i18n/nl_BE.po new file mode 100644 index 00000000000..f28fb608811 --- /dev/null +++ b/account_permanent_lock_move/i18n/nl_BE.po @@ -0,0 +1,154 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_permanent_lock_move +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-11 00:39+0000\n" +"PO-Revision-Date: 2017-05-11 00:39+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: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_move +msgid "Account Entry" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "" +"All journal entries prior to and included at this date will be permanently " +"locked." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Cancel" +msgstr "Annuleren" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_res_company +msgid "Companies" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_company_id +msgid "Company" +msgstr "Bedrijf" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_uid +msgid "Created by" +msgstr "Gemaakt door" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_date +msgid "Created on" +msgstr "Gemaakt op" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_display_name +msgid "Display Name" +msgstr "Schermnaam" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_id +msgid "ID" +msgstr "ID" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard___last_update +msgid "Last Modified on" +msgstr "Laatst Aangepast op" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_uid +msgid "Last Updated by" +msgstr "Laatst bijgewerkt door" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_date +msgid "Last Updated on" +msgstr "Laatst bijgewerkt op" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_lock_date +msgid "Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock Journal Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock permanently entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of \"Lock Date\"." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of Lock Date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "Permanent Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.view_account_config_settings_permanent_lock +msgid "Permanently Lock Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/models/account_move.py:15 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the permanent lock " +"date." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:22 +#, python-format +msgid "You cannot set the permanent lock date in the past." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:31 +#, python-format +msgid "" +"You cannot set the permanent lock date since entries are still unposted " +"before this date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_config_settings +msgid "account.config.settings" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_permanent_lock_date_wizard +msgid "permanent.lock.date.wizard" +msgstr "" diff --git a/account_permanent_lock_move/i18n/nl_NL.po b/account_permanent_lock_move/i18n/nl_NL.po new file mode 100644 index 00000000000..78c732182a4 --- /dev/null +++ b/account_permanent_lock_move/i18n/nl_NL.po @@ -0,0 +1,154 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_permanent_lock_move +# +# Translators: +# Frank Schellenberg , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-25 11:47+0000\n" +"PO-Revision-Date: 2018-01-25 11:47+0000\n" +"Last-Translator: Frank Schellenberg , 2018\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: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_move +msgid "Account Entry" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "" +"All journal entries prior to and included at this date will be permanently " +"locked." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Cancel" +msgstr "Annuleren" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_res_company +msgid "Companies" +msgstr "Bedrijven" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_company_id +msgid "Company" +msgstr "Bedrijf" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_uid +msgid "Created by" +msgstr "Aangemaakt door" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_date +msgid "Created on" +msgstr "Aangemaakt op" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_display_name +msgid "Display Name" +msgstr "Te tonen naam" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_id +msgid "ID" +msgstr "ID" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard___last_update +msgid "Last Modified on" +msgstr "Laatst bijgewerkt op" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_uid +msgid "Last Updated by" +msgstr "Laatst bijgewerkt door" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_date +msgid "Last Updated on" +msgstr "Laatst bijgewerkt op" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_lock_date +msgid "Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock Journal Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock permanently entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of \"Lock Date\"." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of Lock Date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "Permanent Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.view_account_config_settings_permanent_lock +msgid "Permanently Lock Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/models/account_move.py:15 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the permanent lock " +"date." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:22 +#, python-format +msgid "You cannot set the permanent lock date in the past." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:31 +#, python-format +msgid "" +"You cannot set the permanent lock date since entries are still unposted " +"before this date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_config_settings +msgid "account.config.settings" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_permanent_lock_date_wizard +msgid "permanent.lock.date.wizard" +msgstr "" diff --git a/account_permanent_lock_move/i18n/pl.po b/account_permanent_lock_move/i18n/pl.po new file mode 100644 index 00000000000..ac8fe829591 --- /dev/null +++ b/account_permanent_lock_move/i18n/pl.po @@ -0,0 +1,155 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_permanent_lock_move +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-11 00:39+0000\n" +"PO-Revision-Date: 2017-05-11 00:39+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: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_move +msgid "Account Entry" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "" +"All journal entries prior to and included at this date will be permanently " +"locked." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Cancel" +msgstr "Anuluj" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_res_company +msgid "Companies" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_company_id +msgid "Company" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_uid +msgid "Created by" +msgstr "Utworzone przez" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_date +msgid "Created on" +msgstr "Utworzono" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_display_name +msgid "Display Name" +msgstr "Wyświetlana nazwa " + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_id +msgid "ID" +msgstr "ID" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard___last_update +msgid "Last Modified on" +msgstr "Ostatnio modyfikowano" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_uid +msgid "Last Updated by" +msgstr "Ostatnio modyfikowane przez" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_date +msgid "Last Updated on" +msgstr "Ostatnia zmiana" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_lock_date +msgid "Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock Journal Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock permanently entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of \"Lock Date\"." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of Lock Date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "Permanent Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.view_account_config_settings_permanent_lock +msgid "Permanently Lock Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/models/account_move.py:15 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the permanent lock " +"date." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:22 +#, python-format +msgid "You cannot set the permanent lock date in the past." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:31 +#, python-format +msgid "" +"You cannot set the permanent lock date since entries are still unposted " +"before this date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_config_settings +msgid "account.config.settings" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_permanent_lock_date_wizard +msgid "permanent.lock.date.wizard" +msgstr "" diff --git a/account_permanent_lock_move/i18n/pt.po b/account_permanent_lock_move/i18n/pt.po new file mode 100644 index 00000000000..79a58aa5701 --- /dev/null +++ b/account_permanent_lock_move/i18n/pt.po @@ -0,0 +1,154 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_permanent_lock_move +# +# 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: 2018-03-09 23:25+0000\n" +"PO-Revision-Date: 2018-03-09 23:25+0000\n" +"Last-Translator: Pedro Castro Silva , 2017\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" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_move +msgid "Account Entry" +msgstr "Movimento de Conta" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "" +"All journal entries prior to and included at this date will be permanently " +"locked." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_res_company +msgid "Companies" +msgstr "Empresas" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_company_id +msgid "Company" +msgstr "Empresa" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_uid +msgid "Created by" +msgstr "Criado por" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_date +msgid "Created on" +msgstr "Criado em" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_display_name +msgid "Display Name" +msgstr "Nome" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_id +msgid "ID" +msgstr "ID" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard___last_update +msgid "Last Modified on" +msgstr "Última Modificação Em" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_uid +msgid "Last Updated by" +msgstr "Atualizado pela última vez por" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_date +msgid "Last Updated on" +msgstr "Atualizado pela última vez em" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_lock_date +msgid "Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock Journal Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock permanently entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of \"Lock Date\"." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of Lock Date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "Permanent Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.view_account_config_settings_permanent_lock +msgid "Permanently Lock Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/models/account_move.py:15 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the permanent lock " +"date." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:22 +#, python-format +msgid "You cannot set the permanent lock date in the past." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:31 +#, python-format +msgid "" +"You cannot set the permanent lock date since entries are still unposted " +"before this date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_config_settings +msgid "account.config.settings" +msgstr "account.config.settings" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_permanent_lock_date_wizard +msgid "permanent.lock.date.wizard" +msgstr "" diff --git a/account_permanent_lock_move/i18n/pt_BR.po b/account_permanent_lock_move/i18n/pt_BR.po new file mode 100644 index 00000000000..2384639de99 --- /dev/null +++ b/account_permanent_lock_move/i18n/pt_BR.po @@ -0,0 +1,154 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_permanent_lock_move +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-11 00:39+0000\n" +"PO-Revision-Date: 2017-05-11 00:39+0000\n" +"Last-Translator: OCA Transbot , 2017\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" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_move +msgid "Account Entry" +msgstr "Entrada de conta" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "" +"All journal entries prior to and included at this date will be permanently " +"locked." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_res_company +msgid "Companies" +msgstr "Empresas" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_company_id +msgid "Company" +msgstr "Empresa" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_uid +msgid "Created by" +msgstr "Criado por" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_date +msgid "Created on" +msgstr "Criado em" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_display_name +msgid "Display Name" +msgstr "Nome para Mostrar" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_id +msgid "ID" +msgstr "Identificação" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard___last_update +msgid "Last Modified on" +msgstr "Última atualização em" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_uid +msgid "Last Updated by" +msgstr "Última atualização por" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_date +msgid "Last Updated on" +msgstr "Última atualização em" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_lock_date +msgid "Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock Journal Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock permanently entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of \"Lock Date\"." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of Lock Date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "Permanent Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.view_account_config_settings_permanent_lock +msgid "Permanently Lock Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/models/account_move.py:15 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the permanent lock " +"date." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:22 +#, python-format +msgid "You cannot set the permanent lock date in the past." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:31 +#, python-format +msgid "" +"You cannot set the permanent lock date since entries are still unposted " +"before this date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_config_settings +msgid "account.config.settings" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_permanent_lock_date_wizard +msgid "permanent.lock.date.wizard" +msgstr "" diff --git a/account_permanent_lock_move/i18n/pt_PT.po b/account_permanent_lock_move/i18n/pt_PT.po new file mode 100644 index 00000000000..37aebad0cd6 --- /dev/null +++ b/account_permanent_lock_move/i18n/pt_PT.po @@ -0,0 +1,154 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_permanent_lock_move +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-11 00:39+0000\n" +"PO-Revision-Date: 2017-05-11 00:39+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: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_move +msgid "Account Entry" +msgstr "Movimento de Conta" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "" +"All journal entries prior to and included at this date will be permanently " +"locked." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_res_company +msgid "Companies" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_company_id +msgid "Company" +msgstr "Empresa" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_uid +msgid "Created by" +msgstr "Criado por" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_date +msgid "Created on" +msgstr "Criado em" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_display_name +msgid "Display Name" +msgstr "Nome a exibir" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_id +msgid "ID" +msgstr "ID" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard___last_update +msgid "Last Modified on" +msgstr "Modificado pela última vez em" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_uid +msgid "Last Updated by" +msgstr "Atualizado pela última vez por" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_date +msgid "Last Updated on" +msgstr "Atualizado pela última vez em" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_lock_date +msgid "Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock Journal Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock permanently entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of \"Lock Date\"." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of Lock Date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "Permanent Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.view_account_config_settings_permanent_lock +msgid "Permanently Lock Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/models/account_move.py:15 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the permanent lock " +"date." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:22 +#, python-format +msgid "You cannot set the permanent lock date in the past." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:31 +#, python-format +msgid "" +"You cannot set the permanent lock date since entries are still unposted " +"before this date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_config_settings +msgid "account.config.settings" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_permanent_lock_date_wizard +msgid "permanent.lock.date.wizard" +msgstr "" diff --git a/account_permanent_lock_move/i18n/ro.po b/account_permanent_lock_move/i18n/ro.po new file mode 100644 index 00000000000..894cd3108db --- /dev/null +++ b/account_permanent_lock_move/i18n/ro.po @@ -0,0 +1,154 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_permanent_lock_move +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-11 00:39+0000\n" +"PO-Revision-Date: 2017-05-11 00:39+0000\n" +"Last-Translator: OCA Transbot , 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: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_move +msgid "Account Entry" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "" +"All journal entries prior to and included at this date will be permanently " +"locked." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Cancel" +msgstr "Anuleaza" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_res_company +msgid "Companies" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_company_id +msgid "Company" +msgstr "Companie" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_uid +msgid "Created by" +msgstr "Creat de" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_date +msgid "Created on" +msgstr "Creat la" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_display_name +msgid "Display Name" +msgstr "Nume Afişat" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_id +msgid "ID" +msgstr "ID" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard___last_update +msgid "Last Modified on" +msgstr "Ultima actualizare în" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_uid +msgid "Last Updated by" +msgstr "Ultima actualizare făcută de" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_date +msgid "Last Updated on" +msgstr "Ultima actualizare la" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_lock_date +msgid "Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock Journal Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock permanently entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of \"Lock Date\"." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of Lock Date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "Permanent Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.view_account_config_settings_permanent_lock +msgid "Permanently Lock Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/models/account_move.py:15 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the permanent lock " +"date." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:22 +#, python-format +msgid "You cannot set the permanent lock date in the past." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:31 +#, python-format +msgid "" +"You cannot set the permanent lock date since entries are still unposted " +"before this date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_config_settings +msgid "account.config.settings" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_permanent_lock_date_wizard +msgid "permanent.lock.date.wizard" +msgstr "" diff --git a/account_permanent_lock_move/i18n/ru.po b/account_permanent_lock_move/i18n/ru.po new file mode 100644 index 00000000000..f0ca605e952 --- /dev/null +++ b/account_permanent_lock_move/i18n/ru.po @@ -0,0 +1,155 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_permanent_lock_move +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-11 00:39+0000\n" +"PO-Revision-Date: 2017-05-11 00:39+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: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_move +msgid "Account Entry" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "" +"All journal entries prior to and included at this date will be permanently " +"locked." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Cancel" +msgstr "Отменена" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_res_company +msgid "Companies" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_company_id +msgid "Company" +msgstr "Компания" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_uid +msgid "Created by" +msgstr "Создано" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_date +msgid "Created on" +msgstr "Создан" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_display_name +msgid "Display Name" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_id +msgid "ID" +msgstr "ID" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard___last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_uid +msgid "Last Updated by" +msgstr "Последний раз обновлено" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_date +msgid "Last Updated on" +msgstr "Последний раз обновлено" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_lock_date +msgid "Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock Journal Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock permanently entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of \"Lock Date\"." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of Lock Date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "Permanent Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.view_account_config_settings_permanent_lock +msgid "Permanently Lock Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/models/account_move.py:15 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the permanent lock " +"date." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:22 +#, python-format +msgid "You cannot set the permanent lock date in the past." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:31 +#, python-format +msgid "" +"You cannot set the permanent lock date since entries are still unposted " +"before this date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_config_settings +msgid "account.config.settings" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_permanent_lock_date_wizard +msgid "permanent.lock.date.wizard" +msgstr "" diff --git a/account_permanent_lock_move/i18n/sk.po b/account_permanent_lock_move/i18n/sk.po new file mode 100644 index 00000000000..479d7ff1071 --- /dev/null +++ b/account_permanent_lock_move/i18n/sk.po @@ -0,0 +1,153 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_permanent_lock_move +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-11 00:39+0000\n" +"PO-Revision-Date: 2017-05-11 00:39+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: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_move +msgid "Account Entry" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "" +"All journal entries prior to and included at this date will be permanently " +"locked." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Cancel" +msgstr "Zrušiť" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_res_company +msgid "Companies" +msgstr "Spoločnosti" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_company_id +msgid "Company" +msgstr "Spoločnosť" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_uid +msgid "Created by" +msgstr "Vytvoril" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_date +msgid "Created on" +msgstr "Vytvorené" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_display_name +msgid "Display Name" +msgstr "Zobraziť meno" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_id +msgid "ID" +msgstr "ID" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard___last_update +msgid "Last Modified on" +msgstr "Posledná modifikácia" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_uid +msgid "Last Updated by" +msgstr "Naposledy upravil" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_date +msgid "Last Updated on" +msgstr "Naposledy upravené" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_lock_date +msgid "Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock Journal Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock permanently entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of \"Lock Date\"." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of Lock Date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "Permanent Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.view_account_config_settings_permanent_lock +msgid "Permanently Lock Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/models/account_move.py:15 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the permanent lock " +"date." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:22 +#, python-format +msgid "You cannot set the permanent lock date in the past." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:31 +#, python-format +msgid "" +"You cannot set the permanent lock date since entries are still unposted " +"before this date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_config_settings +msgid "account.config.settings" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_permanent_lock_date_wizard +msgid "permanent.lock.date.wizard" +msgstr "" diff --git a/account_permanent_lock_move/i18n/sl.po b/account_permanent_lock_move/i18n/sl.po new file mode 100644 index 00000000000..983057a38f3 --- /dev/null +++ b/account_permanent_lock_move/i18n/sl.po @@ -0,0 +1,154 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_permanent_lock_move +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: account-financial-tools (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-07-01 02:44+0000\n" +"PO-Revision-Date: 2016-05-26 05:40+0000\n" +"Last-Translator: <>\n" +"Language-Team: Slovenian (http://www.transifex.com/oca/OCA-account-financial-" +"tools-9-0/language/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" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_move +msgid "Account Entry" +msgstr "Knjigovodski vnos" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "" +"All journal entries prior to and included at this date will be permanently " +"locked." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Cancel" +msgstr "Preklic" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_res_company +msgid "Companies" +msgstr "Družbe" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_company_id +msgid "Company" +msgstr "Družba" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_uid +msgid "Created by" +msgstr "Ustvaril" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_date +msgid "Created on" +msgstr "Ustvarjeno" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_display_name +msgid "Display Name" +msgstr "Prikazni naziv" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_id +msgid "ID" +msgstr "ID" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard___last_update +msgid "Last Modified on" +msgstr "Zadnjič spremenjeno" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_uid +msgid "Last Updated by" +msgstr "Zadnjič posodobil" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_date +msgid "Last Updated on" +msgstr "Zadnjič posodobljeno" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_lock_date +msgid "Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock Journal Entries" +msgstr "Zakleni dnevniške vnose" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock permanently entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of \"Lock Date\"." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of Lock Date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "Permanent Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.view_account_config_settings_permanent_lock +msgid "Permanently Lock Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/models/account_move.py:15 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the permanent lock " +"date." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:22 +#, python-format +msgid "You cannot set the permanent lock date in the past." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:31 +#, python-format +msgid "" +"You cannot set the permanent lock date since entries are still unposted " +"before this date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_config_settings +msgid "account.config.settings" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_permanent_lock_date_wizard +msgid "permanent.lock.date.wizard" +msgstr "" diff --git a/account_permanent_lock_move/i18n/sr.po b/account_permanent_lock_move/i18n/sr.po new file mode 100644 index 00000000000..3e303172d54 --- /dev/null +++ b/account_permanent_lock_move/i18n/sr.po @@ -0,0 +1,154 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_permanent_lock_move +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-11 00:39+0000\n" +"PO-Revision-Date: 2017-05-11 00:39+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: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_move +msgid "Account Entry" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "" +"All journal entries prior to and included at this date will be permanently " +"locked." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Cancel" +msgstr "Otkaži" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_res_company +msgid "Companies" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_company_id +msgid "Company" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_uid +msgid "Created by" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_date +msgid "Created on" +msgstr "Kreiran" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_display_name +msgid "Display Name" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_id +msgid "ID" +msgstr "ID" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard___last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_uid +msgid "Last Updated by" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_date +msgid "Last Updated on" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_lock_date +msgid "Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock Journal Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock permanently entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of \"Lock Date\"." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of Lock Date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "Permanent Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.view_account_config_settings_permanent_lock +msgid "Permanently Lock Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/models/account_move.py:15 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the permanent lock " +"date." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:22 +#, python-format +msgid "You cannot set the permanent lock date in the past." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:31 +#, python-format +msgid "" +"You cannot set the permanent lock date since entries are still unposted " +"before this date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_config_settings +msgid "account.config.settings" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_permanent_lock_date_wizard +msgid "permanent.lock.date.wizard" +msgstr "" diff --git a/account_permanent_lock_move/i18n/sr@latin.po b/account_permanent_lock_move/i18n/sr@latin.po new file mode 100644 index 00000000000..c6b4894e839 --- /dev/null +++ b/account_permanent_lock_move/i18n/sr@latin.po @@ -0,0 +1,155 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_permanent_lock_move +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-11 00:39+0000\n" +"PO-Revision-Date: 2017-05-11 00:39+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: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_move +msgid "Account Entry" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "" +"All journal entries prior to and included at this date will be permanently " +"locked." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Cancel" +msgstr "Otkaži" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_res_company +msgid "Companies" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_company_id +msgid "Company" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_date +msgid "Created on" +msgstr "Kreiran" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_display_name +msgid "Display Name" +msgstr "Ime za prikaz" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_id +msgid "ID" +msgstr "ID" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard___last_update +msgid "Last Modified on" +msgstr "Zadnja izmjena" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_uid +msgid "Last Updated by" +msgstr "Zadnja izmjena" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_date +msgid "Last Updated on" +msgstr "Zadnja izmjena" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_lock_date +msgid "Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock Journal Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock permanently entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of \"Lock Date\"." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of Lock Date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "Permanent Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.view_account_config_settings_permanent_lock +msgid "Permanently Lock Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/models/account_move.py:15 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the permanent lock " +"date." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:22 +#, python-format +msgid "You cannot set the permanent lock date in the past." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:31 +#, python-format +msgid "" +"You cannot set the permanent lock date since entries are still unposted " +"before this date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_config_settings +msgid "account.config.settings" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_permanent_lock_date_wizard +msgid "permanent.lock.date.wizard" +msgstr "" diff --git a/account_permanent_lock_move/i18n/sv.po b/account_permanent_lock_move/i18n/sv.po new file mode 100644 index 00000000000..639cfa5ba1e --- /dev/null +++ b/account_permanent_lock_move/i18n/sv.po @@ -0,0 +1,153 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_permanent_lock_move +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-11 00:39+0000\n" +"PO-Revision-Date: 2017-05-11 00:39+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: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_move +msgid "Account Entry" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "" +"All journal entries prior to and included at this date will be permanently " +"locked." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Cancel" +msgstr "Avbryt" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_res_company +msgid "Companies" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_company_id +msgid "Company" +msgstr "Bolag" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_uid +msgid "Created by" +msgstr "Skapad av" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_date +msgid "Created on" +msgstr "Skapad den" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_display_name +msgid "Display Name" +msgstr "Visa namn" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_id +msgid "ID" +msgstr "ID" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard___last_update +msgid "Last Modified on" +msgstr "Senast redigerad" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_uid +msgid "Last Updated by" +msgstr "Senast uppdaterad av" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_date +msgid "Last Updated on" +msgstr "Senast uppdaterad" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_lock_date +msgid "Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock Journal Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock permanently entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of \"Lock Date\"." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of Lock Date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "Permanent Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.view_account_config_settings_permanent_lock +msgid "Permanently Lock Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/models/account_move.py:15 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the permanent lock " +"date." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:22 +#, python-format +msgid "You cannot set the permanent lock date in the past." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:31 +#, python-format +msgid "" +"You cannot set the permanent lock date since entries are still unposted " +"before this date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_config_settings +msgid "account.config.settings" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_permanent_lock_date_wizard +msgid "permanent.lock.date.wizard" +msgstr "" diff --git a/account_permanent_lock_move/i18n/th.po b/account_permanent_lock_move/i18n/th.po new file mode 100644 index 00000000000..b7b40efbd02 --- /dev/null +++ b/account_permanent_lock_move/i18n/th.po @@ -0,0 +1,153 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_permanent_lock_move +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-11 00:39+0000\n" +"PO-Revision-Date: 2017-05-11 00:39+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: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_move +msgid "Account Entry" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "" +"All journal entries prior to and included at this date will be permanently " +"locked." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Cancel" +msgstr "ยกเลิก" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_res_company +msgid "Companies" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_company_id +msgid "Company" +msgstr "บริษัท" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_uid +msgid "Created by" +msgstr "สร้างโดย" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_date +msgid "Created on" +msgstr "สร้างเมื่อ" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_display_name +msgid "Display Name" +msgstr "ชื่อที่ใช้แสดง" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_id +msgid "ID" +msgstr "รหัส" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard___last_update +msgid "Last Modified on" +msgstr "แก้ไขครั้งสุดท้ายเมื่อ" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_uid +msgid "Last Updated by" +msgstr "อัพเดทครั้งสุดท้ายโดย" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_date +msgid "Last Updated on" +msgstr "อัพเดทครั้งสุดท้ายเมื่อ" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_lock_date +msgid "Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock Journal Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock permanently entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of \"Lock Date\"." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of Lock Date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "Permanent Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.view_account_config_settings_permanent_lock +msgid "Permanently Lock Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/models/account_move.py:15 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the permanent lock " +"date." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:22 +#, python-format +msgid "You cannot set the permanent lock date in the past." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:31 +#, python-format +msgid "" +"You cannot set the permanent lock date since entries are still unposted " +"before this date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_config_settings +msgid "account.config.settings" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_permanent_lock_date_wizard +msgid "permanent.lock.date.wizard" +msgstr "" diff --git a/account_permanent_lock_move/i18n/tr.po b/account_permanent_lock_move/i18n/tr.po new file mode 100644 index 00000000000..da4b2ab6eca --- /dev/null +++ b/account_permanent_lock_move/i18n/tr.po @@ -0,0 +1,154 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_permanent_lock_move +# +# Translators: +# OCA Transbot , 2017 +# Ediz Duman , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-28 23:24+0000\n" +"PO-Revision-Date: 2017-11-28 23:24+0000\n" +"Last-Translator: Ediz Duman , 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: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_move +msgid "Account Entry" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "" +"All journal entries prior to and included at this date will be permanently " +"locked." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Cancel" +msgstr "Vazgeç" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_res_company +msgid "Companies" +msgstr "Firmalar" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_company_id +msgid "Company" +msgstr "Şirket" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_uid +msgid "Created by" +msgstr "Oluşturan" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_date +msgid "Created on" +msgstr "Oluşturuldu" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_display_name +msgid "Display Name" +msgstr "Görünen İsim" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_id +msgid "ID" +msgstr "ID" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard___last_update +msgid "Last Modified on" +msgstr "Son değişiklik" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_uid +msgid "Last Updated by" +msgstr "Son güncelleyen" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_date +msgid "Last Updated on" +msgstr "Son güncelleme" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_lock_date +msgid "Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock Journal Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock permanently entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of \"Lock Date\"." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of Lock Date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "Permanent Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.view_account_config_settings_permanent_lock +msgid "Permanently Lock Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/models/account_move.py:15 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the permanent lock " +"date." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:22 +#, python-format +msgid "You cannot set the permanent lock date in the past." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:31 +#, python-format +msgid "" +"You cannot set the permanent lock date since entries are still unposted " +"before this date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_config_settings +msgid "account.config.settings" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_permanent_lock_date_wizard +msgid "permanent.lock.date.wizard" +msgstr "" diff --git a/account_permanent_lock_move/i18n/tr_TR.po b/account_permanent_lock_move/i18n/tr_TR.po new file mode 100644 index 00000000000..d041b7dd9eb --- /dev/null +++ b/account_permanent_lock_move/i18n/tr_TR.po @@ -0,0 +1,155 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_permanent_lock_move +# +# Translators: +# OCA Transbot , 2017 +# Ediz Duman , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-28 23:24+0000\n" +"PO-Revision-Date: 2017-11-28 23:24+0000\n" +"Last-Translator: Ediz Duman , 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: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_move +msgid "Account Entry" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "" +"All journal entries prior to and included at this date will be permanently " +"locked." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Cancel" +msgstr "İptal et" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_res_company +msgid "Companies" +msgstr "Firmalar" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_company_id +msgid "Company" +msgstr "Firma" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_uid +msgid "Created by" +msgstr "Oluşturan" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_date +msgid "Created on" +msgstr "Oluşturulma tarihi" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_display_name +msgid "Display Name" +msgstr "Görünen ad" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_id +msgid "ID" +msgstr "Kimlik" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard___last_update +msgid "Last Modified on" +msgstr "En son güncelleme tarihi" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_uid +msgid "Last Updated by" +msgstr "En son güncelleyen " + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_date +msgid "Last Updated on" +msgstr "En son güncelleme tarihi" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_lock_date +msgid "Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock Journal Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock permanently entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of \"Lock Date\"." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of Lock Date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "Permanent Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.view_account_config_settings_permanent_lock +msgid "Permanently Lock Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/models/account_move.py:15 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the permanent lock " +"date." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:22 +#, python-format +msgid "You cannot set the permanent lock date in the past." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:31 +#, python-format +msgid "" +"You cannot set the permanent lock date since entries are still unposted " +"before this date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_config_settings +msgid "account.config.settings" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_permanent_lock_date_wizard +msgid "permanent.lock.date.wizard" +msgstr "" diff --git a/account_permanent_lock_move/i18n/uk.po b/account_permanent_lock_move/i18n/uk.po new file mode 100644 index 00000000000..0032e1c4461 --- /dev/null +++ b/account_permanent_lock_move/i18n/uk.po @@ -0,0 +1,154 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_permanent_lock_move +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-11 00:39+0000\n" +"PO-Revision-Date: 2017-05-11 00:39+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: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_move +msgid "Account Entry" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "" +"All journal entries prior to and included at this date will be permanently " +"locked." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Cancel" +msgstr "Скасувати" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_res_company +msgid "Companies" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_company_id +msgid "Company" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_uid +msgid "Created by" +msgstr "Створив" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_date +msgid "Created on" +msgstr "Дата створення" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_display_name +msgid "Display Name" +msgstr "Назва для відображення" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_id +msgid "ID" +msgstr "ID" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard___last_update +msgid "Last Modified on" +msgstr "Остання модифікація" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_uid +msgid "Last Updated by" +msgstr "Востаннє оновив" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_date +msgid "Last Updated on" +msgstr "Останнє оновлення" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_lock_date +msgid "Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock Journal Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock permanently entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of \"Lock Date\"." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of Lock Date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "Permanent Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.view_account_config_settings_permanent_lock +msgid "Permanently Lock Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/models/account_move.py:15 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the permanent lock " +"date." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:22 +#, python-format +msgid "You cannot set the permanent lock date in the past." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:31 +#, python-format +msgid "" +"You cannot set the permanent lock date since entries are still unposted " +"before this date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_config_settings +msgid "account.config.settings" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_permanent_lock_date_wizard +msgid "permanent.lock.date.wizard" +msgstr "" diff --git a/account_permanent_lock_move/i18n/vi.po b/account_permanent_lock_move/i18n/vi.po new file mode 100644 index 00000000000..08e4cd87056 --- /dev/null +++ b/account_permanent_lock_move/i18n/vi.po @@ -0,0 +1,153 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_permanent_lock_move +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-11 00:39+0000\n" +"PO-Revision-Date: 2017-05-11 00:39+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: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_move +msgid "Account Entry" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "" +"All journal entries prior to and included at this date will be permanently " +"locked." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Cancel" +msgstr "Hủy bỏ" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_res_company +msgid "Companies" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_company_id +msgid "Company" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_uid +msgid "Created by" +msgstr "Được tạo bởi" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_date +msgid "Created on" +msgstr "Được tạo vào" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_display_name +msgid "Display Name" +msgstr "Tên hiển thị" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_id +msgid "ID" +msgstr "ID" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard___last_update +msgid "Last Modified on" +msgstr "Sửa lần cuối vào" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_uid +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_date +msgid "Last Updated on" +msgstr "Cập nhật lần cuối vào" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_lock_date +msgid "Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock Journal Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock permanently entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of \"Lock Date\"." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of Lock Date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "Permanent Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.view_account_config_settings_permanent_lock +msgid "Permanently Lock Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/models/account_move.py:15 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the permanent lock " +"date." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:22 +#, python-format +msgid "You cannot set the permanent lock date in the past." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:31 +#, python-format +msgid "" +"You cannot set the permanent lock date since entries are still unposted " +"before this date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_config_settings +msgid "account.config.settings" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_permanent_lock_date_wizard +msgid "permanent.lock.date.wizard" +msgstr "" diff --git a/account_permanent_lock_move/i18n/vi_VN.po b/account_permanent_lock_move/i18n/vi_VN.po new file mode 100644 index 00000000000..0a79d9993e1 --- /dev/null +++ b/account_permanent_lock_move/i18n/vi_VN.po @@ -0,0 +1,154 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_permanent_lock_move +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-11 00:39+0000\n" +"PO-Revision-Date: 2017-05-11 00:39+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: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_move +msgid "Account Entry" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "" +"All journal entries prior to and included at this date will be permanently " +"locked." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Cancel" +msgstr "Hủy" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_res_company +msgid "Companies" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_company_id +msgid "Company" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_uid +msgid "Created by" +msgstr "Tạo bởi" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_date +msgid "Created on" +msgstr "Tạo vào" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_display_name +msgid "Display Name" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_id +msgid "ID" +msgstr "ID" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard___last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_uid +msgid "Last Updated by" +msgstr "Cập nhật lần cuối bởi" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_date +msgid "Last Updated on" +msgstr "Cập nhật lần cuối vào" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_lock_date +msgid "Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock Journal Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock permanently entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of \"Lock Date\"." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of Lock Date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "Permanent Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.view_account_config_settings_permanent_lock +msgid "Permanently Lock Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/models/account_move.py:15 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the permanent lock " +"date." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:22 +#, python-format +msgid "You cannot set the permanent lock date in the past." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:31 +#, python-format +msgid "" +"You cannot set the permanent lock date since entries are still unposted " +"before this date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_config_settings +msgid "account.config.settings" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_permanent_lock_date_wizard +msgid "permanent.lock.date.wizard" +msgstr "" diff --git a/account_permanent_lock_move/i18n/zh_CN.po b/account_permanent_lock_move/i18n/zh_CN.po new file mode 100644 index 00000000000..4488aa52d86 --- /dev/null +++ b/account_permanent_lock_move/i18n/zh_CN.po @@ -0,0 +1,154 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_permanent_lock_move +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-11 00:39+0000\n" +"PO-Revision-Date: 2017-05-11 00:39+0000\n" +"Last-Translator: OCA Transbot , 2017\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" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_move +msgid "Account Entry" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "" +"All journal entries prior to and included at this date will be permanently " +"locked." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Cancel" +msgstr "取消" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_res_company +msgid "Companies" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_company_id +msgid "Company" +msgstr "公司" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_uid +msgid "Created by" +msgstr "创建者" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_date +msgid "Created on" +msgstr "创建时间" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_display_name +msgid "Display Name" +msgstr "Display Name" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_id +msgid "ID" +msgstr "ID" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard___last_update +msgid "Last Modified on" +msgstr "Last Modified on" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_uid +msgid "Last Updated by" +msgstr "最后更新者" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_date +msgid "Last Updated on" +msgstr "上次更新日期" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_lock_date +msgid "Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock Journal Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock permanently entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of \"Lock Date\"." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of Lock Date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "Permanent Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.view_account_config_settings_permanent_lock +msgid "Permanently Lock Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/models/account_move.py:15 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the permanent lock " +"date." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:22 +#, python-format +msgid "You cannot set the permanent lock date in the past." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:31 +#, python-format +msgid "" +"You cannot set the permanent lock date since entries are still unposted " +"before this date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_config_settings +msgid "account.config.settings" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_permanent_lock_date_wizard +msgid "permanent.lock.date.wizard" +msgstr "" diff --git a/account_permanent_lock_move/i18n/zh_TW.po b/account_permanent_lock_move/i18n/zh_TW.po new file mode 100644 index 00000000000..07ca35a93a6 --- /dev/null +++ b/account_permanent_lock_move/i18n/zh_TW.po @@ -0,0 +1,154 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_permanent_lock_move +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-11 00:39+0000\n" +"PO-Revision-Date: 2017-05-11 00:39+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: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_move +msgid "Account Entry" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "" +"All journal entries prior to and included at this date will be permanently " +"locked." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Cancel" +msgstr "刪除" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_res_company +msgid "Companies" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_company_id +msgid "Company" +msgstr "公司" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_uid +msgid "Created by" +msgstr "建立者" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_create_date +msgid "Created on" +msgstr "建立於" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_display_name +msgid "Display Name" +msgstr "顯示名稱" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_id +msgid "ID" +msgstr "編號" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard___last_update +msgid "Last Modified on" +msgstr "最後修改:" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_uid +msgid "Last Updated by" +msgstr "最後更新:" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_write_date +msgid "Last Updated on" +msgstr "最後更新於" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_permanent_lock_date_wizard_lock_date +msgid "Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock Journal Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.permanent_lock_date_wizard_form +msgid "Lock permanently entries" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of \"Lock Date\"." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,help:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "" +"Non-revertible closing of accounts prior to and inclusive of this date. Use " +"it for fiscal year locking instead of Lock Date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_account_config_settings_permanent_lock_date +#: model:ir.model.fields,field_description:account_permanent_lock_move.field_res_company_permanent_lock_date +msgid "Permanent Lock Date" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.ui.view,arch_db:account_permanent_lock_move.view_account_config_settings_permanent_lock +msgid "Permanently Lock Entries" +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/models/account_move.py:15 +#, python-format +msgid "" +"You cannot add/modify entries prior to and inclusive of the permanent lock " +"date." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:22 +#, python-format +msgid "You cannot set the permanent lock date in the past." +msgstr "" + +#. module: account_permanent_lock_move +#: code:addons/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py:31 +#, python-format +msgid "" +"You cannot set the permanent lock date since entries are still unposted " +"before this date." +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_account_config_settings +msgid "account.config.settings" +msgstr "" + +#. module: account_permanent_lock_move +#: model:ir.model,name:account_permanent_lock_move.model_permanent_lock_date_wizard +msgid "permanent.lock.date.wizard" +msgstr "" diff --git a/account_permanent_lock_move/models/__init__.py b/account_permanent_lock_move/models/__init__.py new file mode 100644 index 00000000000..8b1d2d84f77 --- /dev/null +++ b/account_permanent_lock_move/models/__init__.py @@ -0,0 +1,4 @@ + +from . import account_move +from . import company +from . import res_config diff --git a/account_permanent_lock_move/models/account_move.py b/account_permanent_lock_move/models/account_move.py new file mode 100644 index 00000000000..090f3315f3a --- /dev/null +++ b/account_permanent_lock_move/models/account_move.py @@ -0,0 +1,41 @@ +# © 2016 Camptocamp SA (Matthieu Dietrich) +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). +from odoo import _, api, models +from odoo.exceptions import UserError + + +class AccountMove(models.Model): + _inherit = "account.move" + + @api.multi + def _check_lock_date(self): + for move in self: + if move.company_id.permanent_lock_date \ + and move.date <= move.company_id.permanent_lock_date: + raise UserError(_( + "You cannot add/modify entries prior to and inclusive " + "of the permanent lock date.")) + return super(AccountMove, self)._check_lock_date() + + @api.multi + def button_cancel(self): + # Add check for button_cancel, as it does not use ORM + self._check_lock_date() + return super(AccountMove, self).button_cancel() + + @api.model + def create(self, vals): + # Add _check_lock_date for create of account.move, + # as it is not done by default + result = super(AccountMove, self).create(vals) + result._check_lock_date() + return result + + @api.multi + def write(self, vals): + # Add _check_lock_date for write of account.move, + # as it is not done by default + self._check_lock_date() + result = super(AccountMove, self).write(vals) + self._check_lock_date() + return result diff --git a/account_permanent_lock_move/models/company.py b/account_permanent_lock_move/models/company.py new file mode 100644 index 00000000000..e818be35567 --- /dev/null +++ b/account_permanent_lock_move/models/company.py @@ -0,0 +1,12 @@ +# © 2016 Camptocamp SA (Matthieu Dietrich) +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). +from odoo import fields, models + + +class ResCompany(models.Model): + _inherit = "res.company" + + permanent_lock_date = fields.Date( + string="Permanent Lock Date", + help="Non-revertible closing of accounts prior to and inclusive of " + "this date. Use it for fiscal year locking instead of ""Lock Date"".") diff --git a/account_permanent_lock_move/models/res_config.py b/account_permanent_lock_move/models/res_config.py new file mode 100644 index 00000000000..705112ea945 --- /dev/null +++ b/account_permanent_lock_move/models/res_config.py @@ -0,0 +1,27 @@ +# © 2016 Camptocamp SA (Matthieu Dietrich) +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). +from odoo import api, fields, models + + +class AccountConfigSettings(models.TransientModel): + _inherit = 'res.config.settings' + + permanent_lock_date = fields.Date( + string="Permanent Lock Date", + related='company_id.permanent_lock_date', + help='Non-revertible closing of accounts prior to and inclusive of ' + 'this date. Use it for fiscal year locking instead of "Lock Date".') + + @api.multi + def change_permanent_lock_date(self): + wizard = self.env['permanent.lock.date.wizard'].create({ + 'company_id': self.company_id.id + }) + return { + 'type': 'ir.actions.act_window', + 'res_model': 'permanent.lock.date.wizard', + 'view_mode': 'form', + 'view_type': 'form', + 'res_id': wizard.id, + 'target': 'new', + } diff --git a/account_permanent_lock_move/tests/__init__.py b/account_permanent_lock_move/tests/__init__.py new file mode 100644 index 00000000000..420e2dfc49a --- /dev/null +++ b/account_permanent_lock_move/tests/__init__.py @@ -0,0 +1,3 @@ +# © 2016 Camptocamp SA (Matthieu Dietrich) +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). +from . import test_permanent_lock diff --git a/account_permanent_lock_move/tests/test_permanent_lock.py b/account_permanent_lock_move/tests/test_permanent_lock.py new file mode 100644 index 00000000000..7572973e15d --- /dev/null +++ b/account_permanent_lock_move/tests/test_permanent_lock.py @@ -0,0 +1,139 @@ +# © 2016 Camptocamp SA (Matthieu Dietrich) +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). +import datetime +from odoo import fields, tools +from odoo.modules import get_module_resource +from odoo.tests import common +from odoo.exceptions import UserError + + +class PermanentLock(common.TransactionCase): + + def setUp(self): + super(PermanentLock, self).setUp() + tools.convert_file(self.cr, 'account', + get_module_resource('account', 'test', + 'account_minimal_test.xml'), + {}, 'init', False, 'test') + self.account_move_obj = self.env["account.move"] + self.account_move_line_obj = \ + self.env["account.move.line"] + self.company_id = self.ref('base.main_company') + self.partner = self.browse_ref("base.res_partner_12") + self.account_id = self.ref("account.a_recv") + self.account_id2 = self.ref("account.a_expense") + self.journal_id = self.ref("account.bank_journal") + self.wizard_obj = self.env["permanent.lock.date.wizard"] + + def test_name_completion(self): + """Test complete partner_id from statement line label + Test the automatic completion of the partner_id based if the name of + the partner appears in the statement line label + """ + + # Create a move + self.move = self.account_move_obj.create({ + 'date': fields.Date.today(), + 'journal_id': self.journal_id, + 'line_ids': [(0, 0, { + 'account_id': self.account_id, + 'credit': 1000.0, + 'name': 'Credit line', + }), (0, 0, { + 'account_id': self.account_id2, + 'debit': 1000.0, + 'name': 'Debit line', + })] + }) + + # Call lock wizard on entry + raised_lock_error = False + try: + self.wizard = self.wizard_obj.create({ + 'company_id': self.company_id, + 'lock_date': fields.Date.today() + }) + self.wizard.confirm_date() + except UserError as ue: + if 'entries are still unposted' in ue.name: + raised_lock_error = True + + self.assertTrue(raised_lock_error, + "Permanent lock done even with unposted entry.") + + # Post entry and lock + self.move.post() + + moves = self.env['account.move'].search( + [('company_id', '=', self.company_id), + ('date', '<=', fields.Date.today()), + ('state', '=', 'draft')]) + moves.post() + + self.wizard = self.wizard_obj.create({ + 'company_id': self.company_id, + 'lock_date': fields.Date.today() + }) + self.wizard.confirm_date() + + # Try to lock the day before + raised_lock_error = False + try: + yesterday = fields.Date.to_string( + fields.Date.from_string( + fields.Date.today()) + + datetime.timedelta(days=-1)) + self.wizard = self.wizard_obj.create({ + 'company_id': self.company_id, + 'lock_date': yesterday + }) + self.wizard.confirm_date() + except UserError as ue: + if 'permanent lock date in the past' in ue.name: + raised_lock_error = True + + self.assertTrue(raised_lock_error, + "Permanent lock set the day before.") + + # Test that the move cannot be created, written, or cancelled + raised_create_error = False + raised_write_error = False + raised_cancel_error = False + try: + self.move2 = self.account_move_obj.create({ + 'date': fields.Date.today(), + 'journal_id': self.journal_id, + 'line_ids': [(0, 0, { + 'account_id': self.account_id, + 'credit': 1000.0, + 'name': 'Credit line', + }), (0, 0, { + 'account_id': self.account_id2, + 'debit': 1000.0, + 'name': 'Debit line', + })] + }) + except UserError as ue: + if 'permanent lock date' in ue.name: + raised_create_error = True + + self.assertTrue(raised_create_error, + "Journal Entry could be created after locking!") + + try: + self.move.write({'name': 'TEST'}) + except UserError as ue: + if 'permanent lock date' in ue.name: + raised_write_error = True + + self.assertTrue(raised_write_error, + "Journal Entry could be modified after locking!") + + try: + self.move.button_cancel() + except UserError as ue: + if 'permanent lock date' in ue.name: + raised_cancel_error = True + + self.assertTrue(raised_cancel_error, + "Journal Entry could be cancelled after locking!") diff --git a/account_permanent_lock_move/views/res_config_view.xml b/account_permanent_lock_move/views/res_config_view.xml new file mode 100644 index 00000000000..e1d6f9e9a81 --- /dev/null +++ b/account_permanent_lock_move/views/res_config_view.xml @@ -0,0 +1,18 @@ + + + res.config.settings + + +
+ 0 +
+
+
+
+
+
diff --git a/account_permanent_lock_move/wizard/__init__.py b/account_permanent_lock_move/wizard/__init__.py new file mode 100644 index 00000000000..20b45c2b67d --- /dev/null +++ b/account_permanent_lock_move/wizard/__init__.py @@ -0,0 +1,2 @@ + +from . import permanent_lock_date_wizard diff --git a/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py b/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py new file mode 100644 index 00000000000..968beb3caca --- /dev/null +++ b/account_permanent_lock_move/wizard/permanent_lock_date_wizard.py @@ -0,0 +1,35 @@ +# © 2016 Camptocamp SA (Matthieu Dietrich) +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). +from odoo import _, api, fields, models +from odoo.exceptions import UserError + + +class PermanentLockDateWizard(models.TransientModel): + _name = 'permanent.lock.date.wizard' + + lock_date = fields.Date(string="Lock Date") + company_id = fields.Many2one(comodel_name='res.company', + string='Company') + + @api.multi + def confirm_date(self): + self.ensure_one() + company = self.company_id + if (company.permanent_lock_date and + self.lock_date < company.permanent_lock_date): + raise UserError( + _("You cannot set the permanent lock date in the past.") + ) + # Then check if unposted moves are present before the date + moves = self.env['account.move'].search( + [('company_id', '=', company.id), + ('date', '<=', self.lock_date), + ('state', '=', 'draft')]) + if moves: + raise UserError( + _("You cannot set the permanent lock date since entries are " + "still unposted before this date.") + ) + + company.permanent_lock_date = self.lock_date + return {'type': 'ir.actions.act_window_close'} diff --git a/account_permanent_lock_move/wizard/permanent_lock_date_wizard.xml b/account_permanent_lock_move/wizard/permanent_lock_date_wizard.xml new file mode 100644 index 00000000000..5192c58bfdb --- /dev/null +++ b/account_permanent_lock_move/wizard/permanent_lock_date_wizard.xml @@ -0,0 +1,19 @@ + + + permanent.lock.date.wizard.form + permanent.lock.date.wizard + form + +
+
+
+