Feedback 1278: Feedback vom Workshop - 09.01.2018, US06 OCA Modul account_invoice_fiscal_position_update hinzugefügt.
							parent
							
								
									dcf525396c
								
							
						
					
					
						commit
						e47f10f597
					
				|  | @ -0,0 +1,58 @@ | |||
| .. 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 | ||||
| 
 | ||||
| ============================== | ||||
| Invoice Fiscal Position Update | ||||
| ============================== | ||||
| 
 | ||||
| With this module, when a user changes the fiscal position of an invoice, the | ||||
| taxes and the accounts on all the invoice lines which have a product are | ||||
| automatically updated. The invoice lines without a product are not updated and | ||||
| a warning is displayed to the user in this case. | ||||
| 
 | ||||
| Configuration | ||||
| ============= | ||||
| 
 | ||||
| No specific configuration needed. This module uses the standard | ||||
| configuration of the fiscal positions. | ||||
| 
 | ||||
| Usage | ||||
| ===== | ||||
| 
 | ||||
| .. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas | ||||
|    :alt: Try me on Runbot | ||||
|    :target: https://runbot.odoo-community.org/runbot/95/10.0 | ||||
| 
 | ||||
| Bug Tracker | ||||
| =========== | ||||
| 
 | ||||
| Bugs are tracked on `GitHub Issues | ||||
| <https://github.com/OCA/account-invoicing/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 | ||||
| ======= | ||||
| 
 | ||||
| Contributors | ||||
| ------------ | ||||
| 
 | ||||
| * Mathieu Vatel (Julius Network Solutions) | ||||
| * Alexis de Lattre <alexis.delattre@akretion.com> | ||||
| * Mourad EL HADJ MIMOUNE <mourad.elhadj.mimoune@akretion.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. | ||||
|  | @ -0,0 +1,3 @@ | |||
| # -*- coding: utf-8 -*- | ||||
| 
 | ||||
| from . import models | ||||
|  | @ -0,0 +1,19 @@ | |||
| # -*- coding: utf-8 -*- | ||||
| # © 2011-2014 Julius Network Solutions SARL <contact@julius.fr> | ||||
| # © 2014-2016 Akretion (Alexis de Lattre <alexis.delattre@akretion.com>) | ||||
| # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). | ||||
| 
 | ||||
| 
 | ||||
| { | ||||
|     'name': 'Invoice Fiscal Position Update', | ||||
|     'version': '11.0.1.0.0', | ||||
|     'category': 'Accounting & Finance', | ||||
|     'license': 'AGPL-3', | ||||
|     'summary': 'Changing the fiscal position of an invoice will auto-update ' | ||||
|                'invoice lines', | ||||
|     'author': "Julius Network Solutions," | ||||
|               "Akretion," | ||||
|               "Odoo Community Association (OCA)", | ||||
|     'depends': ['account'], | ||||
|     'installable': True, | ||||
| } | ||||
|  | @ -0,0 +1,47 @@ | |||
| # Translation of Odoo Server. | ||||
| # This file contains the translation of the following modules: | ||||
| # * account_invoice_fiscal_position_update | ||||
| #  | ||||
| # 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-04-29 02:39+0000\n" | ||||
| "PO-Revision-Date: 2017-04-29 02: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" | ||||
| "MIME-Version: 1.0\n" | ||||
| "Content-Type: text/plain; charset=UTF-8\n" | ||||
| "Content-Transfer-Encoding: \n" | ||||
| "Language: ar\n" | ||||
| "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: model:ir.model,name:account_invoice_fiscal_position_update.model_account_invoice | ||||
| msgid "Invoice" | ||||
| msgstr "فاتورة" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:60 | ||||
| #, python-format | ||||
| msgid "" | ||||
| "The following invoice lines were not updated to the new Fiscal Position because they don't have a Product:\n" | ||||
| "- %s\n" | ||||
| "You should update the Account and the Taxes of these invoice lines manually." | ||||
| msgstr "" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:54 | ||||
| #, python-format | ||||
| msgid "" | ||||
| "The invoice lines were not updated to the new Fiscal Position because they don't have products.\n" | ||||
| "You should update the Account and the Taxes of each invoice line manually." | ||||
| msgstr "" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:52 | ||||
| #, python-format | ||||
| msgid "Warning" | ||||
| msgstr "" | ||||
|  | @ -0,0 +1,47 @@ | |||
| # Translation of Odoo Server. | ||||
| # This file contains the translation of the following modules: | ||||
| # * account_invoice_fiscal_position_update | ||||
| #  | ||||
| # 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-04-29 02:39+0000\n" | ||||
| "PO-Revision-Date: 2017-04-29 02: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" | ||||
| "MIME-Version: 1.0\n" | ||||
| "Content-Type: text/plain; charset=UTF-8\n" | ||||
| "Content-Transfer-Encoding: \n" | ||||
| "Language: bg\n" | ||||
| "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: model:ir.model,name:account_invoice_fiscal_position_update.model_account_invoice | ||||
| msgid "Invoice" | ||||
| msgstr "Фактура" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:60 | ||||
| #, python-format | ||||
| msgid "" | ||||
| "The following invoice lines were not updated to the new Fiscal Position because they don't have a Product:\n" | ||||
| "- %s\n" | ||||
| "You should update the Account and the Taxes of these invoice lines manually." | ||||
| msgstr "" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:54 | ||||
| #, python-format | ||||
| msgid "" | ||||
| "The invoice lines were not updated to the new Fiscal Position because they don't have products.\n" | ||||
| "You should update the Account and the Taxes of each invoice line manually." | ||||
| msgstr "" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:52 | ||||
| #, python-format | ||||
| msgid "Warning" | ||||
| msgstr "" | ||||
|  | @ -0,0 +1,47 @@ | |||
| # Translation of Odoo Server. | ||||
| # This file contains the translation of the following modules: | ||||
| # * account_invoice_fiscal_position_update | ||||
| #  | ||||
| # 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-04-29 02:39+0000\n" | ||||
| "PO-Revision-Date: 2017-04-29 02: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" | ||||
| "MIME-Version: 1.0\n" | ||||
| "Content-Type: text/plain; charset=UTF-8\n" | ||||
| "Content-Transfer-Encoding: \n" | ||||
| "Language: bs\n" | ||||
| "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: model:ir.model,name:account_invoice_fiscal_position_update.model_account_invoice | ||||
| msgid "Invoice" | ||||
| msgstr "Faktura" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:60 | ||||
| #, python-format | ||||
| msgid "" | ||||
| "The following invoice lines were not updated to the new Fiscal Position because they don't have a Product:\n" | ||||
| "- %s\n" | ||||
| "You should update the Account and the Taxes of these invoice lines manually." | ||||
| msgstr "" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:54 | ||||
| #, python-format | ||||
| msgid "" | ||||
| "The invoice lines were not updated to the new Fiscal Position because they don't have products.\n" | ||||
| "You should update the Account and the Taxes of each invoice line manually." | ||||
| msgstr "" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:52 | ||||
| #, python-format | ||||
| msgid "Warning" | ||||
| msgstr "" | ||||
|  | @ -0,0 +1,47 @@ | |||
| # Translation of Odoo Server. | ||||
| # This file contains the translation of the following modules: | ||||
| # * account_invoice_fiscal_position_update | ||||
| #  | ||||
| # 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-04-29 02:39+0000\n" | ||||
| "PO-Revision-Date: 2017-04-29 02: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" | ||||
| "MIME-Version: 1.0\n" | ||||
| "Content-Type: text/plain; charset=UTF-8\n" | ||||
| "Content-Transfer-Encoding: \n" | ||||
| "Language: ca\n" | ||||
| "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: model:ir.model,name:account_invoice_fiscal_position_update.model_account_invoice | ||||
| msgid "Invoice" | ||||
| msgstr "Factura" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:60 | ||||
| #, python-format | ||||
| msgid "" | ||||
| "The following invoice lines were not updated to the new Fiscal Position because they don't have a Product:\n" | ||||
| "- %s\n" | ||||
| "You should update the Account and the Taxes of these invoice lines manually." | ||||
| msgstr "" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:54 | ||||
| #, python-format | ||||
| msgid "" | ||||
| "The invoice lines were not updated to the new Fiscal Position because they don't have products.\n" | ||||
| "You should update the Account and the Taxes of each invoice line manually." | ||||
| msgstr "" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:52 | ||||
| #, python-format | ||||
| msgid "Warning" | ||||
| msgstr "" | ||||
|  | @ -0,0 +1,47 @@ | |||
| # Translation of Odoo Server. | ||||
| # This file contains the translation of the following modules: | ||||
| # * account_invoice_fiscal_position_update | ||||
| #  | ||||
| # 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-04-29 02:39+0000\n" | ||||
| "PO-Revision-Date: 2017-04-29 02: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" | ||||
| "MIME-Version: 1.0\n" | ||||
| "Content-Type: text/plain; charset=UTF-8\n" | ||||
| "Content-Transfer-Encoding: \n" | ||||
| "Language: cs\n" | ||||
| "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: model:ir.model,name:account_invoice_fiscal_position_update.model_account_invoice | ||||
| msgid "Invoice" | ||||
| msgstr "Faktura" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:60 | ||||
| #, python-format | ||||
| msgid "" | ||||
| "The following invoice lines were not updated to the new Fiscal Position because they don't have a Product:\n" | ||||
| "- %s\n" | ||||
| "You should update the Account and the Taxes of these invoice lines manually." | ||||
| msgstr "" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:54 | ||||
| #, python-format | ||||
| msgid "" | ||||
| "The invoice lines were not updated to the new Fiscal Position because they don't have products.\n" | ||||
| "You should update the Account and the Taxes of each invoice line manually." | ||||
| msgstr "" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:52 | ||||
| #, python-format | ||||
| msgid "Warning" | ||||
| msgstr "" | ||||
|  | @ -0,0 +1,47 @@ | |||
| # Translation of Odoo Server. | ||||
| # This file contains the translation of the following modules: | ||||
| # * account_invoice_fiscal_position_update | ||||
| #  | ||||
| # Translators: | ||||
| # Niki Waibel <niki.waibel@gmail.com>, 2017 | ||||
| msgid "" | ||||
| msgstr "" | ||||
| "Project-Id-Version: Odoo Server 10.0\n" | ||||
| "Report-Msgid-Bugs-To: \n" | ||||
| "POT-Creation-Date: 2017-04-29 02:39+0000\n" | ||||
| "PO-Revision-Date: 2017-04-29 02:39+0000\n" | ||||
| "Last-Translator: Niki Waibel <niki.waibel@gmail.com>, 2017\n" | ||||
| "Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" | ||||
| "MIME-Version: 1.0\n" | ||||
| "Content-Type: text/plain; charset=UTF-8\n" | ||||
| "Content-Transfer-Encoding: \n" | ||||
| "Language: de\n" | ||||
| "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: model:ir.model,name:account_invoice_fiscal_position_update.model_account_invoice | ||||
| msgid "Invoice" | ||||
| msgstr "Rechnung" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:60 | ||||
| #, python-format | ||||
| msgid "" | ||||
| "The following invoice lines were not updated to the new Fiscal Position because they don't have a Product:\n" | ||||
| "- %s\n" | ||||
| "You should update the Account and the Taxes of these invoice lines manually." | ||||
| msgstr "" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:54 | ||||
| #, python-format | ||||
| msgid "" | ||||
| "The invoice lines were not updated to the new Fiscal Position because they don't have products.\n" | ||||
| "You should update the Account and the Taxes of each invoice line manually." | ||||
| msgstr "" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:52 | ||||
| #, python-format | ||||
| msgid "Warning" | ||||
| msgstr "" | ||||
|  | @ -0,0 +1,47 @@ | |||
| # Translation of Odoo Server. | ||||
| # This file contains the translation of the following modules: | ||||
| # * account_invoice_fiscal_position_update | ||||
| #  | ||||
| # 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-04-29 02:39+0000\n" | ||||
| "PO-Revision-Date: 2017-04-29 02: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" | ||||
| "MIME-Version: 1.0\n" | ||||
| "Content-Type: text/plain; charset=UTF-8\n" | ||||
| "Content-Transfer-Encoding: \n" | ||||
| "Language: el_GR\n" | ||||
| "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: model:ir.model,name:account_invoice_fiscal_position_update.model_account_invoice | ||||
| msgid "Invoice" | ||||
| msgstr "Τιμολόγιο" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:60 | ||||
| #, python-format | ||||
| msgid "" | ||||
| "The following invoice lines were not updated to the new Fiscal Position because they don't have a Product:\n" | ||||
| "- %s\n" | ||||
| "You should update the Account and the Taxes of these invoice lines manually." | ||||
| msgstr "" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:54 | ||||
| #, python-format | ||||
| msgid "" | ||||
| "The invoice lines were not updated to the new Fiscal Position because they don't have products.\n" | ||||
| "You should update the Account and the Taxes of each invoice line manually." | ||||
| msgstr "" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:52 | ||||
| #, python-format | ||||
| msgid "Warning" | ||||
| msgstr "" | ||||
|  | @ -0,0 +1,47 @@ | |||
| # Translation of Odoo Server. | ||||
| # This file contains the translation of the following modules: | ||||
| # * account_invoice_fiscal_position_update | ||||
| #  | ||||
| # 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-04-29 02:39+0000\n" | ||||
| "PO-Revision-Date: 2017-04-29 02: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" | ||||
| "MIME-Version: 1.0\n" | ||||
| "Content-Type: text/plain; charset=UTF-8\n" | ||||
| "Content-Transfer-Encoding: \n" | ||||
| "Language: en_GB\n" | ||||
| "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: model:ir.model,name:account_invoice_fiscal_position_update.model_account_invoice | ||||
| msgid "Invoice" | ||||
| msgstr "Invoice" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:60 | ||||
| #, python-format | ||||
| msgid "" | ||||
| "The following invoice lines were not updated to the new Fiscal Position because they don't have a Product:\n" | ||||
| "- %s\n" | ||||
| "You should update the Account and the Taxes of these invoice lines manually." | ||||
| msgstr "" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:54 | ||||
| #, python-format | ||||
| msgid "" | ||||
| "The invoice lines were not updated to the new Fiscal Position because they don't have products.\n" | ||||
| "You should update the Account and the Taxes of each invoice line manually." | ||||
| msgstr "" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:52 | ||||
| #, python-format | ||||
| msgid "Warning" | ||||
| msgstr "" | ||||
|  | @ -0,0 +1,49 @@ | |||
| # Translation of Odoo Server. | ||||
| # This file contains the translation of the following modules: | ||||
| # * account_invoice_fiscal_position_update | ||||
| #  | ||||
| # 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-23 13:51+0000\n" | ||||
| "PO-Revision-Date: 2017-11-23 13:51+0000\n" | ||||
| "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" | ||||
| "Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n" | ||||
| "MIME-Version: 1.0\n" | ||||
| "Content-Type: text/plain; charset=UTF-8\n" | ||||
| "Content-Transfer-Encoding: \n" | ||||
| "Language: es\n" | ||||
| "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: model:ir.model,name:account_invoice_fiscal_position_update.model_account_invoice | ||||
| msgid "Invoice" | ||||
| msgstr "Factura" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:68 | ||||
| #, python-format | ||||
| msgid "" | ||||
| "The following invoice lines were not updated to the new Fiscal Position because they don't have a Product:\n" | ||||
| "- %s\n" | ||||
| "You should update the Account and the Taxes of these invoice lines manually." | ||||
| msgstr "" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:62 | ||||
| #, python-format | ||||
| msgid "" | ||||
| "The invoice lines were not updated to the new Fiscal Position because they don't have products.\n" | ||||
| "You should update the Account and the Taxes of each invoice line manually." | ||||
| msgstr "" | ||||
| "Las líneas de factura no se actualizaron a la nueva posición fiscal porque no tienen producto asociado.\n" | ||||
| "Debería actualizar las cuentas y los impuestos de cada línea de factura manualmente." | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:60 | ||||
| #, python-format | ||||
| msgid "Warning" | ||||
| msgstr "Aviso" | ||||
|  | @ -0,0 +1,47 @@ | |||
| # Translation of Odoo Server. | ||||
| # This file contains the translation of the following modules: | ||||
| # * account_invoice_fiscal_position_update | ||||
| #  | ||||
| # 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-04-29 02:39+0000\n" | ||||
| "PO-Revision-Date: 2017-04-29 02: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" | ||||
| "MIME-Version: 1.0\n" | ||||
| "Content-Type: text/plain; charset=UTF-8\n" | ||||
| "Content-Transfer-Encoding: \n" | ||||
| "Language: es_CR\n" | ||||
| "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: model:ir.model,name:account_invoice_fiscal_position_update.model_account_invoice | ||||
| msgid "Invoice" | ||||
| msgstr "Factura" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:60 | ||||
| #, python-format | ||||
| msgid "" | ||||
| "The following invoice lines were not updated to the new Fiscal Position because they don't have a Product:\n" | ||||
| "- %s\n" | ||||
| "You should update the Account and the Taxes of these invoice lines manually." | ||||
| msgstr "" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:54 | ||||
| #, python-format | ||||
| msgid "" | ||||
| "The invoice lines were not updated to the new Fiscal Position because they don't have products.\n" | ||||
| "You should update the Account and the Taxes of each invoice line manually." | ||||
| msgstr "" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:52 | ||||
| #, python-format | ||||
| msgid "Warning" | ||||
| msgstr "" | ||||
|  | @ -0,0 +1,47 @@ | |||
| # Translation of Odoo Server. | ||||
| # This file contains the translation of the following modules: | ||||
| # * account_invoice_fiscal_position_update | ||||
| #  | ||||
| # 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-04-29 02:39+0000\n" | ||||
| "PO-Revision-Date: 2017-04-29 02:39+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" | ||||
| "MIME-Version: 1.0\n" | ||||
| "Content-Type: text/plain; charset=UTF-8\n" | ||||
| "Content-Transfer-Encoding: \n" | ||||
| "Language: es_EC\n" | ||||
| "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: model:ir.model,name:account_invoice_fiscal_position_update.model_account_invoice | ||||
| msgid "Invoice" | ||||
| msgstr "Factura" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:60 | ||||
| #, python-format | ||||
| msgid "" | ||||
| "The following invoice lines were not updated to the new Fiscal Position because they don't have a Product:\n" | ||||
| "- %s\n" | ||||
| "You should update the Account and the Taxes of these invoice lines manually." | ||||
| msgstr "" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:54 | ||||
| #, python-format | ||||
| msgid "" | ||||
| "The invoice lines were not updated to the new Fiscal Position because they don't have products.\n" | ||||
| "You should update the Account and the Taxes of each invoice line manually." | ||||
| msgstr "" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:52 | ||||
| #, python-format | ||||
| msgid "Warning" | ||||
| msgstr "" | ||||
|  | @ -0,0 +1,47 @@ | |||
| # Translation of Odoo Server. | ||||
| # This file contains the translation of the following modules: | ||||
| # * account_invoice_fiscal_position_update | ||||
| #  | ||||
| # Translators: | ||||
| # Fernando Lara <gennesis45@gmail.com>, 2017 | ||||
| msgid "" | ||||
| msgstr "" | ||||
| "Project-Id-Version: Odoo Server 10.0\n" | ||||
| "Report-Msgid-Bugs-To: \n" | ||||
| "POT-Creation-Date: 2017-04-29 02:39+0000\n" | ||||
| "PO-Revision-Date: 2017-04-29 02:39+0000\n" | ||||
| "Last-Translator: Fernando Lara <gennesis45@gmail.com>, 2017\n" | ||||
| "Language-Team: Spanish (Spain) (https://www.transifex.com/oca/teams/23907/es_ES/)\n" | ||||
| "MIME-Version: 1.0\n" | ||||
| "Content-Type: text/plain; charset=UTF-8\n" | ||||
| "Content-Transfer-Encoding: \n" | ||||
| "Language: es_ES\n" | ||||
| "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: model:ir.model,name:account_invoice_fiscal_position_update.model_account_invoice | ||||
| msgid "Invoice" | ||||
| msgstr "Factura" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:60 | ||||
| #, python-format | ||||
| msgid "" | ||||
| "The following invoice lines were not updated to the new Fiscal Position because they don't have a Product:\n" | ||||
| "- %s\n" | ||||
| "You should update the Account and the Taxes of these invoice lines manually." | ||||
| msgstr "" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:54 | ||||
| #, python-format | ||||
| msgid "" | ||||
| "The invoice lines were not updated to the new Fiscal Position because they don't have products.\n" | ||||
| "You should update the Account and the Taxes of each invoice line manually." | ||||
| msgstr "" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:52 | ||||
| #, python-format | ||||
| msgid "Warning" | ||||
| msgstr "" | ||||
|  | @ -0,0 +1,47 @@ | |||
| # Translation of Odoo Server. | ||||
| # This file contains the translation of the following modules: | ||||
| # * account_invoice_fiscal_position_update | ||||
| #  | ||||
| # 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-04-29 02:39+0000\n" | ||||
| "PO-Revision-Date: 2017-04-29 02: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" | ||||
| "MIME-Version: 1.0\n" | ||||
| "Content-Type: text/plain; charset=UTF-8\n" | ||||
| "Content-Transfer-Encoding: \n" | ||||
| "Language: es_MX\n" | ||||
| "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: model:ir.model,name:account_invoice_fiscal_position_update.model_account_invoice | ||||
| msgid "Invoice" | ||||
| msgstr "Factura" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:60 | ||||
| #, python-format | ||||
| msgid "" | ||||
| "The following invoice lines were not updated to the new Fiscal Position because they don't have a Product:\n" | ||||
| "- %s\n" | ||||
| "You should update the Account and the Taxes of these invoice lines manually." | ||||
| msgstr "" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:54 | ||||
| #, python-format | ||||
| msgid "" | ||||
| "The invoice lines were not updated to the new Fiscal Position because they don't have products.\n" | ||||
| "You should update the Account and the Taxes of each invoice line manually." | ||||
| msgstr "" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:52 | ||||
| #, python-format | ||||
| msgid "Warning" | ||||
| msgstr "" | ||||
|  | @ -0,0 +1,47 @@ | |||
| # Translation of Odoo Server. | ||||
| # This file contains the translation of the following modules: | ||||
| # * account_invoice_fiscal_position_update | ||||
| #  | ||||
| # 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-04-29 02:39+0000\n" | ||||
| "PO-Revision-Date: 2017-04-29 02: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" | ||||
| "MIME-Version: 1.0\n" | ||||
| "Content-Type: text/plain; charset=UTF-8\n" | ||||
| "Content-Transfer-Encoding: \n" | ||||
| "Language: et\n" | ||||
| "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: model:ir.model,name:account_invoice_fiscal_position_update.model_account_invoice | ||||
| msgid "Invoice" | ||||
| msgstr "Arve" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:60 | ||||
| #, python-format | ||||
| msgid "" | ||||
| "The following invoice lines were not updated to the new Fiscal Position because they don't have a Product:\n" | ||||
| "- %s\n" | ||||
| "You should update the Account and the Taxes of these invoice lines manually." | ||||
| msgstr "" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:54 | ||||
| #, python-format | ||||
| msgid "" | ||||
| "The invoice lines were not updated to the new Fiscal Position because they don't have products.\n" | ||||
| "You should update the Account and the Taxes of each invoice line manually." | ||||
| msgstr "" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:52 | ||||
| #, python-format | ||||
| msgid "Warning" | ||||
| msgstr "" | ||||
|  | @ -0,0 +1,47 @@ | |||
| # Translation of Odoo Server. | ||||
| # This file contains the translation of the following modules: | ||||
| # * account_invoice_fiscal_position_update | ||||
| #  | ||||
| # 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-04-29 02:39+0000\n" | ||||
| "PO-Revision-Date: 2017-04-29 02: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" | ||||
| "MIME-Version: 1.0\n" | ||||
| "Content-Type: text/plain; charset=UTF-8\n" | ||||
| "Content-Transfer-Encoding: \n" | ||||
| "Language: fi\n" | ||||
| "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: model:ir.model,name:account_invoice_fiscal_position_update.model_account_invoice | ||||
| msgid "Invoice" | ||||
| msgstr "Lasku" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:60 | ||||
| #, python-format | ||||
| msgid "" | ||||
| "The following invoice lines were not updated to the new Fiscal Position because they don't have a Product:\n" | ||||
| "- %s\n" | ||||
| "You should update the Account and the Taxes of these invoice lines manually." | ||||
| msgstr "" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:54 | ||||
| #, python-format | ||||
| msgid "" | ||||
| "The invoice lines were not updated to the new Fiscal Position because they don't have products.\n" | ||||
| "You should update the Account and the Taxes of each invoice line manually." | ||||
| msgstr "" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:52 | ||||
| #, python-format | ||||
| msgid "Warning" | ||||
| msgstr "" | ||||
|  | @ -0,0 +1,52 @@ | |||
| # Translation of Odoo Server. | ||||
| # This file contains the translation of the following modules: | ||||
| # * account_invoice_fiscal_position_update | ||||
| #  | ||||
| # 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-23 13:51+0000\n" | ||||
| "PO-Revision-Date: 2017-11-23 13:51+0000\n" | ||||
| "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" | ||||
| "Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" | ||||
| "MIME-Version: 1.0\n" | ||||
| "Content-Type: text/plain; charset=UTF-8\n" | ||||
| "Content-Transfer-Encoding: \n" | ||||
| "Language: fr\n" | ||||
| "Plural-Forms: nplurals=2; plural=(n > 1);\n" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: model:ir.model,name:account_invoice_fiscal_position_update.model_account_invoice | ||||
| msgid "Invoice" | ||||
| msgstr "Facture" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:68 | ||||
| #, python-format | ||||
| msgid "" | ||||
| "The following invoice lines were not updated to the new Fiscal Position because they don't have a Product:\n" | ||||
| "- %s\n" | ||||
| "You should update the Account and the Taxes of these invoice lines manually." | ||||
| msgstr "" | ||||
| "En l'absence d'article, le changement de la position fiscale n'a pas actualisé les lignes suivantes de la facture :\n" | ||||
| "- %s\n" | ||||
| "Vous devez mettre à jour manuellement le compte comptable et les taxes sur chaque ligne de facture." | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:62 | ||||
| #, python-format | ||||
| msgid "" | ||||
| "The invoice lines were not updated to the new Fiscal Position because they don't have products.\n" | ||||
| "You should update the Account and the Taxes of each invoice line manually." | ||||
| msgstr "" | ||||
| "Les lignes de facture n'ont pas été mise-à-jour suite au changement de la position fiscale car elles ne contiennent pas d'article.\n" | ||||
| "Vous devez mettre à jour manuellement le compte comptable et les taxes sur chaque ligne de facture." | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:60 | ||||
| #, python-format | ||||
| msgid "Warning" | ||||
| msgstr "Avertissement" | ||||
|  | @ -0,0 +1,47 @@ | |||
| # Translation of Odoo Server. | ||||
| # This file contains the translation of the following modules: | ||||
| # * account_invoice_fiscal_position_update | ||||
| #  | ||||
| # 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-04-29 02:39+0000\n" | ||||
| "PO-Revision-Date: 2017-04-29 02: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" | ||||
| "MIME-Version: 1.0\n" | ||||
| "Content-Type: text/plain; charset=UTF-8\n" | ||||
| "Content-Transfer-Encoding: \n" | ||||
| "Language: fr_CA\n" | ||||
| "Plural-Forms: nplurals=2; plural=(n > 1);\n" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: model:ir.model,name:account_invoice_fiscal_position_update.model_account_invoice | ||||
| msgid "Invoice" | ||||
| msgstr "Facture" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:60 | ||||
| #, python-format | ||||
| msgid "" | ||||
| "The following invoice lines were not updated to the new Fiscal Position because they don't have a Product:\n" | ||||
| "- %s\n" | ||||
| "You should update the Account and the Taxes of these invoice lines manually." | ||||
| msgstr "" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:54 | ||||
| #, python-format | ||||
| msgid "" | ||||
| "The invoice lines were not updated to the new Fiscal Position because they don't have products.\n" | ||||
| "You should update the Account and the Taxes of each invoice line manually." | ||||
| msgstr "" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:52 | ||||
| #, python-format | ||||
| msgid "Warning" | ||||
| msgstr "" | ||||
|  | @ -0,0 +1,47 @@ | |||
| # Translation of Odoo Server. | ||||
| # This file contains the translation of the following modules: | ||||
| # * account_invoice_fiscal_position_update | ||||
| #  | ||||
| # 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-04-29 02:39+0000\n" | ||||
| "PO-Revision-Date: 2017-04-29 02: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" | ||||
| "MIME-Version: 1.0\n" | ||||
| "Content-Type: text/plain; charset=UTF-8\n" | ||||
| "Content-Transfer-Encoding: \n" | ||||
| "Language: fr_CH\n" | ||||
| "Plural-Forms: nplurals=2; plural=(n > 1);\n" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: model:ir.model,name:account_invoice_fiscal_position_update.model_account_invoice | ||||
| msgid "Invoice" | ||||
| msgstr "Facture" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:60 | ||||
| #, python-format | ||||
| msgid "" | ||||
| "The following invoice lines were not updated to the new Fiscal Position because they don't have a Product:\n" | ||||
| "- %s\n" | ||||
| "You should update the Account and the Taxes of these invoice lines manually." | ||||
| msgstr "" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:54 | ||||
| #, python-format | ||||
| msgid "" | ||||
| "The invoice lines were not updated to the new Fiscal Position because they don't have products.\n" | ||||
| "You should update the Account and the Taxes of each invoice line manually." | ||||
| msgstr "" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:52 | ||||
| #, python-format | ||||
| msgid "Warning" | ||||
| msgstr "" | ||||
|  | @ -0,0 +1,47 @@ | |||
| # Translation of Odoo Server. | ||||
| # This file contains the translation of the following modules: | ||||
| # * account_invoice_fiscal_position_update | ||||
| #  | ||||
| # 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-04-29 02:39+0000\n" | ||||
| "PO-Revision-Date: 2017-04-29 02: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" | ||||
| "MIME-Version: 1.0\n" | ||||
| "Content-Type: text/plain; charset=UTF-8\n" | ||||
| "Content-Transfer-Encoding: \n" | ||||
| "Language: gl\n" | ||||
| "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: model:ir.model,name:account_invoice_fiscal_position_update.model_account_invoice | ||||
| msgid "Invoice" | ||||
| msgstr "Factura" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:60 | ||||
| #, python-format | ||||
| msgid "" | ||||
| "The following invoice lines were not updated to the new Fiscal Position because they don't have a Product:\n" | ||||
| "- %s\n" | ||||
| "You should update the Account and the Taxes of these invoice lines manually." | ||||
| msgstr "" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:54 | ||||
| #, python-format | ||||
| msgid "" | ||||
| "The invoice lines were not updated to the new Fiscal Position because they don't have products.\n" | ||||
| "You should update the Account and the Taxes of each invoice line manually." | ||||
| msgstr "" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:52 | ||||
| #, python-format | ||||
| msgid "Warning" | ||||
| msgstr "" | ||||
|  | @ -0,0 +1,47 @@ | |||
| # Translation of Odoo Server. | ||||
| # This file contains the translation of the following modules: | ||||
| # * account_invoice_fiscal_position_update | ||||
| #  | ||||
| # Translators: | ||||
| # Bole <bole@dajmi5.com>, 2017 | ||||
| msgid "" | ||||
| msgstr "" | ||||
| "Project-Id-Version: Odoo Server 10.0\n" | ||||
| "Report-Msgid-Bugs-To: \n" | ||||
| "POT-Creation-Date: 2017-04-29 02:39+0000\n" | ||||
| "PO-Revision-Date: 2017-04-29 02:39+0000\n" | ||||
| "Last-Translator: Bole <bole@dajmi5.com>, 2017\n" | ||||
| "Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n" | ||||
| "MIME-Version: 1.0\n" | ||||
| "Content-Type: text/plain; charset=UTF-8\n" | ||||
| "Content-Transfer-Encoding: \n" | ||||
| "Language: hr\n" | ||||
| "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: model:ir.model,name:account_invoice_fiscal_position_update.model_account_invoice | ||||
| msgid "Invoice" | ||||
| msgstr "Račun" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:60 | ||||
| #, python-format | ||||
| msgid "" | ||||
| "The following invoice lines were not updated to the new Fiscal Position because they don't have a Product:\n" | ||||
| "- %s\n" | ||||
| "You should update the Account and the Taxes of these invoice lines manually." | ||||
| msgstr "" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:54 | ||||
| #, python-format | ||||
| msgid "" | ||||
| "The invoice lines were not updated to the new Fiscal Position because they don't have products.\n" | ||||
| "You should update the Account and the Taxes of each invoice line manually." | ||||
| msgstr "" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:52 | ||||
| #, python-format | ||||
| msgid "Warning" | ||||
| msgstr "" | ||||
|  | @ -0,0 +1,53 @@ | |||
| # Translation of Odoo Server. | ||||
| # This file contains the translation of the following modules: | ||||
| # * account_invoice_fiscal_position_update | ||||
| #  | ||||
| # Translators: | ||||
| # Bole <bole@dajmi5.com>, 2017 | ||||
| # 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-23 13:51+0000\n" | ||||
| "PO-Revision-Date: 2017-11-23 13:51+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" | ||||
| "MIME-Version: 1.0\n" | ||||
| "Content-Type: text/plain; charset=UTF-8\n" | ||||
| "Content-Transfer-Encoding: \n" | ||||
| "Language: hr_HR\n" | ||||
| "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: model:ir.model,name:account_invoice_fiscal_position_update.model_account_invoice | ||||
| msgid "Invoice" | ||||
| msgstr "Račun" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:68 | ||||
| #, python-format | ||||
| msgid "" | ||||
| "The following invoice lines were not updated to the new Fiscal Position because they don't have a Product:\n" | ||||
| "- %s\n" | ||||
| "You should update the Account and the Taxes of these invoice lines manually." | ||||
| msgstr "" | ||||
| "Sljedeći retci računa nisu ažurirani u skladu sa novom fiskalnom pozicijom jer ne sadrže Proizvod.\n" | ||||
| "- %s\n" | ||||
| "Potrebno je ručno ažurirati poreze i konta na navedenim stavkama." | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:62 | ||||
| #, python-format | ||||
| msgid "" | ||||
| "The invoice lines were not updated to the new Fiscal Position because they don't have products.\n" | ||||
| "You should update the Account and the Taxes of each invoice line manually." | ||||
| msgstr "" | ||||
| "Stavke računa nisu ažurirane u sklado sa novom fiskalnom pozicijom jer ne sadrže proizvod.\n" | ||||
| "Potrebno je ručno ažurirati poreze i konta na stavkama." | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:60 | ||||
| #, python-format | ||||
| msgid "Warning" | ||||
| msgstr "Upozorenje" | ||||
|  | @ -0,0 +1,47 @@ | |||
| # Translation of Odoo Server. | ||||
| # This file contains the translation of the following modules: | ||||
| # * account_invoice_fiscal_position_update | ||||
| #  | ||||
| # 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-04-29 02:39+0000\n" | ||||
| "PO-Revision-Date: 2017-04-29 02: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" | ||||
| "MIME-Version: 1.0\n" | ||||
| "Content-Type: text/plain; charset=UTF-8\n" | ||||
| "Content-Transfer-Encoding: \n" | ||||
| "Language: hu\n" | ||||
| "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: model:ir.model,name:account_invoice_fiscal_position_update.model_account_invoice | ||||
| msgid "Invoice" | ||||
| msgstr "Számla" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:60 | ||||
| #, python-format | ||||
| msgid "" | ||||
| "The following invoice lines were not updated to the new Fiscal Position because they don't have a Product:\n" | ||||
| "- %s\n" | ||||
| "You should update the Account and the Taxes of these invoice lines manually." | ||||
| msgstr "" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:54 | ||||
| #, python-format | ||||
| msgid "" | ||||
| "The invoice lines were not updated to the new Fiscal Position because they don't have products.\n" | ||||
| "You should update the Account and the Taxes of each invoice line manually." | ||||
| msgstr "" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:52 | ||||
| #, python-format | ||||
| msgid "Warning" | ||||
| msgstr "" | ||||
|  | @ -0,0 +1,47 @@ | |||
| # Translation of Odoo Server. | ||||
| # This file contains the translation of the following modules: | ||||
| # * account_invoice_fiscal_position_update | ||||
| #  | ||||
| # 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-04-29 02:39+0000\n" | ||||
| "PO-Revision-Date: 2017-04-29 02: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" | ||||
| "MIME-Version: 1.0\n" | ||||
| "Content-Type: text/plain; charset=UTF-8\n" | ||||
| "Content-Transfer-Encoding: \n" | ||||
| "Language: id\n" | ||||
| "Plural-Forms: nplurals=1; plural=0;\n" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: model:ir.model,name:account_invoice_fiscal_position_update.model_account_invoice | ||||
| msgid "Invoice" | ||||
| msgstr "Faktur" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:60 | ||||
| #, python-format | ||||
| msgid "" | ||||
| "The following invoice lines were not updated to the new Fiscal Position because they don't have a Product:\n" | ||||
| "- %s\n" | ||||
| "You should update the Account and the Taxes of these invoice lines manually." | ||||
| msgstr "" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:54 | ||||
| #, python-format | ||||
| msgid "" | ||||
| "The invoice lines were not updated to the new Fiscal Position because they don't have products.\n" | ||||
| "You should update the Account and the Taxes of each invoice line manually." | ||||
| msgstr "" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:52 | ||||
| #, python-format | ||||
| msgid "Warning" | ||||
| msgstr "" | ||||
|  | @ -0,0 +1,47 @@ | |||
| # Translation of Odoo Server. | ||||
| # This file contains the translation of the following modules: | ||||
| # * account_invoice_fiscal_position_update | ||||
| #  | ||||
| # 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-04-29 02:39+0000\n" | ||||
| "PO-Revision-Date: 2017-04-29 02: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" | ||||
| "MIME-Version: 1.0\n" | ||||
| "Content-Type: text/plain; charset=UTF-8\n" | ||||
| "Content-Transfer-Encoding: \n" | ||||
| "Language: it\n" | ||||
| "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: model:ir.model,name:account_invoice_fiscal_position_update.model_account_invoice | ||||
| msgid "Invoice" | ||||
| msgstr "Fattura" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:60 | ||||
| #, python-format | ||||
| msgid "" | ||||
| "The following invoice lines were not updated to the new Fiscal Position because they don't have a Product:\n" | ||||
| "- %s\n" | ||||
| "You should update the Account and the Taxes of these invoice lines manually." | ||||
| msgstr "" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:54 | ||||
| #, python-format | ||||
| msgid "" | ||||
| "The invoice lines were not updated to the new Fiscal Position because they don't have products.\n" | ||||
| "You should update the Account and the Taxes of each invoice line manually." | ||||
| msgstr "" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:52 | ||||
| #, python-format | ||||
| msgid "Warning" | ||||
| msgstr "" | ||||
|  | @ -0,0 +1,47 @@ | |||
| # Translation of Odoo Server. | ||||
| # This file contains the translation of the following modules: | ||||
| # * account_invoice_fiscal_position_update | ||||
| #  | ||||
| # 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-04-29 02:39+0000\n" | ||||
| "PO-Revision-Date: 2017-04-29 02:39+0000\n" | ||||
| "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" | ||||
| "Language-Team: Japanese (https://www.transifex.com/oca/teams/23907/ja/)\n" | ||||
| "MIME-Version: 1.0\n" | ||||
| "Content-Type: text/plain; charset=UTF-8\n" | ||||
| "Content-Transfer-Encoding: \n" | ||||
| "Language: ja\n" | ||||
| "Plural-Forms: nplurals=1; plural=0;\n" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: model:ir.model,name:account_invoice_fiscal_position_update.model_account_invoice | ||||
| msgid "Invoice" | ||||
| msgstr "請求書" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:60 | ||||
| #, python-format | ||||
| msgid "" | ||||
| "The following invoice lines were not updated to the new Fiscal Position because they don't have a Product:\n" | ||||
| "- %s\n" | ||||
| "You should update the Account and the Taxes of these invoice lines manually." | ||||
| msgstr "" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:54 | ||||
| #, python-format | ||||
| msgid "" | ||||
| "The invoice lines were not updated to the new Fiscal Position because they don't have products.\n" | ||||
| "You should update the Account and the Taxes of each invoice line manually." | ||||
| msgstr "" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:52 | ||||
| #, python-format | ||||
| msgid "Warning" | ||||
| msgstr "" | ||||
|  | @ -0,0 +1,47 @@ | |||
| # Translation of Odoo Server. | ||||
| # This file contains the translation of the following modules: | ||||
| # * account_invoice_fiscal_position_update | ||||
| #  | ||||
| # 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-04-29 02:39+0000\n" | ||||
| "PO-Revision-Date: 2017-04-29 02:39+0000\n" | ||||
| "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" | ||||
| "Language-Team: Lithuanian (https://www.transifex.com/oca/teams/23907/lt/)\n" | ||||
| "MIME-Version: 1.0\n" | ||||
| "Content-Type: text/plain; charset=UTF-8\n" | ||||
| "Content-Transfer-Encoding: \n" | ||||
| "Language: lt\n" | ||||
| "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: model:ir.model,name:account_invoice_fiscal_position_update.model_account_invoice | ||||
| msgid "Invoice" | ||||
| msgstr "Sąskaita faktūra" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:60 | ||||
| #, python-format | ||||
| msgid "" | ||||
| "The following invoice lines were not updated to the new Fiscal Position because they don't have a Product:\n" | ||||
| "- %s\n" | ||||
| "You should update the Account and the Taxes of these invoice lines manually." | ||||
| msgstr "" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:54 | ||||
| #, python-format | ||||
| msgid "" | ||||
| "The invoice lines were not updated to the new Fiscal Position because they don't have products.\n" | ||||
| "You should update the Account and the Taxes of each invoice line manually." | ||||
| msgstr "" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:52 | ||||
| #, python-format | ||||
| msgid "Warning" | ||||
| msgstr "" | ||||
|  | @ -0,0 +1,47 @@ | |||
| # Translation of Odoo Server. | ||||
| # This file contains the translation of the following modules: | ||||
| # * account_invoice_fiscal_position_update | ||||
| #  | ||||
| # 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-04-29 02:39+0000\n" | ||||
| "PO-Revision-Date: 2017-04-29 02:39+0000\n" | ||||
| "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" | ||||
| "Language-Team: Macedonian (https://www.transifex.com/oca/teams/23907/mk/)\n" | ||||
| "MIME-Version: 1.0\n" | ||||
| "Content-Type: text/plain; charset=UTF-8\n" | ||||
| "Content-Transfer-Encoding: \n" | ||||
| "Language: mk\n" | ||||
| "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: model:ir.model,name:account_invoice_fiscal_position_update.model_account_invoice | ||||
| msgid "Invoice" | ||||
| msgstr "Фактура" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:60 | ||||
| #, python-format | ||||
| msgid "" | ||||
| "The following invoice lines were not updated to the new Fiscal Position because they don't have a Product:\n" | ||||
| "- %s\n" | ||||
| "You should update the Account and the Taxes of these invoice lines manually." | ||||
| msgstr "" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:54 | ||||
| #, python-format | ||||
| msgid "" | ||||
| "The invoice lines were not updated to the new Fiscal Position because they don't have products.\n" | ||||
| "You should update the Account and the Taxes of each invoice line manually." | ||||
| msgstr "" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:52 | ||||
| #, python-format | ||||
| msgid "Warning" | ||||
| msgstr "" | ||||
|  | @ -0,0 +1,47 @@ | |||
| # Translation of Odoo Server. | ||||
| # This file contains the translation of the following modules: | ||||
| # * account_invoice_fiscal_position_update | ||||
| #  | ||||
| # 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-04-29 02:39+0000\n" | ||||
| "PO-Revision-Date: 2017-04-29 02:39+0000\n" | ||||
| "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" | ||||
| "Language-Team: Mongolian (https://www.transifex.com/oca/teams/23907/mn/)\n" | ||||
| "MIME-Version: 1.0\n" | ||||
| "Content-Type: text/plain; charset=UTF-8\n" | ||||
| "Content-Transfer-Encoding: \n" | ||||
| "Language: mn\n" | ||||
| "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: model:ir.model,name:account_invoice_fiscal_position_update.model_account_invoice | ||||
| msgid "Invoice" | ||||
| msgstr "Нэхэмжлэл" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:60 | ||||
| #, python-format | ||||
| msgid "" | ||||
| "The following invoice lines were not updated to the new Fiscal Position because they don't have a Product:\n" | ||||
| "- %s\n" | ||||
| "You should update the Account and the Taxes of these invoice lines manually." | ||||
| msgstr "" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:54 | ||||
| #, python-format | ||||
| msgid "" | ||||
| "The invoice lines were not updated to the new Fiscal Position because they don't have products.\n" | ||||
| "You should update the Account and the Taxes of each invoice line manually." | ||||
| msgstr "" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:52 | ||||
| #, python-format | ||||
| msgid "Warning" | ||||
| msgstr "" | ||||
|  | @ -0,0 +1,47 @@ | |||
| # Translation of Odoo Server. | ||||
| # This file contains the translation of the following modules: | ||||
| # * account_invoice_fiscal_position_update | ||||
| #  | ||||
| # 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-04-29 02:39+0000\n" | ||||
| "PO-Revision-Date: 2017-04-29 02:39+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" | ||||
| "MIME-Version: 1.0\n" | ||||
| "Content-Type: text/plain; charset=UTF-8\n" | ||||
| "Content-Transfer-Encoding: \n" | ||||
| "Language: nb\n" | ||||
| "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: model:ir.model,name:account_invoice_fiscal_position_update.model_account_invoice | ||||
| msgid "Invoice" | ||||
| msgstr "Faktura" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:60 | ||||
| #, python-format | ||||
| msgid "" | ||||
| "The following invoice lines were not updated to the new Fiscal Position because they don't have a Product:\n" | ||||
| "- %s\n" | ||||
| "You should update the Account and the Taxes of these invoice lines manually." | ||||
| msgstr "" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:54 | ||||
| #, python-format | ||||
| msgid "" | ||||
| "The invoice lines were not updated to the new Fiscal Position because they don't have products.\n" | ||||
| "You should update the Account and the Taxes of each invoice line manually." | ||||
| msgstr "" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:52 | ||||
| #, python-format | ||||
| msgid "Warning" | ||||
| msgstr "" | ||||
|  | @ -0,0 +1,47 @@ | |||
| # Translation of Odoo Server. | ||||
| # This file contains the translation of the following modules: | ||||
| # * account_invoice_fiscal_position_update | ||||
| #  | ||||
| # 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-04-29 02:39+0000\n" | ||||
| "PO-Revision-Date: 2017-04-29 02:39+0000\n" | ||||
| "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" | ||||
| "Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/oca/teams/23907/nb_NO/)\n" | ||||
| "MIME-Version: 1.0\n" | ||||
| "Content-Type: text/plain; charset=UTF-8\n" | ||||
| "Content-Transfer-Encoding: \n" | ||||
| "Language: nb_NO\n" | ||||
| "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: model:ir.model,name:account_invoice_fiscal_position_update.model_account_invoice | ||||
| msgid "Invoice" | ||||
| msgstr "Innmelding" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:60 | ||||
| #, python-format | ||||
| msgid "" | ||||
| "The following invoice lines were not updated to the new Fiscal Position because they don't have a Product:\n" | ||||
| "- %s\n" | ||||
| "You should update the Account and the Taxes of these invoice lines manually." | ||||
| msgstr "" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:54 | ||||
| #, python-format | ||||
| msgid "" | ||||
| "The invoice lines were not updated to the new Fiscal Position because they don't have products.\n" | ||||
| "You should update the Account and the Taxes of each invoice line manually." | ||||
| msgstr "" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:52 | ||||
| #, python-format | ||||
| msgid "Warning" | ||||
| msgstr "" | ||||
|  | @ -0,0 +1,47 @@ | |||
| # Translation of Odoo Server. | ||||
| # This file contains the translation of the following modules: | ||||
| # * account_invoice_fiscal_position_update | ||||
| #  | ||||
| # 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-04-29 02:39+0000\n" | ||||
| "PO-Revision-Date: 2017-04-29 02:39+0000\n" | ||||
| "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" | ||||
| "Language-Team: Dutch (https://www.transifex.com/oca/teams/23907/nl/)\n" | ||||
| "MIME-Version: 1.0\n" | ||||
| "Content-Type: text/plain; charset=UTF-8\n" | ||||
| "Content-Transfer-Encoding: \n" | ||||
| "Language: nl\n" | ||||
| "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: model:ir.model,name:account_invoice_fiscal_position_update.model_account_invoice | ||||
| msgid "Invoice" | ||||
| msgstr "Factuur" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:60 | ||||
| #, python-format | ||||
| msgid "" | ||||
| "The following invoice lines were not updated to the new Fiscal Position because they don't have a Product:\n" | ||||
| "- %s\n" | ||||
| "You should update the Account and the Taxes of these invoice lines manually." | ||||
| msgstr "" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:54 | ||||
| #, python-format | ||||
| msgid "" | ||||
| "The invoice lines were not updated to the new Fiscal Position because they don't have products.\n" | ||||
| "You should update the Account and the Taxes of each invoice line manually." | ||||
| msgstr "" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:52 | ||||
| #, python-format | ||||
| msgid "Warning" | ||||
| msgstr "" | ||||
|  | @ -0,0 +1,47 @@ | |||
| # Translation of Odoo Server. | ||||
| # This file contains the translation of the following modules: | ||||
| # * account_invoice_fiscal_position_update | ||||
| #  | ||||
| # 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-04-29 02:39+0000\n" | ||||
| "PO-Revision-Date: 2017-04-29 02:39+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" | ||||
| "MIME-Version: 1.0\n" | ||||
| "Content-Type: text/plain; charset=UTF-8\n" | ||||
| "Content-Transfer-Encoding: \n" | ||||
| "Language: nl_BE\n" | ||||
| "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: model:ir.model,name:account_invoice_fiscal_position_update.model_account_invoice | ||||
| msgid "Invoice" | ||||
| msgstr "Factuur" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:60 | ||||
| #, python-format | ||||
| msgid "" | ||||
| "The following invoice lines were not updated to the new Fiscal Position because they don't have a Product:\n" | ||||
| "- %s\n" | ||||
| "You should update the Account and the Taxes of these invoice lines manually." | ||||
| msgstr "" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:54 | ||||
| #, python-format | ||||
| msgid "" | ||||
| "The invoice lines were not updated to the new Fiscal Position because they don't have products.\n" | ||||
| "You should update the Account and the Taxes of each invoice line manually." | ||||
| msgstr "" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:52 | ||||
| #, python-format | ||||
| msgid "Warning" | ||||
| msgstr "" | ||||
|  | @ -0,0 +1,47 @@ | |||
| # Translation of Odoo Server. | ||||
| # This file contains the translation of the following modules: | ||||
| # * account_invoice_fiscal_position_update | ||||
| #  | ||||
| # Translators: | ||||
| # Peter Hageman <hageman.p@gmail.com>, 2017 | ||||
| msgid "" | ||||
| msgstr "" | ||||
| "Project-Id-Version: Odoo Server 10.0\n" | ||||
| "Report-Msgid-Bugs-To: \n" | ||||
| "POT-Creation-Date: 2017-11-23 13:51+0000\n" | ||||
| "PO-Revision-Date: 2017-11-23 13:51+0000\n" | ||||
| "Last-Translator: Peter Hageman <hageman.p@gmail.com>, 2017\n" | ||||
| "Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/teams/23907/nl_NL/)\n" | ||||
| "MIME-Version: 1.0\n" | ||||
| "Content-Type: text/plain; charset=UTF-8\n" | ||||
| "Content-Transfer-Encoding: \n" | ||||
| "Language: nl_NL\n" | ||||
| "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: model:ir.model,name:account_invoice_fiscal_position_update.model_account_invoice | ||||
| msgid "Invoice" | ||||
| msgstr "Factuur" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:68 | ||||
| #, python-format | ||||
| msgid "" | ||||
| "The following invoice lines were not updated to the new Fiscal Position because they don't have a Product:\n" | ||||
| "- %s\n" | ||||
| "You should update the Account and the Taxes of these invoice lines manually." | ||||
| msgstr "" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:62 | ||||
| #, python-format | ||||
| msgid "" | ||||
| "The invoice lines were not updated to the new Fiscal Position because they don't have products.\n" | ||||
| "You should update the Account and the Taxes of each invoice line manually." | ||||
| msgstr "" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:60 | ||||
| #, python-format | ||||
| msgid "Warning" | ||||
| msgstr "Waarschuwing" | ||||
|  | @ -0,0 +1,47 @@ | |||
| # Translation of Odoo Server. | ||||
| # This file contains the translation of the following modules: | ||||
| # * account_invoice_fiscal_position_update | ||||
| #  | ||||
| # 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-04-29 02:39+0000\n" | ||||
| "PO-Revision-Date: 2017-04-29 02:39+0000\n" | ||||
| "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" | ||||
| "Language-Team: Polish (https://www.transifex.com/oca/teams/23907/pl/)\n" | ||||
| "MIME-Version: 1.0\n" | ||||
| "Content-Type: text/plain; charset=UTF-8\n" | ||||
| "Content-Transfer-Encoding: \n" | ||||
| "Language: pl\n" | ||||
| "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>=14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: model:ir.model,name:account_invoice_fiscal_position_update.model_account_invoice | ||||
| msgid "Invoice" | ||||
| msgstr "Faktura" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:60 | ||||
| #, python-format | ||||
| msgid "" | ||||
| "The following invoice lines were not updated to the new Fiscal Position because they don't have a Product:\n" | ||||
| "- %s\n" | ||||
| "You should update the Account and the Taxes of these invoice lines manually." | ||||
| msgstr "" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:54 | ||||
| #, python-format | ||||
| msgid "" | ||||
| "The invoice lines were not updated to the new Fiscal Position because they don't have products.\n" | ||||
| "You should update the Account and the Taxes of each invoice line manually." | ||||
| msgstr "" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:52 | ||||
| #, python-format | ||||
| msgid "Warning" | ||||
| msgstr "" | ||||
|  | @ -0,0 +1,47 @@ | |||
| # Translation of Odoo Server. | ||||
| # This file contains the translation of the following modules: | ||||
| # * account_invoice_fiscal_position_update | ||||
| #  | ||||
| # 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-04-29 02:39+0000\n" | ||||
| "PO-Revision-Date: 2017-04-29 02:39+0000\n" | ||||
| "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" | ||||
| "Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/pt/)\n" | ||||
| "MIME-Version: 1.0\n" | ||||
| "Content-Type: text/plain; charset=UTF-8\n" | ||||
| "Content-Transfer-Encoding: \n" | ||||
| "Language: pt\n" | ||||
| "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: model:ir.model,name:account_invoice_fiscal_position_update.model_account_invoice | ||||
| msgid "Invoice" | ||||
| msgstr "Fatura" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:60 | ||||
| #, python-format | ||||
| msgid "" | ||||
| "The following invoice lines were not updated to the new Fiscal Position because they don't have a Product:\n" | ||||
| "- %s\n" | ||||
| "You should update the Account and the Taxes of these invoice lines manually." | ||||
| msgstr "" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:54 | ||||
| #, python-format | ||||
| msgid "" | ||||
| "The invoice lines were not updated to the new Fiscal Position because they don't have products.\n" | ||||
| "You should update the Account and the Taxes of each invoice line manually." | ||||
| msgstr "" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:52 | ||||
| #, python-format | ||||
| msgid "Warning" | ||||
| msgstr "" | ||||
|  | @ -0,0 +1,47 @@ | |||
| # Translation of Odoo Server. | ||||
| # This file contains the translation of the following modules: | ||||
| # * account_invoice_fiscal_position_update | ||||
| #  | ||||
| # 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-23 13:51+0000\n" | ||||
| "PO-Revision-Date: 2017-11-23 13:51+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" | ||||
| "MIME-Version: 1.0\n" | ||||
| "Content-Type: text/plain; charset=UTF-8\n" | ||||
| "Content-Transfer-Encoding: \n" | ||||
| "Language: pt_BR\n" | ||||
| "Plural-Forms: nplurals=2; plural=(n > 1);\n" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: model:ir.model,name:account_invoice_fiscal_position_update.model_account_invoice | ||||
| msgid "Invoice" | ||||
| msgstr "Fatura" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:68 | ||||
| #, python-format | ||||
| msgid "" | ||||
| "The following invoice lines were not updated to the new Fiscal Position because they don't have a Product:\n" | ||||
| "- %s\n" | ||||
| "You should update the Account and the Taxes of these invoice lines manually." | ||||
| msgstr "" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:62 | ||||
| #, python-format | ||||
| msgid "" | ||||
| "The invoice lines were not updated to the new Fiscal Position because they don't have products.\n" | ||||
| "You should update the Account and the Taxes of each invoice line manually." | ||||
| msgstr "" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:60 | ||||
| #, python-format | ||||
| msgid "Warning" | ||||
| msgstr "Aviso" | ||||
|  | @ -0,0 +1,47 @@ | |||
| # Translation of Odoo Server. | ||||
| # This file contains the translation of the following modules: | ||||
| # * account_invoice_fiscal_position_update | ||||
| #  | ||||
| # 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-04-29 02:39+0000\n" | ||||
| "PO-Revision-Date: 2017-04-29 02:39+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" | ||||
| "MIME-Version: 1.0\n" | ||||
| "Content-Type: text/plain; charset=UTF-8\n" | ||||
| "Content-Transfer-Encoding: \n" | ||||
| "Language: pt_PT\n" | ||||
| "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: model:ir.model,name:account_invoice_fiscal_position_update.model_account_invoice | ||||
| msgid "Invoice" | ||||
| msgstr "Fatura" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:60 | ||||
| #, python-format | ||||
| msgid "" | ||||
| "The following invoice lines were not updated to the new Fiscal Position because they don't have a Product:\n" | ||||
| "- %s\n" | ||||
| "You should update the Account and the Taxes of these invoice lines manually." | ||||
| msgstr "" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:54 | ||||
| #, python-format | ||||
| msgid "" | ||||
| "The invoice lines were not updated to the new Fiscal Position because they don't have products.\n" | ||||
| "You should update the Account and the Taxes of each invoice line manually." | ||||
| msgstr "" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:52 | ||||
| #, python-format | ||||
| msgid "Warning" | ||||
| msgstr "" | ||||
|  | @ -0,0 +1,47 @@ | |||
| # Translation of Odoo Server. | ||||
| # This file contains the translation of the following modules: | ||||
| # * account_invoice_fiscal_position_update | ||||
| #  | ||||
| # 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-04-29 02:39+0000\n" | ||||
| "PO-Revision-Date: 2017-04-29 02:39+0000\n" | ||||
| "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" | ||||
| "Language-Team: Romanian (https://www.transifex.com/oca/teams/23907/ro/)\n" | ||||
| "MIME-Version: 1.0\n" | ||||
| "Content-Type: text/plain; charset=UTF-8\n" | ||||
| "Content-Transfer-Encoding: \n" | ||||
| "Language: ro\n" | ||||
| "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: model:ir.model,name:account_invoice_fiscal_position_update.model_account_invoice | ||||
| msgid "Invoice" | ||||
| msgstr "Factura" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:60 | ||||
| #, python-format | ||||
| msgid "" | ||||
| "The following invoice lines were not updated to the new Fiscal Position because they don't have a Product:\n" | ||||
| "- %s\n" | ||||
| "You should update the Account and the Taxes of these invoice lines manually." | ||||
| msgstr "" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:54 | ||||
| #, python-format | ||||
| msgid "" | ||||
| "The invoice lines were not updated to the new Fiscal Position because they don't have products.\n" | ||||
| "You should update the Account and the Taxes of each invoice line manually." | ||||
| msgstr "" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:52 | ||||
| #, python-format | ||||
| msgid "Warning" | ||||
| msgstr "" | ||||
|  | @ -0,0 +1,47 @@ | |||
| # Translation of Odoo Server. | ||||
| # This file contains the translation of the following modules: | ||||
| # * account_invoice_fiscal_position_update | ||||
| #  | ||||
| # 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-04-29 02:39+0000\n" | ||||
| "PO-Revision-Date: 2017-04-29 02:39+0000\n" | ||||
| "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" | ||||
| "Language-Team: Russian (https://www.transifex.com/oca/teams/23907/ru/)\n" | ||||
| "MIME-Version: 1.0\n" | ||||
| "Content-Type: text/plain; charset=UTF-8\n" | ||||
| "Content-Transfer-Encoding: \n" | ||||
| "Language: ru\n" | ||||
| "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: model:ir.model,name:account_invoice_fiscal_position_update.model_account_invoice | ||||
| msgid "Invoice" | ||||
| msgstr "Счет" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:60 | ||||
| #, python-format | ||||
| msgid "" | ||||
| "The following invoice lines were not updated to the new Fiscal Position because they don't have a Product:\n" | ||||
| "- %s\n" | ||||
| "You should update the Account and the Taxes of these invoice lines manually." | ||||
| msgstr "" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:54 | ||||
| #, python-format | ||||
| msgid "" | ||||
| "The invoice lines were not updated to the new Fiscal Position because they don't have products.\n" | ||||
| "You should update the Account and the Taxes of each invoice line manually." | ||||
| msgstr "" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:52 | ||||
| #, python-format | ||||
| msgid "Warning" | ||||
| msgstr "" | ||||
|  | @ -0,0 +1,47 @@ | |||
| # Translation of Odoo Server. | ||||
| # This file contains the translation of the following modules: | ||||
| # * account_invoice_fiscal_position_update | ||||
| #  | ||||
| # 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-04-29 02:39+0000\n" | ||||
| "PO-Revision-Date: 2017-04-29 02:39+0000\n" | ||||
| "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" | ||||
| "Language-Team: Slovak (Slovakia) (https://www.transifex.com/oca/teams/23907/sk_SK/)\n" | ||||
| "MIME-Version: 1.0\n" | ||||
| "Content-Type: text/plain; charset=UTF-8\n" | ||||
| "Content-Transfer-Encoding: \n" | ||||
| "Language: sk_SK\n" | ||||
| "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: model:ir.model,name:account_invoice_fiscal_position_update.model_account_invoice | ||||
| msgid "Invoice" | ||||
| msgstr "Faktúra" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:60 | ||||
| #, python-format | ||||
| msgid "" | ||||
| "The following invoice lines were not updated to the new Fiscal Position because they don't have a Product:\n" | ||||
| "- %s\n" | ||||
| "You should update the Account and the Taxes of these invoice lines manually." | ||||
| msgstr "" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:54 | ||||
| #, python-format | ||||
| msgid "" | ||||
| "The invoice lines were not updated to the new Fiscal Position because they don't have products.\n" | ||||
| "You should update the Account and the Taxes of each invoice line manually." | ||||
| msgstr "" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:52 | ||||
| #, python-format | ||||
| msgid "Warning" | ||||
| msgstr "" | ||||
|  | @ -0,0 +1,52 @@ | |||
| # Translation of Odoo Server. | ||||
| # This file contains the translation of the following modules: | ||||
| # * account_invoice_fiscal_position_update | ||||
| #  | ||||
| # 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-23 13:51+0000\n" | ||||
| "PO-Revision-Date: 2017-11-23 13:51+0000\n" | ||||
| "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" | ||||
| "Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n" | ||||
| "MIME-Version: 1.0\n" | ||||
| "Content-Type: text/plain; charset=UTF-8\n" | ||||
| "Content-Transfer-Encoding: \n" | ||||
| "Language: sl\n" | ||||
| "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: model:ir.model,name:account_invoice_fiscal_position_update.model_account_invoice | ||||
| msgid "Invoice" | ||||
| msgstr "Račun" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:68 | ||||
| #, python-format | ||||
| msgid "" | ||||
| "The following invoice lines were not updated to the new Fiscal Position because they don't have a Product:\n" | ||||
| "- %s\n" | ||||
| "You should update the Account and the Taxes of these invoice lines manually." | ||||
| msgstr "" | ||||
| "Naslednje računske postavke niso bile posodobljene na nov fiskalni položaj, ker ne vsebujejo proizvoda:\n" | ||||
| "- %s\n" | ||||
| "Konto in davke vsake računske postavke morate posodobiti ročno." | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:62 | ||||
| #, python-format | ||||
| msgid "" | ||||
| "The invoice lines were not updated to the new Fiscal Position because they don't have products.\n" | ||||
| "You should update the Account and the Taxes of each invoice line manually." | ||||
| msgstr "" | ||||
| "Računske postavke niso bile posodobljene na nov fiskalni položaj, ker nimajo proizvoda:\n" | ||||
| "Konto in davke vsake računske postavke morate posodobiti ročno." | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:60 | ||||
| #, python-format | ||||
| msgid "Warning" | ||||
| msgstr "Opozorilo" | ||||
|  | @ -0,0 +1,47 @@ | |||
| # Translation of Odoo Server. | ||||
| # This file contains the translation of the following modules: | ||||
| # * account_invoice_fiscal_position_update | ||||
| #  | ||||
| # 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-04-29 02:39+0000\n" | ||||
| "PO-Revision-Date: 2017-04-29 02:39+0000\n" | ||||
| "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" | ||||
| "Language-Team: Swedish (https://www.transifex.com/oca/teams/23907/sv/)\n" | ||||
| "MIME-Version: 1.0\n" | ||||
| "Content-Type: text/plain; charset=UTF-8\n" | ||||
| "Content-Transfer-Encoding: \n" | ||||
| "Language: sv\n" | ||||
| "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: model:ir.model,name:account_invoice_fiscal_position_update.model_account_invoice | ||||
| msgid "Invoice" | ||||
| msgstr "Faktura" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:60 | ||||
| #, python-format | ||||
| msgid "" | ||||
| "The following invoice lines were not updated to the new Fiscal Position because they don't have a Product:\n" | ||||
| "- %s\n" | ||||
| "You should update the Account and the Taxes of these invoice lines manually." | ||||
| msgstr "" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:54 | ||||
| #, python-format | ||||
| msgid "" | ||||
| "The invoice lines were not updated to the new Fiscal Position because they don't have products.\n" | ||||
| "You should update the Account and the Taxes of each invoice line manually." | ||||
| msgstr "" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:52 | ||||
| #, python-format | ||||
| msgid "Warning" | ||||
| msgstr "" | ||||
|  | @ -0,0 +1,47 @@ | |||
| # Translation of Odoo Server. | ||||
| # This file contains the translation of the following modules: | ||||
| # * account_invoice_fiscal_position_update | ||||
| #  | ||||
| # 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-04-29 02:39+0000\n" | ||||
| "PO-Revision-Date: 2017-04-29 02:39+0000\n" | ||||
| "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" | ||||
| "Language-Team: Thai (https://www.transifex.com/oca/teams/23907/th/)\n" | ||||
| "MIME-Version: 1.0\n" | ||||
| "Content-Type: text/plain; charset=UTF-8\n" | ||||
| "Content-Transfer-Encoding: \n" | ||||
| "Language: th\n" | ||||
| "Plural-Forms: nplurals=1; plural=0;\n" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: model:ir.model,name:account_invoice_fiscal_position_update.model_account_invoice | ||||
| msgid "Invoice" | ||||
| msgstr "ใบแจ้งหนี้" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:60 | ||||
| #, python-format | ||||
| msgid "" | ||||
| "The following invoice lines were not updated to the new Fiscal Position because they don't have a Product:\n" | ||||
| "- %s\n" | ||||
| "You should update the Account and the Taxes of these invoice lines manually." | ||||
| msgstr "" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:54 | ||||
| #, python-format | ||||
| msgid "" | ||||
| "The invoice lines were not updated to the new Fiscal Position because they don't have products.\n" | ||||
| "You should update the Account and the Taxes of each invoice line manually." | ||||
| msgstr "" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:52 | ||||
| #, python-format | ||||
| msgid "Warning" | ||||
| msgstr "" | ||||
|  | @ -0,0 +1,47 @@ | |||
| # Translation of Odoo Server. | ||||
| # This file contains the translation of the following modules: | ||||
| # * account_invoice_fiscal_position_update | ||||
| #  | ||||
| # 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-04-29 02:39+0000\n" | ||||
| "PO-Revision-Date: 2017-04-29 02:39+0000\n" | ||||
| "Last-Translator: Ediz Duman <neps1192@gmail.com>, 2017\n" | ||||
| "Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\n" | ||||
| "MIME-Version: 1.0\n" | ||||
| "Content-Type: text/plain; charset=UTF-8\n" | ||||
| "Content-Transfer-Encoding: \n" | ||||
| "Language: tr\n" | ||||
| "Plural-Forms: nplurals=2; plural=(n > 1);\n" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: model:ir.model,name:account_invoice_fiscal_position_update.model_account_invoice | ||||
| msgid "Invoice" | ||||
| msgstr "Fatura" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:60 | ||||
| #, python-format | ||||
| msgid "" | ||||
| "The following invoice lines were not updated to the new Fiscal Position because they don't have a Product:\n" | ||||
| "- %s\n" | ||||
| "You should update the Account and the Taxes of these invoice lines manually." | ||||
| msgstr "" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:54 | ||||
| #, python-format | ||||
| msgid "" | ||||
| "The invoice lines were not updated to the new Fiscal Position because they don't have products.\n" | ||||
| "You should update the Account and the Taxes of each invoice line manually." | ||||
| msgstr "" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:52 | ||||
| #, python-format | ||||
| msgid "Warning" | ||||
| msgstr "" | ||||
|  | @ -0,0 +1,47 @@ | |||
| # Translation of Odoo Server. | ||||
| # This file contains the translation of the following modules: | ||||
| # * account_invoice_fiscal_position_update | ||||
| #  | ||||
| # 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-04-29 02:39+0000\n" | ||||
| "PO-Revision-Date: 2017-04-29 02:39+0000\n" | ||||
| "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" | ||||
| "Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/tr_TR/)\n" | ||||
| "MIME-Version: 1.0\n" | ||||
| "Content-Type: text/plain; charset=UTF-8\n" | ||||
| "Content-Transfer-Encoding: \n" | ||||
| "Language: tr_TR\n" | ||||
| "Plural-Forms: nplurals=1; plural=0;\n" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: model:ir.model,name:account_invoice_fiscal_position_update.model_account_invoice | ||||
| msgid "Invoice" | ||||
| msgstr "Fatura" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:60 | ||||
| #, python-format | ||||
| msgid "" | ||||
| "The following invoice lines were not updated to the new Fiscal Position because they don't have a Product:\n" | ||||
| "- %s\n" | ||||
| "You should update the Account and the Taxes of these invoice lines manually." | ||||
| msgstr "" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:54 | ||||
| #, python-format | ||||
| msgid "" | ||||
| "The invoice lines were not updated to the new Fiscal Position because they don't have products.\n" | ||||
| "You should update the Account and the Taxes of each invoice line manually." | ||||
| msgstr "" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:52 | ||||
| #, python-format | ||||
| msgid "Warning" | ||||
| msgstr "" | ||||
|  | @ -0,0 +1,47 @@ | |||
| # Translation of Odoo Server. | ||||
| # This file contains the translation of the following modules: | ||||
| # * account_invoice_fiscal_position_update | ||||
| #  | ||||
| # 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-04-29 02:39+0000\n" | ||||
| "PO-Revision-Date: 2017-04-29 02:39+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" | ||||
| "MIME-Version: 1.0\n" | ||||
| "Content-Type: text/plain; charset=UTF-8\n" | ||||
| "Content-Transfer-Encoding: \n" | ||||
| "Language: zh_CN\n" | ||||
| "Plural-Forms: nplurals=1; plural=0;\n" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: model:ir.model,name:account_invoice_fiscal_position_update.model_account_invoice | ||||
| msgid "Invoice" | ||||
| msgstr "发票" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:60 | ||||
| #, python-format | ||||
| msgid "" | ||||
| "The following invoice lines were not updated to the new Fiscal Position because they don't have a Product:\n" | ||||
| "- %s\n" | ||||
| "You should update the Account and the Taxes of these invoice lines manually." | ||||
| msgstr "" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:54 | ||||
| #, python-format | ||||
| msgid "" | ||||
| "The invoice lines were not updated to the new Fiscal Position because they don't have products.\n" | ||||
| "You should update the Account and the Taxes of each invoice line manually." | ||||
| msgstr "" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:52 | ||||
| #, python-format | ||||
| msgid "Warning" | ||||
| msgstr "" | ||||
|  | @ -0,0 +1,47 @@ | |||
| # Translation of Odoo Server. | ||||
| # This file contains the translation of the following modules: | ||||
| # * account_invoice_fiscal_position_update | ||||
| #  | ||||
| # 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-04-29 02:39+0000\n" | ||||
| "PO-Revision-Date: 2017-04-29 02:39+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" | ||||
| "MIME-Version: 1.0\n" | ||||
| "Content-Type: text/plain; charset=UTF-8\n" | ||||
| "Content-Transfer-Encoding: \n" | ||||
| "Language: zh_TW\n" | ||||
| "Plural-Forms: nplurals=1; plural=0;\n" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: model:ir.model,name:account_invoice_fiscal_position_update.model_account_invoice | ||||
| msgid "Invoice" | ||||
| msgstr "發票" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:60 | ||||
| #, python-format | ||||
| msgid "" | ||||
| "The following invoice lines were not updated to the new Fiscal Position because they don't have a Product:\n" | ||||
| "- %s\n" | ||||
| "You should update the Account and the Taxes of these invoice lines manually." | ||||
| msgstr "" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:54 | ||||
| #, python-format | ||||
| msgid "" | ||||
| "The invoice lines were not updated to the new Fiscal Position because they don't have products.\n" | ||||
| "You should update the Account and the Taxes of each invoice line manually." | ||||
| msgstr "" | ||||
| 
 | ||||
| #. module: account_invoice_fiscal_position_update | ||||
| #: code:addons/account_invoice_fiscal_position_update/models/account_invoice.py:52 | ||||
| #, python-format | ||||
| msgid "Warning" | ||||
| msgstr "" | ||||
|  | @ -0,0 +1,3 @@ | |||
| # -*- coding: utf-8 -*- | ||||
| 
 | ||||
| from . import account_invoice | ||||
|  | @ -0,0 +1,74 @@ | |||
| # -*- coding: utf-8 -*- | ||||
| # © 2011-2014 Julius Network Solutions SARL <contact@julius.fr> | ||||
| # © 2014 Akretion (http://www.akretion.com) | ||||
| # @author Mathieu Vatel <mathieu _at_ julius.fr> | ||||
| # @author Alexis de Lattre <alexis.delattre@akretion.com> | ||||
| # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). | ||||
| 
 | ||||
| 
 | ||||
| from odoo import models, api, _ | ||||
| 
 | ||||
| 
 | ||||
| class AccountInvoice(models.Model): | ||||
|     _inherit = "account.invoice" | ||||
| 
 | ||||
|     @api.onchange('partner_id') | ||||
|     def _onchange_partner_id(self): | ||||
|         fiscal_position = self.fiscal_position_id | ||||
|         res = super(AccountInvoice, self)._onchange_partner_id() | ||||
|         if fiscal_position != self.fiscal_position_id: | ||||
|             self.fiscal_position_change() | ||||
|         return res | ||||
| 
 | ||||
|     @api.onchange('fiscal_position_id') | ||||
|     def fiscal_position_change(self): | ||||
|         """Updates taxes and accounts on all invoice lines""" | ||||
|         self.ensure_one() | ||||
|         res = {} | ||||
|         lines_without_product = [] | ||||
|         fp = self.fiscal_position_id | ||||
|         inv_type = self.type | ||||
|         for line in self.invoice_line_ids: | ||||
|             if line.product_id: | ||||
|                 product = line.product_id | ||||
|                 if inv_type in ('out_invoice', 'out_refund'): | ||||
|                     account = ( | ||||
|                         product.property_account_income_id or | ||||
|                         product.categ_id.property_account_income_categ_id) | ||||
|                     # M2M fields don't have an option 'company_dependent=True' | ||||
|                     # so we need per-company post-filtering | ||||
|                     taxes = product.taxes_id.filtered( | ||||
|                         lambda tax: tax.company_id == self.company_id) | ||||
|                 else: | ||||
|                     account = ( | ||||
|                         product.property_account_expense_id or | ||||
|                         product.categ_id.property_account_expense_categ_id) | ||||
|                     taxes = product.supplier_taxes_id.filtered( | ||||
|                         lambda tax: tax.company_id == self.company_id) | ||||
|                 taxes = taxes or account.tax_ids.filtered( | ||||
|                     lambda tax: tax.company_id == self.company_id) | ||||
|                 if fp: | ||||
|                     account = fp.map_account(account) | ||||
|                     taxes = fp.map_tax(taxes) | ||||
| 
 | ||||
|                 line.invoice_line_tax_ids = [(6, 0, taxes.ids)] | ||||
|                 line.account_id = account.id | ||||
|             else: | ||||
|                 lines_without_product.append(line.name) | ||||
| 
 | ||||
|         if lines_without_product: | ||||
|             res['warning'] = {'title': _('Warning')} | ||||
|             if len(lines_without_product) == len(self.invoice_line_ids): | ||||
|                 res['warning']['message'] = _( | ||||
|                     "The invoice lines were not updated to the new " | ||||
|                     "Fiscal Position because they don't have products.\n" | ||||
|                     "You should update the Account and the Taxes of each " | ||||
|                     "invoice line manually.") | ||||
|             else: | ||||
|                 res['warning']['message'] = _( | ||||
|                     "The following invoice lines were not updated " | ||||
|                     "to the new Fiscal Position because they don't have a " | ||||
|                     "Product:\n- %s\nYou should update the Account and the " | ||||
|                     "Taxes of these invoice lines manually." | ||||
|                 ) % ('\n- '.join(lines_without_product)) | ||||
|         return res | ||||
|  | @ -0,0 +1,3 @@ | |||
| # -*- coding: utf-8 -*- | ||||
| 
 | ||||
| from . import test_inv_fiscal_pos_update | ||||
|  | @ -0,0 +1,123 @@ | |||
| # -*- coding: utf-8 -*- | ||||
| # © 2014 ToDay Akretion (http://www.akretion.com) | ||||
| # @author Mourad EL HADJ MIMOUNE <mourad.elhadj.mimoune@akretion.com> | ||||
| # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). | ||||
| 
 | ||||
| from odoo.addons.account.tests.account_test_classes import AccountingTestCase | ||||
| import time | ||||
| 
 | ||||
| 
 | ||||
| class TestProductIdChange(AccountingTestCase): | ||||
|     """Test that when an included tax is mapped by a fiscal position, | ||||
|     when position fiscal change taxes and account wil be update on | ||||
|     invoice lines. | ||||
|     """ | ||||
| 
 | ||||
|     def setUp(self): | ||||
|         super(TestProductIdChange, self).setUp() | ||||
|         self.invoice_model = self.env['account.invoice'] | ||||
|         self.fiscal_position_model = self.env['account.fiscal.position'] | ||||
|         self.fiscal_position_tax_model = \ | ||||
|             self.env['account.fiscal.position.tax'] | ||||
|         self.fiscal_position_account_model = \ | ||||
|             self.env['account.fiscal.position.account'] | ||||
|         self.tax_model = self.env['account.tax'] | ||||
|         self.account_model = self.env['account.account'] | ||||
|         self.pricelist_model = self.env['product.pricelist'] | ||||
|         self.res_partner_model = self.env['res.partner'] | ||||
|         self.product_tmpl_model = self.env['product.template'] | ||||
|         self.product_model = self.env['product.product'] | ||||
|         self.invoice_line_model = self.env['account.invoice.line'] | ||||
|         self.account_user_type = self.env.ref( | ||||
|             'account.data_account_type_revenue') | ||||
|         self.account_receivable = self.env['account.account'].search( | ||||
|             [('user_type_id', '=', | ||||
|                 self.env.ref('account.data_account_type_receivable').id)], | ||||
|             limit=1) | ||||
|         self.account_revenue = self.env['account.account'].search( | ||||
|             [('user_type_id', '=', | ||||
|                 self.account_user_type.id)], | ||||
|             limit=1) | ||||
| 
 | ||||
|     def test_fiscal_position_id_change(self): | ||||
|         partner = self.res_partner_model.create(dict(name="George")) | ||||
|         account_export_id = self.account_model.sudo().create({ | ||||
|             'code': "710000", | ||||
|             'name': "customer export account", | ||||
|             'user_type_id': self.account_user_type.id, | ||||
|             'reconcile': True, | ||||
|         }) | ||||
|         tax_sale = self.tax_model.create({ | ||||
|             'name': 'Sale tax', | ||||
|             'type_tax_use': 'sale', | ||||
|             'amount': '20.00', | ||||
|         }) | ||||
| 
 | ||||
|         tax_export_sale = self.tax_model.create({ | ||||
|             'name': "Export tax", | ||||
|             'type_tax_use': 'sale', | ||||
|             'amount': '0.00' | ||||
|         }) | ||||
| 
 | ||||
|         product_tmpl = self.product_tmpl_model.create({ | ||||
|             'name': 'Car', | ||||
|             'lst_price': '15000', | ||||
|             'taxes_id': [(6, 0, [tax_sale.id])], | ||||
|             'property_account_income_id': self.account_revenue.id, | ||||
| 
 | ||||
|         }) | ||||
|         product = self.product_model.create({ | ||||
|             'product_tmpl_id': product_tmpl.id, | ||||
|             'standard_price': '12000', | ||||
|         }) | ||||
|         fp = self.fiscal_position_model.create({ | ||||
|             'name': "fiscal position export", 'sequence': 1, | ||||
|         }) | ||||
| 
 | ||||
|         fp_tax_sale = self.fiscal_position_tax_model.create({ | ||||
|             'position_id': fp.id, | ||||
|             'tax_src_id': tax_sale.id, | ||||
|             'tax_dest_id': tax_export_sale.id, | ||||
|         }) | ||||
| 
 | ||||
|         fp_account = self.fiscal_position_account_model.create({ | ||||
|             'position_id': fp.id, | ||||
|             'account_src_id': self.account_revenue.id, | ||||
|             'account_dest_id': account_export_id.id, | ||||
|         }) | ||||
| 
 | ||||
|         out_invoice = self.invoice_model.create({ | ||||
|             'partner_id': partner.id, | ||||
|             'reference_type': 'none', | ||||
|             'name': 'invoice to client', | ||||
|             'account_id': self.account_receivable.id, | ||||
|             'type': 'out_invoice', | ||||
|             'date_invoice': time.strftime('%Y') + '-04-01', | ||||
|         }) | ||||
|         out_line = self.invoice_line_model.create({ | ||||
|             'product_id': product.id, | ||||
|             'price_unit': 15000, | ||||
|             'quantity': 1, | ||||
|             'invoice_id': out_invoice.id, | ||||
|             'name': 'Car', | ||||
|             'account_id': self.account_revenue.id, | ||||
| 
 | ||||
|         }) | ||||
| 
 | ||||
|         out_line._onchange_product_id() | ||||
|         self.assertEquals( | ||||
|             out_line.invoice_line_tax_ids[0], | ||||
|             tax_sale, | ||||
|             "The sale tax off invoice line must be the same of product") | ||||
|         out_invoice.fiscal_position_id = fp | ||||
|         out_invoice.fiscal_position_change() | ||||
|         self.assertEquals( | ||||
|             out_line.invoice_line_tax_ids[0], | ||||
|             fp_tax_sale.tax_dest_id, | ||||
|             'The sale tax of invoice line must be changed by' | ||||
|             ' fiscal position') | ||||
|         self.assertEquals( | ||||
|             out_line.account_id, | ||||
|             fp_account.account_dest_id, | ||||
|             'The account revenu of invoice line must be changed by' | ||||
|             ' fiscal position') | ||||
		Loading…
	
		Reference in New Issue