mirror of
https://github.com/OCA/account-financial-tools.git
synced 2025-02-02 12:47:26 +02:00
75
account_journal_lock_date/README.rst
Normal file
75
account_journal_lock_date/README.rst
Normal file
@@ -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
|
||||
<https://github.com/OCA/{project_repo}/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 <https://github.com/OCA/maintainer-tools/blob/master/template/module/static/description/icon.svg>`_.
|
||||
|
||||
Contributors
|
||||
------------
|
||||
|
||||
* Stéphane Bidoul <stephane.bidoul@acsone.eu>
|
||||
|
||||
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.
|
||||
1
account_journal_lock_date/__init__.py
Normal file
1
account_journal_lock_date/__init__.py
Normal file
@@ -0,0 +1 @@
|
||||
from . import models
|
||||
18
account_journal_lock_date/__manifest__.py
Normal file
18
account_journal_lock_date/__manifest__.py
Normal file
@@ -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',
|
||||
],
|
||||
}
|
||||
8
account_journal_lock_date/exceptions.py
Normal file
8
account_journal_lock_date/exceptions.py
Normal file
@@ -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
|
||||
41
account_journal_lock_date/i18n/account_journal_lock_date.pot
Normal file
41
account_journal_lock_date/i18n/account_journal_lock_date.pot
Normal file
@@ -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 ""
|
||||
|
||||
49
account_journal_lock_date/i18n/am.po
Normal file
49
account_journal_lock_date/i18n/am.po
Normal file
@@ -0,0 +1,49 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_journal_lock_date
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""
|
||||
50
account_journal_lock_date/i18n/ar.po
Normal file
50
account_journal_lock_date/i18n/ar.po
Normal file
@@ -0,0 +1,50 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_journal_lock_date
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""
|
||||
50
account_journal_lock_date/i18n/bs.po
Normal file
50
account_journal_lock_date/i18n/bs.po
Normal file
@@ -0,0 +1,50 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_journal_lock_date
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""
|
||||
49
account_journal_lock_date/i18n/ca.po
Normal file
49
account_journal_lock_date/i18n/ca.po
Normal file
@@ -0,0 +1,49 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_journal_lock_date
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""
|
||||
49
account_journal_lock_date/i18n/cs.po
Normal file
49
account_journal_lock_date/i18n/cs.po
Normal file
@@ -0,0 +1,49 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_journal_lock_date
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""
|
||||
49
account_journal_lock_date/i18n/de.po
Normal file
49
account_journal_lock_date/i18n/de.po
Normal file
@@ -0,0 +1,49 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_journal_lock_date
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""
|
||||
50
account_journal_lock_date/i18n/en_GB.po
Normal file
50
account_journal_lock_date/i18n/en_GB.po
Normal file
@@ -0,0 +1,50 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_journal_lock_date
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""
|
||||
49
account_journal_lock_date/i18n/es.po
Normal file
49
account_journal_lock_date/i18n/es.po
Normal file
@@ -0,0 +1,49 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_journal_lock_date
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""
|
||||
50
account_journal_lock_date/i18n/es_CR.po
Normal file
50
account_journal_lock_date/i18n/es_CR.po
Normal file
@@ -0,0 +1,50 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_journal_lock_date
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""
|
||||
50
account_journal_lock_date/i18n/es_EC.po
Normal file
50
account_journal_lock_date/i18n/es_EC.po
Normal file
@@ -0,0 +1,50 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_journal_lock_date
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""
|
||||
50
account_journal_lock_date/i18n/es_MX.po
Normal file
50
account_journal_lock_date/i18n/es_MX.po
Normal file
@@ -0,0 +1,50 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_journal_lock_date
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""
|
||||
50
account_journal_lock_date/i18n/es_VE.po
Normal file
50
account_journal_lock_date/i18n/es_VE.po
Normal file
@@ -0,0 +1,50 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_journal_lock_date
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""
|
||||
49
account_journal_lock_date/i18n/et.po
Normal file
49
account_journal_lock_date/i18n/et.po
Normal file
@@ -0,0 +1,49 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_journal_lock_date
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""
|
||||
49
account_journal_lock_date/i18n/fr.po
Normal file
49
account_journal_lock_date/i18n/fr.po
Normal file
@@ -0,0 +1,49 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_journal_lock_date
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""
|
||||
49
account_journal_lock_date/i18n/gl.po
Normal file
49
account_journal_lock_date/i18n/gl.po
Normal file
@@ -0,0 +1,49 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_journal_lock_date
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""
|
||||
54
account_journal_lock_date/i18n/hr.po
Normal file
54
account_journal_lock_date/i18n/hr.po
Normal file
@@ -0,0 +1,54 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_journal_lock_date
|
||||
#
|
||||
# Translators:
|
||||
# Bole <bole@dajmi5.com>, 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 <bole@dajmi5.com>, 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"
|
||||
51
account_journal_lock_date/i18n/hr_HR.po
Normal file
51
account_journal_lock_date/i18n/hr_HR.po
Normal file
@@ -0,0 +1,51 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_journal_lock_date
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""
|
||||
49
account_journal_lock_date/i18n/hu.po
Normal file
49
account_journal_lock_date/i18n/hu.po
Normal file
@@ -0,0 +1,49 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_journal_lock_date
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""
|
||||
49
account_journal_lock_date/i18n/id.po
Normal file
49
account_journal_lock_date/i18n/id.po
Normal file
@@ -0,0 +1,49 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_journal_lock_date
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""
|
||||
49
account_journal_lock_date/i18n/it.po
Normal file
49
account_journal_lock_date/i18n/it.po
Normal file
@@ -0,0 +1,49 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_journal_lock_date
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""
|
||||
49
account_journal_lock_date/i18n/ja.po
Normal file
49
account_journal_lock_date/i18n/ja.po
Normal file
@@ -0,0 +1,49 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_journal_lock_date
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""
|
||||
50
account_journal_lock_date/i18n/lt.po
Normal file
50
account_journal_lock_date/i18n/lt.po
Normal file
@@ -0,0 +1,50 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_journal_lock_date
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""
|
||||
49
account_journal_lock_date/i18n/mk.po
Normal file
49
account_journal_lock_date/i18n/mk.po
Normal file
@@ -0,0 +1,49 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_journal_lock_date
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""
|
||||
49
account_journal_lock_date/i18n/mn.po
Normal file
49
account_journal_lock_date/i18n/mn.po
Normal file
@@ -0,0 +1,49 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_journal_lock_date
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""
|
||||
50
account_journal_lock_date/i18n/nb.po
Normal file
50
account_journal_lock_date/i18n/nb.po
Normal file
@@ -0,0 +1,50 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_journal_lock_date
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""
|
||||
49
account_journal_lock_date/i18n/nl.po
Normal file
49
account_journal_lock_date/i18n/nl.po
Normal file
@@ -0,0 +1,49 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_journal_lock_date
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""
|
||||
50
account_journal_lock_date/i18n/nl_BE.po
Normal file
50
account_journal_lock_date/i18n/nl_BE.po
Normal file
@@ -0,0 +1,50 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_journal_lock_date
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""
|
||||
51
account_journal_lock_date/i18n/pl.po
Normal file
51
account_journal_lock_date/i18n/pl.po
Normal file
@@ -0,0 +1,51 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_journal_lock_date
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""
|
||||
49
account_journal_lock_date/i18n/pt.po
Normal file
49
account_journal_lock_date/i18n/pt.po
Normal file
@@ -0,0 +1,49 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_journal_lock_date
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""
|
||||
50
account_journal_lock_date/i18n/pt_BR.po
Normal file
50
account_journal_lock_date/i18n/pt_BR.po
Normal file
@@ -0,0 +1,50 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_journal_lock_date
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""
|
||||
50
account_journal_lock_date/i18n/pt_PT.po
Normal file
50
account_journal_lock_date/i18n/pt_PT.po
Normal file
@@ -0,0 +1,50 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_journal_lock_date
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""
|
||||
50
account_journal_lock_date/i18n/ro.po
Normal file
50
account_journal_lock_date/i18n/ro.po
Normal file
@@ -0,0 +1,50 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_journal_lock_date
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""
|
||||
51
account_journal_lock_date/i18n/ru.po
Normal file
51
account_journal_lock_date/i18n/ru.po
Normal file
@@ -0,0 +1,51 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_journal_lock_date
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""
|
||||
50
account_journal_lock_date/i18n/sl.po
Normal file
50
account_journal_lock_date/i18n/sl.po
Normal file
@@ -0,0 +1,50 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_journal_lock_date
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""
|
||||
51
account_journal_lock_date/i18n/sr@latin.po
Normal file
51
account_journal_lock_date/i18n/sr@latin.po
Normal file
@@ -0,0 +1,51 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_journal_lock_date
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""
|
||||
49
account_journal_lock_date/i18n/sv.po
Normal file
49
account_journal_lock_date/i18n/sv.po
Normal file
@@ -0,0 +1,49 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_journal_lock_date
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""
|
||||
49
account_journal_lock_date/i18n/tr.po
Normal file
49
account_journal_lock_date/i18n/tr.po
Normal file
@@ -0,0 +1,49 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_journal_lock_date
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""
|
||||
50
account_journal_lock_date/i18n/tr_TR.po
Normal file
50
account_journal_lock_date/i18n/tr_TR.po
Normal file
@@ -0,0 +1,50 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_journal_lock_date
|
||||
#
|
||||
# Translators:
|
||||
# Ediz Duman <neps1192@gmail.com>, 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 <neps1192@gmail.com>, 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 ""
|
||||
49
account_journal_lock_date/i18n/vi.po
Normal file
49
account_journal_lock_date/i18n/vi.po
Normal file
@@ -0,0 +1,49 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_journal_lock_date
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""
|
||||
50
account_journal_lock_date/i18n/zh_CN.po
Normal file
50
account_journal_lock_date/i18n/zh_CN.po
Normal file
@@ -0,0 +1,50 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_journal_lock_date
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""
|
||||
50
account_journal_lock_date/i18n/zh_TW.po
Normal file
50
account_journal_lock_date/i18n/zh_TW.po
Normal file
@@ -0,0 +1,50 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_journal_lock_date
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""
|
||||
2
account_journal_lock_date/models/__init__.py
Normal file
2
account_journal_lock_date/models/__init__.py
Normal file
@@ -0,0 +1,2 @@
|
||||
from . import account_journal
|
||||
from . import account_move
|
||||
22
account_journal_lock_date/models/account_journal.py
Normal file
22
account_journal_lock_date/models/account_journal.py
Normal file
@@ -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')
|
||||
25
account_journal_lock_date/models/account_move.py
Normal file
25
account_journal_lock_date/models/account_move.py
Normal file
@@ -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
|
||||
BIN
account_journal_lock_date/static/description/icon.png
Normal file
BIN
account_journal_lock_date/static/description/icon.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 9.2 KiB |
1
account_journal_lock_date/tests/__init__.py
Normal file
1
account_journal_lock_date/tests/__init__.py
Normal file
@@ -0,0 +1 @@
|
||||
from . import test_journal_lock_date
|
||||
122
account_journal_lock_date/tests/test_journal_lock_date.py
Normal file
122
account_journal_lock_date/tests/test_journal_lock_date.py
Normal file
@@ -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',
|
||||
})]
|
||||
})
|
||||
28
account_journal_lock_date/views/account_journal.xml
Normal file
28
account_journal_lock_date/views/account_journal.xml
Normal file
@@ -0,0 +1,28 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright 2017 ACSONE SA/NV
|
||||
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). -->
|
||||
|
||||
<odoo>
|
||||
<record model="ir.ui.view" id="account_journal_form_view">
|
||||
<field name="name">account.journal.form (in account_journal_lock_date)</field>
|
||||
<field name="model">account.journal</field>
|
||||
<field name="inherit_id" ref="account.view_account_journal_form"/>
|
||||
<field name="arch" type="xml">
|
||||
<field name="type" position="after">
|
||||
<field name="journal_lock_date"/>
|
||||
</field>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
|
||||
<record model="ir.ui.view" id="account_journal_tree_view">
|
||||
<field name="name">account.journal.tree (in account_journal_lock_date)</field>
|
||||
<field name="model">account.journal</field>
|
||||
<field name="inherit_id" ref="account.view_account_journal_tree"/>
|
||||
<field name="arch" type="xml">
|
||||
<field name="type" position="after">
|
||||
<field name="journal_lock_date"/>
|
||||
</field>
|
||||
</field>
|
||||
</record>
|
||||
</odoo>
|
||||
@@ -12,11 +12,11 @@ class AccountMove(models.Model):
|
||||
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") % (
|
||||
|
||||
60
account_permanent_lock_move/README.rst
Normal file
60
account_permanent_lock_move/README.rst
Normal file
@@ -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
|
||||
<https://github.com/OCA/account-financial-tools/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 <https://github.com/OCA/maintainer-tools/blob/master/template/module/static/description/icon.svg>`_.
|
||||
|
||||
Contributors
|
||||
------------
|
||||
|
||||
* Matthieu Dietrich <matthieu.dietrich@camptocamp.com>
|
||||
|
||||
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.
|
||||
3
account_permanent_lock_move/__init__.py
Executable file
3
account_permanent_lock_move/__init__.py
Executable file
@@ -0,0 +1,3 @@
|
||||
|
||||
from . import models
|
||||
from . import wizard
|
||||
17
account_permanent_lock_move/__manifest__.py
Normal file
17
account_permanent_lock_move/__manifest__.py
Normal file
@@ -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,
|
||||
}
|
||||
139
account_permanent_lock_move/i18n/account_permanent_lock_move.pot
Normal file
139
account_permanent_lock_move/i18n/account_permanent_lock_move.pot
Normal file
@@ -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 ""
|
||||
|
||||
153
account_permanent_lock_move/i18n/am.po
Normal file
153
account_permanent_lock_move/i18n/am.po
Normal file
@@ -0,0 +1,153 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_permanent_lock_move
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""
|
||||
154
account_permanent_lock_move/i18n/ar.po
Normal file
154
account_permanent_lock_move/i18n/ar.po
Normal file
@@ -0,0 +1,154 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_permanent_lock_move
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""
|
||||
153
account_permanent_lock_move/i18n/bg.po
Normal file
153
account_permanent_lock_move/i18n/bg.po
Normal file
@@ -0,0 +1,153 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_permanent_lock_move
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""
|
||||
154
account_permanent_lock_move/i18n/bs.po
Normal file
154
account_permanent_lock_move/i18n/bs.po
Normal file
@@ -0,0 +1,154 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_permanent_lock_move
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""
|
||||
153
account_permanent_lock_move/i18n/ca.po
Normal file
153
account_permanent_lock_move/i18n/ca.po
Normal file
@@ -0,0 +1,153 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_permanent_lock_move
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""
|
||||
154
account_permanent_lock_move/i18n/ca_ES.po
Normal file
154
account_permanent_lock_move/i18n/ca_ES.po
Normal file
@@ -0,0 +1,154 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_permanent_lock_move
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""
|
||||
153
account_permanent_lock_move/i18n/cs.po
Normal file
153
account_permanent_lock_move/i18n/cs.po
Normal file
@@ -0,0 +1,153 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_permanent_lock_move
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""
|
||||
153
account_permanent_lock_move/i18n/da.po
Normal file
153
account_permanent_lock_move/i18n/da.po
Normal file
@@ -0,0 +1,153 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_permanent_lock_move
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""
|
||||
153
account_permanent_lock_move/i18n/de.po
Normal file
153
account_permanent_lock_move/i18n/de.po
Normal file
@@ -0,0 +1,153 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_permanent_lock_move
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""
|
||||
154
account_permanent_lock_move/i18n/el_GR.po
Normal file
154
account_permanent_lock_move/i18n/el_GR.po
Normal file
@@ -0,0 +1,154 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_permanent_lock_move
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""
|
||||
154
account_permanent_lock_move/i18n/en_AU.po
Normal file
154
account_permanent_lock_move/i18n/en_AU.po
Normal file
@@ -0,0 +1,154 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_permanent_lock_move
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""
|
||||
154
account_permanent_lock_move/i18n/en_GB.po
Normal file
154
account_permanent_lock_move/i18n/en_GB.po
Normal file
@@ -0,0 +1,154 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_permanent_lock_move
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""
|
||||
153
account_permanent_lock_move/i18n/es.po
Normal file
153
account_permanent_lock_move/i18n/es.po
Normal file
@@ -0,0 +1,153 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_permanent_lock_move
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""
|
||||
154
account_permanent_lock_move/i18n/es_AR.po
Normal file
154
account_permanent_lock_move/i18n/es_AR.po
Normal file
@@ -0,0 +1,154 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_permanent_lock_move
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""
|
||||
154
account_permanent_lock_move/i18n/es_CL.po
Normal file
154
account_permanent_lock_move/i18n/es_CL.po
Normal file
@@ -0,0 +1,154 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_permanent_lock_move
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""
|
||||
154
account_permanent_lock_move/i18n/es_CO.po
Normal file
154
account_permanent_lock_move/i18n/es_CO.po
Normal file
@@ -0,0 +1,154 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_permanent_lock_move
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""
|
||||
154
account_permanent_lock_move/i18n/es_CR.po
Normal file
154
account_permanent_lock_move/i18n/es_CR.po
Normal file
@@ -0,0 +1,154 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_permanent_lock_move
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""
|
||||
154
account_permanent_lock_move/i18n/es_DO.po
Normal file
154
account_permanent_lock_move/i18n/es_DO.po
Normal file
@@ -0,0 +1,154 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_permanent_lock_move
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""
|
||||
155
account_permanent_lock_move/i18n/es_EC.po
Normal file
155
account_permanent_lock_move/i18n/es_EC.po
Normal file
@@ -0,0 +1,155 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_permanent_lock_move
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
# Cristian Salamea <ovnicraft@gmail.com>, 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 <ovnicraft@gmail.com>, 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 ""
|
||||
154
account_permanent_lock_move/i18n/es_ES.po
Normal file
154
account_permanent_lock_move/i18n/es_ES.po
Normal file
@@ -0,0 +1,154 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_permanent_lock_move
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""
|
||||
154
account_permanent_lock_move/i18n/es_MX.po
Normal file
154
account_permanent_lock_move/i18n/es_MX.po
Normal file
@@ -0,0 +1,154 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_permanent_lock_move
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""
|
||||
154
account_permanent_lock_move/i18n/es_PE.po
Normal file
154
account_permanent_lock_move/i18n/es_PE.po
Normal file
@@ -0,0 +1,154 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_permanent_lock_move
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""
|
||||
154
account_permanent_lock_move/i18n/es_PY.po
Normal file
154
account_permanent_lock_move/i18n/es_PY.po
Normal file
@@ -0,0 +1,154 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_permanent_lock_move
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""
|
||||
154
account_permanent_lock_move/i18n/es_VE.po
Normal file
154
account_permanent_lock_move/i18n/es_VE.po
Normal file
@@ -0,0 +1,154 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_permanent_lock_move
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""
|
||||
153
account_permanent_lock_move/i18n/et.po
Normal file
153
account_permanent_lock_move/i18n/et.po
Normal file
@@ -0,0 +1,153 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_permanent_lock_move
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""
|
||||
153
account_permanent_lock_move/i18n/eu.po
Normal file
153
account_permanent_lock_move/i18n/eu.po
Normal file
@@ -0,0 +1,153 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_permanent_lock_move
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""
|
||||
153
account_permanent_lock_move/i18n/fa.po
Normal file
153
account_permanent_lock_move/i18n/fa.po
Normal file
@@ -0,0 +1,153 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_permanent_lock_move
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""
|
||||
153
account_permanent_lock_move/i18n/fi.po
Normal file
153
account_permanent_lock_move/i18n/fi.po
Normal file
@@ -0,0 +1,153 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_permanent_lock_move
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""
|
||||
153
account_permanent_lock_move/i18n/fr.po
Normal file
153
account_permanent_lock_move/i18n/fr.po
Normal file
@@ -0,0 +1,153 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_permanent_lock_move
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""
|
||||
154
account_permanent_lock_move/i18n/fr_CA.po
Normal file
154
account_permanent_lock_move/i18n/fr_CA.po
Normal file
@@ -0,0 +1,154 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_permanent_lock_move
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""
|
||||
154
account_permanent_lock_move/i18n/fr_CH.po
Normal file
154
account_permanent_lock_move/i18n/fr_CH.po
Normal file
@@ -0,0 +1,154 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_permanent_lock_move
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""
|
||||
154
account_permanent_lock_move/i18n/fr_FR.po
Normal file
154
account_permanent_lock_move/i18n/fr_FR.po
Normal file
@@ -0,0 +1,154 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_permanent_lock_move
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""
|
||||
153
account_permanent_lock_move/i18n/gl.po
Normal file
153
account_permanent_lock_move/i18n/gl.po
Normal file
@@ -0,0 +1,153 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_permanent_lock_move
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""
|
||||
153
account_permanent_lock_move/i18n/gl_ES.po
Normal file
153
account_permanent_lock_move/i18n/gl_ES.po
Normal file
@@ -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 ""
|
||||
153
account_permanent_lock_move/i18n/gu.po
Normal file
153
account_permanent_lock_move/i18n/gu.po
Normal file
@@ -0,0 +1,153 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_permanent_lock_move
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""
|
||||
153
account_permanent_lock_move/i18n/he.po
Normal file
153
account_permanent_lock_move/i18n/he.po
Normal file
@@ -0,0 +1,153 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_permanent_lock_move
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""
|
||||
153
account_permanent_lock_move/i18n/hi.po
Normal file
153
account_permanent_lock_move/i18n/hi.po
Normal file
@@ -0,0 +1,153 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_permanent_lock_move
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""
|
||||
155
account_permanent_lock_move/i18n/hr.po
Normal file
155
account_permanent_lock_move/i18n/hr.po
Normal file
@@ -0,0 +1,155 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_permanent_lock_move
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
# Bole <bole@dajmi5.com>, 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 <bole@dajmi5.com>, 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"
|
||||
161
account_permanent_lock_move/i18n/hr_HR.po
Normal file
161
account_permanent_lock_move/i18n/hr_HR.po
Normal file
@@ -0,0 +1,161 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_permanent_lock_move
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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"
|
||||
153
account_permanent_lock_move/i18n/hu.po
Normal file
153
account_permanent_lock_move/i18n/hu.po
Normal file
@@ -0,0 +1,153 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_permanent_lock_move
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""
|
||||
153
account_permanent_lock_move/i18n/id.po
Normal file
153
account_permanent_lock_move/i18n/id.po
Normal file
@@ -0,0 +1,153 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_permanent_lock_move
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""
|
||||
153
account_permanent_lock_move/i18n/it.po
Normal file
153
account_permanent_lock_move/i18n/it.po
Normal file
@@ -0,0 +1,153 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_permanent_lock_move
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user