From 3b761b7d351c05a2641adcb68d40f6e8ad591237 Mon Sep 17 00:00:00 2001 From: David Vidal Date: Tue, 18 Jul 2017 09:18:27 +0200 Subject: [PATCH 1/4] [ADD] account_invoice_triple_discount: New module --- account_invoice_triple_discount/README.rst | 70 ++++++++++++++++ account_invoice_triple_discount/__init__.py | 3 + .../__manifest__.py | 20 +++++ .../models/__init__.py | 4 + .../models/account_invoice.py | 25 ++++++ .../models/account_invoice_line.py | 38 +++++++++ .../tests/__init__.py | 3 + .../tests/test_invoice_triple_discount.py | 83 +++++++++++++++++++ .../views/account_invoice_view.xml | 43 ++++++++++ 9 files changed, 289 insertions(+) create mode 100644 account_invoice_triple_discount/README.rst create mode 100644 account_invoice_triple_discount/__init__.py create mode 100644 account_invoice_triple_discount/__manifest__.py create mode 100644 account_invoice_triple_discount/models/__init__.py create mode 100644 account_invoice_triple_discount/models/account_invoice.py create mode 100644 account_invoice_triple_discount/models/account_invoice_line.py create mode 100644 account_invoice_triple_discount/tests/__init__.py create mode 100644 account_invoice_triple_discount/tests/test_invoice_triple_discount.py create mode 100755 account_invoice_triple_discount/views/account_invoice_view.xml diff --git a/account_invoice_triple_discount/README.rst b/account_invoice_triple_discount/README.rst new file mode 100644 index 00000000000..f68e2b9612b --- /dev/null +++ b/account_invoice_triple_discount/README.rst @@ -0,0 +1,70 @@ +.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 + +=============================== +Account Invoice Triple Discount +=============================== + +This module allows to have three successive discounts on every invoice line. + +Usage +===== + +Create a new invoice and add discounts in any of the three discount fields +given. They go in order of precedence so discount 2 will be calculated over +discount 1 and discount 3 over the result of discount 2. For example, let's +divide by two on every discount: + +Unit price: 600.00 -> + + - Disc. 1 = 50% -> Amount = 300.00 + - Disc. 2 = 50% -> Amount = 150.00 + - Disc. 3 = 50% -> Amount = 75.00 + +You can also use negative values to charge instead of discount: + +Unit price: 600.00 -> + + - Disc. 1 = 50% -> Amount = 300.00 + - Disc. 2 = -5% -> Amount = 315.00 + +.. 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 +`_. In case of trouble, please +check there if your issue has already been reported. If you spotted it first, +help us smash it by providing detailed and welcomed feedback. + +Credits +======= + +Images +------ + +* Odoo Community Association: `Icon `_. + +Contributors +------------ + +* David Vidal + +Maintainer +---------- + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +This module is maintained by the OCA. + +OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use. + +To contribute to this module, please visit https://odoo-community.org. diff --git a/account_invoice_triple_discount/__init__.py b/account_invoice_triple_discount/__init__.py new file mode 100644 index 00000000000..cde864bae21 --- /dev/null +++ b/account_invoice_triple_discount/__init__.py @@ -0,0 +1,3 @@ +# -*- coding: utf-8 -*- + +from . import models diff --git a/account_invoice_triple_discount/__manifest__.py b/account_invoice_triple_discount/__manifest__.py new file mode 100644 index 00000000000..8638b92db31 --- /dev/null +++ b/account_invoice_triple_discount/__manifest__.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +# Copyright 2017 Tecnativa - David Vidal +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). +{ + 'name': 'Account Invoice Triple Discount', + 'version': '10.0.1.0.0', + 'category': 'Accounting & Finance', + 'author': 'Tecnativa, ' + 'Odoo Community Association (OCA)', + 'website': 'https://tecnativa.com', + 'license': 'AGPL-3', + 'summary': 'Manage triple discount on invoice lines', + 'depends': [ + 'account' + ], + 'data': [ + 'views/account_invoice_view.xml', + ], + 'installable': True, +} diff --git a/account_invoice_triple_discount/models/__init__.py b/account_invoice_triple_discount/models/__init__.py new file mode 100644 index 00000000000..ad9a7687892 --- /dev/null +++ b/account_invoice_triple_discount/models/__init__.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- + +from . import account_invoice +from . import account_invoice_line diff --git a/account_invoice_triple_discount/models/account_invoice.py b/account_invoice_triple_discount/models/account_invoice.py new file mode 100644 index 00000000000..c8342a3d426 --- /dev/null +++ b/account_invoice_triple_discount/models/account_invoice.py @@ -0,0 +1,25 @@ +# -*- coding: utf-8 -*- +# Copyright 2017 Tecnativa - David Vidal +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from odoo import models + + +class AccountInvoice(models.Model): + _inherit = "account.invoice" + + def get_taxes_values(self): + prices = {} + discount = {} + for line in self.invoice_line_ids: + prices[line.id] = line.price_unit + discount[line.id] = line.discount + line.price_unit *= (1 - (line.discount or 0.0) / 100.0) + line.price_unit *= (1 - (line.discount2 or 0.0) / 100.0) + line.price_unit *= (1 - (line.discount3 or 0.0) / 100.0) + line['discount'] = 0.0 + tax_grouped = super(AccountInvoice, self).get_taxes_values() + for line in self.invoice_line_ids: + line['price_unit'] = prices[line.id] + line['discount'] = discount[line.id] + return tax_grouped diff --git a/account_invoice_triple_discount/models/account_invoice_line.py b/account_invoice_triple_discount/models/account_invoice_line.py new file mode 100644 index 00000000000..57844afad21 --- /dev/null +++ b/account_invoice_triple_discount/models/account_invoice_line.py @@ -0,0 +1,38 @@ +# -*- coding: utf-8 -*- +# Copyright 2017 Tecnativa - David Vidal +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from odoo import api, fields, models +from odoo.addons import decimal_precision as dp + + +class AccountInvoiceLine(models.Model): + _inherit = "account.invoice.line" + + discount2 = fields.Float( + 'Discount 2 (%)', + digits=dp.get_precision('Discount'), + default=0.0, + ) + discount3 = fields.Float( + 'Discount 3 (%)', + digits=dp.get_precision('Discount'), + default=0.0, + ) + + @api.multi + @api.depends('price_unit', 'discount', 'discount2', 'discount3', + 'invoice_line_tax_ids', 'quantity', 'product_id', + 'invoice_id.partner_id', 'invoice_id.currency_id', + 'invoice_id.company_id', 'invoice_id.date_invoice') + def _compute_price(self): + for line in self: + price = line.price_unit + discount = line.discount + line.price_unit *= (1 - (line.discount or 0.0) / 100.0) + line.price_unit *= (1 - (line.discount2 or 0.0) / 100.0) + line.price_unit *= (1 - (line.discount3 or 0.0) / 100.0) + line['discount'] = 0.0 + super(AccountInvoiceLine, line)._compute_price() + line['price_unit'] = price + line['discount'] = discount diff --git a/account_invoice_triple_discount/tests/__init__.py b/account_invoice_triple_discount/tests/__init__.py new file mode 100644 index 00000000000..4835fbdce15 --- /dev/null +++ b/account_invoice_triple_discount/tests/__init__.py @@ -0,0 +1,3 @@ +# -*- coding: utf-8 -*- + +from . import test_invoice_triple_discount diff --git a/account_invoice_triple_discount/tests/test_invoice_triple_discount.py b/account_invoice_triple_discount/tests/test_invoice_triple_discount.py new file mode 100644 index 00000000000..22988b0a265 --- /dev/null +++ b/account_invoice_triple_discount/tests/test_invoice_triple_discount.py @@ -0,0 +1,83 @@ +# -*- coding: utf-8 -*- +# Copyright 2017 Tecnativa - David Vidal +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from odoo.tests import SavepointCase + + +class TestInvoiceTripleDiscount(SavepointCase): + + @classmethod + def setUpClass(cls): + super(TestInvoiceTripleDiscount, cls).setUpClass() + cls.partner = cls.env['res.partner'].create({'name': 'Test'}) + cls.tax = cls.env['account.tax'].create({ + 'name': 'TAX 15%', + 'amount_type': 'percent', + 'type_tax_use': 'purchase', + 'amount': 15.0, + }) + cls.account_type = cls.env['account.account.type'].create({ + 'name': 'Test', + 'type': 'receivable', + }) + cls.account = cls.env['account.account'].create({ + 'name': 'Test account', + 'code': 'TEST', + 'user_type_id': cls.account_type.id, + 'reconcile': True, + }) + cls.invoice = cls.env['account.invoice'].create({ + 'name': "Test Customer Invoice", + 'journal_id': cls.env['account.journal'].search( + [('type', '=', 'sale')])[0].id, + 'partner_id': cls.partner.id, + 'account_id': cls.account.id, + }) + cls.invoice_line = cls.env['account.invoice.line'] + cls.invoice_line1 = cls.invoice_line.create({ + 'invoice_id': cls.invoice.id, + 'name': 'Line 1', + 'price_unit': 200.0, + 'account_id': cls.account.id, + 'invoice_line_tax_ids': [(6, 0, [cls.tax.id])], + }) + cls.invoice._onchange_invoice_line_ids() + + def test_01_discounts(self): + """ Tests multiple discounts in line with taxes """ + # Adds a first discount + self.invoice_line1.discount = 50.0 + self.invoice._onchange_invoice_line_ids() + self.assertEqual(self.invoice.amount_total, 115.0) + # Adds a second discount over the price calculated before + self.invoice_line1.discount2 = 40.0 + self.invoice._onchange_invoice_line_ids() + self.assertEqual(self.invoice.amount_total, 69.0) + # Adds a third discount over the price calculated before + self.invoice_line1.discount3 = 50.0 + self.invoice._onchange_invoice_line_ids() + self.assertEqual(self.invoice.amount_total, 34.5) + # Deletes first discount + self.invoice_line1.discount = 0.0 + self.invoice._onchange_invoice_line_ids() + self.assertEqual(self.invoice.amount_total, 69.0) + # Charge 5% over price: + self.invoice_line1.discount = -5.0 + self.invoice._onchange_invoice_line_ids() + self.assertEqual(self.invoice.amount_total, 72.45) + + def test_02_discounts_multiple_lines(self): + """ Tests multiple lines with mixed taxes """ + self.invoice_line2 = self.invoice_line.create({ + 'invoice_id': self.invoice.id, + 'name': 'Line 1', + 'price_unit': 500.0, + 'account_id': self.account.id, + }) + self.invoice_line2.discount3 = 50.0 + self.invoice._onchange_invoice_line_ids() + self.assertEqual(self.invoice.amount_total, 480.0) + self.invoice_line1.discount = 50.0 + self.invoice._onchange_invoice_line_ids() + self.assertEqual(self.invoice.amount_total, 365.0) diff --git a/account_invoice_triple_discount/views/account_invoice_view.xml b/account_invoice_triple_discount/views/account_invoice_view.xml new file mode 100755 index 00000000000..399e485e7cc --- /dev/null +++ b/account_invoice_triple_discount/views/account_invoice_view.xml @@ -0,0 +1,43 @@ + + + + + account.invoice.triple.discount.form + account.invoice + + + + + + + + + + + + account.invoice.supplier.triple.discount.form + account.invoice + + + + + + + + + + + account.invoice.line.triple.discount.form + account.invoice.line + + + + + + + + + + From e193e18933b38eecf377c663aebc91cf1e1108e3 Mon Sep 17 00:00:00 2001 From: "Pedro M. Baeza" Date: Sat, 22 Jul 2017 22:32:03 +0200 Subject: [PATCH 2/4] [IMP] account_invoice_triple_discount: Some improvements --- account_invoice_triple_discount/README.rst | 3 +- .../__manifest__.py | 2 +- .../models/__init__.py | 2 +- .../models/account_invoice.py | 61 +++++++++++++++---- .../models/account_invoice_line.py | 38 ------------ .../tests/test_invoice_triple_discount.py | 5 +- 6 files changed, 58 insertions(+), 53 deletions(-) delete mode 100644 account_invoice_triple_discount/models/account_invoice_line.py diff --git a/account_invoice_triple_discount/README.rst b/account_invoice_triple_discount/README.rst index f68e2b9612b..e978517dabc 100644 --- a/account_invoice_triple_discount/README.rst +++ b/account_invoice_triple_discount/README.rst @@ -6,7 +6,7 @@ Account Invoice Triple Discount =============================== -This module allows to have three successive discounts on every invoice line. +This module allows to have three successive discounts on each invoice line. Usage ===== @@ -53,6 +53,7 @@ Contributors ------------ * David Vidal +* Pedro M. Baeza Maintainer ---------- diff --git a/account_invoice_triple_discount/__manifest__.py b/account_invoice_triple_discount/__manifest__.py index 8638b92db31..98ef79f5933 100644 --- a/account_invoice_triple_discount/__manifest__.py +++ b/account_invoice_triple_discount/__manifest__.py @@ -11,7 +11,7 @@ 'license': 'AGPL-3', 'summary': 'Manage triple discount on invoice lines', 'depends': [ - 'account' + 'account', ], 'data': [ 'views/account_invoice_view.xml', diff --git a/account_invoice_triple_discount/models/__init__.py b/account_invoice_triple_discount/models/__init__.py index ad9a7687892..009711ad3d3 100644 --- a/account_invoice_triple_discount/models/__init__.py +++ b/account_invoice_triple_discount/models/__init__.py @@ -1,4 +1,4 @@ # -*- coding: utf-8 -*- +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). from . import account_invoice -from . import account_invoice_line diff --git a/account_invoice_triple_discount/models/account_invoice.py b/account_invoice_triple_discount/models/account_invoice.py index c8342a3d426..2036799a666 100644 --- a/account_invoice_triple_discount/models/account_invoice.py +++ b/account_invoice_triple_discount/models/account_invoice.py @@ -1,25 +1,64 @@ # -*- coding: utf-8 -*- # Copyright 2017 Tecnativa - David Vidal +# Copyright 2017 Tecnativa - Pedro M. Baeza # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). -from odoo import models +from odoo import api, fields, models +from odoo.addons import decimal_precision as dp class AccountInvoice(models.Model): _inherit = "account.invoice" def get_taxes_values(self): - prices = {} - discount = {} + vals = {} for line in self.invoice_line_ids: - prices[line.id] = line.price_unit - discount[line.id] = line.discount - line.price_unit *= (1 - (line.discount or 0.0) / 100.0) - line.price_unit *= (1 - (line.discount2 or 0.0) / 100.0) - line.price_unit *= (1 - (line.discount3 or 0.0) / 100.0) - line['discount'] = 0.0 + vals[line] = { + 'price_unit': line.price_unit, + 'discount': line.discount, + } + price_unit = line.price_unit * (1 - (line.discount or 0.0) / 100.0) + price_unit *= (1 - (line.discount2 or 0.0) / 100.0) + price_unit *= (1 - (line.discount3 or 0.0) / 100.0) + line.update({ + 'price_unit': price_unit, + 'discount': 0.0, + }) tax_grouped = super(AccountInvoice, self).get_taxes_values() for line in self.invoice_line_ids: - line['price_unit'] = prices[line.id] - line['discount'] = discount[line.id] + line.update(vals[line]) return tax_grouped + + +class AccountInvoiceLine(models.Model): + _inherit = "account.invoice.line" + + discount2 = fields.Float( + 'Discount 2 (%)', + digits=dp.get_precision('Discount'), + default=0.0, + ) + discount3 = fields.Float( + 'Discount 3 (%)', + digits=dp.get_precision('Discount'), + default=0.0, + ) + + @api.multi + @api.depends('discount2', 'discount3') + def _compute_price(self): + for line in self: + prev_price_unit = line.price_unit + prev_discount = line.discount + price_unit = line.price_unit * (1 - (line.discount or 0.0) / 100.0) + price_unit *= (1 - (line.discount2 or 0.0) / 100.0) + price_unit *= (1 - (line.discount3 or 0.0) / 100.0) + line.update({ + 'price_unit': price_unit, + 'discount': 0.0, + }) + super(AccountInvoiceLine, line)._compute_price() + line.update({ + 'price_unit': prev_price_unit, + 'discount': prev_discount, + }) diff --git a/account_invoice_triple_discount/models/account_invoice_line.py b/account_invoice_triple_discount/models/account_invoice_line.py deleted file mode 100644 index 57844afad21..00000000000 --- a/account_invoice_triple_discount/models/account_invoice_line.py +++ /dev/null @@ -1,38 +0,0 @@ -# -*- coding: utf-8 -*- -# Copyright 2017 Tecnativa - David Vidal -# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). - -from odoo import api, fields, models -from odoo.addons import decimal_precision as dp - - -class AccountInvoiceLine(models.Model): - _inherit = "account.invoice.line" - - discount2 = fields.Float( - 'Discount 2 (%)', - digits=dp.get_precision('Discount'), - default=0.0, - ) - discount3 = fields.Float( - 'Discount 3 (%)', - digits=dp.get_precision('Discount'), - default=0.0, - ) - - @api.multi - @api.depends('price_unit', 'discount', 'discount2', 'discount3', - 'invoice_line_tax_ids', 'quantity', 'product_id', - 'invoice_id.partner_id', 'invoice_id.currency_id', - 'invoice_id.company_id', 'invoice_id.date_invoice') - def _compute_price(self): - for line in self: - price = line.price_unit - discount = line.discount - line.price_unit *= (1 - (line.discount or 0.0) / 100.0) - line.price_unit *= (1 - (line.discount2 or 0.0) / 100.0) - line.price_unit *= (1 - (line.discount3 or 0.0) / 100.0) - line['discount'] = 0.0 - super(AccountInvoiceLine, line)._compute_price() - line['price_unit'] = price - line['discount'] = discount diff --git a/account_invoice_triple_discount/tests/test_invoice_triple_discount.py b/account_invoice_triple_discount/tests/test_invoice_triple_discount.py index 22988b0a265..791beb50646 100644 --- a/account_invoice_triple_discount/tests/test_invoice_triple_discount.py +++ b/account_invoice_triple_discount/tests/test_invoice_triple_discount.py @@ -41,8 +41,8 @@ def setUpClass(cls): 'price_unit': 200.0, 'account_id': cls.account.id, 'invoice_line_tax_ids': [(6, 0, [cls.tax.id])], + 'quantity': 1, }) - cls.invoice._onchange_invoice_line_ids() def test_01_discounts(self): """ Tests multiple discounts in line with taxes """ @@ -74,9 +74,12 @@ def test_02_discounts_multiple_lines(self): 'name': 'Line 1', 'price_unit': 500.0, 'account_id': self.account.id, + 'quantity': 1, }) + self.assertEqual(self.invoice_line2.price_subtotal, 500.0) self.invoice_line2.discount3 = 50.0 self.invoice._onchange_invoice_line_ids() + self.assertEqual(self.invoice_line2.price_subtotal, 250.0) self.assertEqual(self.invoice.amount_total, 480.0) self.invoice_line1.discount = 50.0 self.invoice._onchange_invoice_line_ids() From 33694e8fb2945ef8f928853325d02ccd308a7ad5 Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Sat, 12 Aug 2017 01:16:16 +0200 Subject: [PATCH 3/4] OCA Transbot updated translations from Transifex --- account_invoice_triple_discount/i18n/ar.po | 39 ++++++++++++++++++ account_invoice_triple_discount/i18n/bg.po | 39 ++++++++++++++++++ account_invoice_triple_discount/i18n/bs.po | 39 ++++++++++++++++++ account_invoice_triple_discount/i18n/ca.po | 39 ++++++++++++++++++ account_invoice_triple_discount/i18n/cs.po | 39 ++++++++++++++++++ account_invoice_triple_discount/i18n/de.po | 39 ++++++++++++++++++ account_invoice_triple_discount/i18n/el_GR.po | 39 ++++++++++++++++++ account_invoice_triple_discount/i18n/en_GB.po | 39 ++++++++++++++++++ account_invoice_triple_discount/i18n/es.po | 39 ++++++++++++++++++ account_invoice_triple_discount/i18n/es_CR.po | 39 ++++++++++++++++++ account_invoice_triple_discount/i18n/es_EC.po | 39 ++++++++++++++++++ account_invoice_triple_discount/i18n/es_ES.po | 39 ++++++++++++++++++ account_invoice_triple_discount/i18n/es_MX.po | 39 ++++++++++++++++++ account_invoice_triple_discount/i18n/et.po | 39 ++++++++++++++++++ account_invoice_triple_discount/i18n/fi.po | 39 ++++++++++++++++++ account_invoice_triple_discount/i18n/fr.po | 40 +++++++++++++++++++ account_invoice_triple_discount/i18n/fr_CA.po | 39 ++++++++++++++++++ account_invoice_triple_discount/i18n/fr_CH.po | 39 ++++++++++++++++++ account_invoice_triple_discount/i18n/gl.po | 39 ++++++++++++++++++ account_invoice_triple_discount/i18n/hr.po | 40 +++++++++++++++++++ account_invoice_triple_discount/i18n/hr_HR.po | 40 +++++++++++++++++++ account_invoice_triple_discount/i18n/hu.po | 39 ++++++++++++++++++ account_invoice_triple_discount/i18n/id.po | 39 ++++++++++++++++++ account_invoice_triple_discount/i18n/it.po | 39 ++++++++++++++++++ account_invoice_triple_discount/i18n/ja.po | 39 ++++++++++++++++++ account_invoice_triple_discount/i18n/lt.po | 39 ++++++++++++++++++ account_invoice_triple_discount/i18n/mk.po | 39 ++++++++++++++++++ account_invoice_triple_discount/i18n/mn.po | 39 ++++++++++++++++++ account_invoice_triple_discount/i18n/nb.po | 39 ++++++++++++++++++ account_invoice_triple_discount/i18n/nb_NO.po | 39 ++++++++++++++++++ account_invoice_triple_discount/i18n/nl.po | 39 ++++++++++++++++++ account_invoice_triple_discount/i18n/nl_BE.po | 39 ++++++++++++++++++ account_invoice_triple_discount/i18n/nl_NL.po | 39 ++++++++++++++++++ account_invoice_triple_discount/i18n/pl.po | 39 ++++++++++++++++++ account_invoice_triple_discount/i18n/pt.po | 39 ++++++++++++++++++ account_invoice_triple_discount/i18n/pt_BR.po | 39 ++++++++++++++++++ account_invoice_triple_discount/i18n/pt_PT.po | 39 ++++++++++++++++++ account_invoice_triple_discount/i18n/ro.po | 39 ++++++++++++++++++ account_invoice_triple_discount/i18n/ru.po | 40 +++++++++++++++++++ account_invoice_triple_discount/i18n/sk_SK.po | 39 ++++++++++++++++++ account_invoice_triple_discount/i18n/sl.po | 39 ++++++++++++++++++ account_invoice_triple_discount/i18n/sv.po | 39 ++++++++++++++++++ account_invoice_triple_discount/i18n/th.po | 39 ++++++++++++++++++ account_invoice_triple_discount/i18n/tr.po | 39 ++++++++++++++++++ account_invoice_triple_discount/i18n/tr_TR.po | 39 ++++++++++++++++++ account_invoice_triple_discount/i18n/zh_CN.po | 40 +++++++++++++++++++ account_invoice_triple_discount/i18n/zh_TW.po | 39 ++++++++++++++++++ 47 files changed, 1838 insertions(+) create mode 100644 account_invoice_triple_discount/i18n/ar.po create mode 100644 account_invoice_triple_discount/i18n/bg.po create mode 100644 account_invoice_triple_discount/i18n/bs.po create mode 100644 account_invoice_triple_discount/i18n/ca.po create mode 100644 account_invoice_triple_discount/i18n/cs.po create mode 100644 account_invoice_triple_discount/i18n/de.po create mode 100644 account_invoice_triple_discount/i18n/el_GR.po create mode 100644 account_invoice_triple_discount/i18n/en_GB.po create mode 100644 account_invoice_triple_discount/i18n/es.po create mode 100644 account_invoice_triple_discount/i18n/es_CR.po create mode 100644 account_invoice_triple_discount/i18n/es_EC.po create mode 100644 account_invoice_triple_discount/i18n/es_ES.po create mode 100644 account_invoice_triple_discount/i18n/es_MX.po create mode 100644 account_invoice_triple_discount/i18n/et.po create mode 100644 account_invoice_triple_discount/i18n/fi.po create mode 100644 account_invoice_triple_discount/i18n/fr.po create mode 100644 account_invoice_triple_discount/i18n/fr_CA.po create mode 100644 account_invoice_triple_discount/i18n/fr_CH.po create mode 100644 account_invoice_triple_discount/i18n/gl.po create mode 100644 account_invoice_triple_discount/i18n/hr.po create mode 100644 account_invoice_triple_discount/i18n/hr_HR.po create mode 100644 account_invoice_triple_discount/i18n/hu.po create mode 100644 account_invoice_triple_discount/i18n/id.po create mode 100644 account_invoice_triple_discount/i18n/it.po create mode 100644 account_invoice_triple_discount/i18n/ja.po create mode 100644 account_invoice_triple_discount/i18n/lt.po create mode 100644 account_invoice_triple_discount/i18n/mk.po create mode 100644 account_invoice_triple_discount/i18n/mn.po create mode 100644 account_invoice_triple_discount/i18n/nb.po create mode 100644 account_invoice_triple_discount/i18n/nb_NO.po create mode 100644 account_invoice_triple_discount/i18n/nl.po create mode 100644 account_invoice_triple_discount/i18n/nl_BE.po create mode 100644 account_invoice_triple_discount/i18n/nl_NL.po create mode 100644 account_invoice_triple_discount/i18n/pl.po create mode 100644 account_invoice_triple_discount/i18n/pt.po create mode 100644 account_invoice_triple_discount/i18n/pt_BR.po create mode 100644 account_invoice_triple_discount/i18n/pt_PT.po create mode 100644 account_invoice_triple_discount/i18n/ro.po create mode 100644 account_invoice_triple_discount/i18n/ru.po create mode 100644 account_invoice_triple_discount/i18n/sk_SK.po create mode 100644 account_invoice_triple_discount/i18n/sl.po create mode 100644 account_invoice_triple_discount/i18n/sv.po create mode 100644 account_invoice_triple_discount/i18n/th.po create mode 100644 account_invoice_triple_discount/i18n/tr.po create mode 100644 account_invoice_triple_discount/i18n/tr_TR.po create mode 100644 account_invoice_triple_discount/i18n/zh_CN.po create mode 100644 account_invoice_triple_discount/i18n/zh_TW.po diff --git a/account_invoice_triple_discount/i18n/ar.po b/account_invoice_triple_discount/i18n/ar.po new file mode 100644 index 00000000000..0393e51c293 --- /dev/null +++ b/account_invoice_triple_discount/i18n/ar.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+0000\n" +"Last-Translator: OCA Transbot , 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_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line_discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line_discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice +msgid "Invoice" +msgstr "فاتورة" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice_line +msgid "Invoice Line" +msgstr "خط الفاتورة" diff --git a/account_invoice_triple_discount/i18n/bg.po b/account_invoice_triple_discount/i18n/bg.po new file mode 100644 index 00000000000..39b377663de --- /dev/null +++ b/account_invoice_triple_discount/i18n/bg.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+0000\n" +"Last-Translator: OCA Transbot , 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_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line_discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line_discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice +msgid "Invoice" +msgstr "Фактура" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice_line +msgid "Invoice Line" +msgstr "" diff --git a/account_invoice_triple_discount/i18n/bs.po b/account_invoice_triple_discount/i18n/bs.po new file mode 100644 index 00000000000..ec35554abcc --- /dev/null +++ b/account_invoice_triple_discount/i18n/bs.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+0000\n" +"Last-Translator: OCA Transbot , 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_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line_discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line_discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice +msgid "Invoice" +msgstr "Faktura" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice_line +msgid "Invoice Line" +msgstr "Stavka fakture" diff --git a/account_invoice_triple_discount/i18n/ca.po b/account_invoice_triple_discount/i18n/ca.po new file mode 100644 index 00000000000..9331a41289b --- /dev/null +++ b/account_invoice_triple_discount/i18n/ca.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+0000\n" +"Last-Translator: OCA Transbot , 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_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line_discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line_discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice +msgid "Invoice" +msgstr "Factura" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice_line +msgid "Invoice Line" +msgstr "Línia factura" diff --git a/account_invoice_triple_discount/i18n/cs.po b/account_invoice_triple_discount/i18n/cs.po new file mode 100644 index 00000000000..fa468c2388e --- /dev/null +++ b/account_invoice_triple_discount/i18n/cs.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+0000\n" +"Last-Translator: OCA Transbot , 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_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line_discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line_discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice +msgid "Invoice" +msgstr "Faktura" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice_line +msgid "Invoice Line" +msgstr "Řádek faktury" diff --git a/account_invoice_triple_discount/i18n/de.po b/account_invoice_triple_discount/i18n/de.po new file mode 100644 index 00000000000..c42bd166b9c --- /dev/null +++ b/account_invoice_triple_discount/i18n/de.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+0000\n" +"Last-Translator: OCA Transbot , 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_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line_discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line_discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice +msgid "Invoice" +msgstr "Rechnung" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice_line +msgid "Invoice Line" +msgstr "Rechnungsposition" diff --git a/account_invoice_triple_discount/i18n/el_GR.po b/account_invoice_triple_discount/i18n/el_GR.po new file mode 100644 index 00000000000..668c4c3d336 --- /dev/null +++ b/account_invoice_triple_discount/i18n/el_GR.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+0000\n" +"Last-Translator: OCA Transbot , 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_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line_discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line_discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice +msgid "Invoice" +msgstr "Τιμολόγιο" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice_line +msgid "Invoice Line" +msgstr "" diff --git a/account_invoice_triple_discount/i18n/en_GB.po b/account_invoice_triple_discount/i18n/en_GB.po new file mode 100644 index 00000000000..10e1edfe0ab --- /dev/null +++ b/account_invoice_triple_discount/i18n/en_GB.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+0000\n" +"Last-Translator: OCA Transbot , 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_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line_discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line_discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice +msgid "Invoice" +msgstr "Invoice" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice_line +msgid "Invoice Line" +msgstr "Invoice Line" diff --git a/account_invoice_triple_discount/i18n/es.po b/account_invoice_triple_discount/i18n/es.po new file mode 100644 index 00000000000..62d6bd64d61 --- /dev/null +++ b/account_invoice_triple_discount/i18n/es.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+0000\n" +"Last-Translator: OCA Transbot , 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_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line_discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line_discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice +msgid "Invoice" +msgstr "Factura" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice_line +msgid "Invoice Line" +msgstr "Línea de factura" diff --git a/account_invoice_triple_discount/i18n/es_CR.po b/account_invoice_triple_discount/i18n/es_CR.po new file mode 100644 index 00000000000..734b03069f8 --- /dev/null +++ b/account_invoice_triple_discount/i18n/es_CR.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+0000\n" +"Last-Translator: OCA Transbot , 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_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line_discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line_discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice +msgid "Invoice" +msgstr "Factura" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice_line +msgid "Invoice Line" +msgstr "Línea de factura" diff --git a/account_invoice_triple_discount/i18n/es_EC.po b/account_invoice_triple_discount/i18n/es_EC.po new file mode 100644 index 00000000000..94bb7796c25 --- /dev/null +++ b/account_invoice_triple_discount/i18n/es_EC.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+0000\n" +"Last-Translator: OCA Transbot , 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_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line_discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line_discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice +msgid "Invoice" +msgstr "Factura" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice_line +msgid "Invoice Line" +msgstr "Detalle de Factura" diff --git a/account_invoice_triple_discount/i18n/es_ES.po b/account_invoice_triple_discount/i18n/es_ES.po new file mode 100644 index 00000000000..92bafb720e7 --- /dev/null +++ b/account_invoice_triple_discount/i18n/es_ES.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# Fernando Lara , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+0000\n" +"Last-Translator: Fernando Lara , 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_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line_discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line_discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice +msgid "Invoice" +msgstr "Factura" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice_line +msgid "Invoice Line" +msgstr "" diff --git a/account_invoice_triple_discount/i18n/es_MX.po b/account_invoice_triple_discount/i18n/es_MX.po new file mode 100644 index 00000000000..574403b1c0c --- /dev/null +++ b/account_invoice_triple_discount/i18n/es_MX.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+0000\n" +"Last-Translator: OCA Transbot , 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_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line_discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line_discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice +msgid "Invoice" +msgstr "Factura" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice_line +msgid "Invoice Line" +msgstr "Línea de factura" diff --git a/account_invoice_triple_discount/i18n/et.po b/account_invoice_triple_discount/i18n/et.po new file mode 100644 index 00000000000..10d28b04b79 --- /dev/null +++ b/account_invoice_triple_discount/i18n/et.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+0000\n" +"Last-Translator: OCA Transbot , 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_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line_discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line_discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice +msgid "Invoice" +msgstr "Arve" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice_line +msgid "Invoice Line" +msgstr "Arve rida" diff --git a/account_invoice_triple_discount/i18n/fi.po b/account_invoice_triple_discount/i18n/fi.po new file mode 100644 index 00000000000..bb7339d04a1 --- /dev/null +++ b/account_invoice_triple_discount/i18n/fi.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+0000\n" +"Last-Translator: OCA Transbot , 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_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line_discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line_discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice +msgid "Invoice" +msgstr "Lasku" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice_line +msgid "Invoice Line" +msgstr "" diff --git a/account_invoice_triple_discount/i18n/fr.po b/account_invoice_triple_discount/i18n/fr.po new file mode 100644 index 00000000000..b39553a892c --- /dev/null +++ b/account_invoice_triple_discount/i18n/fr.po @@ -0,0 +1,40 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +# Quentin THEURET , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+0000\n" +"Last-Translator: Quentin THEURET , 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_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line_discount2 +msgid "Discount 2 (%)" +msgstr "Remise 2 (%)" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line_discount3 +msgid "Discount 3 (%)" +msgstr "Remise 3 (%)" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice +msgid "Invoice" +msgstr "Facture" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice_line +msgid "Invoice Line" +msgstr "Ligne de facture" diff --git a/account_invoice_triple_discount/i18n/fr_CA.po b/account_invoice_triple_discount/i18n/fr_CA.po new file mode 100644 index 00000000000..5c1bf3a345c --- /dev/null +++ b/account_invoice_triple_discount/i18n/fr_CA.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+0000\n" +"Last-Translator: OCA Transbot , 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_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line_discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line_discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice +msgid "Invoice" +msgstr "Facture" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice_line +msgid "Invoice Line" +msgstr "" diff --git a/account_invoice_triple_discount/i18n/fr_CH.po b/account_invoice_triple_discount/i18n/fr_CH.po new file mode 100644 index 00000000000..71adfd75789 --- /dev/null +++ b/account_invoice_triple_discount/i18n/fr_CH.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+0000\n" +"Last-Translator: OCA Transbot , 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_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line_discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line_discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice +msgid "Invoice" +msgstr "Facture" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice_line +msgid "Invoice Line" +msgstr "Ligne de facture" diff --git a/account_invoice_triple_discount/i18n/gl.po b/account_invoice_triple_discount/i18n/gl.po new file mode 100644 index 00000000000..a988c557056 --- /dev/null +++ b/account_invoice_triple_discount/i18n/gl.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+0000\n" +"Last-Translator: OCA Transbot , 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_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line_discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line_discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice +msgid "Invoice" +msgstr "Factura" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice_line +msgid "Invoice Line" +msgstr "" diff --git a/account_invoice_triple_discount/i18n/hr.po b/account_invoice_triple_discount/i18n/hr.po new file mode 100644 index 00000000000..6d4beb9be9c --- /dev/null +++ b/account_invoice_triple_discount/i18n/hr.po @@ -0,0 +1,40 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +# Bole , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-02-03 01:14+0000\n" +"PO-Revision-Date: 2018-02-03 01:14+0000\n" +"Last-Translator: Bole , 2018\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_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line_discount2 +msgid "Discount 2 (%)" +msgstr "Popust 2 (%)" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line_discount3 +msgid "Discount 3 (%)" +msgstr "Popust 3 (%)" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice +msgid "Invoice" +msgstr "Račun" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice_line +msgid "Invoice Line" +msgstr "Stavka računa" diff --git a/account_invoice_triple_discount/i18n/hr_HR.po b/account_invoice_triple_discount/i18n/hr_HR.po new file mode 100644 index 00000000000..eef989eb6df --- /dev/null +++ b/account_invoice_triple_discount/i18n/hr_HR.po @@ -0,0 +1,40 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +# Bole , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-11 23:30+0000\n" +"PO-Revision-Date: 2017-08-11 23:30+0000\n" +"Last-Translator: Bole , 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_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line_discount2 +msgid "Discount 2 (%)" +msgstr "Popust 2 (%)" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line_discount3 +msgid "Discount 3 (%)" +msgstr "Popust 3 (%)" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice +msgid "Invoice" +msgstr "Račun" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice_line +msgid "Invoice Line" +msgstr "Stavka računa" diff --git a/account_invoice_triple_discount/i18n/hu.po b/account_invoice_triple_discount/i18n/hu.po new file mode 100644 index 00000000000..a5dbf4e115e --- /dev/null +++ b/account_invoice_triple_discount/i18n/hu.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+0000\n" +"Last-Translator: OCA Transbot , 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_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line_discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line_discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice +msgid "Invoice" +msgstr "Számla" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice_line +msgid "Invoice Line" +msgstr "Számlasor" diff --git a/account_invoice_triple_discount/i18n/id.po b/account_invoice_triple_discount/i18n/id.po new file mode 100644 index 00000000000..6dd08e5450a --- /dev/null +++ b/account_invoice_triple_discount/i18n/id.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+0000\n" +"Last-Translator: OCA Transbot , 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_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line_discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line_discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice +msgid "Invoice" +msgstr "Faktur" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice_line +msgid "Invoice Line" +msgstr "" diff --git a/account_invoice_triple_discount/i18n/it.po b/account_invoice_triple_discount/i18n/it.po new file mode 100644 index 00000000000..b568f33112e --- /dev/null +++ b/account_invoice_triple_discount/i18n/it.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+0000\n" +"Last-Translator: OCA Transbot , 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_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line_discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line_discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice +msgid "Invoice" +msgstr "Fattura" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice_line +msgid "Invoice Line" +msgstr "Righe Fattura" diff --git a/account_invoice_triple_discount/i18n/ja.po b/account_invoice_triple_discount/i18n/ja.po new file mode 100644 index 00000000000..45f5077e7ce --- /dev/null +++ b/account_invoice_triple_discount/i18n/ja.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+0000\n" +"Last-Translator: OCA Transbot , 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_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line_discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line_discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice +msgid "Invoice" +msgstr "請求書" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice_line +msgid "Invoice Line" +msgstr "請求行" diff --git a/account_invoice_triple_discount/i18n/lt.po b/account_invoice_triple_discount/i18n/lt.po new file mode 100644 index 00000000000..c40e4445686 --- /dev/null +++ b/account_invoice_triple_discount/i18n/lt.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+0000\n" +"Last-Translator: OCA Transbot , 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_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line_discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line_discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice +msgid "Invoice" +msgstr "Sąskaita faktūra" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice_line +msgid "Invoice Line" +msgstr "Sąskaitos faktūros eilutė" diff --git a/account_invoice_triple_discount/i18n/mk.po b/account_invoice_triple_discount/i18n/mk.po new file mode 100644 index 00000000000..283d72db859 --- /dev/null +++ b/account_invoice_triple_discount/i18n/mk.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+0000\n" +"Last-Translator: OCA Transbot , 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_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line_discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line_discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice +msgid "Invoice" +msgstr "Фактура" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice_line +msgid "Invoice Line" +msgstr "Ставка од фактура" diff --git a/account_invoice_triple_discount/i18n/mn.po b/account_invoice_triple_discount/i18n/mn.po new file mode 100644 index 00000000000..f6c1cb9c228 --- /dev/null +++ b/account_invoice_triple_discount/i18n/mn.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+0000\n" +"Last-Translator: OCA Transbot , 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_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line_discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line_discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice +msgid "Invoice" +msgstr "Нэхэмжлэл" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice_line +msgid "Invoice Line" +msgstr "Нэхэмжлэлийн мөр" diff --git a/account_invoice_triple_discount/i18n/nb.po b/account_invoice_triple_discount/i18n/nb.po new file mode 100644 index 00000000000..989e62f298e --- /dev/null +++ b/account_invoice_triple_discount/i18n/nb.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+0000\n" +"Last-Translator: OCA Transbot , 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_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line_discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line_discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice +msgid "Invoice" +msgstr "Faktura" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice_line +msgid "Invoice Line" +msgstr "Fakturalinje" diff --git a/account_invoice_triple_discount/i18n/nb_NO.po b/account_invoice_triple_discount/i18n/nb_NO.po new file mode 100644 index 00000000000..c181156fd22 --- /dev/null +++ b/account_invoice_triple_discount/i18n/nb_NO.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+0000\n" +"Last-Translator: OCA Transbot , 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_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line_discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line_discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice +msgid "Invoice" +msgstr "Innmelding" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice_line +msgid "Invoice Line" +msgstr "" diff --git a/account_invoice_triple_discount/i18n/nl.po b/account_invoice_triple_discount/i18n/nl.po new file mode 100644 index 00000000000..ef4d6d33434 --- /dev/null +++ b/account_invoice_triple_discount/i18n/nl.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+0000\n" +"Last-Translator: OCA Transbot , 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_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line_discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line_discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice +msgid "Invoice" +msgstr "Factuur" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice_line +msgid "Invoice Line" +msgstr "Factuurregel" diff --git a/account_invoice_triple_discount/i18n/nl_BE.po b/account_invoice_triple_discount/i18n/nl_BE.po new file mode 100644 index 00000000000..f965b10b703 --- /dev/null +++ b/account_invoice_triple_discount/i18n/nl_BE.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+0000\n" +"Last-Translator: OCA Transbot , 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_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line_discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line_discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice +msgid "Invoice" +msgstr "Factuur" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice_line +msgid "Invoice Line" +msgstr "Factuurlijn" diff --git a/account_invoice_triple_discount/i18n/nl_NL.po b/account_invoice_triple_discount/i18n/nl_NL.po new file mode 100644 index 00000000000..75339fdc0ff --- /dev/null +++ b/account_invoice_triple_discount/i18n/nl_NL.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# Peter Hageman , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+0000\n" +"Last-Translator: Peter Hageman , 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_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line_discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line_discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice +msgid "Invoice" +msgstr "Factuur" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice_line +msgid "Invoice Line" +msgstr "Factuurregel" diff --git a/account_invoice_triple_discount/i18n/pl.po b/account_invoice_triple_discount/i18n/pl.po new file mode 100644 index 00000000000..eac002d967b --- /dev/null +++ b/account_invoice_triple_discount/i18n/pl.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+0000\n" +"Last-Translator: OCA Transbot , 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_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line_discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line_discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice +msgid "Invoice" +msgstr "Faktura" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice_line +msgid "Invoice Line" +msgstr "" diff --git a/account_invoice_triple_discount/i18n/pt.po b/account_invoice_triple_discount/i18n/pt.po new file mode 100644 index 00000000000..bb99a5f5ec7 --- /dev/null +++ b/account_invoice_triple_discount/i18n/pt.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+0000\n" +"Last-Translator: OCA Transbot , 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_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line_discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line_discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice +msgid "Invoice" +msgstr "Fatura" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice_line +msgid "Invoice Line" +msgstr "Linha de fatura" diff --git a/account_invoice_triple_discount/i18n/pt_BR.po b/account_invoice_triple_discount/i18n/pt_BR.po new file mode 100644 index 00000000000..1ef6170a894 --- /dev/null +++ b/account_invoice_triple_discount/i18n/pt_BR.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+0000\n" +"Last-Translator: OCA Transbot , 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_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line_discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line_discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice +msgid "Invoice" +msgstr "Fatura" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice_line +msgid "Invoice Line" +msgstr "Linha da Fatura" diff --git a/account_invoice_triple_discount/i18n/pt_PT.po b/account_invoice_triple_discount/i18n/pt_PT.po new file mode 100644 index 00000000000..f273db935f2 --- /dev/null +++ b/account_invoice_triple_discount/i18n/pt_PT.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+0000\n" +"Last-Translator: OCA Transbot , 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_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line_discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line_discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice +msgid "Invoice" +msgstr "Fatura" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice_line +msgid "Invoice Line" +msgstr "Linha da Fatura" diff --git a/account_invoice_triple_discount/i18n/ro.po b/account_invoice_triple_discount/i18n/ro.po new file mode 100644 index 00000000000..27cec5d3a4e --- /dev/null +++ b/account_invoice_triple_discount/i18n/ro.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+0000\n" +"Last-Translator: OCA Transbot , 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_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line_discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line_discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice +msgid "Invoice" +msgstr "Factura" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice_line +msgid "Invoice Line" +msgstr "Linie factura" diff --git a/account_invoice_triple_discount/i18n/ru.po b/account_invoice_triple_discount/i18n/ru.po new file mode 100644 index 00000000000..2afde60b2ea --- /dev/null +++ b/account_invoice_triple_discount/i18n/ru.po @@ -0,0 +1,40 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +# nek, 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-03-17 01:09+0000\n" +"PO-Revision-Date: 2018-03-17 01:09+0000\n" +"Last-Translator: nek, 2018\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_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line_discount2 +msgid "Discount 2 (%)" +msgstr "Скидка 2 (%)" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line_discount3 +msgid "Discount 3 (%)" +msgstr "Скидка 3 (%)" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice +msgid "Invoice" +msgstr "Счет" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice_line +msgid "Invoice Line" +msgstr "Позиция счета" diff --git a/account_invoice_triple_discount/i18n/sk_SK.po b/account_invoice_triple_discount/i18n/sk_SK.po new file mode 100644 index 00000000000..580ef591c34 --- /dev/null +++ b/account_invoice_triple_discount/i18n/sk_SK.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+0000\n" +"Last-Translator: OCA Transbot , 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_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line_discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line_discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice +msgid "Invoice" +msgstr "Faktúra" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice_line +msgid "Invoice Line" +msgstr "" diff --git a/account_invoice_triple_discount/i18n/sl.po b/account_invoice_triple_discount/i18n/sl.po new file mode 100644 index 00000000000..f5d3d8f1823 --- /dev/null +++ b/account_invoice_triple_discount/i18n/sl.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+0000\n" +"Last-Translator: OCA Transbot , 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_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line_discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line_discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice +msgid "Invoice" +msgstr "Račun" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice_line +msgid "Invoice Line" +msgstr "Postavka računa" diff --git a/account_invoice_triple_discount/i18n/sv.po b/account_invoice_triple_discount/i18n/sv.po new file mode 100644 index 00000000000..faaed224a1a --- /dev/null +++ b/account_invoice_triple_discount/i18n/sv.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+0000\n" +"Last-Translator: OCA Transbot , 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_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line_discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line_discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice +msgid "Invoice" +msgstr "Faktura" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice_line +msgid "Invoice Line" +msgstr "Fakturarad" diff --git a/account_invoice_triple_discount/i18n/th.po b/account_invoice_triple_discount/i18n/th.po new file mode 100644 index 00000000000..aaeae563ba9 --- /dev/null +++ b/account_invoice_triple_discount/i18n/th.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+0000\n" +"Last-Translator: OCA Transbot , 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_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line_discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line_discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice +msgid "Invoice" +msgstr "ใบแจ้งหนี้" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice_line +msgid "Invoice Line" +msgstr "" diff --git a/account_invoice_triple_discount/i18n/tr.po b/account_invoice_triple_discount/i18n/tr.po new file mode 100644 index 00000000000..6127adf0b73 --- /dev/null +++ b/account_invoice_triple_discount/i18n/tr.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+0000\n" +"Last-Translator: OCA Transbot , 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_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line_discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line_discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice +msgid "Invoice" +msgstr "Fatura" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice_line +msgid "Invoice Line" +msgstr "Fatura kalemi" diff --git a/account_invoice_triple_discount/i18n/tr_TR.po b/account_invoice_triple_discount/i18n/tr_TR.po new file mode 100644 index 00000000000..f15e7f98baf --- /dev/null +++ b/account_invoice_triple_discount/i18n/tr_TR.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+0000\n" +"Last-Translator: OCA Transbot , 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_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line_discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line_discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice +msgid "Invoice" +msgstr "Fatura" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice_line +msgid "Invoice Line" +msgstr "Fatura hizası" diff --git a/account_invoice_triple_discount/i18n/zh_CN.po b/account_invoice_triple_discount/i18n/zh_CN.po new file mode 100644 index 00000000000..879e5e3cf7d --- /dev/null +++ b/account_invoice_triple_discount/i18n/zh_CN.po @@ -0,0 +1,40 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +# 三 张 <731414193@qq.com>, 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+0000\n" +"Last-Translator: 三 张 <731414193@qq.com>, 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_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line_discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line_discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice +msgid "Invoice" +msgstr "发票" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice_line +msgid "Invoice Line" +msgstr "发票明细" diff --git a/account_invoice_triple_discount/i18n/zh_TW.po b/account_invoice_triple_discount/i18n/zh_TW.po new file mode 100644 index 00000000000..e0b9f062cad --- /dev/null +++ b/account_invoice_triple_discount/i18n/zh_TW.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_triple_discount +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-09 02:45+0000\n" +"PO-Revision-Date: 2017-08-09 02:45+0000\n" +"Last-Translator: OCA Transbot , 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_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line_discount2 +msgid "Discount 2 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model.fields,field_description:account_invoice_triple_discount.field_account_invoice_line_discount3 +msgid "Discount 3 (%)" +msgstr "" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice +msgid "Invoice" +msgstr "發票" + +#. module: account_invoice_triple_discount +#: model:ir.model,name:account_invoice_triple_discount.model_account_invoice_line +msgid "Invoice Line" +msgstr "發票明細" From 599cab91662ba69fb2ba3d733dfb4eb5ace1c6d6 Mon Sep 17 00:00:00 2001 From: xavierjimenez Date: Wed, 4 Apr 2018 17:32:58 +0200 Subject: [PATCH 4/4] [11.0][MIG] account_invoice_triple_discount --- account_invoice_triple_discount/README.rst | 2 +- account_invoice_triple_discount/__init__.py | 1 - account_invoice_triple_discount/__manifest__.py | 9 +++++---- account_invoice_triple_discount/models/__init__.py | 1 - .../models/account_invoice.py | 1 - account_invoice_triple_discount/tests/__init__.py | 1 - .../tests/test_invoice_triple_discount.py | 1 - 7 files changed, 6 insertions(+), 10 deletions(-) diff --git a/account_invoice_triple_discount/README.rst b/account_invoice_triple_discount/README.rst index e978517dabc..8e6cbf7e7f3 100644 --- a/account_invoice_triple_discount/README.rst +++ b/account_invoice_triple_discount/README.rst @@ -31,7 +31,7 @@ Unit price: 600.00 -> .. 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 + :target: https://runbot.odoo-community.org/runbot/95/11.0 Bug Tracker =========== diff --git a/account_invoice_triple_discount/__init__.py b/account_invoice_triple_discount/__init__.py index cde864bae21..a9e3372262c 100644 --- a/account_invoice_triple_discount/__init__.py +++ b/account_invoice_triple_discount/__init__.py @@ -1,3 +1,2 @@ -# -*- coding: utf-8 -*- from . import models diff --git a/account_invoice_triple_discount/__manifest__.py b/account_invoice_triple_discount/__manifest__.py index 98ef79f5933..df725275e7d 100644 --- a/account_invoice_triple_discount/__manifest__.py +++ b/account_invoice_triple_discount/__manifest__.py @@ -1,13 +1,14 @@ -# -*- coding: utf-8 -*- +# Copyright 2018 QubiQ (http://www.qubiq.es) # Copyright 2017 Tecnativa - David Vidal # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). { 'name': 'Account Invoice Triple Discount', - 'version': '10.0.1.0.0', + 'version': '11.0.1.0.0', 'category': 'Accounting & Finance', - 'author': 'Tecnativa, ' + 'author': 'QubiQ,' + 'Tecnativa,' 'Odoo Community Association (OCA)', - 'website': 'https://tecnativa.com', + 'website': 'https://odoo-community.org', 'license': 'AGPL-3', 'summary': 'Manage triple discount on invoice lines', 'depends': [ diff --git a/account_invoice_triple_discount/models/__init__.py b/account_invoice_triple_discount/models/__init__.py index 009711ad3d3..6834786a795 100644 --- a/account_invoice_triple_discount/models/__init__.py +++ b/account_invoice_triple_discount/models/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). from . import account_invoice diff --git a/account_invoice_triple_discount/models/account_invoice.py b/account_invoice_triple_discount/models/account_invoice.py index 2036799a666..9e0c1f1aa45 100644 --- a/account_invoice_triple_discount/models/account_invoice.py +++ b/account_invoice_triple_discount/models/account_invoice.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright 2017 Tecnativa - David Vidal # Copyright 2017 Tecnativa - Pedro M. Baeza # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). diff --git a/account_invoice_triple_discount/tests/__init__.py b/account_invoice_triple_discount/tests/__init__.py index 4835fbdce15..e73e9b0f196 100644 --- a/account_invoice_triple_discount/tests/__init__.py +++ b/account_invoice_triple_discount/tests/__init__.py @@ -1,3 +1,2 @@ -# -*- coding: utf-8 -*- from . import test_invoice_triple_discount diff --git a/account_invoice_triple_discount/tests/test_invoice_triple_discount.py b/account_invoice_triple_discount/tests/test_invoice_triple_discount.py index 791beb50646..7099a710f87 100644 --- a/account_invoice_triple_discount/tests/test_invoice_triple_discount.py +++ b/account_invoice_triple_discount/tests/test_invoice_triple_discount.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright 2017 Tecnativa - David Vidal # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).