From cc30981ef90e1500e3ff8debb732609a8e904511 Mon Sep 17 00:00:00 2001 From: Alexis de Lattre Date: Fri, 26 Sep 2014 17:15:21 +0200 Subject: [PATCH 01/54] Add module account_balance_ebp_csv_export. --- account_balance_ebp_csv_export/__init__.py | 24 +++++++ account_balance_ebp_csv_export/__openerp__.py | 46 +++++++++++++ .../report/__init__.py | 23 +++++++ .../report/report.xml | 35 ++++++++++ .../report/trial_balance_ebp_csv.csv | 11 ++++ .../report/trial_balance_ebp_csv.py | 64 +++++++++++++++++++ .../wizard/__init__.py | 23 +++++++ .../wizard/trial_balance_wizard.py | 36 +++++++++++ .../wizard/trial_balance_wizard_view.xml | 27 ++++++++ 9 files changed, 289 insertions(+) create mode 100644 account_balance_ebp_csv_export/__init__.py create mode 100644 account_balance_ebp_csv_export/__openerp__.py create mode 100644 account_balance_ebp_csv_export/report/__init__.py create mode 100644 account_balance_ebp_csv_export/report/report.xml create mode 100644 account_balance_ebp_csv_export/report/trial_balance_ebp_csv.csv create mode 100644 account_balance_ebp_csv_export/report/trial_balance_ebp_csv.py create mode 100644 account_balance_ebp_csv_export/wizard/__init__.py create mode 100644 account_balance_ebp_csv_export/wizard/trial_balance_wizard.py create mode 100644 account_balance_ebp_csv_export/wizard/trial_balance_wizard_view.xml diff --git a/account_balance_ebp_csv_export/__init__.py b/account_balance_ebp_csv_export/__init__.py new file mode 100644 index 000000000..1900dc8af --- /dev/null +++ b/account_balance_ebp_csv_export/__init__.py @@ -0,0 +1,24 @@ +# -*- encoding: utf-8 -*- +############################################################################## +# +# Account Balance EBP CSV export module for OpenERP +# Copyright (C) 2014 Akretion (http://www.akretion.com) +# @author Alexis de Lattre +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +from . import report +from . import wizard diff --git a/account_balance_ebp_csv_export/__openerp__.py b/account_balance_ebp_csv_export/__openerp__.py new file mode 100644 index 000000000..3f1b1f9d1 --- /dev/null +++ b/account_balance_ebp_csv_export/__openerp__.py @@ -0,0 +1,46 @@ +# -*- encoding: utf-8 -*- +############################################################################## +# +# Account Balance EBP CSV export module for OpenERP +# Copyright (C) 2014 Akretion (http://www.akretion.com) +# @author Alexis de Lattre +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + + +{ + 'name': 'Account Balance EBP CSV export', + 'version': '0.1', + 'category': 'Accounting & Finance', + 'license': 'AGPL-3', + 'description': """ +Account Balance EBP CSV export +============================== + +This module adds a button *EBP csv File* next to the *Print* button on the Trial Balance wizard. It has been developped to be able to export the trial balance to software dedicated to the *Liasse fiscale* (French fiscal declaration) that accept csv files from the popular EBP accounting software. This file has been tested with Teledec (https://www.teledec.fr/), which is a SaaS solution for the *Liasse fiscale* with support for EDI transmission. + +This module has been developped by Alexis de Lattre from Akretion . + """, + 'author': 'Akretion', + 'website': 'http://www.akretion.com', + 'depends': ['report_aeroo', 'account_financial_report_webkit'], + 'data': [ + 'report/report.xml', + 'wizard/trial_balance_wizard_view.xml' + ], + 'installable': True, + 'active': False, +} diff --git a/account_balance_ebp_csv_export/report/__init__.py b/account_balance_ebp_csv_export/report/__init__.py new file mode 100644 index 000000000..c953a32a6 --- /dev/null +++ b/account_balance_ebp_csv_export/report/__init__.py @@ -0,0 +1,23 @@ +# -*- encoding: utf-8 -*- +############################################################################## +# +# Account Trial Balance CSV module for OpenERP +# Copyright (C) 2014 Akretion (http://www.akretion.com) +# @author Alexis de Lattre +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +from . import trial_balance_ebp_csv diff --git a/account_balance_ebp_csv_export/report/report.xml b/account_balance_ebp_csv_export/report/report.xml new file mode 100644 index 000000000..fe6f6b66c --- /dev/null +++ b/account_balance_ebp_csv_export/report/report.xml @@ -0,0 +1,35 @@ + + + + + + + + + Trial Balance EBP CSV + account.report.trial.balance.ebp.csv + aeroo + genshi-raw + + utf_8 + + + + default + + loc + account_balance_ebp_csv_export/report/trial_balance_ebp_csv.py + + + + + account.account + account_balance_ebp_csv_export/report/trial_balance_ebp_csv.csv + + + + diff --git a/account_balance_ebp_csv_export/report/trial_balance_ebp_csv.csv b/account_balance_ebp_csv_export/report/trial_balance_ebp_csv.csv new file mode 100644 index 000000000..0c10a5bcf --- /dev/null +++ b/account_balance_ebp_csv_export/report/trial_balance_ebp_csv.csv @@ -0,0 +1,11 @@ +"Compte.Numero","Compte.Intitule","Balance.SldCptNDebit","Balance.SldCptNCredit","Balance.SldCptNSoldeD","Balance.SldCptNSoldeC" +{% for current_account in objects %}\ +{% if current_account.to_display and current_account.type != 'view' %}\ +\ +"${current_account.code}",\ +"${current_account.name}",\ +${'%.2f' % current_account.debit},\ +${'%.2f' % current_account.credit},\ +${(current_account.credit - current_account.debit) >= 0 and ('0.00,%.2f' % (current_account.credit - current_account.debit)) or ('%.2f,0.00' % (current_account.debit - current_account.credit))} +{% end %}\ +{% end %} diff --git a/account_balance_ebp_csv_export/report/trial_balance_ebp_csv.py b/account_balance_ebp_csv_export/report/trial_balance_ebp_csv.py new file mode 100644 index 000000000..e44a833c3 --- /dev/null +++ b/account_balance_ebp_csv_export/report/trial_balance_ebp_csv.py @@ -0,0 +1,64 @@ +# -*- encoding: utf-8 -*- +############################################################################## +# +# Author: Guewen Baconnier +# Copyright Camptocamp SA 2011 +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + + +from openerp.report import report_sxw +from openerp.tools.translate import _ +import pooler +from datetime import datetime + +from account_financial_report_webkit.report.common_balance_reports\ + import CommonBalanceReportHeaderWebkit + + +def sign(number): + return cmp(number, 0) + + +class Parser(report_sxw.rml_parse, CommonBalanceReportHeaderWebkit): + + def __init__(self, cursor, uid, name, context): + super(Parser, self).__init__(cursor, uid, name, context=context) + self.pool = pooler.get_pool(self.cr.dbname) + self.cursor = self.cr + + self.localcontext.update({ + 'cr': cursor, + 'uid': uid, + 'report_name': _('Trial Balance'), + 'display_account': self._get_display_account, + 'display_account_raw': self._get_display_account_raw, + 'filter_form': self._get_filter, + 'target_move': self._get_target_move, + 'display_target_move': self._get_display_target_move, + 'accounts': self._get_accounts_br, + 'date_time': + self.formatLang(str(datetime.today()), date_time=True), + }) + + def set_context(self, objects, data, ids, report_type=None): + """Populate a ledger_lines attribute on each browse record that """ + """will be used by mako template""" + objects, new_ids, context_report_values = self.compute_balance_data( + data) + self.localcontext.update(context_report_values) + return super(Parser, self).set_context( + objects, data, new_ids, report_type=report_type) diff --git a/account_balance_ebp_csv_export/wizard/__init__.py b/account_balance_ebp_csv_export/wizard/__init__.py new file mode 100644 index 000000000..536d1dd25 --- /dev/null +++ b/account_balance_ebp_csv_export/wizard/__init__.py @@ -0,0 +1,23 @@ +# -*- encoding: utf-8 -*- +############################################################################## +# +# Account Balance EBP CSV export module for OpenERP +# Copyright (C) 2014 Akretion (http://www.akretion.com) +# @author Alexis de Lattre +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +from . import trial_balance_wizard diff --git a/account_balance_ebp_csv_export/wizard/trial_balance_wizard.py b/account_balance_ebp_csv_export/wizard/trial_balance_wizard.py new file mode 100644 index 000000000..32beabf7f --- /dev/null +++ b/account_balance_ebp_csv_export/wizard/trial_balance_wizard.py @@ -0,0 +1,36 @@ +# -*- encoding: utf-8 -*- +############################################################################## +# +# Account Balance EBP CSV export module for OpenERP +# Copyright (C) 2014 Akretion (http://www.akretion.com) +# @author Alexis de Lattre +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +from openerp.osv import orm + + +class AccountTrialBalanceWizard(orm.TransientModel): + _inherit = "trial.balance.webkit" + + def _print_report(self, cursor, uid, ids, data, context=None): + if context is None: + context = {} + res = super(AccountTrialBalanceWizard, self)._print_report( + cursor, uid, ids, data, context=context) + if context.get('export_type') == 'ebp-csv': + res['report_name'] = 'account.report.trial.balance.ebp.csv' + return res diff --git a/account_balance_ebp_csv_export/wizard/trial_balance_wizard_view.xml b/account_balance_ebp_csv_export/wizard/trial_balance_wizard_view.xml new file mode 100644 index 000000000..d1d1335f4 --- /dev/null +++ b/account_balance_ebp_csv_export/wizard/trial_balance_wizard_view.xml @@ -0,0 +1,27 @@ + + + + + + + + + trial.balance.ebp.csv.export + trial.balance.webkit + + + + + + + + From 89f2e3591a8ff46b17dfaabfc390eb961b171ef8 Mon Sep 17 00:00:00 2001 From: Alexis de Lattre Date: Mon, 6 Oct 2014 21:30:38 +0200 Subject: [PATCH 02/54] Better module description Update name of XMLID --- account_balance_ebp_csv_export/__openerp__.py | 3 +-- .../wizard/trial_balance_wizard_view.xml | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/account_balance_ebp_csv_export/__openerp__.py b/account_balance_ebp_csv_export/__openerp__.py index 3f1b1f9d1..bfade464b 100644 --- a/account_balance_ebp_csv_export/__openerp__.py +++ b/account_balance_ebp_csv_export/__openerp__.py @@ -30,7 +30,7 @@ Account Balance EBP CSV export ============================== -This module adds a button *EBP csv File* next to the *Print* button on the Trial Balance wizard. It has been developped to be able to export the trial balance to software dedicated to the *Liasse fiscale* (French fiscal declaration) that accept csv files from the popular EBP accounting software. This file has been tested with Teledec (https://www.teledec.fr/), which is a SaaS solution for the *Liasse fiscale* with support for EDI transmission. +This module adds a button *EBP csv File* next to the *Print* button on the Trial Balance wizard. The aim is to export the trial balance to software dedicated to the *Liasse fiscale* (French fiscal declaration) that accept CSV files from the popular EBP accounting software. This file has been tested with Teledec (https://www.teledec.fr/), which is a SaaS solution for the *Liasse fiscale* with support for EDI transmission. This module has been developped by Alexis de Lattre from Akretion . """, @@ -42,5 +42,4 @@ 'wizard/trial_balance_wizard_view.xml' ], 'installable': True, - 'active': False, } diff --git a/account_balance_ebp_csv_export/wizard/trial_balance_wizard_view.xml b/account_balance_ebp_csv_export/wizard/trial_balance_wizard_view.xml index d1d1335f4..404328ff7 100644 --- a/account_balance_ebp_csv_export/wizard/trial_balance_wizard_view.xml +++ b/account_balance_ebp_csv_export/wizard/trial_balance_wizard_view.xml @@ -9,7 +9,7 @@ - + trial.balance.ebp.csv.export trial.balance.webkit From 49b6c3c88aeaeb3753d2e9c0c4940ca8db051b7a Mon Sep 17 00:00:00 2001 From: Alexis de Lattre Date: Mon, 30 Mar 2015 12:20:15 +0200 Subject: [PATCH 03/54] Add file README.rst OpenERP renamed to Odoo Add OCA as author --- account_balance_ebp_csv_export/README.rst | 37 +++++++++++++++++++ account_balance_ebp_csv_export/__init__.py | 4 +- account_balance_ebp_csv_export/__openerp__.py | 14 ++----- .../report/__init__.py | 4 +- .../wizard/__init__.py | 4 +- .../wizard/trial_balance_wizard.py | 4 +- 6 files changed, 48 insertions(+), 19 deletions(-) create mode 100644 account_balance_ebp_csv_export/README.rst diff --git a/account_balance_ebp_csv_export/README.rst b/account_balance_ebp_csv_export/README.rst new file mode 100644 index 000000000..5e0d96950 --- /dev/null +++ b/account_balance_ebp_csv_export/README.rst @@ -0,0 +1,37 @@ +Account Balance EBP CSV export +============================== + +This module adds a button *EBP csv File* next to the *Print* button on the Trial Balance wizard. It will export the Trial Balance in the CSV export format of the EBP accounting software. + +One of the possible usage scenario of this module is to export the trial balance to software dedicated to the `Liasse fiscale `_ (French fiscal declaration) that accept CSV files from the EBP accounting software. This file has been successfully tested with `Teledec `_, which is a SaaS solution for the *Liasse fiscale* with support for EDI transmission. Akretion France uses this module and Teledec to tele-transmit via EDI its Liasse fiscale to the French tax administration. + +Installation +============ + +This module depends on the module *report_aeroo*, available on it's `dedicated Github project `_. This module requires the Python librairy *aeroolib* available on this `Github project `_. + +Usage +===== + +To use this module, go to the menu Accounting > Reporting > Legal Reports > Accounting Reports > Trial Balance and you will see the button *EBP csv File*. + +Credits +======= + +Contributors +------------ + +* Alexis de Lattre + +Maintainer +---------- + +.. image:: http://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: http://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 http://odoo-community.org. diff --git a/account_balance_ebp_csv_export/__init__.py b/account_balance_ebp_csv_export/__init__.py index 1900dc8af..3e9100903 100644 --- a/account_balance_ebp_csv_export/__init__.py +++ b/account_balance_ebp_csv_export/__init__.py @@ -1,8 +1,8 @@ # -*- encoding: utf-8 -*- ############################################################################## # -# Account Balance EBP CSV export module for OpenERP -# Copyright (C) 2014 Akretion (http://www.akretion.com) +# Account Balance EBP CSV export module for Odoo +# Copyright (C) 2014-2015 Akretion (http://www.akretion.com) # @author Alexis de Lattre # # This program is free software: you can redistribute it and/or modify diff --git a/account_balance_ebp_csv_export/__openerp__.py b/account_balance_ebp_csv_export/__openerp__.py index bfade464b..81d03438f 100644 --- a/account_balance_ebp_csv_export/__openerp__.py +++ b/account_balance_ebp_csv_export/__openerp__.py @@ -1,8 +1,8 @@ # -*- encoding: utf-8 -*- ############################################################################## # -# Account Balance EBP CSV export module for OpenERP -# Copyright (C) 2014 Akretion (http://www.akretion.com) +# Account Balance EBP CSV export module for Odoo +# Copyright (C) 2014-2015 Akretion (http://www.akretion.com) # @author Alexis de Lattre # # This program is free software: you can redistribute it and/or modify @@ -26,15 +26,7 @@ 'version': '0.1', 'category': 'Accounting & Finance', 'license': 'AGPL-3', - 'description': """ -Account Balance EBP CSV export -============================== - -This module adds a button *EBP csv File* next to the *Print* button on the Trial Balance wizard. The aim is to export the trial balance to software dedicated to the *Liasse fiscale* (French fiscal declaration) that accept CSV files from the popular EBP accounting software. This file has been tested with Teledec (https://www.teledec.fr/), which is a SaaS solution for the *Liasse fiscale* with support for EDI transmission. - -This module has been developped by Alexis de Lattre from Akretion . - """, - 'author': 'Akretion', + 'author': 'Akretion,Odoo Community Association (OCA)', 'website': 'http://www.akretion.com', 'depends': ['report_aeroo', 'account_financial_report_webkit'], 'data': [ diff --git a/account_balance_ebp_csv_export/report/__init__.py b/account_balance_ebp_csv_export/report/__init__.py index c953a32a6..c4936a1f1 100644 --- a/account_balance_ebp_csv_export/report/__init__.py +++ b/account_balance_ebp_csv_export/report/__init__.py @@ -1,8 +1,8 @@ # -*- encoding: utf-8 -*- ############################################################################## # -# Account Trial Balance CSV module for OpenERP -# Copyright (C) 2014 Akretion (http://www.akretion.com) +# Account Trial Balance CSV module for Odoo +# Copyright (C) 2014-2015 Akretion (http://www.akretion.com) # @author Alexis de Lattre # # This program is free software: you can redistribute it and/or modify diff --git a/account_balance_ebp_csv_export/wizard/__init__.py b/account_balance_ebp_csv_export/wizard/__init__.py index 536d1dd25..840649b1a 100644 --- a/account_balance_ebp_csv_export/wizard/__init__.py +++ b/account_balance_ebp_csv_export/wizard/__init__.py @@ -1,8 +1,8 @@ # -*- encoding: utf-8 -*- ############################################################################## # -# Account Balance EBP CSV export module for OpenERP -# Copyright (C) 2014 Akretion (http://www.akretion.com) +# Account Balance EBP CSV export module for Odoo +# Copyright (C) 2014-2015 Akretion (http://www.akretion.com) # @author Alexis de Lattre # # This program is free software: you can redistribute it and/or modify diff --git a/account_balance_ebp_csv_export/wizard/trial_balance_wizard.py b/account_balance_ebp_csv_export/wizard/trial_balance_wizard.py index 32beabf7f..e5a7a15d8 100644 --- a/account_balance_ebp_csv_export/wizard/trial_balance_wizard.py +++ b/account_balance_ebp_csv_export/wizard/trial_balance_wizard.py @@ -1,8 +1,8 @@ # -*- encoding: utf-8 -*- ############################################################################## # -# Account Balance EBP CSV export module for OpenERP -# Copyright (C) 2014 Akretion (http://www.akretion.com) +# Account Balance EBP CSV export module for Odoo +# Copyright (C) 2014-2015 Akretion (http://www.akretion.com) # @author Alexis de Lattre # # This program is free software: you can redistribute it and/or modify From b041aba3591a0f74db1f30ea38c80bfeb4103abe Mon Sep 17 00:00:00 2001 From: Alexis de Lattre Date: Tue, 25 Aug 2015 01:51:49 +0200 Subject: [PATCH 04/54] Try to fix pylint --- .../report/trial_balance_ebp_csv.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/account_balance_ebp_csv_export/report/trial_balance_ebp_csv.py b/account_balance_ebp_csv_export/report/trial_balance_ebp_csv.py index e44a833c3..b79077d9b 100644 --- a/account_balance_ebp_csv_export/report/trial_balance_ebp_csv.py +++ b/account_balance_ebp_csv_export/report/trial_balance_ebp_csv.py @@ -55,8 +55,9 @@ def __init__(self, cursor, uid, name, context): }) def set_context(self, objects, data, ids, report_type=None): - """Populate a ledger_lines attribute on each browse record that """ - """will be used by mako template""" + """Populate a ledger_lines attribute on each browse record that + will be used by mako template + """ objects, new_ids, context_report_values = self.compute_balance_data( data) self.localcontext.update(context_report_values) From 26ab482caee06f369fd596379e9298f2989dbe04 Mon Sep 17 00:00:00 2001 From: Alexis de Lattre Date: Sun, 27 Sep 2015 00:22:52 +0200 Subject: [PATCH 05/54] FIX balance in EBP export --- account_balance_ebp_csv_export/report/trial_balance_ebp_csv.csv | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/account_balance_ebp_csv_export/report/trial_balance_ebp_csv.csv b/account_balance_ebp_csv_export/report/trial_balance_ebp_csv.csv index 0c10a5bcf..4fcb09fbf 100644 --- a/account_balance_ebp_csv_export/report/trial_balance_ebp_csv.csv +++ b/account_balance_ebp_csv_export/report/trial_balance_ebp_csv.csv @@ -6,6 +6,6 @@ "${current_account.name}",\ ${'%.2f' % current_account.debit},\ ${'%.2f' % current_account.credit},\ -${(current_account.credit - current_account.debit) >= 0 and ('0.00,%.2f' % (current_account.credit - current_account.debit)) or ('%.2f,0.00' % (current_account.debit - current_account.credit))} +${current_account.balance >= 0 and ('%.2f,0.00' % (current_account.balance)) or ('0.00,%.2f' % (current_account.balance * -1))} {% end %}\ {% end %} From ac723719f97532d960223a6735272c2132d92140 Mon Sep 17 00:00:00 2001 From: Alexis de Lattre Date: Mon, 28 Sep 2015 21:54:52 +0200 Subject: [PATCH 06/54] Update description to add Sage Etats comptables et fiscaux to the list of tested software. --- account_balance_ebp_csv_export/README.rst | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/account_balance_ebp_csv_export/README.rst b/account_balance_ebp_csv_export/README.rst index 5e0d96950..0cc681a0b 100644 --- a/account_balance_ebp_csv_export/README.rst +++ b/account_balance_ebp_csv_export/README.rst @@ -3,7 +3,13 @@ Account Balance EBP CSV export This module adds a button *EBP csv File* next to the *Print* button on the Trial Balance wizard. It will export the Trial Balance in the CSV export format of the EBP accounting software. -One of the possible usage scenario of this module is to export the trial balance to software dedicated to the `Liasse fiscale `_ (French fiscal declaration) that accept CSV files from the EBP accounting software. This file has been successfully tested with `Teledec `_, which is a SaaS solution for the *Liasse fiscale* with support for EDI transmission. Akretion France uses this module and Teledec to tele-transmit via EDI its Liasse fiscale to the French tax administration. +One of the possible usage scenario of this module is to export the trial balance to software dedicated to the `Liasse fiscale `_ (French fiscal declaration) that accept CSV files from the EBP accounting software. This file has been successfully tested with the following software: + +* `Teledec `_, which is a SaaS solution for the + *Liasse fiscale* with support for EDI transmission (Akretion France uses + Teledec to tele-transmit via EDI its Liasse fiscale to the French tax administration). + +* `Sage Etats Comptables et Fiscaux `, which is a Windows software to compute, edit and transmit via EDI the *Liasse fiscale* and other fiscal declarations. It can import the CSV balance generated by this module if you select *EBP WIN* as import filter. Installation ============ From ffc2f0c173631aace8e4639e11dd5437f475f2fe Mon Sep 17 00:00:00 2001 From: Alexis de Lattre Date: Thu, 1 Oct 2015 23:25:57 +0200 Subject: [PATCH 07/54] Update README to add tests with Sage Etats Comptables et Fiscaux Remove a lot of unused code. Code clean-up --- account_balance_ebp_csv_export/README.rst | 6 +- .../report/report.xml | 20 ++---- .../report/trial_balance_ebp_csv.py | 65 ------------------- .../wizard/trial_balance_wizard_view.xml | 1 - 4 files changed, 8 insertions(+), 84 deletions(-) delete mode 100644 account_balance_ebp_csv_export/report/trial_balance_ebp_csv.py diff --git a/account_balance_ebp_csv_export/README.rst b/account_balance_ebp_csv_export/README.rst index 0cc681a0b..2c78635b1 100644 --- a/account_balance_ebp_csv_export/README.rst +++ b/account_balance_ebp_csv_export/README.rst @@ -3,13 +3,13 @@ Account Balance EBP CSV export This module adds a button *EBP csv File* next to the *Print* button on the Trial Balance wizard. It will export the Trial Balance in the CSV export format of the EBP accounting software. -One of the possible usage scenario of this module is to export the trial balance to software dedicated to the `Liasse fiscale `_ (French fiscal declaration) that accept CSV files from the EBP accounting software. This file has been successfully tested with the following software: +One of the possible usage scenario of this module is to export the trial balance to software dedicated to the `liasse fiscale `_ (French fiscal declaration) that accept CSV files from the EBP accounting software. This file has been successfully tested with the following software: * `Teledec `_, which is a SaaS solution for the - *Liasse fiscale* with support for EDI transmission (Akretion France uses + *liasse fiscale* with support for EDI transmission (Akretion France uses Teledec to tele-transmit via EDI its Liasse fiscale to the French tax administration). -* `Sage Etats Comptables et Fiscaux `, which is a Windows software to compute, edit and transmit via EDI the *Liasse fiscale* and other fiscal declarations. It can import the CSV balance generated by this module if you select *EBP WIN* as import filter. +* `Sage Etats Comptables et Fiscaux `, which is a Windows software to compute, edit and transmit via EDI the *liasse fiscale* and other fiscal declarations. It can import the CSV balance generated by this module if you select *EBP WIN* as import filter. Installation ============ diff --git a/account_balance_ebp_csv_export/report/report.xml b/account_balance_ebp_csv_export/report/report.xml index fe6f6b66c..5bbe34b48 100644 --- a/account_balance_ebp_csv_export/report/report.xml +++ b/account_balance_ebp_csv_export/report/report.xml @@ -1,7 +1,6 @@ - @@ -11,24 +10,15 @@ Trial Balance EBP CSV + account.account account.report.trial.balance.ebp.csv aeroo genshi-raw - utf_8 - - - - default - - loc - account_balance_ebp_csv_export/report/trial_balance_ebp_csv.py - - - - - account.account account_balance_ebp_csv_export/report/trial_balance_ebp_csv.csv + utf_8 + default + csv diff --git a/account_balance_ebp_csv_export/report/trial_balance_ebp_csv.py b/account_balance_ebp_csv_export/report/trial_balance_ebp_csv.py deleted file mode 100644 index b79077d9b..000000000 --- a/account_balance_ebp_csv_export/report/trial_balance_ebp_csv.py +++ /dev/null @@ -1,65 +0,0 @@ -# -*- encoding: utf-8 -*- -############################################################################## -# -# Author: Guewen Baconnier -# Copyright Camptocamp SA 2011 -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# -############################################################################## - - -from openerp.report import report_sxw -from openerp.tools.translate import _ -import pooler -from datetime import datetime - -from account_financial_report_webkit.report.common_balance_reports\ - import CommonBalanceReportHeaderWebkit - - -def sign(number): - return cmp(number, 0) - - -class Parser(report_sxw.rml_parse, CommonBalanceReportHeaderWebkit): - - def __init__(self, cursor, uid, name, context): - super(Parser, self).__init__(cursor, uid, name, context=context) - self.pool = pooler.get_pool(self.cr.dbname) - self.cursor = self.cr - - self.localcontext.update({ - 'cr': cursor, - 'uid': uid, - 'report_name': _('Trial Balance'), - 'display_account': self._get_display_account, - 'display_account_raw': self._get_display_account_raw, - 'filter_form': self._get_filter, - 'target_move': self._get_target_move, - 'display_target_move': self._get_display_target_move, - 'accounts': self._get_accounts_br, - 'date_time': - self.formatLang(str(datetime.today()), date_time=True), - }) - - def set_context(self, objects, data, ids, report_type=None): - """Populate a ledger_lines attribute on each browse record that - will be used by mako template - """ - objects, new_ids, context_report_values = self.compute_balance_data( - data) - self.localcontext.update(context_report_values) - return super(Parser, self).set_context( - objects, data, new_ids, report_type=report_type) diff --git a/account_balance_ebp_csv_export/wizard/trial_balance_wizard_view.xml b/account_balance_ebp_csv_export/wizard/trial_balance_wizard_view.xml index 404328ff7..83c5dc8ea 100644 --- a/account_balance_ebp_csv_export/wizard/trial_balance_wizard_view.xml +++ b/account_balance_ebp_csv_export/wizard/trial_balance_wizard_view.xml @@ -1,5 +1,4 @@ - - - - - - - Trial Balance EBP CSV - account.account - account.report.trial.balance.ebp.csv - aeroo - genshi-raw - - account_balance_ebp_csv_export/report/trial_balance_ebp_csv.csv - utf_8 - loc - account_balance_ebp_csv_export/report/trial_balance_ebp_csv.py - csv - - - - diff --git a/account_balance_ebp_csv_export/report/trial_balance_ebp_csv.csv b/account_balance_ebp_csv_export/report/trial_balance_ebp_csv.csv deleted file mode 100644 index f57a42795..000000000 --- a/account_balance_ebp_csv_export/report/trial_balance_ebp_csv.csv +++ /dev/null @@ -1,11 +0,0 @@ -"Compte.Numero","Compte.Intitule","Balance.SldCptNDebit","Balance.SldCptNCredit","Balance.SldCptNSoldeD","Balance.SldCptNSoldeC" -{% for current_account in objects %}\ -{% if to_display_accounts[current_account.id] and current_account.type != 'view' %}\ -\ -"${current_account.code}",\ -"${current_account.name}",\ -${'%.2f' % current_account.debit},\ -${'%.2f' % current_account.credit},\ -${current_account.balance >= 0 and ('%.2f,0.00' % (current_account.balance)) or ('0.00,%.2f' % (current_account.balance * -1))} -{% end %}\ -{% end %} diff --git a/account_balance_ebp_csv_export/report/trial_balance_ebp_csv.py b/account_balance_ebp_csv_export/report/trial_balance_ebp_csv.py deleted file mode 100644 index 691be1b18..000000000 --- a/account_balance_ebp_csv_export/report/trial_balance_ebp_csv.py +++ /dev/null @@ -1,51 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################## -# -# Author: Guewen Baconnier -# Copyright Camptocamp SA 2011 -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# -############################################################################## - - -from openerp.report import report_sxw -from openerp import pooler -from openerp.addons.account_financial_report_webkit.report.\ - common_balance_reports import CommonBalanceReportHeaderWebkit - - -class Parser(report_sxw.rml_parse, CommonBalanceReportHeaderWebkit): - - def __init__(self, cursor, uid, name, context): - super(Parser, self).__init__(cursor, uid, name, context=context) - self.pool = pooler.get_pool(self.cr.dbname) - self.cursor = self.cr - self.localcontext.update({ - 'cr': cursor, - 'uid': uid, - 'display_account': self._get_display_account, - 'display_account_raw': self._get_display_account_raw, - 'filter_form': self._get_filter, - 'target_move': self._get_target_move, - 'display_target_move': self._get_display_target_move, - 'accounts': self._get_accounts_br, - }) - - def set_context(self, objects, data, ids, report_type=None): - objects, new_ids, context_report_values = self.compute_balance_data( - data) - self.localcontext.update(context_report_values) - return super(Parser, self).set_context( - objects, data, new_ids, report_type=report_type) diff --git a/account_balance_ebp_csv_export/wizard/__init__.py b/account_balance_ebp_csv_export/wizard/__init__.py deleted file mode 100644 index 4ba403ee3..000000000 --- a/account_balance_ebp_csv_export/wizard/__init__.py +++ /dev/null @@ -1,3 +0,0 @@ -# -*- coding: utf-8 -*- - -from . import trial_balance_wizard diff --git a/account_balance_ebp_csv_export/wizard/trial_balance_wizard.py b/account_balance_ebp_csv_export/wizard/trial_balance_wizard.py deleted file mode 100644 index 9c6ea9e8c..000000000 --- a/account_balance_ebp_csv_export/wizard/trial_balance_wizard.py +++ /dev/null @@ -1,35 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################## -# -# Account Balance EBP CSV export module for Odoo -# Copyright (C) 2014-2015 Akretion (http://www.akretion.com) -# @author Alexis de Lattre -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# -############################################################################## - -from openerp import models, api - - -class AccountTrialBalanceWizard(models.TransientModel): - _inherit = "trial.balance.webkit" - - @api.multi - def _print_report(self, data): - res = super(AccountTrialBalanceWizard, self)._print_report( - data) - if self.env.context.get('export_type') == 'ebp-csv': - res['report_name'] = 'account.report.trial.balance.ebp.csv' - return res diff --git a/account_balance_ebp_csv_export/wizard/trial_balance_wizard_view.xml b/account_balance_ebp_csv_export/wizard/trial_balance_wizard_view.xml deleted file mode 100644 index 83c5dc8ea..000000000 --- a/account_balance_ebp_csv_export/wizard/trial_balance_wizard_view.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - trial.balance.ebp.csv.export - trial.balance.webkit - - - - - - - - From 0cc038bf23e88defa598dc35363364897c5d297b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20BEAU?= Date: Tue, 1 Mar 2016 11:20:10 +0100 Subject: [PATCH 14/54] Revert "Revert "8.0 port module account_balance_ebp_csv_import with good history"" This reverts commit b823128a6f5287cc37a7e78d8e735c5e869ceacf. Conflicts: .travis.yml --- account_balance_ebp_csv_export/README.rst | 43 ++++++++++++++++ account_balance_ebp_csv_export/__init__.py | 3 ++ account_balance_ebp_csv_export/__openerp__.py | 37 ++++++++++++++ .../report/report.xml | 26 ++++++++++ .../report/trial_balance_ebp_csv.csv | 11 ++++ .../report/trial_balance_ebp_csv.py | 51 +++++++++++++++++++ .../wizard/__init__.py | 3 ++ .../wizard/trial_balance_wizard.py | 35 +++++++++++++ .../wizard/trial_balance_wizard_view.xml | 26 ++++++++++ 9 files changed, 235 insertions(+) create mode 100644 account_balance_ebp_csv_export/README.rst create mode 100644 account_balance_ebp_csv_export/__init__.py create mode 100644 account_balance_ebp_csv_export/__openerp__.py create mode 100644 account_balance_ebp_csv_export/report/report.xml create mode 100644 account_balance_ebp_csv_export/report/trial_balance_ebp_csv.csv create mode 100644 account_balance_ebp_csv_export/report/trial_balance_ebp_csv.py create mode 100644 account_balance_ebp_csv_export/wizard/__init__.py create mode 100644 account_balance_ebp_csv_export/wizard/trial_balance_wizard.py create mode 100644 account_balance_ebp_csv_export/wizard/trial_balance_wizard_view.xml diff --git a/account_balance_ebp_csv_export/README.rst b/account_balance_ebp_csv_export/README.rst new file mode 100644 index 000000000..2c78635b1 --- /dev/null +++ b/account_balance_ebp_csv_export/README.rst @@ -0,0 +1,43 @@ +Account Balance EBP CSV export +============================== + +This module adds a button *EBP csv File* next to the *Print* button on the Trial Balance wizard. It will export the Trial Balance in the CSV export format of the EBP accounting software. + +One of the possible usage scenario of this module is to export the trial balance to software dedicated to the `liasse fiscale `_ (French fiscal declaration) that accept CSV files from the EBP accounting software. This file has been successfully tested with the following software: + +* `Teledec `_, which is a SaaS solution for the + *liasse fiscale* with support for EDI transmission (Akretion France uses + Teledec to tele-transmit via EDI its Liasse fiscale to the French tax administration). + +* `Sage Etats Comptables et Fiscaux `, which is a Windows software to compute, edit and transmit via EDI the *liasse fiscale* and other fiscal declarations. It can import the CSV balance generated by this module if you select *EBP WIN* as import filter. + +Installation +============ + +This module depends on the module *report_aeroo*, available on it's `dedicated Github project `_. This module requires the Python librairy *aeroolib* available on this `Github project `_. + +Usage +===== + +To use this module, go to the menu Accounting > Reporting > Legal Reports > Accounting Reports > Trial Balance and you will see the button *EBP csv File*. + +Credits +======= + +Contributors +------------ + +* Alexis de Lattre + +Maintainer +---------- + +.. image:: http://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: http://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 http://odoo-community.org. diff --git a/account_balance_ebp_csv_export/__init__.py b/account_balance_ebp_csv_export/__init__.py new file mode 100644 index 000000000..3b4c3edf0 --- /dev/null +++ b/account_balance_ebp_csv_export/__init__.py @@ -0,0 +1,3 @@ +# -*- coding: utf-8 -*- + +from . import wizard diff --git a/account_balance_ebp_csv_export/__openerp__.py b/account_balance_ebp_csv_export/__openerp__.py new file mode 100644 index 000000000..8ed6beb2d --- /dev/null +++ b/account_balance_ebp_csv_export/__openerp__.py @@ -0,0 +1,37 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# Account Balance EBP CSV export module for Odoo +# Copyright (C) 2014-2015 Akretion (http://www.akretion.com) +# @author Alexis de Lattre +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + + +{ + 'name': 'Account Balance EBP CSV export', + 'version': '8.0.0.0.1', + 'category': 'Accounting & Finance', + 'license': 'AGPL-3', + 'author': 'Akretion,Odoo Community Association (OCA)', + 'website': 'http://www.akretion.com', + 'depends': ['report_aeroo', 'account_financial_report_webkit'], + 'data': [ + 'report/report.xml', + 'wizard/trial_balance_wizard_view.xml' + ], + 'installable': True, +} diff --git a/account_balance_ebp_csv_export/report/report.xml b/account_balance_ebp_csv_export/report/report.xml new file mode 100644 index 000000000..bd395b425 --- /dev/null +++ b/account_balance_ebp_csv_export/report/report.xml @@ -0,0 +1,26 @@ + + + + + + + + Trial Balance EBP CSV + account.account + account.report.trial.balance.ebp.csv + aeroo + genshi-raw + + account_balance_ebp_csv_export/report/trial_balance_ebp_csv.csv + utf_8 + loc + account_balance_ebp_csv_export/report/trial_balance_ebp_csv.py + csv + + + + diff --git a/account_balance_ebp_csv_export/report/trial_balance_ebp_csv.csv b/account_balance_ebp_csv_export/report/trial_balance_ebp_csv.csv new file mode 100644 index 000000000..f57a42795 --- /dev/null +++ b/account_balance_ebp_csv_export/report/trial_balance_ebp_csv.csv @@ -0,0 +1,11 @@ +"Compte.Numero","Compte.Intitule","Balance.SldCptNDebit","Balance.SldCptNCredit","Balance.SldCptNSoldeD","Balance.SldCptNSoldeC" +{% for current_account in objects %}\ +{% if to_display_accounts[current_account.id] and current_account.type != 'view' %}\ +\ +"${current_account.code}",\ +"${current_account.name}",\ +${'%.2f' % current_account.debit},\ +${'%.2f' % current_account.credit},\ +${current_account.balance >= 0 and ('%.2f,0.00' % (current_account.balance)) or ('0.00,%.2f' % (current_account.balance * -1))} +{% end %}\ +{% end %} diff --git a/account_balance_ebp_csv_export/report/trial_balance_ebp_csv.py b/account_balance_ebp_csv_export/report/trial_balance_ebp_csv.py new file mode 100644 index 000000000..691be1b18 --- /dev/null +++ b/account_balance_ebp_csv_export/report/trial_balance_ebp_csv.py @@ -0,0 +1,51 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# Author: Guewen Baconnier +# Copyright Camptocamp SA 2011 +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + + +from openerp.report import report_sxw +from openerp import pooler +from openerp.addons.account_financial_report_webkit.report.\ + common_balance_reports import CommonBalanceReportHeaderWebkit + + +class Parser(report_sxw.rml_parse, CommonBalanceReportHeaderWebkit): + + def __init__(self, cursor, uid, name, context): + super(Parser, self).__init__(cursor, uid, name, context=context) + self.pool = pooler.get_pool(self.cr.dbname) + self.cursor = self.cr + self.localcontext.update({ + 'cr': cursor, + 'uid': uid, + 'display_account': self._get_display_account, + 'display_account_raw': self._get_display_account_raw, + 'filter_form': self._get_filter, + 'target_move': self._get_target_move, + 'display_target_move': self._get_display_target_move, + 'accounts': self._get_accounts_br, + }) + + def set_context(self, objects, data, ids, report_type=None): + objects, new_ids, context_report_values = self.compute_balance_data( + data) + self.localcontext.update(context_report_values) + return super(Parser, self).set_context( + objects, data, new_ids, report_type=report_type) diff --git a/account_balance_ebp_csv_export/wizard/__init__.py b/account_balance_ebp_csv_export/wizard/__init__.py new file mode 100644 index 000000000..4ba403ee3 --- /dev/null +++ b/account_balance_ebp_csv_export/wizard/__init__.py @@ -0,0 +1,3 @@ +# -*- coding: utf-8 -*- + +from . import trial_balance_wizard diff --git a/account_balance_ebp_csv_export/wizard/trial_balance_wizard.py b/account_balance_ebp_csv_export/wizard/trial_balance_wizard.py new file mode 100644 index 000000000..9c6ea9e8c --- /dev/null +++ b/account_balance_ebp_csv_export/wizard/trial_balance_wizard.py @@ -0,0 +1,35 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# Account Balance EBP CSV export module for Odoo +# Copyright (C) 2014-2015 Akretion (http://www.akretion.com) +# @author Alexis de Lattre +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +from openerp import models, api + + +class AccountTrialBalanceWizard(models.TransientModel): + _inherit = "trial.balance.webkit" + + @api.multi + def _print_report(self, data): + res = super(AccountTrialBalanceWizard, self)._print_report( + data) + if self.env.context.get('export_type') == 'ebp-csv': + res['report_name'] = 'account.report.trial.balance.ebp.csv' + return res diff --git a/account_balance_ebp_csv_export/wizard/trial_balance_wizard_view.xml b/account_balance_ebp_csv_export/wizard/trial_balance_wizard_view.xml new file mode 100644 index 000000000..83c5dc8ea --- /dev/null +++ b/account_balance_ebp_csv_export/wizard/trial_balance_wizard_view.xml @@ -0,0 +1,26 @@ + + + + + + + + trial.balance.ebp.csv.export + trial.balance.webkit + + + + + + + + From d6642fe7832fb691bd21b6c56e86482883e476d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20BEAU?= Date: Tue, 1 Mar 2016 12:52:41 +0100 Subject: [PATCH 15/54] refactor code to remove the dependency on aeroo report --- account_balance_ebp_csv_export/__openerp__.py | 3 +- .../report/report.xml | 26 -------- .../report/trial_balance_ebp_csv.csv | 11 ---- .../report/trial_balance_ebp_csv.py | 51 -------------- .../wizard/trial_balance_wizard.py | 66 ++++++++++++++++++- 5 files changed, 66 insertions(+), 91 deletions(-) delete mode 100644 account_balance_ebp_csv_export/report/report.xml delete mode 100644 account_balance_ebp_csv_export/report/trial_balance_ebp_csv.csv delete mode 100644 account_balance_ebp_csv_export/report/trial_balance_ebp_csv.py diff --git a/account_balance_ebp_csv_export/__openerp__.py b/account_balance_ebp_csv_export/__openerp__.py index 8ed6beb2d..bc99ec5c0 100644 --- a/account_balance_ebp_csv_export/__openerp__.py +++ b/account_balance_ebp_csv_export/__openerp__.py @@ -28,9 +28,8 @@ 'license': 'AGPL-3', 'author': 'Akretion,Odoo Community Association (OCA)', 'website': 'http://www.akretion.com', - 'depends': ['report_aeroo', 'account_financial_report_webkit'], + 'depends': ['account_financial_report_webkit'], 'data': [ - 'report/report.xml', 'wizard/trial_balance_wizard_view.xml' ], 'installable': True, diff --git a/account_balance_ebp_csv_export/report/report.xml b/account_balance_ebp_csv_export/report/report.xml deleted file mode 100644 index bd395b425..000000000 --- a/account_balance_ebp_csv_export/report/report.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - Trial Balance EBP CSV - account.account - account.report.trial.balance.ebp.csv - aeroo - genshi-raw - - account_balance_ebp_csv_export/report/trial_balance_ebp_csv.csv - utf_8 - loc - account_balance_ebp_csv_export/report/trial_balance_ebp_csv.py - csv - - - - diff --git a/account_balance_ebp_csv_export/report/trial_balance_ebp_csv.csv b/account_balance_ebp_csv_export/report/trial_balance_ebp_csv.csv deleted file mode 100644 index f57a42795..000000000 --- a/account_balance_ebp_csv_export/report/trial_balance_ebp_csv.csv +++ /dev/null @@ -1,11 +0,0 @@ -"Compte.Numero","Compte.Intitule","Balance.SldCptNDebit","Balance.SldCptNCredit","Balance.SldCptNSoldeD","Balance.SldCptNSoldeC" -{% for current_account in objects %}\ -{% if to_display_accounts[current_account.id] and current_account.type != 'view' %}\ -\ -"${current_account.code}",\ -"${current_account.name}",\ -${'%.2f' % current_account.debit},\ -${'%.2f' % current_account.credit},\ -${current_account.balance >= 0 and ('%.2f,0.00' % (current_account.balance)) or ('0.00,%.2f' % (current_account.balance * -1))} -{% end %}\ -{% end %} diff --git a/account_balance_ebp_csv_export/report/trial_balance_ebp_csv.py b/account_balance_ebp_csv_export/report/trial_balance_ebp_csv.py deleted file mode 100644 index 691be1b18..000000000 --- a/account_balance_ebp_csv_export/report/trial_balance_ebp_csv.py +++ /dev/null @@ -1,51 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################## -# -# Author: Guewen Baconnier -# Copyright Camptocamp SA 2011 -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# -############################################################################## - - -from openerp.report import report_sxw -from openerp import pooler -from openerp.addons.account_financial_report_webkit.report.\ - common_balance_reports import CommonBalanceReportHeaderWebkit - - -class Parser(report_sxw.rml_parse, CommonBalanceReportHeaderWebkit): - - def __init__(self, cursor, uid, name, context): - super(Parser, self).__init__(cursor, uid, name, context=context) - self.pool = pooler.get_pool(self.cr.dbname) - self.cursor = self.cr - self.localcontext.update({ - 'cr': cursor, - 'uid': uid, - 'display_account': self._get_display_account, - 'display_account_raw': self._get_display_account_raw, - 'filter_form': self._get_filter, - 'target_move': self._get_target_move, - 'display_target_move': self._get_display_target_move, - 'accounts': self._get_accounts_br, - }) - - def set_context(self, objects, data, ids, report_type=None): - objects, new_ids, context_report_values = self.compute_balance_data( - data) - self.localcontext.update(context_report_values) - return super(Parser, self).set_context( - objects, data, new_ids, report_type=report_type) diff --git a/account_balance_ebp_csv_export/wizard/trial_balance_wizard.py b/account_balance_ebp_csv_export/wizard/trial_balance_wizard.py index 9c6ea9e8c..1c974acc3 100644 --- a/account_balance_ebp_csv_export/wizard/trial_balance_wizard.py +++ b/account_balance_ebp_csv_export/wizard/trial_balance_wizard.py @@ -21,6 +21,70 @@ ############################################################################## from openerp import models, api +from openerp.report import interface +from openerp.addons.account_financial_report_webkit.report.\ + trial_balance import TrialBalanceWebkit +import unicodecsv + +try: + from cStringIO import StringIO +except ImportError: + from StringIO import StringIO + + +class ReportEBP(interface.report_int): + + def create(self, cr, uid, ids, data, context=None): + def f2s(value): + return '%.2f' % value + + # Get objects and context from Webkit Parser + parser = TrialBalanceWebkit( + cr, uid, 'ebp.parser', context=context) + objects, new_ids, context_report_values =\ + parser.compute_balance_data(data) + + # Get the list of visible account + to_display_accounts = context_report_values['to_display_accounts'] + + # Init file and write header + f = StringIO() + w = unicodecsv.writer(f, delimiter=',', encoding='utf-8') + header = [ + "Compte.Numero", + "Compte.Intitule", + "Balance.SldCptNDebit", + "Balance.SldCptNCredit", + "Balance.SldCptNSoldeD", + "Balance.SldCptNSoldeC", + ] + w.writerow(header) + + # Write row + for current_account in objects: + if to_display_accounts.get(current_account.id) \ + and current_account.type != 'view': + if current_account.balance >= 0: + bal_debit = current_account.balance + bal_credit = 0 + else: + bal_credit = current_account.balance + bal_debit = 0 + + w.writerow([ + current_account.code, + current_account.name, + f2s(current_account.debit), + f2s(current_account.credit), + f2s(bal_debit), + f2s(bal_credit), + ]) + # Read and return File + f.seek(0) + data = f.read() + return (data, 'csv') + +ReportEBP('report.trial.balance.ebp') class AccountTrialBalanceWizard(models.TransientModel): @@ -31,5 +95,5 @@ def _print_report(self, data): res = super(AccountTrialBalanceWizard, self)._print_report( data) if self.env.context.get('export_type') == 'ebp-csv': - res['report_name'] = 'account.report.trial.balance.ebp.csv' + res['report_name'] = 'trial.balance.ebp' return res From c43235ce2c548df00b31587a7b9861261820e576 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20BEAU?= Date: Tue, 1 Mar 2016 12:56:38 +0100 Subject: [PATCH 16/54] fix missing external dependency --- account_balance_ebp_csv_export/__openerp__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/account_balance_ebp_csv_export/__openerp__.py b/account_balance_ebp_csv_export/__openerp__.py index bc99ec5c0..7eb2e5d95 100644 --- a/account_balance_ebp_csv_export/__openerp__.py +++ b/account_balance_ebp_csv_export/__openerp__.py @@ -33,4 +33,5 @@ 'wizard/trial_balance_wizard_view.xml' ], 'installable': True, + 'external_dependencies': {'python': ['unicodecsv']}, } From 7e6e4ad41de5cada83d071db9c2d820b01d32e8b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20BEAU?= Date: Tue, 1 Mar 2016 15:52:19 +0100 Subject: [PATCH 17/54] fix file generation --- .../wizard/trial_balance_wizard.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/account_balance_ebp_csv_export/wizard/trial_balance_wizard.py b/account_balance_ebp_csv_export/wizard/trial_balance_wizard.py index 1c974acc3..6812a1caf 100644 --- a/account_balance_ebp_csv_export/wizard/trial_balance_wizard.py +++ b/account_balance_ebp_csv_export/wizard/trial_balance_wizard.py @@ -49,7 +49,10 @@ def f2s(value): # Init file and write header f = StringIO() - w = unicodecsv.writer(f, delimiter=',', encoding='utf-8') + w = unicodecsv.writer( + f, delimiter=',', encoding='utf-8', + quoting=unicodecsv.QUOTE_MINIMAL) + header = [ "Compte.Numero", "Compte.Intitule", @@ -68,7 +71,7 @@ def f2s(value): bal_debit = current_account.balance bal_credit = 0 else: - bal_credit = current_account.balance + bal_credit = -current_account.balance bal_debit = 0 w.writerow([ From a9428f3fb63904e9c756ba4e0c3bb7c486021d79 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20BEAU?= Date: Tue, 27 Sep 2016 22:47:44 +0200 Subject: [PATCH 18/54] fix issue with date filter see Alexis change on aeroo version https://github.com/akretion/l10n-france/commit/5e8407c12e5ceeae274f76cc87a6bf5303fe17dc --- .../wizard/trial_balance_wizard.py | 19 ++++++++----------- 1 file changed, 8 insertions(+), 11 deletions(-) diff --git a/account_balance_ebp_csv_export/wizard/trial_balance_wizard.py b/account_balance_ebp_csv_export/wizard/trial_balance_wizard.py index 6812a1caf..9ad946589 100644 --- a/account_balance_ebp_csv_export/wizard/trial_balance_wizard.py +++ b/account_balance_ebp_csv_export/wizard/trial_balance_wizard.py @@ -41,12 +41,9 @@ def f2s(value): # Get objects and context from Webkit Parser parser = TrialBalanceWebkit( cr, uid, 'ebp.parser', context=context) - objects, new_ids, context_report_values =\ + objects, new_ids, ctx_val =\ parser.compute_balance_data(data) - # Get the list of visible account - to_display_accounts = context_report_values['to_display_accounts'] - # Init file and write header f = StringIO() w = unicodecsv.writer( @@ -62,23 +59,23 @@ def f2s(value): "Balance.SldCptNSoldeC", ] w.writerow(header) - # Write row for current_account in objects: - if to_display_accounts.get(current_account.id) \ + if ctx_val['to_display_accounts'].get(current_account.id) \ and current_account.type != 'view': - if current_account.balance >= 0: - bal_debit = current_account.balance + bal = ctx_val['balance_accounts'][current_account.id] + if bal >= 0: + bal_debit = bal bal_credit = 0 else: - bal_credit = -current_account.balance + bal_credit = -bal bal_debit = 0 w.writerow([ current_account.code, current_account.name, - f2s(current_account.debit), - f2s(current_account.credit), + f2s(ctx_val['debit_accounts'][current_account.id]), + f2s(ctx_val['credit_accounts'][current_account.id]), f2s(bal_debit), f2s(bal_credit), ]) From 16aa387906d2f84ebd367e7aa1fe6d368706a42f Mon Sep 17 00:00:00 2001 From: Alexis de Lattre Date: Sat, 1 Oct 2016 00:01:25 +0200 Subject: [PATCH 19/54] Update README.rst to latest OCA template MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add Sébastien in the list of authors Update to latest OCA conventions --- account_balance_ebp_csv_export/README.rst | 43 ++++++++++++++----- account_balance_ebp_csv_export/__openerp__.py | 25 ++--------- .../wizard/trial_balance_wizard.py | 24 ++--------- 3 files changed, 39 insertions(+), 53 deletions(-) diff --git a/account_balance_ebp_csv_export/README.rst b/account_balance_ebp_csv_export/README.rst index 2c78635b1..df0bdab64 100644 --- a/account_balance_ebp_csv_export/README.rst +++ b/account_balance_ebp_csv_export/README.rst @@ -1,3 +1,8 @@ +.. 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 Balance EBP CSV export ============================== @@ -6,20 +11,33 @@ This module adds a button *EBP csv File* next to the *Print* button on the Trial One of the possible usage scenario of this module is to export the trial balance to software dedicated to the `liasse fiscale `_ (French fiscal declaration) that accept CSV files from the EBP accounting software. This file has been successfully tested with the following software: * `Teledec `_, which is a SaaS solution for the - *liasse fiscale* with support for EDI transmission (Akretion France uses - Teledec to tele-transmit via EDI its Liasse fiscale to the French tax administration). + *liasse fiscale* with support for EDI transmission + (`Akretion France `_ uses Teledec to tele-transmit + via EDI its Liasse fiscale to the French tax administration). -* `Sage Etats Comptables et Fiscaux `, which is a Windows software to compute, edit and transmit via EDI the *liasse fiscale* and other fiscal declarations. It can import the CSV balance generated by this module if you select *EBP WIN* as import filter. +* `Sage Etats Comptables et Fiscaux `, which is a Windows software to compute, edit and transmit via EDI the *liasse fiscale* and other fiscal declarations. It can import the CSV balance generated by this module if you select *EBP WIN* as import filter. WARNING: it has not yet be re-tested with Sage Etats Comptables et Fiscaux following the switch from the aeroo-based version to the aeroo-free version (re-testing is needed because the CSV is not formatted exactly the same way). -Installation -============ +Configuration +============= -This module depends on the module *report_aeroo*, available on it's `dedicated Github project `_. This module requires the Python librairy *aeroolib* available on this `Github project `_. +This module doesn't require any configuration. Usage ===== -To use this module, go to the menu Accounting > Reporting > Legal Reports > Accounting Reports > Trial Balance and you will see the button *EBP csv File*. +To use this module, go to the menu *Accounting > Reporting > Legal Reports > Accounting Reports > Trial Balance* and you will see the button *EBP csv File*. + +.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas + :alt: Try me on Runbot + :target: https://runbot.odoo-community.org/runbot/121/8.0 + +Bug Tracker +=========== + +Bugs are tracked on `GitHub Issues +`_. In case of trouble, please +check there if your issue has already been reported. If you spotted it first, +help us smashing it by providing a detailed and welcomed feedback. Credits ======= @@ -27,17 +45,20 @@ Credits Contributors ------------ +* Sébastien Beau * Alexis de Lattre Maintainer ---------- -.. image:: http://odoo-community.org/logo.png +.. image:: https://odoo-community.org/logo.png :alt: Odoo Community Association - :target: http://odoo-community.org + :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. +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 http://odoo-community.org. +To contribute to this module, please visit https://odoo-community.org. diff --git a/account_balance_ebp_csv_export/__openerp__.py b/account_balance_ebp_csv_export/__openerp__.py index 7eb2e5d95..6317794fb 100644 --- a/account_balance_ebp_csv_export/__openerp__.py +++ b/account_balance_ebp_csv_export/__openerp__.py @@ -1,29 +1,10 @@ # -*- coding: utf-8 -*- -############################################################################## -# -# Account Balance EBP CSV export module for Odoo -# Copyright (C) 2014-2015 Akretion (http://www.akretion.com) -# @author Alexis de Lattre -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# -############################################################################## - +# © 2014-2016 Akretion (Alexis de Lattre ) +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). { 'name': 'Account Balance EBP CSV export', - 'version': '8.0.0.0.1', + 'version': '8.0.1.1.0', 'category': 'Accounting & Finance', 'license': 'AGPL-3', 'author': 'Akretion,Odoo Community Association (OCA)', diff --git a/account_balance_ebp_csv_export/wizard/trial_balance_wizard.py b/account_balance_ebp_csv_export/wizard/trial_balance_wizard.py index 9ad946589..3943c1d9d 100644 --- a/account_balance_ebp_csv_export/wizard/trial_balance_wizard.py +++ b/account_balance_ebp_csv_export/wizard/trial_balance_wizard.py @@ -1,24 +1,8 @@ # -*- coding: utf-8 -*- -############################################################################## -# -# Account Balance EBP CSV export module for Odoo -# Copyright (C) 2014-2015 Akretion (http://www.akretion.com) -# @author Alexis de Lattre -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# -############################################################################## +# © 2016 Akretion France +# @author: Sébastien Beau +# @author: Alexis de Lattre +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). from openerp import models, api from openerp.report import interface From 414735cf1d035f29af418c196ef72994dac2b3f6 Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Sat, 8 Oct 2016 11:21:43 -0400 Subject: [PATCH 20/54] OCA Transbot updated translations from Transifex --- account_balance_ebp_csv_export/i18n/am.po | 34 ++++++++++++++++++++ account_balance_ebp_csv_export/i18n/ar.po | 34 ++++++++++++++++++++ account_balance_ebp_csv_export/i18n/bg.po | 34 ++++++++++++++++++++ account_balance_ebp_csv_export/i18n/bs.po | 34 ++++++++++++++++++++ account_balance_ebp_csv_export/i18n/ca.po | 34 ++++++++++++++++++++ account_balance_ebp_csv_export/i18n/cs.po | 34 ++++++++++++++++++++ account_balance_ebp_csv_export/i18n/da.po | 34 ++++++++++++++++++++ account_balance_ebp_csv_export/i18n/de.po | 34 ++++++++++++++++++++ account_balance_ebp_csv_export/i18n/el_GR.po | 34 ++++++++++++++++++++ account_balance_ebp_csv_export/i18n/en_AU.po | 34 ++++++++++++++++++++ account_balance_ebp_csv_export/i18n/en_GB.po | 34 ++++++++++++++++++++ account_balance_ebp_csv_export/i18n/es.po | 34 ++++++++++++++++++++ account_balance_ebp_csv_export/i18n/es_AR.po | 34 ++++++++++++++++++++ account_balance_ebp_csv_export/i18n/es_CO.po | 34 ++++++++++++++++++++ account_balance_ebp_csv_export/i18n/es_CR.po | 34 ++++++++++++++++++++ account_balance_ebp_csv_export/i18n/es_DO.po | 34 ++++++++++++++++++++ account_balance_ebp_csv_export/i18n/es_EC.po | 34 ++++++++++++++++++++ account_balance_ebp_csv_export/i18n/es_ES.po | 34 ++++++++++++++++++++ account_balance_ebp_csv_export/i18n/es_MX.po | 34 ++++++++++++++++++++ account_balance_ebp_csv_export/i18n/et.po | 34 ++++++++++++++++++++ account_balance_ebp_csv_export/i18n/eu.po | 34 ++++++++++++++++++++ account_balance_ebp_csv_export/i18n/fa.po | 34 ++++++++++++++++++++ account_balance_ebp_csv_export/i18n/fi.po | 34 ++++++++++++++++++++ account_balance_ebp_csv_export/i18n/fr.po | 34 ++++++++++++++++++++ account_balance_ebp_csv_export/i18n/fr_CA.po | 34 ++++++++++++++++++++ account_balance_ebp_csv_export/i18n/fr_CH.po | 34 ++++++++++++++++++++ account_balance_ebp_csv_export/i18n/gl.po | 34 ++++++++++++++++++++ account_balance_ebp_csv_export/i18n/he.po | 34 ++++++++++++++++++++ account_balance_ebp_csv_export/i18n/hr.po | 34 ++++++++++++++++++++ account_balance_ebp_csv_export/i18n/hu.po | 34 ++++++++++++++++++++ account_balance_ebp_csv_export/i18n/id.po | 34 ++++++++++++++++++++ account_balance_ebp_csv_export/i18n/it.po | 34 ++++++++++++++++++++ account_balance_ebp_csv_export/i18n/ja.po | 34 ++++++++++++++++++++ account_balance_ebp_csv_export/i18n/ko.po | 34 ++++++++++++++++++++ account_balance_ebp_csv_export/i18n/lo.po | 34 ++++++++++++++++++++ account_balance_ebp_csv_export/i18n/lt.po | 34 ++++++++++++++++++++ account_balance_ebp_csv_export/i18n/lt_LT.po | 34 ++++++++++++++++++++ account_balance_ebp_csv_export/i18n/lv.po | 34 ++++++++++++++++++++ account_balance_ebp_csv_export/i18n/mk.po | 34 ++++++++++++++++++++ account_balance_ebp_csv_export/i18n/mn.po | 34 ++++++++++++++++++++ account_balance_ebp_csv_export/i18n/nb.po | 34 ++++++++++++++++++++ account_balance_ebp_csv_export/i18n/nl.po | 34 ++++++++++++++++++++ account_balance_ebp_csv_export/i18n/nl_BE.po | 34 ++++++++++++++++++++ account_balance_ebp_csv_export/i18n/pl.po | 34 ++++++++++++++++++++ account_balance_ebp_csv_export/i18n/pt.po | 34 ++++++++++++++++++++ account_balance_ebp_csv_export/i18n/pt_BR.po | 34 ++++++++++++++++++++ account_balance_ebp_csv_export/i18n/pt_PT.po | 34 ++++++++++++++++++++ account_balance_ebp_csv_export/i18n/ro.po | 34 ++++++++++++++++++++ account_balance_ebp_csv_export/i18n/ru.po | 34 ++++++++++++++++++++ account_balance_ebp_csv_export/i18n/sk.po | 34 ++++++++++++++++++++ account_balance_ebp_csv_export/i18n/sl.po | 34 ++++++++++++++++++++ account_balance_ebp_csv_export/i18n/sv.po | 34 ++++++++++++++++++++ account_balance_ebp_csv_export/i18n/th.po | 34 ++++++++++++++++++++ account_balance_ebp_csv_export/i18n/tr.po | 34 ++++++++++++++++++++ account_balance_ebp_csv_export/i18n/uk.po | 34 ++++++++++++++++++++ account_balance_ebp_csv_export/i18n/vi.po | 34 ++++++++++++++++++++ account_balance_ebp_csv_export/i18n/vi_VN.po | 34 ++++++++++++++++++++ account_balance_ebp_csv_export/i18n/zh_CN.po | 34 ++++++++++++++++++++ account_balance_ebp_csv_export/i18n/zh_TW.po | 34 ++++++++++++++++++++ 59 files changed, 2006 insertions(+) create mode 100644 account_balance_ebp_csv_export/i18n/am.po create mode 100644 account_balance_ebp_csv_export/i18n/ar.po create mode 100644 account_balance_ebp_csv_export/i18n/bg.po create mode 100644 account_balance_ebp_csv_export/i18n/bs.po create mode 100644 account_balance_ebp_csv_export/i18n/ca.po create mode 100644 account_balance_ebp_csv_export/i18n/cs.po create mode 100644 account_balance_ebp_csv_export/i18n/da.po create mode 100644 account_balance_ebp_csv_export/i18n/de.po create mode 100644 account_balance_ebp_csv_export/i18n/el_GR.po create mode 100644 account_balance_ebp_csv_export/i18n/en_AU.po create mode 100644 account_balance_ebp_csv_export/i18n/en_GB.po create mode 100644 account_balance_ebp_csv_export/i18n/es.po create mode 100644 account_balance_ebp_csv_export/i18n/es_AR.po create mode 100644 account_balance_ebp_csv_export/i18n/es_CO.po create mode 100644 account_balance_ebp_csv_export/i18n/es_CR.po create mode 100644 account_balance_ebp_csv_export/i18n/es_DO.po create mode 100644 account_balance_ebp_csv_export/i18n/es_EC.po create mode 100644 account_balance_ebp_csv_export/i18n/es_ES.po create mode 100644 account_balance_ebp_csv_export/i18n/es_MX.po create mode 100644 account_balance_ebp_csv_export/i18n/et.po create mode 100644 account_balance_ebp_csv_export/i18n/eu.po create mode 100644 account_balance_ebp_csv_export/i18n/fa.po create mode 100644 account_balance_ebp_csv_export/i18n/fi.po create mode 100644 account_balance_ebp_csv_export/i18n/fr.po create mode 100644 account_balance_ebp_csv_export/i18n/fr_CA.po create mode 100644 account_balance_ebp_csv_export/i18n/fr_CH.po create mode 100644 account_balance_ebp_csv_export/i18n/gl.po create mode 100644 account_balance_ebp_csv_export/i18n/he.po create mode 100644 account_balance_ebp_csv_export/i18n/hr.po create mode 100644 account_balance_ebp_csv_export/i18n/hu.po create mode 100644 account_balance_ebp_csv_export/i18n/id.po create mode 100644 account_balance_ebp_csv_export/i18n/it.po create mode 100644 account_balance_ebp_csv_export/i18n/ja.po create mode 100644 account_balance_ebp_csv_export/i18n/ko.po create mode 100644 account_balance_ebp_csv_export/i18n/lo.po create mode 100644 account_balance_ebp_csv_export/i18n/lt.po create mode 100644 account_balance_ebp_csv_export/i18n/lt_LT.po create mode 100644 account_balance_ebp_csv_export/i18n/lv.po create mode 100644 account_balance_ebp_csv_export/i18n/mk.po create mode 100644 account_balance_ebp_csv_export/i18n/mn.po create mode 100644 account_balance_ebp_csv_export/i18n/nb.po create mode 100644 account_balance_ebp_csv_export/i18n/nl.po create mode 100644 account_balance_ebp_csv_export/i18n/nl_BE.po create mode 100644 account_balance_ebp_csv_export/i18n/pl.po create mode 100644 account_balance_ebp_csv_export/i18n/pt.po create mode 100644 account_balance_ebp_csv_export/i18n/pt_BR.po create mode 100644 account_balance_ebp_csv_export/i18n/pt_PT.po create mode 100644 account_balance_ebp_csv_export/i18n/ro.po create mode 100644 account_balance_ebp_csv_export/i18n/ru.po create mode 100644 account_balance_ebp_csv_export/i18n/sk.po create mode 100644 account_balance_ebp_csv_export/i18n/sl.po create mode 100644 account_balance_ebp_csv_export/i18n/sv.po create mode 100644 account_balance_ebp_csv_export/i18n/th.po create mode 100644 account_balance_ebp_csv_export/i18n/tr.po create mode 100644 account_balance_ebp_csv_export/i18n/uk.po create mode 100644 account_balance_ebp_csv_export/i18n/vi.po create mode 100644 account_balance_ebp_csv_export/i18n/vi_VN.po create mode 100644 account_balance_ebp_csv_export/i18n/zh_CN.po create mode 100644 account_balance_ebp_csv_export/i18n/zh_TW.po diff --git a/account_balance_ebp_csv_export/i18n/am.po b/account_balance_ebp_csv_export/i18n/am.po new file mode 100644 index 000000000..e6bad64b5 --- /dev/null +++ b/account_balance_ebp_csv_export/i18n/am.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_balance_ebp_csv_export +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-10-01 04:00+0000\n" +"PO-Revision-Date: 2016-10-01 04:00+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Amharic (https://www.transifex.com/oca/teams/23907/am/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: am\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: account_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "EBP csv File" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit +msgid "Trial Balance Report" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "or" +msgstr "ወይም" diff --git a/account_balance_ebp_csv_export/i18n/ar.po b/account_balance_ebp_csv_export/i18n/ar.po new file mode 100644 index 000000000..008b60494 --- /dev/null +++ b/account_balance_ebp_csv_export/i18n/ar.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_balance_ebp_csv_export +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-10-01 04:00+0000\n" +"PO-Revision-Date: 2016-10-01 04:00+0000\n" +"Last-Translator: OCA Transbot , 2016\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_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "EBP csv File" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit +msgid "Trial Balance Report" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "or" +msgstr "أو" diff --git a/account_balance_ebp_csv_export/i18n/bg.po b/account_balance_ebp_csv_export/i18n/bg.po new file mode 100644 index 000000000..a18e5d7a0 --- /dev/null +++ b/account_balance_ebp_csv_export/i18n/bg.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_balance_ebp_csv_export +# +# Translators: +# Kaloyan Naumov , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-10-01 04:00+0000\n" +"PO-Revision-Date: 2016-10-01 04:00+0000\n" +"Last-Translator: Kaloyan Naumov , 2016\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_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "EBP csv File" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit +msgid "Trial Balance Report" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "or" +msgstr "или" diff --git a/account_balance_ebp_csv_export/i18n/bs.po b/account_balance_ebp_csv_export/i18n/bs.po new file mode 100644 index 000000000..fee514d1b --- /dev/null +++ b/account_balance_ebp_csv_export/i18n/bs.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_balance_ebp_csv_export +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-10-01 04:00+0000\n" +"PO-Revision-Date: 2016-10-01 04:00+0000\n" +"Last-Translator: OCA Transbot , 2016\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_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "EBP csv File" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit +msgid "Trial Balance Report" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "or" +msgstr "ili" diff --git a/account_balance_ebp_csv_export/i18n/ca.po b/account_balance_ebp_csv_export/i18n/ca.po new file mode 100644 index 000000000..92e46202d --- /dev/null +++ b/account_balance_ebp_csv_export/i18n/ca.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_balance_ebp_csv_export +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-10-01 04:00+0000\n" +"PO-Revision-Date: 2016-10-01 04:00+0000\n" +"Last-Translator: OCA Transbot , 2016\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_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "EBP csv File" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit +msgid "Trial Balance Report" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "or" +msgstr "o " diff --git a/account_balance_ebp_csv_export/i18n/cs.po b/account_balance_ebp_csv_export/i18n/cs.po new file mode 100644 index 000000000..126c2548b --- /dev/null +++ b/account_balance_ebp_csv_export/i18n/cs.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_balance_ebp_csv_export +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-10-01 04:00+0000\n" +"PO-Revision-Date: 2016-10-01 04:00+0000\n" +"Last-Translator: OCA Transbot , 2016\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_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "EBP csv File" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit +msgid "Trial Balance Report" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "or" +msgstr "nebo" diff --git a/account_balance_ebp_csv_export/i18n/da.po b/account_balance_ebp_csv_export/i18n/da.po new file mode 100644 index 000000000..dbbbf3f9c --- /dev/null +++ b/account_balance_ebp_csv_export/i18n/da.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_balance_ebp_csv_export +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-10-01 04:00+0000\n" +"PO-Revision-Date: 2016-10-01 04:00+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Danish (https://www.transifex.com/oca/teams/23907/da/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: da\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "EBP csv File" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit +msgid "Trial Balance Report" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "or" +msgstr "eller" diff --git a/account_balance_ebp_csv_export/i18n/de.po b/account_balance_ebp_csv_export/i18n/de.po new file mode 100644 index 000000000..c24fe366c --- /dev/null +++ b/account_balance_ebp_csv_export/i18n/de.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_balance_ebp_csv_export +# +# Translators: +# Ermin Trevisan , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-10-01 04:00+0000\n" +"PO-Revision-Date: 2016-10-01 04:00+0000\n" +"Last-Translator: Ermin Trevisan , 2016\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_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "EBP csv File" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit +msgid "Trial Balance Report" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "or" +msgstr "oder" diff --git a/account_balance_ebp_csv_export/i18n/el_GR.po b/account_balance_ebp_csv_export/i18n/el_GR.po new file mode 100644 index 000000000..6654a765e --- /dev/null +++ b/account_balance_ebp_csv_export/i18n/el_GR.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_balance_ebp_csv_export +# +# Translators: +# Kostas Goutoudis , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-10-01 04:00+0000\n" +"PO-Revision-Date: 2016-10-01 04:00+0000\n" +"Last-Translator: Kostas Goutoudis , 2016\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_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "EBP csv File" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit +msgid "Trial Balance Report" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "or" +msgstr "ή" diff --git a/account_balance_ebp_csv_export/i18n/en_AU.po b/account_balance_ebp_csv_export/i18n/en_AU.po new file mode 100644 index 000000000..bb80c0be3 --- /dev/null +++ b/account_balance_ebp_csv_export/i18n/en_AU.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_balance_ebp_csv_export +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-10-01 04:00+0000\n" +"PO-Revision-Date: 2016-10-01 04:00+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: English (Australia) (https://www.transifex.com/oca/teams/23907/en_AU/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: en_AU\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "EBP csv File" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit +msgid "Trial Balance Report" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "or" +msgstr "or" diff --git a/account_balance_ebp_csv_export/i18n/en_GB.po b/account_balance_ebp_csv_export/i18n/en_GB.po new file mode 100644 index 000000000..eafbc91b8 --- /dev/null +++ b/account_balance_ebp_csv_export/i18n/en_GB.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_balance_ebp_csv_export +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-10-01 04:00+0000\n" +"PO-Revision-Date: 2016-10-01 04:00+0000\n" +"Last-Translator: OCA Transbot , 2016\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_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "EBP csv File" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit +msgid "Trial Balance Report" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "or" +msgstr "or" diff --git a/account_balance_ebp_csv_export/i18n/es.po b/account_balance_ebp_csv_export/i18n/es.po new file mode 100644 index 000000000..146b9d836 --- /dev/null +++ b/account_balance_ebp_csv_export/i18n/es.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_balance_ebp_csv_export +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-10-01 04:00+0000\n" +"PO-Revision-Date: 2016-10-01 04:00+0000\n" +"Last-Translator: OCA Transbot , 2016\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_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "EBP csv File" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit +msgid "Trial Balance Report" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "or" +msgstr "o" diff --git a/account_balance_ebp_csv_export/i18n/es_AR.po b/account_balance_ebp_csv_export/i18n/es_AR.po new file mode 100644 index 000000000..bc4329b14 --- /dev/null +++ b/account_balance_ebp_csv_export/i18n/es_AR.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_balance_ebp_csv_export +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-10-01 04:00+0000\n" +"PO-Revision-Date: 2016-10-01 04:00+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/teams/23907/es_AR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_AR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "EBP csv File" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit +msgid "Trial Balance Report" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "or" +msgstr "o" diff --git a/account_balance_ebp_csv_export/i18n/es_CO.po b/account_balance_ebp_csv_export/i18n/es_CO.po new file mode 100644 index 000000000..088b5a3ba --- /dev/null +++ b/account_balance_ebp_csv_export/i18n/es_CO.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_balance_ebp_csv_export +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-10-01 04:00+0000\n" +"PO-Revision-Date: 2016-10-01 04:00+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/es_CO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "EBP csv File" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit +msgid "Trial Balance Report" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "or" +msgstr "o" diff --git a/account_balance_ebp_csv_export/i18n/es_CR.po b/account_balance_ebp_csv_export/i18n/es_CR.po new file mode 100644 index 000000000..a3a6bda8a --- /dev/null +++ b/account_balance_ebp_csv_export/i18n/es_CR.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_balance_ebp_csv_export +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-10-01 04:00+0000\n" +"PO-Revision-Date: 2016-10-01 04:00+0000\n" +"Last-Translator: OCA Transbot , 2016\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_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "EBP csv File" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit +msgid "Trial Balance Report" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "or" +msgstr "o" diff --git a/account_balance_ebp_csv_export/i18n/es_DO.po b/account_balance_ebp_csv_export/i18n/es_DO.po new file mode 100644 index 000000000..ede4d3105 --- /dev/null +++ b/account_balance_ebp_csv_export/i18n/es_DO.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_balance_ebp_csv_export +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-10-01 04:00+0000\n" +"PO-Revision-Date: 2016-10-01 04:00+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/oca/teams/23907/es_DO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_DO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "EBP csv File" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit +msgid "Trial Balance Report" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "or" +msgstr "ó" diff --git a/account_balance_ebp_csv_export/i18n/es_EC.po b/account_balance_ebp_csv_export/i18n/es_EC.po new file mode 100644 index 000000000..fda4d285a --- /dev/null +++ b/account_balance_ebp_csv_export/i18n/es_EC.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_balance_ebp_csv_export +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-10-01 04:00+0000\n" +"PO-Revision-Date: 2016-10-01 04:00+0000\n" +"Last-Translator: OCA Transbot , 2016\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_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "EBP csv File" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit +msgid "Trial Balance Report" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "or" +msgstr "o" diff --git a/account_balance_ebp_csv_export/i18n/es_ES.po b/account_balance_ebp_csv_export/i18n/es_ES.po new file mode 100644 index 000000000..90666f0b7 --- /dev/null +++ b/account_balance_ebp_csv_export/i18n/es_ES.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_balance_ebp_csv_export +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-10-01 04:00+0000\n" +"PO-Revision-Date: 2016-10-01 04:00+0000\n" +"Last-Translator: OCA Transbot , 2016\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_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "EBP csv File" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit +msgid "Trial Balance Report" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "or" +msgstr "o" diff --git a/account_balance_ebp_csv_export/i18n/es_MX.po b/account_balance_ebp_csv_export/i18n/es_MX.po new file mode 100644 index 000000000..57daa8418 --- /dev/null +++ b/account_balance_ebp_csv_export/i18n/es_MX.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_balance_ebp_csv_export +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-10-01 04:00+0000\n" +"PO-Revision-Date: 2016-10-01 04:00+0000\n" +"Last-Translator: OCA Transbot , 2016\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_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "EBP csv File" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit +msgid "Trial Balance Report" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "or" +msgstr "o" diff --git a/account_balance_ebp_csv_export/i18n/et.po b/account_balance_ebp_csv_export/i18n/et.po new file mode 100644 index 000000000..e41bffe11 --- /dev/null +++ b/account_balance_ebp_csv_export/i18n/et.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_balance_ebp_csv_export +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-10-01 04:00+0000\n" +"PO-Revision-Date: 2016-10-01 04:00+0000\n" +"Last-Translator: OCA Transbot , 2016\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_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "EBP csv File" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit +msgid "Trial Balance Report" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "or" +msgstr "või" diff --git a/account_balance_ebp_csv_export/i18n/eu.po b/account_balance_ebp_csv_export/i18n/eu.po new file mode 100644 index 000000000..adde5457b --- /dev/null +++ b/account_balance_ebp_csv_export/i18n/eu.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_balance_ebp_csv_export +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-10-01 04:00+0000\n" +"PO-Revision-Date: 2016-10-01 04:00+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Basque (https://www.transifex.com/oca/teams/23907/eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "EBP csv File" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit +msgid "Trial Balance Report" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "or" +msgstr "edo" diff --git a/account_balance_ebp_csv_export/i18n/fa.po b/account_balance_ebp_csv_export/i18n/fa.po new file mode 100644 index 000000000..1fa674bd1 --- /dev/null +++ b/account_balance_ebp_csv_export/i18n/fa.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_balance_ebp_csv_export +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-10-01 04:00+0000\n" +"PO-Revision-Date: 2016-10-01 04:00+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Persian (https://www.transifex.com/oca/teams/23907/fa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fa\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: account_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "EBP csv File" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit +msgid "Trial Balance Report" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "or" +msgstr "یا" diff --git a/account_balance_ebp_csv_export/i18n/fi.po b/account_balance_ebp_csv_export/i18n/fi.po new file mode 100644 index 000000000..1a803ae62 --- /dev/null +++ b/account_balance_ebp_csv_export/i18n/fi.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_balance_ebp_csv_export +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-10-01 04:00+0000\n" +"PO-Revision-Date: 2016-10-01 04:00+0000\n" +"Last-Translator: OCA Transbot , 2016\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_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "EBP csv File" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit +msgid "Trial Balance Report" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "or" +msgstr "tai" diff --git a/account_balance_ebp_csv_export/i18n/fr.po b/account_balance_ebp_csv_export/i18n/fr.po new file mode 100644 index 000000000..41b1d31f6 --- /dev/null +++ b/account_balance_ebp_csv_export/i18n/fr.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_balance_ebp_csv_export +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-10-01 04:00+0000\n" +"PO-Revision-Date: 2016-10-01 04:00+0000\n" +"Last-Translator: OCA Transbot , 2016\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_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "EBP csv File" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit +msgid "Trial Balance Report" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "or" +msgstr "ou" diff --git a/account_balance_ebp_csv_export/i18n/fr_CA.po b/account_balance_ebp_csv_export/i18n/fr_CA.po new file mode 100644 index 000000000..d3ee8eb3d --- /dev/null +++ b/account_balance_ebp_csv_export/i18n/fr_CA.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_balance_ebp_csv_export +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-10-01 04:00+0000\n" +"PO-Revision-Date: 2016-10-01 04:00+0000\n" +"Last-Translator: OCA Transbot , 2016\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_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "EBP csv File" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit +msgid "Trial Balance Report" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "or" +msgstr "ou" diff --git a/account_balance_ebp_csv_export/i18n/fr_CH.po b/account_balance_ebp_csv_export/i18n/fr_CH.po new file mode 100644 index 000000000..8ad9da1b1 --- /dev/null +++ b/account_balance_ebp_csv_export/i18n/fr_CH.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_balance_ebp_csv_export +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-10-01 04:00+0000\n" +"PO-Revision-Date: 2016-10-01 04:00+0000\n" +"Last-Translator: OCA Transbot , 2016\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_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "EBP csv File" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit +msgid "Trial Balance Report" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "or" +msgstr "ou" diff --git a/account_balance_ebp_csv_export/i18n/gl.po b/account_balance_ebp_csv_export/i18n/gl.po new file mode 100644 index 000000000..c356d98e9 --- /dev/null +++ b/account_balance_ebp_csv_export/i18n/gl.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_balance_ebp_csv_export +# +# Translators: +# César Castro Cruz , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-10-01 04:00+0000\n" +"PO-Revision-Date: 2016-10-01 04:00+0000\n" +"Last-Translator: César Castro Cruz , 2016\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_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "EBP csv File" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit +msgid "Trial Balance Report" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "or" +msgstr "ou" diff --git a/account_balance_ebp_csv_export/i18n/he.po b/account_balance_ebp_csv_export/i18n/he.po new file mode 100644 index 000000000..677d0c3e2 --- /dev/null +++ b/account_balance_ebp_csv_export/i18n/he.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_balance_ebp_csv_export +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-10-01 04:00+0000\n" +"PO-Revision-Date: 2016-10-01 04:00+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Hebrew (https://www.transifex.com/oca/teams/23907/he/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: he\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "EBP csv File" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit +msgid "Trial Balance Report" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "or" +msgstr "או" diff --git a/account_balance_ebp_csv_export/i18n/hr.po b/account_balance_ebp_csv_export/i18n/hr.po new file mode 100644 index 000000000..bef3b5bf2 --- /dev/null +++ b/account_balance_ebp_csv_export/i18n/hr.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_balance_ebp_csv_export +# +# Translators: +# Bole , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-10-01 04:00+0000\n" +"PO-Revision-Date: 2016-10-01 04:00+0000\n" +"Last-Translator: Bole , 2016\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_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "EBP csv File" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit +msgid "Trial Balance Report" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "or" +msgstr "ili" diff --git a/account_balance_ebp_csv_export/i18n/hu.po b/account_balance_ebp_csv_export/i18n/hu.po new file mode 100644 index 000000000..a590ba025 --- /dev/null +++ b/account_balance_ebp_csv_export/i18n/hu.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_balance_ebp_csv_export +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-10-01 04:00+0000\n" +"PO-Revision-Date: 2016-10-01 04:00+0000\n" +"Last-Translator: OCA Transbot , 2016\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_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "EBP csv File" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit +msgid "Trial Balance Report" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "or" +msgstr "vagy" diff --git a/account_balance_ebp_csv_export/i18n/id.po b/account_balance_ebp_csv_export/i18n/id.po new file mode 100644 index 000000000..5e8d212bf --- /dev/null +++ b/account_balance_ebp_csv_export/i18n/id.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_balance_ebp_csv_export +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-10-01 04:00+0000\n" +"PO-Revision-Date: 2016-10-01 04:00+0000\n" +"Last-Translator: OCA Transbot , 2016\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_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "EBP csv File" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit +msgid "Trial Balance Report" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "or" +msgstr "atau" diff --git a/account_balance_ebp_csv_export/i18n/it.po b/account_balance_ebp_csv_export/i18n/it.po new file mode 100644 index 000000000..75ac93c9e --- /dev/null +++ b/account_balance_ebp_csv_export/i18n/it.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_balance_ebp_csv_export +# +# Translators: +# Paolo Valier , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-10-01 04:00+0000\n" +"PO-Revision-Date: 2016-10-01 04:00+0000\n" +"Last-Translator: Paolo Valier , 2016\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_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "EBP csv File" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit +msgid "Trial Balance Report" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "or" +msgstr "o" diff --git a/account_balance_ebp_csv_export/i18n/ja.po b/account_balance_ebp_csv_export/i18n/ja.po new file mode 100644 index 000000000..816b52e31 --- /dev/null +++ b/account_balance_ebp_csv_export/i18n/ja.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_balance_ebp_csv_export +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-10-01 04:00+0000\n" +"PO-Revision-Date: 2016-10-01 04:00+0000\n" +"Last-Translator: OCA Transbot , 2016\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_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "EBP csv File" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit +msgid "Trial Balance Report" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "or" +msgstr "または" diff --git a/account_balance_ebp_csv_export/i18n/ko.po b/account_balance_ebp_csv_export/i18n/ko.po new file mode 100644 index 000000000..a11be53d2 --- /dev/null +++ b/account_balance_ebp_csv_export/i18n/ko.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_balance_ebp_csv_export +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-10-01 04:00+0000\n" +"PO-Revision-Date: 2016-10-01 04:00+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Korean (https://www.transifex.com/oca/teams/23907/ko/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ko\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: account_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "EBP csv File" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit +msgid "Trial Balance Report" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "or" +msgstr "또는" diff --git a/account_balance_ebp_csv_export/i18n/lo.po b/account_balance_ebp_csv_export/i18n/lo.po new file mode 100644 index 000000000..75072085b --- /dev/null +++ b/account_balance_ebp_csv_export/i18n/lo.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_balance_ebp_csv_export +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-10-01 04:00+0000\n" +"PO-Revision-Date: 2016-10-01 04:00+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Lao (https://www.transifex.com/oca/teams/23907/lo/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lo\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: account_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "EBP csv File" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit +msgid "Trial Balance Report" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "or" +msgstr "ຫຼື" diff --git a/account_balance_ebp_csv_export/i18n/lt.po b/account_balance_ebp_csv_export/i18n/lt.po new file mode 100644 index 000000000..97cc5a363 --- /dev/null +++ b/account_balance_ebp_csv_export/i18n/lt.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_balance_ebp_csv_export +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-10-01 04:00+0000\n" +"PO-Revision-Date: 2016-10-01 04:00+0000\n" +"Last-Translator: OCA Transbot , 2016\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_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "EBP csv File" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit +msgid "Trial Balance Report" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "or" +msgstr "arba" diff --git a/account_balance_ebp_csv_export/i18n/lt_LT.po b/account_balance_ebp_csv_export/i18n/lt_LT.po new file mode 100644 index 000000000..628c9160c --- /dev/null +++ b/account_balance_ebp_csv_export/i18n/lt_LT.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_balance_ebp_csv_export +# +# Translators: +# Arminas Grigonis , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-10-01 04:00+0000\n" +"PO-Revision-Date: 2016-10-01 04:00+0000\n" +"Last-Translator: Arminas Grigonis , 2016\n" +"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/oca/teams/23907/lt_LT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lt_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_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "EBP csv File" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit +msgid "Trial Balance Report" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "or" +msgstr "arba" diff --git a/account_balance_ebp_csv_export/i18n/lv.po b/account_balance_ebp_csv_export/i18n/lv.po new file mode 100644 index 000000000..e1ed39d19 --- /dev/null +++ b/account_balance_ebp_csv_export/i18n/lv.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_balance_ebp_csv_export +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-10-01 04:00+0000\n" +"PO-Revision-Date: 2016-10-01 04:00+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Latvian (https://www.transifex.com/oca/teams/23907/lv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" + +#. module: account_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "EBP csv File" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit +msgid "Trial Balance Report" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "or" +msgstr "vai" diff --git a/account_balance_ebp_csv_export/i18n/mk.po b/account_balance_ebp_csv_export/i18n/mk.po new file mode 100644 index 000000000..8760ae938 --- /dev/null +++ b/account_balance_ebp_csv_export/i18n/mk.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_balance_ebp_csv_export +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-10-01 04:00+0000\n" +"PO-Revision-Date: 2016-10-01 04:00+0000\n" +"Last-Translator: OCA Transbot , 2016\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_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "EBP csv File" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit +msgid "Trial Balance Report" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "or" +msgstr "или" diff --git a/account_balance_ebp_csv_export/i18n/mn.po b/account_balance_ebp_csv_export/i18n/mn.po new file mode 100644 index 000000000..6c907b234 --- /dev/null +++ b/account_balance_ebp_csv_export/i18n/mn.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_balance_ebp_csv_export +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-10-01 04:00+0000\n" +"PO-Revision-Date: 2016-10-01 04:00+0000\n" +"Last-Translator: OCA Transbot , 2016\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_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "EBP csv File" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit +msgid "Trial Balance Report" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "or" +msgstr "эсвэл" diff --git a/account_balance_ebp_csv_export/i18n/nb.po b/account_balance_ebp_csv_export/i18n/nb.po new file mode 100644 index 000000000..40819534f --- /dev/null +++ b/account_balance_ebp_csv_export/i18n/nb.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_balance_ebp_csv_export +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-10-01 04:00+0000\n" +"PO-Revision-Date: 2016-10-01 04:00+0000\n" +"Last-Translator: OCA Transbot , 2016\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_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "EBP csv File" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit +msgid "Trial Balance Report" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "or" +msgstr "eller" diff --git a/account_balance_ebp_csv_export/i18n/nl.po b/account_balance_ebp_csv_export/i18n/nl.po new file mode 100644 index 000000000..e8564c639 --- /dev/null +++ b/account_balance_ebp_csv_export/i18n/nl.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_balance_ebp_csv_export +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-10-01 04:00+0000\n" +"PO-Revision-Date: 2016-10-01 04:00+0000\n" +"Last-Translator: OCA Transbot , 2016\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_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "EBP csv File" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit +msgid "Trial Balance Report" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "or" +msgstr "of" diff --git a/account_balance_ebp_csv_export/i18n/nl_BE.po b/account_balance_ebp_csv_export/i18n/nl_BE.po new file mode 100644 index 000000000..012d68611 --- /dev/null +++ b/account_balance_ebp_csv_export/i18n/nl_BE.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_balance_ebp_csv_export +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-10-01 04:00+0000\n" +"PO-Revision-Date: 2016-10-01 04:00+0000\n" +"Last-Translator: OCA Transbot , 2016\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_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "EBP csv File" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit +msgid "Trial Balance Report" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "or" +msgstr "of" diff --git a/account_balance_ebp_csv_export/i18n/pl.po b/account_balance_ebp_csv_export/i18n/pl.po new file mode 100644 index 000000000..7660bb05d --- /dev/null +++ b/account_balance_ebp_csv_export/i18n/pl.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_balance_ebp_csv_export +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-10-01 04:00+0000\n" +"PO-Revision-Date: 2016-10-01 04:00+0000\n" +"Last-Translator: OCA Transbot , 2016\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=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: account_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "EBP csv File" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit +msgid "Trial Balance Report" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "or" +msgstr "lub" diff --git a/account_balance_ebp_csv_export/i18n/pt.po b/account_balance_ebp_csv_export/i18n/pt.po new file mode 100644 index 000000000..5f0301b61 --- /dev/null +++ b/account_balance_ebp_csv_export/i18n/pt.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_balance_ebp_csv_export +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-10-01 04:00+0000\n" +"PO-Revision-Date: 2016-10-01 04:00+0000\n" +"Last-Translator: OCA Transbot , 2016\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_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "EBP csv File" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit +msgid "Trial Balance Report" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "or" +msgstr "ou" diff --git a/account_balance_ebp_csv_export/i18n/pt_BR.po b/account_balance_ebp_csv_export/i18n/pt_BR.po new file mode 100644 index 000000000..f8227c3b4 --- /dev/null +++ b/account_balance_ebp_csv_export/i18n/pt_BR.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_balance_ebp_csv_export +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-10-01 04:00+0000\n" +"PO-Revision-Date: 2016-10-01 04:00+0000\n" +"Last-Translator: OCA Transbot , 2016\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_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "EBP csv File" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit +msgid "Trial Balance Report" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "or" +msgstr "ou" diff --git a/account_balance_ebp_csv_export/i18n/pt_PT.po b/account_balance_ebp_csv_export/i18n/pt_PT.po new file mode 100644 index 000000000..3ff7b40f3 --- /dev/null +++ b/account_balance_ebp_csv_export/i18n/pt_PT.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_balance_ebp_csv_export +# +# Translators: +# Pedro Castro Silva , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-10-01 04:00+0000\n" +"PO-Revision-Date: 2016-10-01 04:00+0000\n" +"Last-Translator: Pedro Castro Silva , 2016\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_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "EBP csv File" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit +msgid "Trial Balance Report" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "or" +msgstr "ou" diff --git a/account_balance_ebp_csv_export/i18n/ro.po b/account_balance_ebp_csv_export/i18n/ro.po new file mode 100644 index 000000000..df11de654 --- /dev/null +++ b/account_balance_ebp_csv_export/i18n/ro.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_balance_ebp_csv_export +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-10-01 04:00+0000\n" +"PO-Revision-Date: 2016-10-01 04:00+0000\n" +"Last-Translator: OCA Transbot , 2016\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_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "EBP csv File" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit +msgid "Trial Balance Report" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "or" +msgstr "sau" diff --git a/account_balance_ebp_csv_export/i18n/ru.po b/account_balance_ebp_csv_export/i18n/ru.po new file mode 100644 index 000000000..64e4aaae3 --- /dev/null +++ b/account_balance_ebp_csv_export/i18n/ru.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_balance_ebp_csv_export +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-10-01 04:00+0000\n" +"PO-Revision-Date: 2016-10-01 04:00+0000\n" +"Last-Translator: OCA Transbot , 2016\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_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "EBP csv File" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit +msgid "Trial Balance Report" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "or" +msgstr "или" diff --git a/account_balance_ebp_csv_export/i18n/sk.po b/account_balance_ebp_csv_export/i18n/sk.po new file mode 100644 index 000000000..234e8f457 --- /dev/null +++ b/account_balance_ebp_csv_export/i18n/sk.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_balance_ebp_csv_export +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-10-01 04:00+0000\n" +"PO-Revision-Date: 2016-10-01 04:00+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Slovak (https://www.transifex.com/oca/teams/23907/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sk\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: account_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "EBP csv File" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit +msgid "Trial Balance Report" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "or" +msgstr "alebo" diff --git a/account_balance_ebp_csv_export/i18n/sl.po b/account_balance_ebp_csv_export/i18n/sl.po new file mode 100644 index 000000000..1df692533 --- /dev/null +++ b/account_balance_ebp_csv_export/i18n/sl.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_balance_ebp_csv_export +# +# Translators: +# Matjaž Mozetič , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-10-01 04:00+0000\n" +"PO-Revision-Date: 2016-10-01 04:00+0000\n" +"Last-Translator: Matjaž Mozetič , 2016\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_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "EBP csv File" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit +msgid "Trial Balance Report" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "or" +msgstr "ali" diff --git a/account_balance_ebp_csv_export/i18n/sv.po b/account_balance_ebp_csv_export/i18n/sv.po new file mode 100644 index 000000000..521bf6dd4 --- /dev/null +++ b/account_balance_ebp_csv_export/i18n/sv.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_balance_ebp_csv_export +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-10-01 04:00+0000\n" +"PO-Revision-Date: 2016-10-01 04:00+0000\n" +"Last-Translator: OCA Transbot , 2016\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_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "EBP csv File" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit +msgid "Trial Balance Report" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "or" +msgstr "eller" diff --git a/account_balance_ebp_csv_export/i18n/th.po b/account_balance_ebp_csv_export/i18n/th.po new file mode 100644 index 000000000..94b83f3c3 --- /dev/null +++ b/account_balance_ebp_csv_export/i18n/th.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_balance_ebp_csv_export +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-10-01 04:00+0000\n" +"PO-Revision-Date: 2016-10-01 04:00+0000\n" +"Last-Translator: OCA Transbot , 2016\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_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "EBP csv File" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit +msgid "Trial Balance Report" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "or" +msgstr "หรือ" diff --git a/account_balance_ebp_csv_export/i18n/tr.po b/account_balance_ebp_csv_export/i18n/tr.po new file mode 100644 index 000000000..bb5045c04 --- /dev/null +++ b/account_balance_ebp_csv_export/i18n/tr.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_balance_ebp_csv_export +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-10-01 04:00+0000\n" +"PO-Revision-Date: 2016-10-01 04:00+0000\n" +"Last-Translator: OCA Transbot , 2016\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_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "EBP csv File" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit +msgid "Trial Balance Report" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "or" +msgstr "ya da" diff --git a/account_balance_ebp_csv_export/i18n/uk.po b/account_balance_ebp_csv_export/i18n/uk.po new file mode 100644 index 000000000..8d71a7b90 --- /dev/null +++ b/account_balance_ebp_csv_export/i18n/uk.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_balance_ebp_csv_export +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-10-01 04:00+0000\n" +"PO-Revision-Date: 2016-10-01 04:00+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Ukrainian (https://www.transifex.com/oca/teams/23907/uk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: uk\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_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "EBP csv File" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit +msgid "Trial Balance Report" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "or" +msgstr "або" diff --git a/account_balance_ebp_csv_export/i18n/vi.po b/account_balance_ebp_csv_export/i18n/vi.po new file mode 100644 index 000000000..92cef81cc --- /dev/null +++ b/account_balance_ebp_csv_export/i18n/vi.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_balance_ebp_csv_export +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-10-01 04:00+0000\n" +"PO-Revision-Date: 2016-10-01 04:00+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Vietnamese (https://www.transifex.com/oca/teams/23907/vi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: account_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "EBP csv File" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit +msgid "Trial Balance Report" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "or" +msgstr "hoặc" diff --git a/account_balance_ebp_csv_export/i18n/vi_VN.po b/account_balance_ebp_csv_export/i18n/vi_VN.po new file mode 100644 index 000000000..c05c505d0 --- /dev/null +++ b/account_balance_ebp_csv_export/i18n/vi_VN.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_balance_ebp_csv_export +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-10-01 04:00+0000\n" +"PO-Revision-Date: 2016-10-01 04:00+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/oca/teams/23907/vi_VN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: vi_VN\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: account_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "EBP csv File" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit +msgid "Trial Balance Report" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "or" +msgstr "hoặc" diff --git a/account_balance_ebp_csv_export/i18n/zh_CN.po b/account_balance_ebp_csv_export/i18n/zh_CN.po new file mode 100644 index 000000000..7df804611 --- /dev/null +++ b/account_balance_ebp_csv_export/i18n/zh_CN.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_balance_ebp_csv_export +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-10-01 04:00+0000\n" +"PO-Revision-Date: 2016-10-01 04:00+0000\n" +"Last-Translator: OCA Transbot , 2016\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_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "EBP csv File" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit +msgid "Trial Balance Report" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "or" +msgstr "或者" diff --git a/account_balance_ebp_csv_export/i18n/zh_TW.po b/account_balance_ebp_csv_export/i18n/zh_TW.po new file mode 100644 index 000000000..3cc1be40a --- /dev/null +++ b/account_balance_ebp_csv_export/i18n/zh_TW.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_balance_ebp_csv_export +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-10-01 04:00+0000\n" +"PO-Revision-Date: 2016-10-01 04:00+0000\n" +"Last-Translator: OCA Transbot , 2016\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_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "EBP csv File" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit +msgid "Trial Balance Report" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "or" +msgstr "或" From 64acbebf5e1a9536c2de37d8ca9b0ca1a07cb442 Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Tue, 29 Nov 2016 07:19:28 -0500 Subject: [PATCH 21/54] OCA Transbot updated translations from Transifex --- account_balance_ebp_csv_export/i18n/es_PE.po | 34 +++++++++++++++++++ .../i18n/sr@latin.po | 34 +++++++++++++++++++ 2 files changed, 68 insertions(+) create mode 100644 account_balance_ebp_csv_export/i18n/es_PE.po create mode 100644 account_balance_ebp_csv_export/i18n/sr@latin.po diff --git a/account_balance_ebp_csv_export/i18n/es_PE.po b/account_balance_ebp_csv_export/i18n/es_PE.po new file mode 100644 index 000000000..f85797e26 --- /dev/null +++ b/account_balance_ebp_csv_export/i18n/es_PE.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_balance_ebp_csv_export +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-10-01 04:00+0000\n" +"PO-Revision-Date: 2016-10-01 04:00+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Peru) (https://www.transifex.com/oca/teams/23907/es_PE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_PE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "EBP csv File" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit +msgid "Trial Balance Report" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "or" +msgstr "o" diff --git a/account_balance_ebp_csv_export/i18n/sr@latin.po b/account_balance_ebp_csv_export/i18n/sr@latin.po new file mode 100644 index 000000000..9a2314595 --- /dev/null +++ b/account_balance_ebp_csv_export/i18n/sr@latin.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_balance_ebp_csv_export +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-10-01 04:00+0000\n" +"PO-Revision-Date: 2016-10-01 04:00+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/sr@latin/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sr@latin\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_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "EBP csv File" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit +msgid "Trial Balance Report" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "or" +msgstr "ili" From 212143135eefcda9bdfcbc3d5d58cd93f6f5aecc Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Fri, 6 Jan 2017 22:10:47 -0500 Subject: [PATCH 22/54] OCA Transbot updated translations from Transifex --- account_balance_ebp_csv_export/i18n/tr_TR.po | 34 ++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 account_balance_ebp_csv_export/i18n/tr_TR.po diff --git a/account_balance_ebp_csv_export/i18n/tr_TR.po b/account_balance_ebp_csv_export/i18n/tr_TR.po new file mode 100644 index 000000000..ec8de8dc2 --- /dev/null +++ b/account_balance_ebp_csv_export/i18n/tr_TR.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_balance_ebp_csv_export +# +# Translators: +# Ozge Altinisik , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-10-01 04:00+0000\n" +"PO-Revision-Date: 2016-10-01 04:00+0000\n" +"Last-Translator: Ozge Altinisik , 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_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "EBP csv File" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit +msgid "Trial Balance Report" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "or" +msgstr "ya da " From 1a2bf57d46fe26c84bffc31b1dd82bd06c9f765d Mon Sep 17 00:00:00 2001 From: Alexis de Lattre Date: Tue, 17 Jan 2017 17:52:55 +0100 Subject: [PATCH 23/54] Pylint fixes --- .../wizard/trial_balance_wizard.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/account_balance_ebp_csv_export/wizard/trial_balance_wizard.py b/account_balance_ebp_csv_export/wizard/trial_balance_wizard.py index 3943c1d9d..abf521c2e 100644 --- a/account_balance_ebp_csv_export/wizard/trial_balance_wizard.py +++ b/account_balance_ebp_csv_export/wizard/trial_balance_wizard.py @@ -8,7 +8,12 @@ from openerp.report import interface from openerp.addons.account_financial_report_webkit.report.\ trial_balance import TrialBalanceWebkit -import unicodecsv +import logging +logger = logging.getLogger(__name__) +try: + import unicodecsv +except ImportError: + logger.debug('Cannot import unicodecsv') try: from cStringIO import StringIO From 1bac32d50e193669e66a884eb3f0ad79ca0b4f2e Mon Sep 17 00:00:00 2001 From: Alexis de Lattre Date: Tue, 17 Jan 2017 17:58:32 +0100 Subject: [PATCH 24/54] FIX PEP8 warning --- account_balance_ebp_csv_export/wizard/trial_balance_wizard.py | 1 + 1 file changed, 1 insertion(+) diff --git a/account_balance_ebp_csv_export/wizard/trial_balance_wizard.py b/account_balance_ebp_csv_export/wizard/trial_balance_wizard.py index abf521c2e..9f231b0d2 100644 --- a/account_balance_ebp_csv_export/wizard/trial_balance_wizard.py +++ b/account_balance_ebp_csv_export/wizard/trial_balance_wizard.py @@ -73,6 +73,7 @@ def f2s(value): data = f.read() return (data, 'csv') + ReportEBP('report.trial.balance.ebp') From 040a0172fc12b8f4b151325aa6b98a0bdf693998 Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Sat, 6 May 2017 04:22:09 +0200 Subject: [PATCH 25/54] OCA Transbot updated translations from Transifex --- account_balance_ebp_csv_export/i18n/es_CL.po | 34 ++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 account_balance_ebp_csv_export/i18n/es_CL.po diff --git a/account_balance_ebp_csv_export/i18n/es_CL.po b/account_balance_ebp_csv_export/i18n/es_CL.po new file mode 100644 index 000000000..afee2931d --- /dev/null +++ b/account_balance_ebp_csv_export/i18n/es_CL.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_balance_ebp_csv_export +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-05 21:17+0000\n" +"PO-Revision-Date: 2017-05-05 21:17+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Chile) (https://www.transifex.com/oca/teams/23907/es_CL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "EBP csv File" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit +msgid "Trial Balance Report" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +msgid "or" +msgstr "o" From 57808368980e3d0fb57282fd17a84423dd51df2f Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Sat, 18 Nov 2017 05:19:17 +0100 Subject: [PATCH 26/54] OCA Transbot updated translations from Transifex --- account_balance_ebp_csv_export/i18n/am.po | 10 +++++----- account_balance_ebp_csv_export/i18n/ca.po | 10 +++++----- account_balance_ebp_csv_export/i18n/es_DO.po | 10 +++++----- account_balance_ebp_csv_export/i18n/es_MX.po | 10 +++++----- account_balance_ebp_csv_export/i18n/zh_CN.po | 10 +++++----- 5 files changed, 25 insertions(+), 25 deletions(-) diff --git a/account_balance_ebp_csv_export/i18n/am.po b/account_balance_ebp_csv_export/i18n/am.po index e6bad64b5..781cf7f1e 100644 --- a/account_balance_ebp_csv_export/i18n/am.po +++ b/account_balance_ebp_csv_export/i18n/am.po @@ -3,14 +3,14 @@ # * account_balance_ebp_csv_export # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" "Project-Id-Version: Odoo Server 8.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-01 04:00+0000\n" -"PO-Revision-Date: 2016-10-01 04:00+0000\n" -"Last-Translator: OCA Transbot , 2016\n" +"POT-Creation-Date: 2017-11-17 14:34+0000\n" +"PO-Revision-Date: 2017-11-17 14:34+0000\n" +"Last-Translator: OCA Transbot , 2017\n" "Language-Team: Amharic (https://www.transifex.com/oca/teams/23907/am/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -31,4 +31,4 @@ msgstr "" #. module: account_balance_ebp_csv_export #: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit msgid "or" -msgstr "ወይም" +msgstr "o" diff --git a/account_balance_ebp_csv_export/i18n/ca.po b/account_balance_ebp_csv_export/i18n/ca.po index 92e46202d..5bbeed37a 100644 --- a/account_balance_ebp_csv_export/i18n/ca.po +++ b/account_balance_ebp_csv_export/i18n/ca.po @@ -3,14 +3,14 @@ # * account_balance_ebp_csv_export # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" "Project-Id-Version: Odoo Server 8.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-01 04:00+0000\n" -"PO-Revision-Date: 2016-10-01 04:00+0000\n" -"Last-Translator: OCA Transbot , 2016\n" +"POT-Creation-Date: 2017-11-17 14:34+0000\n" +"PO-Revision-Date: 2017-11-17 14:34+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" @@ -31,4 +31,4 @@ msgstr "" #. module: account_balance_ebp_csv_export #: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit msgid "or" -msgstr "o " +msgstr "o" diff --git a/account_balance_ebp_csv_export/i18n/es_DO.po b/account_balance_ebp_csv_export/i18n/es_DO.po index ede4d3105..14605c526 100644 --- a/account_balance_ebp_csv_export/i18n/es_DO.po +++ b/account_balance_ebp_csv_export/i18n/es_DO.po @@ -3,14 +3,14 @@ # * account_balance_ebp_csv_export # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" "Project-Id-Version: Odoo Server 8.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-01 04:00+0000\n" -"PO-Revision-Date: 2016-10-01 04:00+0000\n" -"Last-Translator: OCA Transbot , 2016\n" +"POT-Creation-Date: 2017-11-17 14:34+0000\n" +"PO-Revision-Date: 2017-11-17 14:34+0000\n" +"Last-Translator: OCA Transbot , 2017\n" "Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/oca/teams/23907/es_DO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -31,4 +31,4 @@ msgstr "" #. module: account_balance_ebp_csv_export #: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit msgid "or" -msgstr "ó" +msgstr "o" diff --git a/account_balance_ebp_csv_export/i18n/es_MX.po b/account_balance_ebp_csv_export/i18n/es_MX.po index 57daa8418..974e87811 100644 --- a/account_balance_ebp_csv_export/i18n/es_MX.po +++ b/account_balance_ebp_csv_export/i18n/es_MX.po @@ -3,14 +3,14 @@ # * account_balance_ebp_csv_export # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" "Project-Id-Version: Odoo Server 8.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-01 04:00+0000\n" -"PO-Revision-Date: 2016-10-01 04:00+0000\n" -"Last-Translator: OCA Transbot , 2016\n" +"POT-Creation-Date: 2017-11-17 14:34+0000\n" +"PO-Revision-Date: 2017-11-17 14:34+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" @@ -31,4 +31,4 @@ msgstr "" #. module: account_balance_ebp_csv_export #: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit msgid "or" -msgstr "o" +msgstr "ó" diff --git a/account_balance_ebp_csv_export/i18n/zh_CN.po b/account_balance_ebp_csv_export/i18n/zh_CN.po index 7df804611..237225e49 100644 --- a/account_balance_ebp_csv_export/i18n/zh_CN.po +++ b/account_balance_ebp_csv_export/i18n/zh_CN.po @@ -3,14 +3,14 @@ # * account_balance_ebp_csv_export # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2017 msgid "" msgstr "" "Project-Id-Version: Odoo Server 8.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-01 04:00+0000\n" -"PO-Revision-Date: 2016-10-01 04:00+0000\n" -"Last-Translator: OCA Transbot , 2016\n" +"POT-Creation-Date: 2017-11-17 14:34+0000\n" +"PO-Revision-Date: 2017-11-17 14:34+0000\n" +"Last-Translator: OCA Transbot , 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" @@ -31,4 +31,4 @@ msgstr "" #. module: account_balance_ebp_csv_export #: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit msgid "or" -msgstr "或者" +msgstr "或" From 2753c09ac7b05a532a43b94f523ea4238e98ff5b Mon Sep 17 00:00:00 2001 From: Alexis de Lattre Date: Wed, 7 Feb 2018 22:53:15 +0100 Subject: [PATCH 27/54] account_balance_ebp_csv_export from 8 to 10 --- account_balance_ebp_csv_export/README.rst | 6 +- .../{__openerp__.py => __manifest__.py} | 14 ++- account_balance_ebp_csv_export/report.xml | 15 +++ .../report/balance_ebp_csv.xml | 9 ++ .../wizard/trial_balance_wizard.py | 93 +++---------------- .../wizard/trial_balance_wizard_view.xml | 28 +++--- 6 files changed, 61 insertions(+), 104 deletions(-) rename account_balance_ebp_csv_export/{__openerp__.py => __manifest__.py} (56%) create mode 100644 account_balance_ebp_csv_export/report.xml create mode 100644 account_balance_ebp_csv_export/report/balance_ebp_csv.xml diff --git a/account_balance_ebp_csv_export/README.rst b/account_balance_ebp_csv_export/README.rst index df0bdab64..a17b85995 100644 --- a/account_balance_ebp_csv_export/README.rst +++ b/account_balance_ebp_csv_export/README.rst @@ -6,7 +6,7 @@ Account Balance EBP CSV export ============================== -This module adds a button *EBP csv File* next to the *Print* button on the Trial Balance wizard. It will export the Trial Balance in the CSV export format of the EBP accounting software. +This module adds a button *Export EBP CSV* next to the *Export PDF* and *Export XLSX* buttons on the Trial Balance wizard. It will export the Trial Balance in the CSV export format of the EBP accounting software. One of the possible usage scenario of this module is to export the trial balance to software dedicated to the `liasse fiscale `_ (French fiscal declaration) that accept CSV files from the EBP accounting software. This file has been successfully tested with the following software: @@ -25,11 +25,11 @@ This module doesn't require any configuration. Usage ===== -To use this module, go to the menu *Accounting > Reporting > Legal Reports > Accounting Reports > Trial Balance* and you will see the button *EBP csv File*. +To use this module, go to the menu *Accounting > Reports > OCA accounting reports > Trial Balance* and you will see the button *Export EBP CSV*. .. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas :alt: Try me on Runbot - :target: https://runbot.odoo-community.org/runbot/121/8.0 + :target: https://runbot.odoo-community.org/runbot/121/10.0 Bug Tracker =========== diff --git a/account_balance_ebp_csv_export/__openerp__.py b/account_balance_ebp_csv_export/__manifest__.py similarity index 56% rename from account_balance_ebp_csv_export/__openerp__.py rename to account_balance_ebp_csv_export/__manifest__.py index 6317794fb..1827c503b 100644 --- a/account_balance_ebp_csv_export/__openerp__.py +++ b/account_balance_ebp_csv_export/__manifest__.py @@ -1,18 +1,22 @@ # -*- coding: utf-8 -*- -# © 2014-2016 Akretion (Alexis de Lattre ) +# © 2014-2018 Akretion (Alexis de Lattre ) # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). { 'name': 'Account Balance EBP CSV export', - 'version': '8.0.1.1.0', - 'category': 'Accounting & Finance', + 'version': '10.0.1.0.0', + 'category': 'Accounting', 'license': 'AGPL-3', 'author': 'Akretion,Odoo Community Association (OCA)', 'website': 'http://www.akretion.com', - 'depends': ['account_financial_report_webkit'], + 'depends': [ + 'account_financial_report_qweb', + 'report_qweb_txt', + ], 'data': [ + 'report.xml', + 'report/balance_ebp_csv.xml', 'wizard/trial_balance_wizard_view.xml' ], 'installable': True, - 'external_dependencies': {'python': ['unicodecsv']}, } diff --git a/account_balance_ebp_csv_export/report.xml b/account_balance_ebp_csv_export/report.xml new file mode 100644 index 000000000..66018e5a9 --- /dev/null +++ b/account_balance_ebp_csv_export/report.xml @@ -0,0 +1,15 @@ + + + + + + + + diff --git a/account_balance_ebp_csv_export/report/balance_ebp_csv.xml b/account_balance_ebp_csv_export/report/balance_ebp_csv.xml new file mode 100644 index 000000000..da6a4d6a2 --- /dev/null +++ b/account_balance_ebp_csv_export/report/balance_ebp_csv.xml @@ -0,0 +1,9 @@ + + + + + + diff --git a/account_balance_ebp_csv_export/wizard/trial_balance_wizard.py b/account_balance_ebp_csv_export/wizard/trial_balance_wizard.py index 9f231b0d2..7984be474 100644 --- a/account_balance_ebp_csv_export/wizard/trial_balance_wizard.py +++ b/account_balance_ebp_csv_export/wizard/trial_balance_wizard.py @@ -1,89 +1,20 @@ # -*- coding: utf-8 -*- -# © 2016 Akretion France +# © 2016-2018 Akretion France # @author: Sébastien Beau # @author: Alexis de Lattre # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). -from openerp import models, api -from openerp.report import interface -from openerp.addons.account_financial_report_webkit.report.\ - trial_balance import TrialBalanceWebkit -import logging -logger = logging.getLogger(__name__) -try: - import unicodecsv -except ImportError: - logger.debug('Cannot import unicodecsv') +from odoo import models -try: - from cStringIO import StringIO -except ImportError: - from StringIO import StringIO +class TrialBalanceReportWizard(models.TransientModel): + _inherit = 'trial.balance.report.wizard' -class ReportEBP(interface.report_int): - - def create(self, cr, uid, ids, data, context=None): - def f2s(value): - return '%.2f' % value - - # Get objects and context from Webkit Parser - parser = TrialBalanceWebkit( - cr, uid, 'ebp.parser', context=context) - objects, new_ids, ctx_val =\ - parser.compute_balance_data(data) - - # Init file and write header - f = StringIO() - w = unicodecsv.writer( - f, delimiter=',', encoding='utf-8', - quoting=unicodecsv.QUOTE_MINIMAL) - - header = [ - "Compte.Numero", - "Compte.Intitule", - "Balance.SldCptNDebit", - "Balance.SldCptNCredit", - "Balance.SldCptNSoldeD", - "Balance.SldCptNSoldeC", - ] - w.writerow(header) - # Write row - for current_account in objects: - if ctx_val['to_display_accounts'].get(current_account.id) \ - and current_account.type != 'view': - bal = ctx_val['balance_accounts'][current_account.id] - if bal >= 0: - bal_debit = bal - bal_credit = 0 - else: - bal_credit = -bal - bal_debit = 0 - - w.writerow([ - current_account.code, - current_account.name, - f2s(ctx_val['debit_accounts'][current_account.id]), - f2s(ctx_val['credit_accounts'][current_account.id]), - f2s(bal_debit), - f2s(bal_credit), - ]) - # Read and return File - f.seek(0) - data = f.read() - return (data, 'csv') - - -ReportEBP('report.trial.balance.ebp') - - -class AccountTrialBalanceWizard(models.TransientModel): - _inherit = "trial.balance.webkit" - - @api.multi - def _print_report(self, data): - res = super(AccountTrialBalanceWizard, self)._print_report( - data) - if self.env.context.get('export_type') == 'ebp-csv': - res['report_name'] = 'trial.balance.ebp' - return res + def button_export_ebp_csv(self): + rtbqo = self.env['report_trial_balance_qweb'] + report = rtbqo.create(self._prepare_report_trial_balance()) + report.compute_data_for_report() + action = self.env['report'].get_action( + docids=report.ids, report_name='account_balance_ebp_csv_export.' + 'report_trial_balance_ebp_csv') + return action diff --git a/account_balance_ebp_csv_export/wizard/trial_balance_wizard_view.xml b/account_balance_ebp_csv_export/wizard/trial_balance_wizard_view.xml index 83c5dc8ea..2a52b3e38 100644 --- a/account_balance_ebp_csv_export/wizard/trial_balance_wizard_view.xml +++ b/account_balance_ebp_csv_export/wizard/trial_balance_wizard_view.xml @@ -1,26 +1,24 @@ - - + - - trial.balance.ebp.csv.export - trial.balance.webkit - + + + trial.balance.ebp.csv.button + trial.balance.report.wizard + - - - + + From cc7463d92a4049067d155b09536c0d5c71806909 Mon Sep 17 00:00:00 2001 From: Alexis de Lattre Date: Thu, 8 Feb 2018 00:23:58 +0100 Subject: [PATCH 28/54] Use .csv file extension for EBP CSV export --- account_balance_ebp_csv_export/report.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/account_balance_ebp_csv_export/report.xml b/account_balance_ebp_csv_export/report.xml index 66018e5a9..ea3da8cae 100644 --- a/account_balance_ebp_csv_export/report.xml +++ b/account_balance_ebp_csv_export/report.xml @@ -6,7 +6,7 @@ id="action_report_trial_balance_ebp_csv" model="report_trial_balance_qweb" string="EBP CSV Balance" - report_type="qweb-txt" + report_type="qweb-txt-csv" name="account_balance_ebp_csv_export.report_trial_balance_ebp_csv" file="account_balance_ebp_csv_export.report_trial_balance_ebp_csv" /> From 1843aba9e1b02044a9f3ca54732be08e796547cf Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Sat, 3 Mar 2018 06:25:57 +0100 Subject: [PATCH 29/54] OCA Transbot updated translations from Transifex --- account_balance_ebp_csv_export/i18n/am.po | 31 ++++++++++------ account_balance_ebp_csv_export/i18n/ar.po | 31 ++++++++++------ account_balance_ebp_csv_export/i18n/bg.po | 31 ++++++++++------ account_balance_ebp_csv_export/i18n/bs.po | 31 ++++++++++------ account_balance_ebp_csv_export/i18n/ca.po | 31 ++++++++++------ account_balance_ebp_csv_export/i18n/cs.po | 31 ++++++++++------ account_balance_ebp_csv_export/i18n/da.po | 31 ++++++++++------ account_balance_ebp_csv_export/i18n/de.po | 31 ++++++++++------ account_balance_ebp_csv_export/i18n/el_GR.po | 31 ++++++++++------ account_balance_ebp_csv_export/i18n/en_AU.po | 31 ++++++++++------ account_balance_ebp_csv_export/i18n/en_GB.po | 31 ++++++++++------ account_balance_ebp_csv_export/i18n/es.po | 31 ++++++++++------ account_balance_ebp_csv_export/i18n/es_AR.po | 31 ++++++++++------ account_balance_ebp_csv_export/i18n/es_CL.po | 31 ++++++++++------ account_balance_ebp_csv_export/i18n/es_CO.po | 31 ++++++++++------ account_balance_ebp_csv_export/i18n/es_CR.po | 31 ++++++++++------ account_balance_ebp_csv_export/i18n/es_DO.po | 31 ++++++++++------ account_balance_ebp_csv_export/i18n/es_EC.po | 31 ++++++++++------ account_balance_ebp_csv_export/i18n/es_ES.po | 31 ++++++++++------ account_balance_ebp_csv_export/i18n/es_MX.po | 31 ++++++++++------ account_balance_ebp_csv_export/i18n/es_PE.po | 31 ++++++++++------ account_balance_ebp_csv_export/i18n/et.po | 31 ++++++++++------ account_balance_ebp_csv_export/i18n/eu.po | 31 ++++++++++------ account_balance_ebp_csv_export/i18n/fa.po | 31 ++++++++++------ account_balance_ebp_csv_export/i18n/fi.po | 31 ++++++++++------ account_balance_ebp_csv_export/i18n/fr.po | 35 +++++++++++++------ account_balance_ebp_csv_export/i18n/fr_CA.po | 31 ++++++++++------ account_balance_ebp_csv_export/i18n/fr_CH.po | 31 ++++++++++------ account_balance_ebp_csv_export/i18n/gl.po | 31 ++++++++++------ account_balance_ebp_csv_export/i18n/he.po | 31 ++++++++++------ account_balance_ebp_csv_export/i18n/hr.po | 31 ++++++++++------ account_balance_ebp_csv_export/i18n/hu.po | 31 ++++++++++------ account_balance_ebp_csv_export/i18n/id.po | 31 ++++++++++------ account_balance_ebp_csv_export/i18n/it.po | 31 ++++++++++------ account_balance_ebp_csv_export/i18n/ja.po | 31 ++++++++++------ account_balance_ebp_csv_export/i18n/ko.po | 31 ++++++++++------ account_balance_ebp_csv_export/i18n/lo.po | 31 ++++++++++------ account_balance_ebp_csv_export/i18n/lt.po | 31 ++++++++++------ account_balance_ebp_csv_export/i18n/lt_LT.po | 31 ++++++++++------ account_balance_ebp_csv_export/i18n/lv.po | 31 ++++++++++------ account_balance_ebp_csv_export/i18n/mk.po | 31 ++++++++++------ account_balance_ebp_csv_export/i18n/mn.po | 31 ++++++++++------ account_balance_ebp_csv_export/i18n/nb.po | 31 ++++++++++------ account_balance_ebp_csv_export/i18n/nl.po | 31 ++++++++++------ account_balance_ebp_csv_export/i18n/nl_BE.po | 31 ++++++++++------ account_balance_ebp_csv_export/i18n/pl.po | 33 +++++++++++------ account_balance_ebp_csv_export/i18n/pt.po | 31 ++++++++++------ account_balance_ebp_csv_export/i18n/pt_BR.po | 31 ++++++++++------ account_balance_ebp_csv_export/i18n/pt_PT.po | 31 ++++++++++------ account_balance_ebp_csv_export/i18n/ro.po | 31 ++++++++++------ account_balance_ebp_csv_export/i18n/ru.po | 31 ++++++++++------ account_balance_ebp_csv_export/i18n/sk.po | 31 ++++++++++------ account_balance_ebp_csv_export/i18n/sl.po | 31 ++++++++++------ .../i18n/sr@latin.po | 33 +++++++++++------ account_balance_ebp_csv_export/i18n/sv.po | 31 ++++++++++------ account_balance_ebp_csv_export/i18n/th.po | 31 ++++++++++------ account_balance_ebp_csv_export/i18n/tr.po | 31 ++++++++++------ account_balance_ebp_csv_export/i18n/tr_TR.po | 33 +++++++++++------ account_balance_ebp_csv_export/i18n/uk.po | 31 ++++++++++------ account_balance_ebp_csv_export/i18n/vi.po | 31 ++++++++++------ account_balance_ebp_csv_export/i18n/vi_VN.po | 31 ++++++++++------ account_balance_ebp_csv_export/i18n/zh_CN.po | 31 ++++++++++------ account_balance_ebp_csv_export/i18n/zh_TW.po | 31 ++++++++++------ 63 files changed, 1329 insertions(+), 634 deletions(-) diff --git a/account_balance_ebp_csv_export/i18n/am.po b/account_balance_ebp_csv_export/i18n/am.po index 781cf7f1e..c79138b2f 100644 --- a/account_balance_ebp_csv_export/i18n/am.po +++ b/account_balance_ebp_csv_export/i18n/am.po @@ -3,14 +3,14 @@ # * account_balance_ebp_csv_export # # Translators: -# OCA Transbot , 2017 +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-11-17 14:34+0000\n" -"PO-Revision-Date: 2017-11-17 14:34+0000\n" -"Last-Translator: OCA Transbot , 2017\n" +"POT-Creation-Date: 2018-02-17 03:48+0000\n" +"PO-Revision-Date: 2018-02-17 03:48+0000\n" +"Last-Translator: OCA Transbot , 2018\n" "Language-Team: Amharic (https://www.transifex.com/oca/teams/23907/am/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,16 +19,27 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit -msgid "EBP csv File" +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv +msgid "" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.actions.report.xml,name:account_balance_ebp_csv_export.action_report_trial_balance_ebp_csv +msgid "EBP CSV Balance" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard +msgid "Export EBP CSV" msgstr "" #. module: account_balance_ebp_csv_export -#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit -msgid "Trial Balance Report" +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_report_wizard +msgid "Trial Balance Report Wizard" msgstr "" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard msgid "or" msgstr "o" diff --git a/account_balance_ebp_csv_export/i18n/ar.po b/account_balance_ebp_csv_export/i18n/ar.po index 008b60494..47e056c3b 100644 --- a/account_balance_ebp_csv_export/i18n/ar.po +++ b/account_balance_ebp_csv_export/i18n/ar.po @@ -3,14 +3,14 @@ # * account_balance_ebp_csv_export # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-01 04:00+0000\n" -"PO-Revision-Date: 2016-10-01 04:00+0000\n" -"Last-Translator: OCA Transbot , 2016\n" +"POT-Creation-Date: 2018-02-17 03:48+0000\n" +"PO-Revision-Date: 2018-02-17 03:48+0000\n" +"Last-Translator: OCA Transbot , 2018\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" @@ -19,16 +19,27 @@ msgstr "" "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_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit -msgid "EBP csv File" +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv +msgid "" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.actions.report.xml,name:account_balance_ebp_csv_export.action_report_trial_balance_ebp_csv +msgid "EBP CSV Balance" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard +msgid "Export EBP CSV" msgstr "" #. module: account_balance_ebp_csv_export -#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit -msgid "Trial Balance Report" +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_report_wizard +msgid "Trial Balance Report Wizard" msgstr "" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard msgid "or" msgstr "أو" diff --git a/account_balance_ebp_csv_export/i18n/bg.po b/account_balance_ebp_csv_export/i18n/bg.po index a18e5d7a0..f0d6ba8c2 100644 --- a/account_balance_ebp_csv_export/i18n/bg.po +++ b/account_balance_ebp_csv_export/i18n/bg.po @@ -3,14 +3,14 @@ # * account_balance_ebp_csv_export # # Translators: -# Kaloyan Naumov , 2016 +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-01 04:00+0000\n" -"PO-Revision-Date: 2016-10-01 04:00+0000\n" -"Last-Translator: Kaloyan Naumov , 2016\n" +"POT-Creation-Date: 2018-02-17 03:48+0000\n" +"PO-Revision-Date: 2018-02-17 03:48+0000\n" +"Last-Translator: OCA Transbot , 2018\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" @@ -19,16 +19,27 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit -msgid "EBP csv File" +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv +msgid "" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.actions.report.xml,name:account_balance_ebp_csv_export.action_report_trial_balance_ebp_csv +msgid "EBP CSV Balance" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard +msgid "Export EBP CSV" msgstr "" #. module: account_balance_ebp_csv_export -#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit -msgid "Trial Balance Report" +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_report_wizard +msgid "Trial Balance Report Wizard" msgstr "" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard msgid "or" msgstr "или" diff --git a/account_balance_ebp_csv_export/i18n/bs.po b/account_balance_ebp_csv_export/i18n/bs.po index fee514d1b..2bed2fb55 100644 --- a/account_balance_ebp_csv_export/i18n/bs.po +++ b/account_balance_ebp_csv_export/i18n/bs.po @@ -3,14 +3,14 @@ # * account_balance_ebp_csv_export # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-01 04:00+0000\n" -"PO-Revision-Date: 2016-10-01 04:00+0000\n" -"Last-Translator: OCA Transbot , 2016\n" +"POT-Creation-Date: 2018-02-17 03:48+0000\n" +"PO-Revision-Date: 2018-02-17 03:48+0000\n" +"Last-Translator: OCA Transbot , 2018\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" @@ -19,16 +19,27 @@ msgstr "" "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_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit -msgid "EBP csv File" +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv +msgid "" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.actions.report.xml,name:account_balance_ebp_csv_export.action_report_trial_balance_ebp_csv +msgid "EBP CSV Balance" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard +msgid "Export EBP CSV" msgstr "" #. module: account_balance_ebp_csv_export -#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit -msgid "Trial Balance Report" +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_report_wizard +msgid "Trial Balance Report Wizard" msgstr "" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard msgid "or" msgstr "ili" diff --git a/account_balance_ebp_csv_export/i18n/ca.po b/account_balance_ebp_csv_export/i18n/ca.po index 5bbeed37a..6c799fb7a 100644 --- a/account_balance_ebp_csv_export/i18n/ca.po +++ b/account_balance_ebp_csv_export/i18n/ca.po @@ -3,14 +3,14 @@ # * account_balance_ebp_csv_export # # Translators: -# OCA Transbot , 2017 +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-11-17 14:34+0000\n" -"PO-Revision-Date: 2017-11-17 14:34+0000\n" -"Last-Translator: OCA Transbot , 2017\n" +"POT-Creation-Date: 2018-02-17 03:48+0000\n" +"PO-Revision-Date: 2018-02-17 03:48+0000\n" +"Last-Translator: OCA Transbot , 2018\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" @@ -19,16 +19,27 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit -msgid "EBP csv File" +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv +msgid "" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.actions.report.xml,name:account_balance_ebp_csv_export.action_report_trial_balance_ebp_csv +msgid "EBP CSV Balance" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard +msgid "Export EBP CSV" msgstr "" #. module: account_balance_ebp_csv_export -#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit -msgid "Trial Balance Report" +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_report_wizard +msgid "Trial Balance Report Wizard" msgstr "" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard msgid "or" msgstr "o" diff --git a/account_balance_ebp_csv_export/i18n/cs.po b/account_balance_ebp_csv_export/i18n/cs.po index 126c2548b..837ff020d 100644 --- a/account_balance_ebp_csv_export/i18n/cs.po +++ b/account_balance_ebp_csv_export/i18n/cs.po @@ -3,14 +3,14 @@ # * account_balance_ebp_csv_export # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-01 04:00+0000\n" -"PO-Revision-Date: 2016-10-01 04:00+0000\n" -"Last-Translator: OCA Transbot , 2016\n" +"POT-Creation-Date: 2018-02-17 03:48+0000\n" +"PO-Revision-Date: 2018-02-17 03:48+0000\n" +"Last-Translator: OCA Transbot , 2018\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" @@ -19,16 +19,27 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit -msgid "EBP csv File" +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv +msgid "" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.actions.report.xml,name:account_balance_ebp_csv_export.action_report_trial_balance_ebp_csv +msgid "EBP CSV Balance" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard +msgid "Export EBP CSV" msgstr "" #. module: account_balance_ebp_csv_export -#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit -msgid "Trial Balance Report" +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_report_wizard +msgid "Trial Balance Report Wizard" msgstr "" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard msgid "or" msgstr "nebo" diff --git a/account_balance_ebp_csv_export/i18n/da.po b/account_balance_ebp_csv_export/i18n/da.po index dbbbf3f9c..0f8c21114 100644 --- a/account_balance_ebp_csv_export/i18n/da.po +++ b/account_balance_ebp_csv_export/i18n/da.po @@ -3,14 +3,14 @@ # * account_balance_ebp_csv_export # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-01 04:00+0000\n" -"PO-Revision-Date: 2016-10-01 04:00+0000\n" -"Last-Translator: OCA Transbot , 2016\n" +"POT-Creation-Date: 2018-02-17 03:48+0000\n" +"PO-Revision-Date: 2018-02-17 03:48+0000\n" +"Last-Translator: OCA Transbot , 2018\n" "Language-Team: Danish (https://www.transifex.com/oca/teams/23907/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,16 +19,27 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit -msgid "EBP csv File" +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv +msgid "" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.actions.report.xml,name:account_balance_ebp_csv_export.action_report_trial_balance_ebp_csv +msgid "EBP CSV Balance" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard +msgid "Export EBP CSV" msgstr "" #. module: account_balance_ebp_csv_export -#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit -msgid "Trial Balance Report" +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_report_wizard +msgid "Trial Balance Report Wizard" msgstr "" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard msgid "or" msgstr "eller" diff --git a/account_balance_ebp_csv_export/i18n/de.po b/account_balance_ebp_csv_export/i18n/de.po index c24fe366c..b33390f74 100644 --- a/account_balance_ebp_csv_export/i18n/de.po +++ b/account_balance_ebp_csv_export/i18n/de.po @@ -3,14 +3,14 @@ # * account_balance_ebp_csv_export # # Translators: -# Ermin Trevisan , 2016 +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-01 04:00+0000\n" -"PO-Revision-Date: 2016-10-01 04:00+0000\n" -"Last-Translator: Ermin Trevisan , 2016\n" +"POT-Creation-Date: 2018-02-17 03:48+0000\n" +"PO-Revision-Date: 2018-02-17 03:48+0000\n" +"Last-Translator: OCA Transbot , 2018\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" @@ -19,16 +19,27 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit -msgid "EBP csv File" +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv +msgid "" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.actions.report.xml,name:account_balance_ebp_csv_export.action_report_trial_balance_ebp_csv +msgid "EBP CSV Balance" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard +msgid "Export EBP CSV" msgstr "" #. module: account_balance_ebp_csv_export -#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit -msgid "Trial Balance Report" +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_report_wizard +msgid "Trial Balance Report Wizard" msgstr "" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard msgid "or" msgstr "oder" diff --git a/account_balance_ebp_csv_export/i18n/el_GR.po b/account_balance_ebp_csv_export/i18n/el_GR.po index 6654a765e..2323382fa 100644 --- a/account_balance_ebp_csv_export/i18n/el_GR.po +++ b/account_balance_ebp_csv_export/i18n/el_GR.po @@ -3,14 +3,14 @@ # * account_balance_ebp_csv_export # # Translators: -# Kostas Goutoudis , 2016 +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-01 04:00+0000\n" -"PO-Revision-Date: 2016-10-01 04:00+0000\n" -"Last-Translator: Kostas Goutoudis , 2016\n" +"POT-Creation-Date: 2018-02-17 03:48+0000\n" +"PO-Revision-Date: 2018-02-17 03:48+0000\n" +"Last-Translator: OCA Transbot , 2018\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" @@ -19,16 +19,27 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit -msgid "EBP csv File" +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv +msgid "" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.actions.report.xml,name:account_balance_ebp_csv_export.action_report_trial_balance_ebp_csv +msgid "EBP CSV Balance" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard +msgid "Export EBP CSV" msgstr "" #. module: account_balance_ebp_csv_export -#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit -msgid "Trial Balance Report" +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_report_wizard +msgid "Trial Balance Report Wizard" msgstr "" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard msgid "or" msgstr "ή" diff --git a/account_balance_ebp_csv_export/i18n/en_AU.po b/account_balance_ebp_csv_export/i18n/en_AU.po index bb80c0be3..6539a2585 100644 --- a/account_balance_ebp_csv_export/i18n/en_AU.po +++ b/account_balance_ebp_csv_export/i18n/en_AU.po @@ -3,14 +3,14 @@ # * account_balance_ebp_csv_export # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-01 04:00+0000\n" -"PO-Revision-Date: 2016-10-01 04:00+0000\n" -"Last-Translator: OCA Transbot , 2016\n" +"POT-Creation-Date: 2018-02-17 03:48+0000\n" +"PO-Revision-Date: 2018-02-17 03:48+0000\n" +"Last-Translator: OCA Transbot , 2018\n" "Language-Team: English (Australia) (https://www.transifex.com/oca/teams/23907/en_AU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,16 +19,27 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit -msgid "EBP csv File" +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv +msgid "" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.actions.report.xml,name:account_balance_ebp_csv_export.action_report_trial_balance_ebp_csv +msgid "EBP CSV Balance" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard +msgid "Export EBP CSV" msgstr "" #. module: account_balance_ebp_csv_export -#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit -msgid "Trial Balance Report" +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_report_wizard +msgid "Trial Balance Report Wizard" msgstr "" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard msgid "or" msgstr "or" diff --git a/account_balance_ebp_csv_export/i18n/en_GB.po b/account_balance_ebp_csv_export/i18n/en_GB.po index eafbc91b8..ccfbf114a 100644 --- a/account_balance_ebp_csv_export/i18n/en_GB.po +++ b/account_balance_ebp_csv_export/i18n/en_GB.po @@ -3,14 +3,14 @@ # * account_balance_ebp_csv_export # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-01 04:00+0000\n" -"PO-Revision-Date: 2016-10-01 04:00+0000\n" -"Last-Translator: OCA Transbot , 2016\n" +"POT-Creation-Date: 2018-02-17 03:48+0000\n" +"PO-Revision-Date: 2018-02-17 03:48+0000\n" +"Last-Translator: OCA Transbot , 2018\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" @@ -19,16 +19,27 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit -msgid "EBP csv File" +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv +msgid "" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.actions.report.xml,name:account_balance_ebp_csv_export.action_report_trial_balance_ebp_csv +msgid "EBP CSV Balance" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard +msgid "Export EBP CSV" msgstr "" #. module: account_balance_ebp_csv_export -#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit -msgid "Trial Balance Report" +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_report_wizard +msgid "Trial Balance Report Wizard" msgstr "" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard msgid "or" msgstr "or" diff --git a/account_balance_ebp_csv_export/i18n/es.po b/account_balance_ebp_csv_export/i18n/es.po index 146b9d836..a5798005a 100644 --- a/account_balance_ebp_csv_export/i18n/es.po +++ b/account_balance_ebp_csv_export/i18n/es.po @@ -3,14 +3,14 @@ # * account_balance_ebp_csv_export # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-01 04:00+0000\n" -"PO-Revision-Date: 2016-10-01 04:00+0000\n" -"Last-Translator: OCA Transbot , 2016\n" +"POT-Creation-Date: 2018-02-17 03:48+0000\n" +"PO-Revision-Date: 2018-02-17 03:48+0000\n" +"Last-Translator: OCA Transbot , 2018\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" @@ -19,16 +19,27 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit -msgid "EBP csv File" +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv +msgid "" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.actions.report.xml,name:account_balance_ebp_csv_export.action_report_trial_balance_ebp_csv +msgid "EBP CSV Balance" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard +msgid "Export EBP CSV" msgstr "" #. module: account_balance_ebp_csv_export -#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit -msgid "Trial Balance Report" +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_report_wizard +msgid "Trial Balance Report Wizard" msgstr "" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard msgid "or" msgstr "o" diff --git a/account_balance_ebp_csv_export/i18n/es_AR.po b/account_balance_ebp_csv_export/i18n/es_AR.po index bc4329b14..2f90cfa9e 100644 --- a/account_balance_ebp_csv_export/i18n/es_AR.po +++ b/account_balance_ebp_csv_export/i18n/es_AR.po @@ -3,14 +3,14 @@ # * account_balance_ebp_csv_export # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-01 04:00+0000\n" -"PO-Revision-Date: 2016-10-01 04:00+0000\n" -"Last-Translator: OCA Transbot , 2016\n" +"POT-Creation-Date: 2018-02-17 03:48+0000\n" +"PO-Revision-Date: 2018-02-17 03:48+0000\n" +"Last-Translator: OCA Transbot , 2018\n" "Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/teams/23907/es_AR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,16 +19,27 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit -msgid "EBP csv File" +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv +msgid "" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.actions.report.xml,name:account_balance_ebp_csv_export.action_report_trial_balance_ebp_csv +msgid "EBP CSV Balance" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard +msgid "Export EBP CSV" msgstr "" #. module: account_balance_ebp_csv_export -#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit -msgid "Trial Balance Report" +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_report_wizard +msgid "Trial Balance Report Wizard" msgstr "" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard msgid "or" msgstr "o" diff --git a/account_balance_ebp_csv_export/i18n/es_CL.po b/account_balance_ebp_csv_export/i18n/es_CL.po index afee2931d..4af918b7b 100644 --- a/account_balance_ebp_csv_export/i18n/es_CL.po +++ b/account_balance_ebp_csv_export/i18n/es_CL.po @@ -3,14 +3,14 @@ # * account_balance_ebp_csv_export # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-05-05 21:17+0000\n" -"PO-Revision-Date: 2017-05-05 21:17+0000\n" -"Last-Translator: OCA Transbot , 2016\n" +"POT-Creation-Date: 2018-02-17 03:48+0000\n" +"PO-Revision-Date: 2018-02-17 03:48+0000\n" +"Last-Translator: OCA Transbot , 2018\n" "Language-Team: Spanish (Chile) (https://www.transifex.com/oca/teams/23907/es_CL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,16 +19,27 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit -msgid "EBP csv File" +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv +msgid "" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.actions.report.xml,name:account_balance_ebp_csv_export.action_report_trial_balance_ebp_csv +msgid "EBP CSV Balance" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard +msgid "Export EBP CSV" msgstr "" #. module: account_balance_ebp_csv_export -#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit -msgid "Trial Balance Report" +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_report_wizard +msgid "Trial Balance Report Wizard" msgstr "" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard msgid "or" msgstr "o" diff --git a/account_balance_ebp_csv_export/i18n/es_CO.po b/account_balance_ebp_csv_export/i18n/es_CO.po index 088b5a3ba..37ba11e76 100644 --- a/account_balance_ebp_csv_export/i18n/es_CO.po +++ b/account_balance_ebp_csv_export/i18n/es_CO.po @@ -3,14 +3,14 @@ # * account_balance_ebp_csv_export # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-01 04:00+0000\n" -"PO-Revision-Date: 2016-10-01 04:00+0000\n" -"Last-Translator: OCA Transbot , 2016\n" +"POT-Creation-Date: 2018-02-17 03:48+0000\n" +"PO-Revision-Date: 2018-02-17 03:48+0000\n" +"Last-Translator: OCA Transbot , 2018\n" "Language-Team: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/es_CO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,16 +19,27 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit -msgid "EBP csv File" +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv +msgid "" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.actions.report.xml,name:account_balance_ebp_csv_export.action_report_trial_balance_ebp_csv +msgid "EBP CSV Balance" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard +msgid "Export EBP CSV" msgstr "" #. module: account_balance_ebp_csv_export -#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit -msgid "Trial Balance Report" +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_report_wizard +msgid "Trial Balance Report Wizard" msgstr "" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard msgid "or" msgstr "o" diff --git a/account_balance_ebp_csv_export/i18n/es_CR.po b/account_balance_ebp_csv_export/i18n/es_CR.po index a3a6bda8a..fe9237149 100644 --- a/account_balance_ebp_csv_export/i18n/es_CR.po +++ b/account_balance_ebp_csv_export/i18n/es_CR.po @@ -3,14 +3,14 @@ # * account_balance_ebp_csv_export # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-01 04:00+0000\n" -"PO-Revision-Date: 2016-10-01 04:00+0000\n" -"Last-Translator: OCA Transbot , 2016\n" +"POT-Creation-Date: 2018-02-17 03:48+0000\n" +"PO-Revision-Date: 2018-02-17 03:48+0000\n" +"Last-Translator: OCA Transbot , 2018\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" @@ -19,16 +19,27 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit -msgid "EBP csv File" +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv +msgid "" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.actions.report.xml,name:account_balance_ebp_csv_export.action_report_trial_balance_ebp_csv +msgid "EBP CSV Balance" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard +msgid "Export EBP CSV" msgstr "" #. module: account_balance_ebp_csv_export -#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit -msgid "Trial Balance Report" +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_report_wizard +msgid "Trial Balance Report Wizard" msgstr "" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard msgid "or" msgstr "o" diff --git a/account_balance_ebp_csv_export/i18n/es_DO.po b/account_balance_ebp_csv_export/i18n/es_DO.po index 14605c526..38031fcb5 100644 --- a/account_balance_ebp_csv_export/i18n/es_DO.po +++ b/account_balance_ebp_csv_export/i18n/es_DO.po @@ -3,14 +3,14 @@ # * account_balance_ebp_csv_export # # Translators: -# OCA Transbot , 2017 +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-11-17 14:34+0000\n" -"PO-Revision-Date: 2017-11-17 14:34+0000\n" -"Last-Translator: OCA Transbot , 2017\n" +"POT-Creation-Date: 2018-02-17 03:48+0000\n" +"PO-Revision-Date: 2018-02-17 03:48+0000\n" +"Last-Translator: OCA Transbot , 2018\n" "Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/oca/teams/23907/es_DO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,16 +19,27 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit -msgid "EBP csv File" +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv +msgid "" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.actions.report.xml,name:account_balance_ebp_csv_export.action_report_trial_balance_ebp_csv +msgid "EBP CSV Balance" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard +msgid "Export EBP CSV" msgstr "" #. module: account_balance_ebp_csv_export -#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit -msgid "Trial Balance Report" +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_report_wizard +msgid "Trial Balance Report Wizard" msgstr "" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard msgid "or" msgstr "o" diff --git a/account_balance_ebp_csv_export/i18n/es_EC.po b/account_balance_ebp_csv_export/i18n/es_EC.po index fda4d285a..edeba3630 100644 --- a/account_balance_ebp_csv_export/i18n/es_EC.po +++ b/account_balance_ebp_csv_export/i18n/es_EC.po @@ -3,14 +3,14 @@ # * account_balance_ebp_csv_export # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-01 04:00+0000\n" -"PO-Revision-Date: 2016-10-01 04:00+0000\n" -"Last-Translator: OCA Transbot , 2016\n" +"POT-Creation-Date: 2018-02-17 03:48+0000\n" +"PO-Revision-Date: 2018-02-17 03:48+0000\n" +"Last-Translator: OCA Transbot , 2018\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" @@ -19,16 +19,27 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit -msgid "EBP csv File" +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv +msgid "" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.actions.report.xml,name:account_balance_ebp_csv_export.action_report_trial_balance_ebp_csv +msgid "EBP CSV Balance" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard +msgid "Export EBP CSV" msgstr "" #. module: account_balance_ebp_csv_export -#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit -msgid "Trial Balance Report" +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_report_wizard +msgid "Trial Balance Report Wizard" msgstr "" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard msgid "or" msgstr "o" diff --git a/account_balance_ebp_csv_export/i18n/es_ES.po b/account_balance_ebp_csv_export/i18n/es_ES.po index 90666f0b7..0175866d4 100644 --- a/account_balance_ebp_csv_export/i18n/es_ES.po +++ b/account_balance_ebp_csv_export/i18n/es_ES.po @@ -3,14 +3,14 @@ # * account_balance_ebp_csv_export # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-01 04:00+0000\n" -"PO-Revision-Date: 2016-10-01 04:00+0000\n" -"Last-Translator: OCA Transbot , 2016\n" +"POT-Creation-Date: 2018-02-17 03:48+0000\n" +"PO-Revision-Date: 2018-02-17 03:48+0000\n" +"Last-Translator: OCA Transbot , 2018\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" @@ -19,16 +19,27 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit -msgid "EBP csv File" +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv +msgid "" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.actions.report.xml,name:account_balance_ebp_csv_export.action_report_trial_balance_ebp_csv +msgid "EBP CSV Balance" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard +msgid "Export EBP CSV" msgstr "" #. module: account_balance_ebp_csv_export -#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit -msgid "Trial Balance Report" +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_report_wizard +msgid "Trial Balance Report Wizard" msgstr "" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard msgid "or" msgstr "o" diff --git a/account_balance_ebp_csv_export/i18n/es_MX.po b/account_balance_ebp_csv_export/i18n/es_MX.po index 974e87811..420f31cf5 100644 --- a/account_balance_ebp_csv_export/i18n/es_MX.po +++ b/account_balance_ebp_csv_export/i18n/es_MX.po @@ -3,14 +3,14 @@ # * account_balance_ebp_csv_export # # Translators: -# OCA Transbot , 2017 +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-11-17 14:34+0000\n" -"PO-Revision-Date: 2017-11-17 14:34+0000\n" -"Last-Translator: OCA Transbot , 2017\n" +"POT-Creation-Date: 2018-02-17 03:48+0000\n" +"PO-Revision-Date: 2018-02-17 03:48+0000\n" +"Last-Translator: OCA Transbot , 2018\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" @@ -19,16 +19,27 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit -msgid "EBP csv File" +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv +msgid "" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.actions.report.xml,name:account_balance_ebp_csv_export.action_report_trial_balance_ebp_csv +msgid "EBP CSV Balance" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard +msgid "Export EBP CSV" msgstr "" #. module: account_balance_ebp_csv_export -#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit -msgid "Trial Balance Report" +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_report_wizard +msgid "Trial Balance Report Wizard" msgstr "" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard msgid "or" msgstr "ó" diff --git a/account_balance_ebp_csv_export/i18n/es_PE.po b/account_balance_ebp_csv_export/i18n/es_PE.po index f85797e26..dfbfa97b3 100644 --- a/account_balance_ebp_csv_export/i18n/es_PE.po +++ b/account_balance_ebp_csv_export/i18n/es_PE.po @@ -3,14 +3,14 @@ # * account_balance_ebp_csv_export # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-01 04:00+0000\n" -"PO-Revision-Date: 2016-10-01 04:00+0000\n" -"Last-Translator: OCA Transbot , 2016\n" +"POT-Creation-Date: 2018-02-17 03:48+0000\n" +"PO-Revision-Date: 2018-02-17 03:48+0000\n" +"Last-Translator: OCA Transbot , 2018\n" "Language-Team: Spanish (Peru) (https://www.transifex.com/oca/teams/23907/es_PE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,16 +19,27 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit -msgid "EBP csv File" +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv +msgid "" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.actions.report.xml,name:account_balance_ebp_csv_export.action_report_trial_balance_ebp_csv +msgid "EBP CSV Balance" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard +msgid "Export EBP CSV" msgstr "" #. module: account_balance_ebp_csv_export -#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit -msgid "Trial Balance Report" +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_report_wizard +msgid "Trial Balance Report Wizard" msgstr "" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard msgid "or" msgstr "o" diff --git a/account_balance_ebp_csv_export/i18n/et.po b/account_balance_ebp_csv_export/i18n/et.po index e41bffe11..e4365c03a 100644 --- a/account_balance_ebp_csv_export/i18n/et.po +++ b/account_balance_ebp_csv_export/i18n/et.po @@ -3,14 +3,14 @@ # * account_balance_ebp_csv_export # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-01 04:00+0000\n" -"PO-Revision-Date: 2016-10-01 04:00+0000\n" -"Last-Translator: OCA Transbot , 2016\n" +"POT-Creation-Date: 2018-02-17 03:48+0000\n" +"PO-Revision-Date: 2018-02-17 03:48+0000\n" +"Last-Translator: OCA Transbot , 2018\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" @@ -19,16 +19,27 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit -msgid "EBP csv File" +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv +msgid "" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.actions.report.xml,name:account_balance_ebp_csv_export.action_report_trial_balance_ebp_csv +msgid "EBP CSV Balance" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard +msgid "Export EBP CSV" msgstr "" #. module: account_balance_ebp_csv_export -#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit -msgid "Trial Balance Report" +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_report_wizard +msgid "Trial Balance Report Wizard" msgstr "" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard msgid "or" msgstr "või" diff --git a/account_balance_ebp_csv_export/i18n/eu.po b/account_balance_ebp_csv_export/i18n/eu.po index adde5457b..dcdccb14d 100644 --- a/account_balance_ebp_csv_export/i18n/eu.po +++ b/account_balance_ebp_csv_export/i18n/eu.po @@ -3,14 +3,14 @@ # * account_balance_ebp_csv_export # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-01 04:00+0000\n" -"PO-Revision-Date: 2016-10-01 04:00+0000\n" -"Last-Translator: OCA Transbot , 2016\n" +"POT-Creation-Date: 2018-02-17 03:48+0000\n" +"PO-Revision-Date: 2018-02-17 03:48+0000\n" +"Last-Translator: OCA Transbot , 2018\n" "Language-Team: Basque (https://www.transifex.com/oca/teams/23907/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,16 +19,27 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit -msgid "EBP csv File" +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv +msgid "" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.actions.report.xml,name:account_balance_ebp_csv_export.action_report_trial_balance_ebp_csv +msgid "EBP CSV Balance" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard +msgid "Export EBP CSV" msgstr "" #. module: account_balance_ebp_csv_export -#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit -msgid "Trial Balance Report" +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_report_wizard +msgid "Trial Balance Report Wizard" msgstr "" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard msgid "or" msgstr "edo" diff --git a/account_balance_ebp_csv_export/i18n/fa.po b/account_balance_ebp_csv_export/i18n/fa.po index 1fa674bd1..a5f90df68 100644 --- a/account_balance_ebp_csv_export/i18n/fa.po +++ b/account_balance_ebp_csv_export/i18n/fa.po @@ -3,14 +3,14 @@ # * account_balance_ebp_csv_export # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-01 04:00+0000\n" -"PO-Revision-Date: 2016-10-01 04:00+0000\n" -"Last-Translator: OCA Transbot , 2016\n" +"POT-Creation-Date: 2018-02-17 03:48+0000\n" +"PO-Revision-Date: 2018-02-17 03:48+0000\n" +"Last-Translator: OCA Transbot , 2018\n" "Language-Team: Persian (https://www.transifex.com/oca/teams/23907/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,16 +19,27 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit -msgid "EBP csv File" +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv +msgid "" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.actions.report.xml,name:account_balance_ebp_csv_export.action_report_trial_balance_ebp_csv +msgid "EBP CSV Balance" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard +msgid "Export EBP CSV" msgstr "" #. module: account_balance_ebp_csv_export -#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit -msgid "Trial Balance Report" +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_report_wizard +msgid "Trial Balance Report Wizard" msgstr "" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard msgid "or" msgstr "یا" diff --git a/account_balance_ebp_csv_export/i18n/fi.po b/account_balance_ebp_csv_export/i18n/fi.po index 1a803ae62..43e1748d2 100644 --- a/account_balance_ebp_csv_export/i18n/fi.po +++ b/account_balance_ebp_csv_export/i18n/fi.po @@ -3,14 +3,14 @@ # * account_balance_ebp_csv_export # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-01 04:00+0000\n" -"PO-Revision-Date: 2016-10-01 04:00+0000\n" -"Last-Translator: OCA Transbot , 2016\n" +"POT-Creation-Date: 2018-02-17 03:48+0000\n" +"PO-Revision-Date: 2018-02-17 03:48+0000\n" +"Last-Translator: OCA Transbot , 2018\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" @@ -19,16 +19,27 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit -msgid "EBP csv File" +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv +msgid "" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.actions.report.xml,name:account_balance_ebp_csv_export.action_report_trial_balance_ebp_csv +msgid "EBP CSV Balance" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard +msgid "Export EBP CSV" msgstr "" #. module: account_balance_ebp_csv_export -#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit -msgid "Trial Balance Report" +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_report_wizard +msgid "Trial Balance Report Wizard" msgstr "" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard msgid "or" msgstr "tai" diff --git a/account_balance_ebp_csv_export/i18n/fr.po b/account_balance_ebp_csv_export/i18n/fr.po index 41b1d31f6..a922beb27 100644 --- a/account_balance_ebp_csv_export/i18n/fr.po +++ b/account_balance_ebp_csv_export/i18n/fr.po @@ -3,14 +3,15 @@ # * account_balance_ebp_csv_export # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2018 +# Quentin THEURET , 2018 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-01 04:00+0000\n" -"PO-Revision-Date: 2016-10-01 04:00+0000\n" -"Last-Translator: OCA Transbot , 2016\n" +"POT-Creation-Date: 2018-02-17 03:48+0000\n" +"PO-Revision-Date: 2018-02-17 03:48+0000\n" +"Last-Translator: Quentin THEURET , 2018\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" @@ -19,16 +20,28 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit -msgid "EBP csv File" +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv +msgid "" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" msgstr "" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" #. module: account_balance_ebp_csv_export -#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit -msgid "Trial Balance Report" -msgstr "" +#: model:ir.actions.report.xml,name:account_balance_ebp_csv_export.action_report_trial_balance_ebp_csv +msgid "EBP CSV Balance" +msgstr "Balance CSV d'EBP" + +#. module: account_balance_ebp_csv_export +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard +msgid "Export EBP CSV" +msgstr "Export CSV d'EBP" + +#. module: account_balance_ebp_csv_export +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_report_wizard +msgid "Trial Balance Report Wizard" +msgstr "Assistant de test de rapport de balance" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard msgid "or" msgstr "ou" diff --git a/account_balance_ebp_csv_export/i18n/fr_CA.po b/account_balance_ebp_csv_export/i18n/fr_CA.po index d3ee8eb3d..575f68594 100644 --- a/account_balance_ebp_csv_export/i18n/fr_CA.po +++ b/account_balance_ebp_csv_export/i18n/fr_CA.po @@ -3,14 +3,14 @@ # * account_balance_ebp_csv_export # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-01 04:00+0000\n" -"PO-Revision-Date: 2016-10-01 04:00+0000\n" -"Last-Translator: OCA Transbot , 2016\n" +"POT-Creation-Date: 2018-02-17 03:48+0000\n" +"PO-Revision-Date: 2018-02-17 03:48+0000\n" +"Last-Translator: OCA Transbot , 2018\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" @@ -19,16 +19,27 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit -msgid "EBP csv File" +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv +msgid "" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.actions.report.xml,name:account_balance_ebp_csv_export.action_report_trial_balance_ebp_csv +msgid "EBP CSV Balance" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard +msgid "Export EBP CSV" msgstr "" #. module: account_balance_ebp_csv_export -#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit -msgid "Trial Balance Report" +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_report_wizard +msgid "Trial Balance Report Wizard" msgstr "" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard msgid "or" msgstr "ou" diff --git a/account_balance_ebp_csv_export/i18n/fr_CH.po b/account_balance_ebp_csv_export/i18n/fr_CH.po index 8ad9da1b1..719f318fe 100644 --- a/account_balance_ebp_csv_export/i18n/fr_CH.po +++ b/account_balance_ebp_csv_export/i18n/fr_CH.po @@ -3,14 +3,14 @@ # * account_balance_ebp_csv_export # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-01 04:00+0000\n" -"PO-Revision-Date: 2016-10-01 04:00+0000\n" -"Last-Translator: OCA Transbot , 2016\n" +"POT-Creation-Date: 2018-02-17 03:48+0000\n" +"PO-Revision-Date: 2018-02-17 03:48+0000\n" +"Last-Translator: OCA Transbot , 2018\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" @@ -19,16 +19,27 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit -msgid "EBP csv File" +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv +msgid "" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.actions.report.xml,name:account_balance_ebp_csv_export.action_report_trial_balance_ebp_csv +msgid "EBP CSV Balance" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard +msgid "Export EBP CSV" msgstr "" #. module: account_balance_ebp_csv_export -#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit -msgid "Trial Balance Report" +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_report_wizard +msgid "Trial Balance Report Wizard" msgstr "" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard msgid "or" msgstr "ou" diff --git a/account_balance_ebp_csv_export/i18n/gl.po b/account_balance_ebp_csv_export/i18n/gl.po index c356d98e9..a3a0f8b30 100644 --- a/account_balance_ebp_csv_export/i18n/gl.po +++ b/account_balance_ebp_csv_export/i18n/gl.po @@ -3,14 +3,14 @@ # * account_balance_ebp_csv_export # # Translators: -# César Castro Cruz , 2016 +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-01 04:00+0000\n" -"PO-Revision-Date: 2016-10-01 04:00+0000\n" -"Last-Translator: César Castro Cruz , 2016\n" +"POT-Creation-Date: 2018-02-17 03:48+0000\n" +"PO-Revision-Date: 2018-02-17 03:48+0000\n" +"Last-Translator: OCA Transbot , 2018\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" @@ -19,16 +19,27 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit -msgid "EBP csv File" +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv +msgid "" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.actions.report.xml,name:account_balance_ebp_csv_export.action_report_trial_balance_ebp_csv +msgid "EBP CSV Balance" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard +msgid "Export EBP CSV" msgstr "" #. module: account_balance_ebp_csv_export -#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit -msgid "Trial Balance Report" +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_report_wizard +msgid "Trial Balance Report Wizard" msgstr "" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard msgid "or" msgstr "ou" diff --git a/account_balance_ebp_csv_export/i18n/he.po b/account_balance_ebp_csv_export/i18n/he.po index 677d0c3e2..eef9110f0 100644 --- a/account_balance_ebp_csv_export/i18n/he.po +++ b/account_balance_ebp_csv_export/i18n/he.po @@ -3,14 +3,14 @@ # * account_balance_ebp_csv_export # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-01 04:00+0000\n" -"PO-Revision-Date: 2016-10-01 04:00+0000\n" -"Last-Translator: OCA Transbot , 2016\n" +"POT-Creation-Date: 2018-02-17 03:48+0000\n" +"PO-Revision-Date: 2018-02-17 03:48+0000\n" +"Last-Translator: OCA Transbot , 2018\n" "Language-Team: Hebrew (https://www.transifex.com/oca/teams/23907/he/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,16 +19,27 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit -msgid "EBP csv File" +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv +msgid "" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.actions.report.xml,name:account_balance_ebp_csv_export.action_report_trial_balance_ebp_csv +msgid "EBP CSV Balance" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard +msgid "Export EBP CSV" msgstr "" #. module: account_balance_ebp_csv_export -#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit -msgid "Trial Balance Report" +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_report_wizard +msgid "Trial Balance Report Wizard" msgstr "" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard msgid "or" msgstr "או" diff --git a/account_balance_ebp_csv_export/i18n/hr.po b/account_balance_ebp_csv_export/i18n/hr.po index bef3b5bf2..78c56e9c9 100644 --- a/account_balance_ebp_csv_export/i18n/hr.po +++ b/account_balance_ebp_csv_export/i18n/hr.po @@ -3,14 +3,14 @@ # * account_balance_ebp_csv_export # # Translators: -# Bole , 2016 +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-01 04:00+0000\n" -"PO-Revision-Date: 2016-10-01 04:00+0000\n" -"Last-Translator: Bole , 2016\n" +"POT-Creation-Date: 2018-02-17 03:48+0000\n" +"PO-Revision-Date: 2018-02-17 03:48+0000\n" +"Last-Translator: OCA Transbot , 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" @@ -19,16 +19,27 @@ msgstr "" "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_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit -msgid "EBP csv File" +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv +msgid "" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.actions.report.xml,name:account_balance_ebp_csv_export.action_report_trial_balance_ebp_csv +msgid "EBP CSV Balance" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard +msgid "Export EBP CSV" msgstr "" #. module: account_balance_ebp_csv_export -#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit -msgid "Trial Balance Report" +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_report_wizard +msgid "Trial Balance Report Wizard" msgstr "" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard msgid "or" msgstr "ili" diff --git a/account_balance_ebp_csv_export/i18n/hu.po b/account_balance_ebp_csv_export/i18n/hu.po index a590ba025..811298843 100644 --- a/account_balance_ebp_csv_export/i18n/hu.po +++ b/account_balance_ebp_csv_export/i18n/hu.po @@ -3,14 +3,14 @@ # * account_balance_ebp_csv_export # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-01 04:00+0000\n" -"PO-Revision-Date: 2016-10-01 04:00+0000\n" -"Last-Translator: OCA Transbot , 2016\n" +"POT-Creation-Date: 2018-02-17 03:48+0000\n" +"PO-Revision-Date: 2018-02-17 03:48+0000\n" +"Last-Translator: OCA Transbot , 2018\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" @@ -19,16 +19,27 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit -msgid "EBP csv File" +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv +msgid "" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.actions.report.xml,name:account_balance_ebp_csv_export.action_report_trial_balance_ebp_csv +msgid "EBP CSV Balance" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard +msgid "Export EBP CSV" msgstr "" #. module: account_balance_ebp_csv_export -#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit -msgid "Trial Balance Report" +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_report_wizard +msgid "Trial Balance Report Wizard" msgstr "" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard msgid "or" msgstr "vagy" diff --git a/account_balance_ebp_csv_export/i18n/id.po b/account_balance_ebp_csv_export/i18n/id.po index 5e8d212bf..90d8c23bd 100644 --- a/account_balance_ebp_csv_export/i18n/id.po +++ b/account_balance_ebp_csv_export/i18n/id.po @@ -3,14 +3,14 @@ # * account_balance_ebp_csv_export # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-01 04:00+0000\n" -"PO-Revision-Date: 2016-10-01 04:00+0000\n" -"Last-Translator: OCA Transbot , 2016\n" +"POT-Creation-Date: 2018-02-17 03:48+0000\n" +"PO-Revision-Date: 2018-02-17 03:48+0000\n" +"Last-Translator: OCA Transbot , 2018\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" @@ -19,16 +19,27 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit -msgid "EBP csv File" +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv +msgid "" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.actions.report.xml,name:account_balance_ebp_csv_export.action_report_trial_balance_ebp_csv +msgid "EBP CSV Balance" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard +msgid "Export EBP CSV" msgstr "" #. module: account_balance_ebp_csv_export -#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit -msgid "Trial Balance Report" +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_report_wizard +msgid "Trial Balance Report Wizard" msgstr "" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard msgid "or" msgstr "atau" diff --git a/account_balance_ebp_csv_export/i18n/it.po b/account_balance_ebp_csv_export/i18n/it.po index 75ac93c9e..4eeedec4c 100644 --- a/account_balance_ebp_csv_export/i18n/it.po +++ b/account_balance_ebp_csv_export/i18n/it.po @@ -3,14 +3,14 @@ # * account_balance_ebp_csv_export # # Translators: -# Paolo Valier , 2016 +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-01 04:00+0000\n" -"PO-Revision-Date: 2016-10-01 04:00+0000\n" -"Last-Translator: Paolo Valier , 2016\n" +"POT-Creation-Date: 2018-02-17 03:48+0000\n" +"PO-Revision-Date: 2018-02-17 03:48+0000\n" +"Last-Translator: OCA Transbot , 2018\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" @@ -19,16 +19,27 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit -msgid "EBP csv File" +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv +msgid "" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.actions.report.xml,name:account_balance_ebp_csv_export.action_report_trial_balance_ebp_csv +msgid "EBP CSV Balance" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard +msgid "Export EBP CSV" msgstr "" #. module: account_balance_ebp_csv_export -#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit -msgid "Trial Balance Report" +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_report_wizard +msgid "Trial Balance Report Wizard" msgstr "" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard msgid "or" msgstr "o" diff --git a/account_balance_ebp_csv_export/i18n/ja.po b/account_balance_ebp_csv_export/i18n/ja.po index 816b52e31..287421ee8 100644 --- a/account_balance_ebp_csv_export/i18n/ja.po +++ b/account_balance_ebp_csv_export/i18n/ja.po @@ -3,14 +3,14 @@ # * account_balance_ebp_csv_export # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-01 04:00+0000\n" -"PO-Revision-Date: 2016-10-01 04:00+0000\n" -"Last-Translator: OCA Transbot , 2016\n" +"POT-Creation-Date: 2018-02-17 03:48+0000\n" +"PO-Revision-Date: 2018-02-17 03:48+0000\n" +"Last-Translator: OCA Transbot , 2018\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" @@ -19,16 +19,27 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit -msgid "EBP csv File" +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv +msgid "" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.actions.report.xml,name:account_balance_ebp_csv_export.action_report_trial_balance_ebp_csv +msgid "EBP CSV Balance" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard +msgid "Export EBP CSV" msgstr "" #. module: account_balance_ebp_csv_export -#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit -msgid "Trial Balance Report" +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_report_wizard +msgid "Trial Balance Report Wizard" msgstr "" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard msgid "or" msgstr "または" diff --git a/account_balance_ebp_csv_export/i18n/ko.po b/account_balance_ebp_csv_export/i18n/ko.po index a11be53d2..8a6c1e896 100644 --- a/account_balance_ebp_csv_export/i18n/ko.po +++ b/account_balance_ebp_csv_export/i18n/ko.po @@ -3,14 +3,14 @@ # * account_balance_ebp_csv_export # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-01 04:00+0000\n" -"PO-Revision-Date: 2016-10-01 04:00+0000\n" -"Last-Translator: OCA Transbot , 2016\n" +"POT-Creation-Date: 2018-02-17 03:48+0000\n" +"PO-Revision-Date: 2018-02-17 03:48+0000\n" +"Last-Translator: OCA Transbot , 2018\n" "Language-Team: Korean (https://www.transifex.com/oca/teams/23907/ko/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,16 +19,27 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit -msgid "EBP csv File" +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv +msgid "" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.actions.report.xml,name:account_balance_ebp_csv_export.action_report_trial_balance_ebp_csv +msgid "EBP CSV Balance" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard +msgid "Export EBP CSV" msgstr "" #. module: account_balance_ebp_csv_export -#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit -msgid "Trial Balance Report" +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_report_wizard +msgid "Trial Balance Report Wizard" msgstr "" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard msgid "or" msgstr "또는" diff --git a/account_balance_ebp_csv_export/i18n/lo.po b/account_balance_ebp_csv_export/i18n/lo.po index 75072085b..7e2260b28 100644 --- a/account_balance_ebp_csv_export/i18n/lo.po +++ b/account_balance_ebp_csv_export/i18n/lo.po @@ -3,14 +3,14 @@ # * account_balance_ebp_csv_export # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-01 04:00+0000\n" -"PO-Revision-Date: 2016-10-01 04:00+0000\n" -"Last-Translator: OCA Transbot , 2016\n" +"POT-Creation-Date: 2018-02-17 03:48+0000\n" +"PO-Revision-Date: 2018-02-17 03:48+0000\n" +"Last-Translator: OCA Transbot , 2018\n" "Language-Team: Lao (https://www.transifex.com/oca/teams/23907/lo/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,16 +19,27 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit -msgid "EBP csv File" +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv +msgid "" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.actions.report.xml,name:account_balance_ebp_csv_export.action_report_trial_balance_ebp_csv +msgid "EBP CSV Balance" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard +msgid "Export EBP CSV" msgstr "" #. module: account_balance_ebp_csv_export -#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit -msgid "Trial Balance Report" +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_report_wizard +msgid "Trial Balance Report Wizard" msgstr "" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard msgid "or" msgstr "ຫຼື" diff --git a/account_balance_ebp_csv_export/i18n/lt.po b/account_balance_ebp_csv_export/i18n/lt.po index 97cc5a363..7839aff47 100644 --- a/account_balance_ebp_csv_export/i18n/lt.po +++ b/account_balance_ebp_csv_export/i18n/lt.po @@ -3,14 +3,14 @@ # * account_balance_ebp_csv_export # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-01 04:00+0000\n" -"PO-Revision-Date: 2016-10-01 04:00+0000\n" -"Last-Translator: OCA Transbot , 2016\n" +"POT-Creation-Date: 2018-02-17 03:48+0000\n" +"PO-Revision-Date: 2018-02-17 03:48+0000\n" +"Last-Translator: OCA Transbot , 2018\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" @@ -19,16 +19,27 @@ msgstr "" "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_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit -msgid "EBP csv File" +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv +msgid "" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.actions.report.xml,name:account_balance_ebp_csv_export.action_report_trial_balance_ebp_csv +msgid "EBP CSV Balance" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard +msgid "Export EBP CSV" msgstr "" #. module: account_balance_ebp_csv_export -#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit -msgid "Trial Balance Report" +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_report_wizard +msgid "Trial Balance Report Wizard" msgstr "" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard msgid "or" msgstr "arba" diff --git a/account_balance_ebp_csv_export/i18n/lt_LT.po b/account_balance_ebp_csv_export/i18n/lt_LT.po index 628c9160c..ab75bcb92 100644 --- a/account_balance_ebp_csv_export/i18n/lt_LT.po +++ b/account_balance_ebp_csv_export/i18n/lt_LT.po @@ -3,14 +3,14 @@ # * account_balance_ebp_csv_export # # Translators: -# Arminas Grigonis , 2016 +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-01 04:00+0000\n" -"PO-Revision-Date: 2016-10-01 04:00+0000\n" -"Last-Translator: Arminas Grigonis , 2016\n" +"POT-Creation-Date: 2018-02-17 03:48+0000\n" +"PO-Revision-Date: 2018-02-17 03:48+0000\n" +"Last-Translator: OCA Transbot , 2018\n" "Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/oca/teams/23907/lt_LT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,16 +19,27 @@ msgstr "" "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_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit -msgid "EBP csv File" +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv +msgid "" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.actions.report.xml,name:account_balance_ebp_csv_export.action_report_trial_balance_ebp_csv +msgid "EBP CSV Balance" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard +msgid "Export EBP CSV" msgstr "" #. module: account_balance_ebp_csv_export -#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit -msgid "Trial Balance Report" +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_report_wizard +msgid "Trial Balance Report Wizard" msgstr "" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard msgid "or" msgstr "arba" diff --git a/account_balance_ebp_csv_export/i18n/lv.po b/account_balance_ebp_csv_export/i18n/lv.po index e1ed39d19..29abe46aa 100644 --- a/account_balance_ebp_csv_export/i18n/lv.po +++ b/account_balance_ebp_csv_export/i18n/lv.po @@ -3,14 +3,14 @@ # * account_balance_ebp_csv_export # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-01 04:00+0000\n" -"PO-Revision-Date: 2016-10-01 04:00+0000\n" -"Last-Translator: OCA Transbot , 2016\n" +"POT-Creation-Date: 2018-02-17 03:48+0000\n" +"PO-Revision-Date: 2018-02-17 03:48+0000\n" +"Last-Translator: OCA Transbot , 2018\n" "Language-Team: Latvian (https://www.transifex.com/oca/teams/23907/lv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,16 +19,27 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit -msgid "EBP csv File" +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv +msgid "" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.actions.report.xml,name:account_balance_ebp_csv_export.action_report_trial_balance_ebp_csv +msgid "EBP CSV Balance" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard +msgid "Export EBP CSV" msgstr "" #. module: account_balance_ebp_csv_export -#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit -msgid "Trial Balance Report" +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_report_wizard +msgid "Trial Balance Report Wizard" msgstr "" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard msgid "or" msgstr "vai" diff --git a/account_balance_ebp_csv_export/i18n/mk.po b/account_balance_ebp_csv_export/i18n/mk.po index 8760ae938..df861795d 100644 --- a/account_balance_ebp_csv_export/i18n/mk.po +++ b/account_balance_ebp_csv_export/i18n/mk.po @@ -3,14 +3,14 @@ # * account_balance_ebp_csv_export # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-01 04:00+0000\n" -"PO-Revision-Date: 2016-10-01 04:00+0000\n" -"Last-Translator: OCA Transbot , 2016\n" +"POT-Creation-Date: 2018-02-17 03:48+0000\n" +"PO-Revision-Date: 2018-02-17 03:48+0000\n" +"Last-Translator: OCA Transbot , 2018\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" @@ -19,16 +19,27 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit -msgid "EBP csv File" +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv +msgid "" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.actions.report.xml,name:account_balance_ebp_csv_export.action_report_trial_balance_ebp_csv +msgid "EBP CSV Balance" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard +msgid "Export EBP CSV" msgstr "" #. module: account_balance_ebp_csv_export -#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit -msgid "Trial Balance Report" +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_report_wizard +msgid "Trial Balance Report Wizard" msgstr "" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard msgid "or" msgstr "или" diff --git a/account_balance_ebp_csv_export/i18n/mn.po b/account_balance_ebp_csv_export/i18n/mn.po index 6c907b234..90fd7c26c 100644 --- a/account_balance_ebp_csv_export/i18n/mn.po +++ b/account_balance_ebp_csv_export/i18n/mn.po @@ -3,14 +3,14 @@ # * account_balance_ebp_csv_export # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-01 04:00+0000\n" -"PO-Revision-Date: 2016-10-01 04:00+0000\n" -"Last-Translator: OCA Transbot , 2016\n" +"POT-Creation-Date: 2018-02-17 03:48+0000\n" +"PO-Revision-Date: 2018-02-17 03:48+0000\n" +"Last-Translator: OCA Transbot , 2018\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" @@ -19,16 +19,27 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit -msgid "EBP csv File" +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv +msgid "" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.actions.report.xml,name:account_balance_ebp_csv_export.action_report_trial_balance_ebp_csv +msgid "EBP CSV Balance" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard +msgid "Export EBP CSV" msgstr "" #. module: account_balance_ebp_csv_export -#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit -msgid "Trial Balance Report" +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_report_wizard +msgid "Trial Balance Report Wizard" msgstr "" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard msgid "or" msgstr "эсвэл" diff --git a/account_balance_ebp_csv_export/i18n/nb.po b/account_balance_ebp_csv_export/i18n/nb.po index 40819534f..b4ece5938 100644 --- a/account_balance_ebp_csv_export/i18n/nb.po +++ b/account_balance_ebp_csv_export/i18n/nb.po @@ -3,14 +3,14 @@ # * account_balance_ebp_csv_export # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-01 04:00+0000\n" -"PO-Revision-Date: 2016-10-01 04:00+0000\n" -"Last-Translator: OCA Transbot , 2016\n" +"POT-Creation-Date: 2018-02-17 03:48+0000\n" +"PO-Revision-Date: 2018-02-17 03:48+0000\n" +"Last-Translator: OCA Transbot , 2018\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" @@ -19,16 +19,27 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit -msgid "EBP csv File" +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv +msgid "" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.actions.report.xml,name:account_balance_ebp_csv_export.action_report_trial_balance_ebp_csv +msgid "EBP CSV Balance" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard +msgid "Export EBP CSV" msgstr "" #. module: account_balance_ebp_csv_export -#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit -msgid "Trial Balance Report" +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_report_wizard +msgid "Trial Balance Report Wizard" msgstr "" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard msgid "or" msgstr "eller" diff --git a/account_balance_ebp_csv_export/i18n/nl.po b/account_balance_ebp_csv_export/i18n/nl.po index e8564c639..a623ccc89 100644 --- a/account_balance_ebp_csv_export/i18n/nl.po +++ b/account_balance_ebp_csv_export/i18n/nl.po @@ -3,14 +3,14 @@ # * account_balance_ebp_csv_export # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-01 04:00+0000\n" -"PO-Revision-Date: 2016-10-01 04:00+0000\n" -"Last-Translator: OCA Transbot , 2016\n" +"POT-Creation-Date: 2018-02-17 03:48+0000\n" +"PO-Revision-Date: 2018-02-17 03:48+0000\n" +"Last-Translator: OCA Transbot , 2018\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" @@ -19,16 +19,27 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit -msgid "EBP csv File" +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv +msgid "" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.actions.report.xml,name:account_balance_ebp_csv_export.action_report_trial_balance_ebp_csv +msgid "EBP CSV Balance" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard +msgid "Export EBP CSV" msgstr "" #. module: account_balance_ebp_csv_export -#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit -msgid "Trial Balance Report" +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_report_wizard +msgid "Trial Balance Report Wizard" msgstr "" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard msgid "or" msgstr "of" diff --git a/account_balance_ebp_csv_export/i18n/nl_BE.po b/account_balance_ebp_csv_export/i18n/nl_BE.po index 012d68611..e673fc393 100644 --- a/account_balance_ebp_csv_export/i18n/nl_BE.po +++ b/account_balance_ebp_csv_export/i18n/nl_BE.po @@ -3,14 +3,14 @@ # * account_balance_ebp_csv_export # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-01 04:00+0000\n" -"PO-Revision-Date: 2016-10-01 04:00+0000\n" -"Last-Translator: OCA Transbot , 2016\n" +"POT-Creation-Date: 2018-02-17 03:48+0000\n" +"PO-Revision-Date: 2018-02-17 03:48+0000\n" +"Last-Translator: OCA Transbot , 2018\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" @@ -19,16 +19,27 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit -msgid "EBP csv File" +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv +msgid "" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.actions.report.xml,name:account_balance_ebp_csv_export.action_report_trial_balance_ebp_csv +msgid "EBP CSV Balance" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard +msgid "Export EBP CSV" msgstr "" #. module: account_balance_ebp_csv_export -#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit -msgid "Trial Balance Report" +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_report_wizard +msgid "Trial Balance Report Wizard" msgstr "" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard msgid "or" msgstr "of" diff --git a/account_balance_ebp_csv_export/i18n/pl.po b/account_balance_ebp_csv_export/i18n/pl.po index 7660bb05d..fedc9b6f3 100644 --- a/account_balance_ebp_csv_export/i18n/pl.po +++ b/account_balance_ebp_csv_export/i18n/pl.po @@ -3,32 +3,43 @@ # * account_balance_ebp_csv_export # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-01 04:00+0000\n" -"PO-Revision-Date: 2016-10-01 04:00+0000\n" -"Last-Translator: OCA Transbot , 2016\n" +"POT-Creation-Date: 2018-02-17 03:48+0000\n" +"PO-Revision-Date: 2018-02-17 03:48+0000\n" +"Last-Translator: OCA Transbot , 2018\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=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\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_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit -msgid "EBP csv File" +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv +msgid "" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.actions.report.xml,name:account_balance_ebp_csv_export.action_report_trial_balance_ebp_csv +msgid "EBP CSV Balance" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard +msgid "Export EBP CSV" msgstr "" #. module: account_balance_ebp_csv_export -#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit -msgid "Trial Balance Report" +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_report_wizard +msgid "Trial Balance Report Wizard" msgstr "" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard msgid "or" msgstr "lub" diff --git a/account_balance_ebp_csv_export/i18n/pt.po b/account_balance_ebp_csv_export/i18n/pt.po index 5f0301b61..a0b9aa5bf 100644 --- a/account_balance_ebp_csv_export/i18n/pt.po +++ b/account_balance_ebp_csv_export/i18n/pt.po @@ -3,14 +3,14 @@ # * account_balance_ebp_csv_export # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-01 04:00+0000\n" -"PO-Revision-Date: 2016-10-01 04:00+0000\n" -"Last-Translator: OCA Transbot , 2016\n" +"POT-Creation-Date: 2018-02-17 03:48+0000\n" +"PO-Revision-Date: 2018-02-17 03:48+0000\n" +"Last-Translator: OCA Transbot , 2018\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" @@ -19,16 +19,27 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit -msgid "EBP csv File" +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv +msgid "" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.actions.report.xml,name:account_balance_ebp_csv_export.action_report_trial_balance_ebp_csv +msgid "EBP CSV Balance" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard +msgid "Export EBP CSV" msgstr "" #. module: account_balance_ebp_csv_export -#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit -msgid "Trial Balance Report" +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_report_wizard +msgid "Trial Balance Report Wizard" msgstr "" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard msgid "or" msgstr "ou" diff --git a/account_balance_ebp_csv_export/i18n/pt_BR.po b/account_balance_ebp_csv_export/i18n/pt_BR.po index f8227c3b4..17769f568 100644 --- a/account_balance_ebp_csv_export/i18n/pt_BR.po +++ b/account_balance_ebp_csv_export/i18n/pt_BR.po @@ -3,14 +3,14 @@ # * account_balance_ebp_csv_export # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-01 04:00+0000\n" -"PO-Revision-Date: 2016-10-01 04:00+0000\n" -"Last-Translator: OCA Transbot , 2016\n" +"POT-Creation-Date: 2018-02-17 03:48+0000\n" +"PO-Revision-Date: 2018-02-17 03:48+0000\n" +"Last-Translator: OCA Transbot , 2018\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" @@ -19,16 +19,27 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit -msgid "EBP csv File" +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv +msgid "" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.actions.report.xml,name:account_balance_ebp_csv_export.action_report_trial_balance_ebp_csv +msgid "EBP CSV Balance" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard +msgid "Export EBP CSV" msgstr "" #. module: account_balance_ebp_csv_export -#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit -msgid "Trial Balance Report" +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_report_wizard +msgid "Trial Balance Report Wizard" msgstr "" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard msgid "or" msgstr "ou" diff --git a/account_balance_ebp_csv_export/i18n/pt_PT.po b/account_balance_ebp_csv_export/i18n/pt_PT.po index 3ff7b40f3..f6b12d5ab 100644 --- a/account_balance_ebp_csv_export/i18n/pt_PT.po +++ b/account_balance_ebp_csv_export/i18n/pt_PT.po @@ -3,14 +3,14 @@ # * account_balance_ebp_csv_export # # Translators: -# Pedro Castro Silva , 2016 +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-01 04:00+0000\n" -"PO-Revision-Date: 2016-10-01 04:00+0000\n" -"Last-Translator: Pedro Castro Silva , 2016\n" +"POT-Creation-Date: 2018-02-17 03:48+0000\n" +"PO-Revision-Date: 2018-02-17 03:48+0000\n" +"Last-Translator: OCA Transbot , 2018\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" @@ -19,16 +19,27 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit -msgid "EBP csv File" +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv +msgid "" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.actions.report.xml,name:account_balance_ebp_csv_export.action_report_trial_balance_ebp_csv +msgid "EBP CSV Balance" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard +msgid "Export EBP CSV" msgstr "" #. module: account_balance_ebp_csv_export -#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit -msgid "Trial Balance Report" +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_report_wizard +msgid "Trial Balance Report Wizard" msgstr "" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard msgid "or" msgstr "ou" diff --git a/account_balance_ebp_csv_export/i18n/ro.po b/account_balance_ebp_csv_export/i18n/ro.po index df11de654..30010f457 100644 --- a/account_balance_ebp_csv_export/i18n/ro.po +++ b/account_balance_ebp_csv_export/i18n/ro.po @@ -3,14 +3,14 @@ # * account_balance_ebp_csv_export # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-01 04:00+0000\n" -"PO-Revision-Date: 2016-10-01 04:00+0000\n" -"Last-Translator: OCA Transbot , 2016\n" +"POT-Creation-Date: 2018-02-17 03:48+0000\n" +"PO-Revision-Date: 2018-02-17 03:48+0000\n" +"Last-Translator: OCA Transbot , 2018\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" @@ -19,16 +19,27 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit -msgid "EBP csv File" +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv +msgid "" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.actions.report.xml,name:account_balance_ebp_csv_export.action_report_trial_balance_ebp_csv +msgid "EBP CSV Balance" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard +msgid "Export EBP CSV" msgstr "" #. module: account_balance_ebp_csv_export -#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit -msgid "Trial Balance Report" +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_report_wizard +msgid "Trial Balance Report Wizard" msgstr "" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard msgid "or" msgstr "sau" diff --git a/account_balance_ebp_csv_export/i18n/ru.po b/account_balance_ebp_csv_export/i18n/ru.po index 64e4aaae3..44e6adc5c 100644 --- a/account_balance_ebp_csv_export/i18n/ru.po +++ b/account_balance_ebp_csv_export/i18n/ru.po @@ -3,14 +3,14 @@ # * account_balance_ebp_csv_export # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-01 04:00+0000\n" -"PO-Revision-Date: 2016-10-01 04:00+0000\n" -"Last-Translator: OCA Transbot , 2016\n" +"POT-Creation-Date: 2018-02-17 03:48+0000\n" +"PO-Revision-Date: 2018-02-17 03:48+0000\n" +"Last-Translator: OCA Transbot , 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" @@ -19,16 +19,27 @@ msgstr "" "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_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit -msgid "EBP csv File" +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv +msgid "" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.actions.report.xml,name:account_balance_ebp_csv_export.action_report_trial_balance_ebp_csv +msgid "EBP CSV Balance" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard +msgid "Export EBP CSV" msgstr "" #. module: account_balance_ebp_csv_export -#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit -msgid "Trial Balance Report" +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_report_wizard +msgid "Trial Balance Report Wizard" msgstr "" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard msgid "or" msgstr "или" diff --git a/account_balance_ebp_csv_export/i18n/sk.po b/account_balance_ebp_csv_export/i18n/sk.po index 234e8f457..5b809f39c 100644 --- a/account_balance_ebp_csv_export/i18n/sk.po +++ b/account_balance_ebp_csv_export/i18n/sk.po @@ -3,14 +3,14 @@ # * account_balance_ebp_csv_export # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-01 04:00+0000\n" -"PO-Revision-Date: 2016-10-01 04:00+0000\n" -"Last-Translator: OCA Transbot , 2016\n" +"POT-Creation-Date: 2018-02-17 03:48+0000\n" +"PO-Revision-Date: 2018-02-17 03:48+0000\n" +"Last-Translator: OCA Transbot , 2018\n" "Language-Team: Slovak (https://www.transifex.com/oca/teams/23907/sk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,16 +19,27 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit -msgid "EBP csv File" +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv +msgid "" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.actions.report.xml,name:account_balance_ebp_csv_export.action_report_trial_balance_ebp_csv +msgid "EBP CSV Balance" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard +msgid "Export EBP CSV" msgstr "" #. module: account_balance_ebp_csv_export -#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit -msgid "Trial Balance Report" +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_report_wizard +msgid "Trial Balance Report Wizard" msgstr "" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard msgid "or" msgstr "alebo" diff --git a/account_balance_ebp_csv_export/i18n/sl.po b/account_balance_ebp_csv_export/i18n/sl.po index 1df692533..1a3623be5 100644 --- a/account_balance_ebp_csv_export/i18n/sl.po +++ b/account_balance_ebp_csv_export/i18n/sl.po @@ -3,14 +3,14 @@ # * account_balance_ebp_csv_export # # Translators: -# Matjaž Mozetič , 2016 +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-01 04:00+0000\n" -"PO-Revision-Date: 2016-10-01 04:00+0000\n" -"Last-Translator: Matjaž Mozetič , 2016\n" +"POT-Creation-Date: 2018-02-17 03:48+0000\n" +"PO-Revision-Date: 2018-02-17 03:48+0000\n" +"Last-Translator: OCA Transbot , 2018\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" @@ -19,16 +19,27 @@ msgstr "" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit -msgid "EBP csv File" +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv +msgid "" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.actions.report.xml,name:account_balance_ebp_csv_export.action_report_trial_balance_ebp_csv +msgid "EBP CSV Balance" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard +msgid "Export EBP CSV" msgstr "" #. module: account_balance_ebp_csv_export -#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit -msgid "Trial Balance Report" +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_report_wizard +msgid "Trial Balance Report Wizard" msgstr "" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard msgid "or" msgstr "ali" diff --git a/account_balance_ebp_csv_export/i18n/sr@latin.po b/account_balance_ebp_csv_export/i18n/sr@latin.po index 9a2314595..21bdc9eeb 100644 --- a/account_balance_ebp_csv_export/i18n/sr@latin.po +++ b/account_balance_ebp_csv_export/i18n/sr@latin.po @@ -3,15 +3,15 @@ # * account_balance_ebp_csv_export # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-01 04:00+0000\n" -"PO-Revision-Date: 2016-10-01 04:00+0000\n" -"Last-Translator: OCA Transbot , 2016\n" -"Language-Team: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/sr@latin/)\n" +"POT-Creation-Date: 2018-02-17 03:48+0000\n" +"PO-Revision-Date: 2018-02-17 03:48+0000\n" +"Last-Translator: OCA Transbot , 2018\n" +"Language-Team: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/sr%40latin/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -19,16 +19,27 @@ msgstr "" "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_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit -msgid "EBP csv File" +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv +msgid "" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.actions.report.xml,name:account_balance_ebp_csv_export.action_report_trial_balance_ebp_csv +msgid "EBP CSV Balance" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard +msgid "Export EBP CSV" msgstr "" #. module: account_balance_ebp_csv_export -#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit -msgid "Trial Balance Report" +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_report_wizard +msgid "Trial Balance Report Wizard" msgstr "" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard msgid "or" msgstr "ili" diff --git a/account_balance_ebp_csv_export/i18n/sv.po b/account_balance_ebp_csv_export/i18n/sv.po index 521bf6dd4..7972574a8 100644 --- a/account_balance_ebp_csv_export/i18n/sv.po +++ b/account_balance_ebp_csv_export/i18n/sv.po @@ -3,14 +3,14 @@ # * account_balance_ebp_csv_export # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-01 04:00+0000\n" -"PO-Revision-Date: 2016-10-01 04:00+0000\n" -"Last-Translator: OCA Transbot , 2016\n" +"POT-Creation-Date: 2018-02-17 03:48+0000\n" +"PO-Revision-Date: 2018-02-17 03:48+0000\n" +"Last-Translator: OCA Transbot , 2018\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" @@ -19,16 +19,27 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit -msgid "EBP csv File" +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv +msgid "" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.actions.report.xml,name:account_balance_ebp_csv_export.action_report_trial_balance_ebp_csv +msgid "EBP CSV Balance" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard +msgid "Export EBP CSV" msgstr "" #. module: account_balance_ebp_csv_export -#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit -msgid "Trial Balance Report" +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_report_wizard +msgid "Trial Balance Report Wizard" msgstr "" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard msgid "or" msgstr "eller" diff --git a/account_balance_ebp_csv_export/i18n/th.po b/account_balance_ebp_csv_export/i18n/th.po index 94b83f3c3..f74788a87 100644 --- a/account_balance_ebp_csv_export/i18n/th.po +++ b/account_balance_ebp_csv_export/i18n/th.po @@ -3,14 +3,14 @@ # * account_balance_ebp_csv_export # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-01 04:00+0000\n" -"PO-Revision-Date: 2016-10-01 04:00+0000\n" -"Last-Translator: OCA Transbot , 2016\n" +"POT-Creation-Date: 2018-02-17 03:48+0000\n" +"PO-Revision-Date: 2018-02-17 03:48+0000\n" +"Last-Translator: OCA Transbot , 2018\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" @@ -19,16 +19,27 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit -msgid "EBP csv File" +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv +msgid "" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.actions.report.xml,name:account_balance_ebp_csv_export.action_report_trial_balance_ebp_csv +msgid "EBP CSV Balance" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard +msgid "Export EBP CSV" msgstr "" #. module: account_balance_ebp_csv_export -#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit -msgid "Trial Balance Report" +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_report_wizard +msgid "Trial Balance Report Wizard" msgstr "" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard msgid "or" msgstr "หรือ" diff --git a/account_balance_ebp_csv_export/i18n/tr.po b/account_balance_ebp_csv_export/i18n/tr.po index bb5045c04..1ff1366e6 100644 --- a/account_balance_ebp_csv_export/i18n/tr.po +++ b/account_balance_ebp_csv_export/i18n/tr.po @@ -3,14 +3,14 @@ # * account_balance_ebp_csv_export # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-01 04:00+0000\n" -"PO-Revision-Date: 2016-10-01 04:00+0000\n" -"Last-Translator: OCA Transbot , 2016\n" +"POT-Creation-Date: 2018-02-17 03:48+0000\n" +"PO-Revision-Date: 2018-02-17 03:48+0000\n" +"Last-Translator: OCA Transbot , 2018\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" @@ -19,16 +19,27 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit -msgid "EBP csv File" +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv +msgid "" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.actions.report.xml,name:account_balance_ebp_csv_export.action_report_trial_balance_ebp_csv +msgid "EBP CSV Balance" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard +msgid "Export EBP CSV" msgstr "" #. module: account_balance_ebp_csv_export -#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit -msgid "Trial Balance Report" +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_report_wizard +msgid "Trial Balance Report Wizard" msgstr "" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard msgid "or" msgstr "ya da" diff --git a/account_balance_ebp_csv_export/i18n/tr_TR.po b/account_balance_ebp_csv_export/i18n/tr_TR.po index ec8de8dc2..15d814a75 100644 --- a/account_balance_ebp_csv_export/i18n/tr_TR.po +++ b/account_balance_ebp_csv_export/i18n/tr_TR.po @@ -3,32 +3,43 @@ # * account_balance_ebp_csv_export # # Translators: -# Ozge Altinisik , 2017 +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-01 04:00+0000\n" -"PO-Revision-Date: 2016-10-01 04:00+0000\n" -"Last-Translator: Ozge Altinisik , 2017\n" +"POT-Creation-Date: 2018-02-17 03:48+0000\n" +"PO-Revision-Date: 2018-02-17 03:48+0000\n" +"Last-Translator: OCA Transbot , 2018\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" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit -msgid "EBP csv File" +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv +msgid "" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.actions.report.xml,name:account_balance_ebp_csv_export.action_report_trial_balance_ebp_csv +msgid "EBP CSV Balance" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard +msgid "Export EBP CSV" msgstr "" #. module: account_balance_ebp_csv_export -#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit -msgid "Trial Balance Report" +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_report_wizard +msgid "Trial Balance Report Wizard" msgstr "" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard msgid "or" msgstr "ya da " diff --git a/account_balance_ebp_csv_export/i18n/uk.po b/account_balance_ebp_csv_export/i18n/uk.po index 8d71a7b90..b22519a16 100644 --- a/account_balance_ebp_csv_export/i18n/uk.po +++ b/account_balance_ebp_csv_export/i18n/uk.po @@ -3,14 +3,14 @@ # * account_balance_ebp_csv_export # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-01 04:00+0000\n" -"PO-Revision-Date: 2016-10-01 04:00+0000\n" -"Last-Translator: OCA Transbot , 2016\n" +"POT-Creation-Date: 2018-02-17 03:48+0000\n" +"PO-Revision-Date: 2018-02-17 03:48+0000\n" +"Last-Translator: OCA Transbot , 2018\n" "Language-Team: Ukrainian (https://www.transifex.com/oca/teams/23907/uk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,16 +19,27 @@ msgstr "" "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_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit -msgid "EBP csv File" +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv +msgid "" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.actions.report.xml,name:account_balance_ebp_csv_export.action_report_trial_balance_ebp_csv +msgid "EBP CSV Balance" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard +msgid "Export EBP CSV" msgstr "" #. module: account_balance_ebp_csv_export -#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit -msgid "Trial Balance Report" +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_report_wizard +msgid "Trial Balance Report Wizard" msgstr "" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard msgid "or" msgstr "або" diff --git a/account_balance_ebp_csv_export/i18n/vi.po b/account_balance_ebp_csv_export/i18n/vi.po index 92cef81cc..b1f10fcb0 100644 --- a/account_balance_ebp_csv_export/i18n/vi.po +++ b/account_balance_ebp_csv_export/i18n/vi.po @@ -3,14 +3,14 @@ # * account_balance_ebp_csv_export # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-01 04:00+0000\n" -"PO-Revision-Date: 2016-10-01 04:00+0000\n" -"Last-Translator: OCA Transbot , 2016\n" +"POT-Creation-Date: 2018-02-17 03:48+0000\n" +"PO-Revision-Date: 2018-02-17 03:48+0000\n" +"Last-Translator: OCA Transbot , 2018\n" "Language-Team: Vietnamese (https://www.transifex.com/oca/teams/23907/vi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,16 +19,27 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit -msgid "EBP csv File" +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv +msgid "" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.actions.report.xml,name:account_balance_ebp_csv_export.action_report_trial_balance_ebp_csv +msgid "EBP CSV Balance" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard +msgid "Export EBP CSV" msgstr "" #. module: account_balance_ebp_csv_export -#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit -msgid "Trial Balance Report" +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_report_wizard +msgid "Trial Balance Report Wizard" msgstr "" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard msgid "or" msgstr "hoặc" diff --git a/account_balance_ebp_csv_export/i18n/vi_VN.po b/account_balance_ebp_csv_export/i18n/vi_VN.po index c05c505d0..6dc4e1064 100644 --- a/account_balance_ebp_csv_export/i18n/vi_VN.po +++ b/account_balance_ebp_csv_export/i18n/vi_VN.po @@ -3,14 +3,14 @@ # * account_balance_ebp_csv_export # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-01 04:00+0000\n" -"PO-Revision-Date: 2016-10-01 04:00+0000\n" -"Last-Translator: OCA Transbot , 2016\n" +"POT-Creation-Date: 2018-02-17 03:48+0000\n" +"PO-Revision-Date: 2018-02-17 03:48+0000\n" +"Last-Translator: OCA Transbot , 2018\n" "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/oca/teams/23907/vi_VN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,16 +19,27 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit -msgid "EBP csv File" +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv +msgid "" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.actions.report.xml,name:account_balance_ebp_csv_export.action_report_trial_balance_ebp_csv +msgid "EBP CSV Balance" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard +msgid "Export EBP CSV" msgstr "" #. module: account_balance_ebp_csv_export -#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit -msgid "Trial Balance Report" +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_report_wizard +msgid "Trial Balance Report Wizard" msgstr "" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard msgid "or" msgstr "hoặc" diff --git a/account_balance_ebp_csv_export/i18n/zh_CN.po b/account_balance_ebp_csv_export/i18n/zh_CN.po index 237225e49..e257b332b 100644 --- a/account_balance_ebp_csv_export/i18n/zh_CN.po +++ b/account_balance_ebp_csv_export/i18n/zh_CN.po @@ -3,14 +3,14 @@ # * account_balance_ebp_csv_export # # Translators: -# OCA Transbot , 2017 +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-11-17 14:34+0000\n" -"PO-Revision-Date: 2017-11-17 14:34+0000\n" -"Last-Translator: OCA Transbot , 2017\n" +"POT-Creation-Date: 2018-02-17 03:48+0000\n" +"PO-Revision-Date: 2018-02-17 03:48+0000\n" +"Last-Translator: OCA Transbot , 2018\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" @@ -19,16 +19,27 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit -msgid "EBP csv File" +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv +msgid "" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.actions.report.xml,name:account_balance_ebp_csv_export.action_report_trial_balance_ebp_csv +msgid "EBP CSV Balance" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard +msgid "Export EBP CSV" msgstr "" #. module: account_balance_ebp_csv_export -#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit -msgid "Trial Balance Report" +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_report_wizard +msgid "Trial Balance Report Wizard" msgstr "" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard msgid "or" msgstr "或" diff --git a/account_balance_ebp_csv_export/i18n/zh_TW.po b/account_balance_ebp_csv_export/i18n/zh_TW.po index 3cc1be40a..66b5030d3 100644 --- a/account_balance_ebp_csv_export/i18n/zh_TW.po +++ b/account_balance_ebp_csv_export/i18n/zh_TW.po @@ -3,14 +3,14 @@ # * account_balance_ebp_csv_export # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2018 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-01 04:00+0000\n" -"PO-Revision-Date: 2016-10-01 04:00+0000\n" -"Last-Translator: OCA Transbot , 2016\n" +"POT-Creation-Date: 2018-02-17 03:48+0000\n" +"PO-Revision-Date: 2018-02-17 03:48+0000\n" +"Last-Translator: OCA Transbot , 2018\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" @@ -19,16 +19,27 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit -msgid "EBP csv File" +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv +msgid "" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.actions.report.xml,name:account_balance_ebp_csv_export.action_report_trial_balance_ebp_csv +msgid "EBP CSV Balance" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard +msgid "Export EBP CSV" msgstr "" #. module: account_balance_ebp_csv_export -#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_webkit -msgid "Trial Balance Report" +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_report_wizard +msgid "Trial Balance Report Wizard" msgstr "" #. module: account_balance_ebp_csv_export -#: view:trial.balance.webkit:account_balance_ebp_csv_export.account_trial_balance_view_webkit +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard msgid "or" msgstr "或" From 88e999d0f8242f6c595a71d22f9f551d04f171e2 Mon Sep 17 00:00:00 2001 From: Alexis de Lattre Date: Mon, 23 Apr 2018 16:56:51 +0200 Subject: [PATCH 30/54] EBP CSV: wrong order for the 2 last columns --- account_balance_ebp_csv_export/report/balance_ebp_csv.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/account_balance_ebp_csv_export/report/balance_ebp_csv.xml b/account_balance_ebp_csv_export/report/balance_ebp_csv.xml index da6a4d6a2..5b0ad8c10 100644 --- a/account_balance_ebp_csv_export/report/balance_ebp_csv.xml +++ b/account_balance_ebp_csv_export/report/balance_ebp_csv.xml @@ -2,7 +2,7 @@ From db64d72effbdc28991e0987018dc7227b36496c2 Mon Sep 17 00:00:00 2001 From: oca-travis Date: Fri, 22 Jun 2018 20:42:57 +0000 Subject: [PATCH 31/54] Update account_balance_ebp_csv_export.pot --- .../i18n/account_balance_ebp_csv_export.pot | 40 +++++++++++++++++++ account_balance_ebp_csv_export/i18n/am.po | 7 ++-- account_balance_ebp_csv_export/i18n/ar.po | 10 +++-- account_balance_ebp_csv_export/i18n/bg.po | 7 ++-- account_balance_ebp_csv_export/i18n/bs.po | 10 +++-- account_balance_ebp_csv_export/i18n/ca.po | 7 ++-- account_balance_ebp_csv_export/i18n/cs.po | 7 ++-- account_balance_ebp_csv_export/i18n/da.po | 7 ++-- account_balance_ebp_csv_export/i18n/de.po | 7 ++-- account_balance_ebp_csv_export/i18n/el_GR.po | 10 +++-- account_balance_ebp_csv_export/i18n/en_AU.po | 10 +++-- account_balance_ebp_csv_export/i18n/en_GB.po | 10 +++-- account_balance_ebp_csv_export/i18n/es.po | 7 ++-- account_balance_ebp_csv_export/i18n/es_AR.po | 10 +++-- account_balance_ebp_csv_export/i18n/es_CL.po | 10 +++-- account_balance_ebp_csv_export/i18n/es_CO.po | 10 +++-- account_balance_ebp_csv_export/i18n/es_CR.po | 10 +++-- account_balance_ebp_csv_export/i18n/es_DO.po | 10 +++-- account_balance_ebp_csv_export/i18n/es_EC.po | 10 +++-- account_balance_ebp_csv_export/i18n/es_ES.po | 10 +++-- account_balance_ebp_csv_export/i18n/es_MX.po | 10 +++-- account_balance_ebp_csv_export/i18n/es_PE.po | 10 +++-- account_balance_ebp_csv_export/i18n/et.po | 7 ++-- account_balance_ebp_csv_export/i18n/eu.po | 7 ++-- account_balance_ebp_csv_export/i18n/fa.po | 7 ++-- account_balance_ebp_csv_export/i18n/fi.po | 7 ++-- account_balance_ebp_csv_export/i18n/fr.po | 10 +++-- account_balance_ebp_csv_export/i18n/fr_CA.po | 10 +++-- account_balance_ebp_csv_export/i18n/fr_CH.po | 10 +++-- account_balance_ebp_csv_export/i18n/gl.po | 7 ++-- account_balance_ebp_csv_export/i18n/he.po | 7 ++-- account_balance_ebp_csv_export/i18n/hr.po | 10 +++-- account_balance_ebp_csv_export/i18n/hu.po | 7 ++-- account_balance_ebp_csv_export/i18n/id.po | 7 ++-- account_balance_ebp_csv_export/i18n/it.po | 7 ++-- account_balance_ebp_csv_export/i18n/ja.po | 7 ++-- account_balance_ebp_csv_export/i18n/ko.po | 7 ++-- account_balance_ebp_csv_export/i18n/lo.po | 7 ++-- account_balance_ebp_csv_export/i18n/lt.po | 10 +++-- account_balance_ebp_csv_export/i18n/lt_LT.po | 13 +++--- account_balance_ebp_csv_export/i18n/lv.po | 10 +++-- account_balance_ebp_csv_export/i18n/mk.po | 7 ++-- account_balance_ebp_csv_export/i18n/mn.po | 7 ++-- account_balance_ebp_csv_export/i18n/nb.po | 10 +++-- account_balance_ebp_csv_export/i18n/nl.po | 7 ++-- account_balance_ebp_csv_export/i18n/nl_BE.po | 10 +++-- account_balance_ebp_csv_export/i18n/pl.po | 11 +++-- account_balance_ebp_csv_export/i18n/pt.po | 7 ++-- account_balance_ebp_csv_export/i18n/pt_BR.po | 10 +++-- account_balance_ebp_csv_export/i18n/pt_PT.po | 10 +++-- account_balance_ebp_csv_export/i18n/ro.po | 10 +++-- account_balance_ebp_csv_export/i18n/ru.po | 11 +++-- account_balance_ebp_csv_export/i18n/sk.po | 7 ++-- account_balance_ebp_csv_export/i18n/sl.po | 10 +++-- .../i18n/sr@latin.po | 13 +++--- account_balance_ebp_csv_export/i18n/sv.po | 7 ++-- account_balance_ebp_csv_export/i18n/th.po | 7 ++-- account_balance_ebp_csv_export/i18n/tr.po | 7 ++-- account_balance_ebp_csv_export/i18n/tr_TR.po | 10 +++-- account_balance_ebp_csv_export/i18n/uk.po | 10 +++-- account_balance_ebp_csv_export/i18n/vi.po | 7 ++-- account_balance_ebp_csv_export/i18n/vi_VN.po | 10 +++-- account_balance_ebp_csv_export/i18n/zh_CN.po | 10 +++-- account_balance_ebp_csv_export/i18n/zh_TW.po | 10 +++-- 64 files changed, 368 insertions(+), 226 deletions(-) create mode 100644 account_balance_ebp_csv_export/i18n/account_balance_ebp_csv_export.pot diff --git a/account_balance_ebp_csv_export/i18n/account_balance_ebp_csv_export.pot b/account_balance_ebp_csv_export/i18n/account_balance_ebp_csv_export.pot new file mode 100644 index 000000000..515f8900e --- /dev/null +++ b/account_balance_ebp_csv_export/i18n/account_balance_ebp_csv_export.pot @@ -0,0 +1,40 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_balance_ebp_csv_export +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: <>\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: account_balance_ebp_csv_export +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv +msgid "Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.actions.report.xml,name:account_balance_ebp_csv_export.action_report_trial_balance_ebp_csv +msgid "EBP CSV Balance" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard +msgid "Export EBP CSV" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.model,name:account_balance_ebp_csv_export.model_trial_balance_report_wizard +msgid "Trial Balance Report Wizard" +msgstr "" + +#. module: account_balance_ebp_csv_export +#: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.trial_balance_wizard +msgid "or" +msgstr "" + diff --git a/account_balance_ebp_csv_export/i18n/am.po b/account_balance_ebp_csv_export/i18n/am.po index c79138b2f..e9cd8da32 100644 --- a/account_balance_ebp_csv_export/i18n/am.po +++ b/account_balance_ebp_csv_export/i18n/am.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_balance_ebp_csv_export -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,16 +12,17 @@ msgstr "" "PO-Revision-Date: 2018-02-17 03:48+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Amharic (https://www.transifex.com/oca/teams/23907/am/)\n" +"Language: am\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: am\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: account_balance_ebp_csv_export #: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv msgid "" -"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit," +"Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" msgstr "" #. module: account_balance_ebp_csv_export diff --git a/account_balance_ebp_csv_export/i18n/ar.po b/account_balance_ebp_csv_export/i18n/ar.po index 47e056c3b..a6b52923d 100644 --- a/account_balance_ebp_csv_export/i18n/ar.po +++ b/account_balance_ebp_csv_export/i18n/ar.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_balance_ebp_csv_export -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,16 +12,18 @@ msgstr "" "PO-Revision-Date: 2018-02-17 03:48+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Arabic (https://www.transifex.com/oca/teams/23907/ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"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" +"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_balance_ebp_csv_export #: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv msgid "" -"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit," +"Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" msgstr "" #. module: account_balance_ebp_csv_export diff --git a/account_balance_ebp_csv_export/i18n/bg.po b/account_balance_ebp_csv_export/i18n/bg.po index f0d6ba8c2..8bc597428 100644 --- a/account_balance_ebp_csv_export/i18n/bg.po +++ b/account_balance_ebp_csv_export/i18n/bg.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_balance_ebp_csv_export -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,16 +12,17 @@ msgstr "" "PO-Revision-Date: 2018-02-17 03:48+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Bulgarian (https://www.transifex.com/oca/teams/23907/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_balance_ebp_csv_export #: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv msgid "" -"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit," +"Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" msgstr "" #. module: account_balance_ebp_csv_export diff --git a/account_balance_ebp_csv_export/i18n/bs.po b/account_balance_ebp_csv_export/i18n/bs.po index 2bed2fb55..952fbe9be 100644 --- a/account_balance_ebp_csv_export/i18n/bs.po +++ b/account_balance_ebp_csv_export/i18n/bs.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_balance_ebp_csv_export -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,16 +12,18 @@ msgstr "" "PO-Revision-Date: 2018-02-17 03:48+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Bosnian (https://www.transifex.com/oca/teams/23907/bs/)\n" +"Language: bs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"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" +"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_balance_ebp_csv_export #: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv msgid "" -"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit," +"Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" msgstr "" #. module: account_balance_ebp_csv_export diff --git a/account_balance_ebp_csv_export/i18n/ca.po b/account_balance_ebp_csv_export/i18n/ca.po index 6c799fb7a..0a4b8b1b9 100644 --- a/account_balance_ebp_csv_export/i18n/ca.po +++ b/account_balance_ebp_csv_export/i18n/ca.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_balance_ebp_csv_export -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,16 +12,17 @@ msgstr "" "PO-Revision-Date: 2018-02-17 03:48+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n" +"Language: ca\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_balance_ebp_csv_export #: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv msgid "" -"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit," +"Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" msgstr "" #. module: account_balance_ebp_csv_export diff --git a/account_balance_ebp_csv_export/i18n/cs.po b/account_balance_ebp_csv_export/i18n/cs.po index 837ff020d..28a6fb41f 100644 --- a/account_balance_ebp_csv_export/i18n/cs.po +++ b/account_balance_ebp_csv_export/i18n/cs.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_balance_ebp_csv_export -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,16 +12,17 @@ msgstr "" "PO-Revision-Date: 2018-02-17 03:48+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Czech (https://www.transifex.com/oca/teams/23907/cs/)\n" +"Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: cs\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #. module: account_balance_ebp_csv_export #: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv msgid "" -"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit," +"Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" msgstr "" #. module: account_balance_ebp_csv_export diff --git a/account_balance_ebp_csv_export/i18n/da.po b/account_balance_ebp_csv_export/i18n/da.po index 0f8c21114..31e75dc02 100644 --- a/account_balance_ebp_csv_export/i18n/da.po +++ b/account_balance_ebp_csv_export/i18n/da.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_balance_ebp_csv_export -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,16 +12,17 @@ msgstr "" "PO-Revision-Date: 2018-02-17 03:48+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Danish (https://www.transifex.com/oca/teams/23907/da/)\n" +"Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_balance_ebp_csv_export #: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv msgid "" -"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit," +"Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" msgstr "" #. module: account_balance_ebp_csv_export diff --git a/account_balance_ebp_csv_export/i18n/de.po b/account_balance_ebp_csv_export/i18n/de.po index b33390f74..edad03f3a 100644 --- a/account_balance_ebp_csv_export/i18n/de.po +++ b/account_balance_ebp_csv_export/i18n/de.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_balance_ebp_csv_export -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,16 +12,17 @@ msgstr "" "PO-Revision-Date: 2018-02-17 03:48+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" +"Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_balance_ebp_csv_export #: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv msgid "" -"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit," +"Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" msgstr "" #. module: account_balance_ebp_csv_export diff --git a/account_balance_ebp_csv_export/i18n/el_GR.po b/account_balance_ebp_csv_export/i18n/el_GR.po index 2323382fa..1e552c192 100644 --- a/account_balance_ebp_csv_export/i18n/el_GR.po +++ b/account_balance_ebp_csv_export/i18n/el_GR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_balance_ebp_csv_export -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -11,17 +11,19 @@ msgstr "" "POT-Creation-Date: 2018-02-17 03:48+0000\n" "PO-Revision-Date: 2018-02-17 03:48+0000\n" "Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/el_GR/)\n" +"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/" +"el_GR/)\n" +"Language: el_GR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: el_GR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_balance_ebp_csv_export #: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv msgid "" -"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit," +"Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" msgstr "" #. module: account_balance_ebp_csv_export diff --git a/account_balance_ebp_csv_export/i18n/en_AU.po b/account_balance_ebp_csv_export/i18n/en_AU.po index 6539a2585..0130f190b 100644 --- a/account_balance_ebp_csv_export/i18n/en_AU.po +++ b/account_balance_ebp_csv_export/i18n/en_AU.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_balance_ebp_csv_export -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -11,17 +11,19 @@ msgstr "" "POT-Creation-Date: 2018-02-17 03:48+0000\n" "PO-Revision-Date: 2018-02-17 03:48+0000\n" "Last-Translator: OCA Transbot , 2018\n" -"Language-Team: English (Australia) (https://www.transifex.com/oca/teams/23907/en_AU/)\n" +"Language-Team: English (Australia) (https://www.transifex.com/oca/" +"teams/23907/en_AU/)\n" +"Language: en_AU\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: en_AU\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_balance_ebp_csv_export #: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv msgid "" -"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit," +"Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" msgstr "" #. module: account_balance_ebp_csv_export diff --git a/account_balance_ebp_csv_export/i18n/en_GB.po b/account_balance_ebp_csv_export/i18n/en_GB.po index ccfbf114a..ab5a301cf 100644 --- a/account_balance_ebp_csv_export/i18n/en_GB.po +++ b/account_balance_ebp_csv_export/i18n/en_GB.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_balance_ebp_csv_export -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -11,17 +11,19 @@ msgstr "" "POT-Creation-Date: 2018-02-17 03:48+0000\n" "PO-Revision-Date: 2018-02-17 03:48+0000\n" "Last-Translator: OCA Transbot , 2018\n" -"Language-Team: English (United Kingdom) (https://www.transifex.com/oca/teams/23907/en_GB/)\n" +"Language-Team: English (United Kingdom) (https://www.transifex.com/oca/" +"teams/23907/en_GB/)\n" +"Language: en_GB\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: en_GB\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_balance_ebp_csv_export #: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv msgid "" -"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit," +"Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" msgstr "" #. module: account_balance_ebp_csv_export diff --git a/account_balance_ebp_csv_export/i18n/es.po b/account_balance_ebp_csv_export/i18n/es.po index a5798005a..27ae0854f 100644 --- a/account_balance_ebp_csv_export/i18n/es.po +++ b/account_balance_ebp_csv_export/i18n/es.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_balance_ebp_csv_export -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,16 +12,17 @@ msgstr "" "PO-Revision-Date: 2018-02-17 03:48+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_balance_ebp_csv_export #: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv msgid "" -"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit," +"Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" msgstr "" #. module: account_balance_ebp_csv_export diff --git a/account_balance_ebp_csv_export/i18n/es_AR.po b/account_balance_ebp_csv_export/i18n/es_AR.po index 2f90cfa9e..c61720533 100644 --- a/account_balance_ebp_csv_export/i18n/es_AR.po +++ b/account_balance_ebp_csv_export/i18n/es_AR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_balance_ebp_csv_export -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -11,17 +11,19 @@ msgstr "" "POT-Creation-Date: 2018-02-17 03:48+0000\n" "PO-Revision-Date: 2018-02-17 03:48+0000\n" "Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/teams/23907/es_AR/)\n" +"Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/" +"teams/23907/es_AR/)\n" +"Language: es_AR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_AR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_balance_ebp_csv_export #: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv msgid "" -"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit," +"Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" msgstr "" #. module: account_balance_ebp_csv_export diff --git a/account_balance_ebp_csv_export/i18n/es_CL.po b/account_balance_ebp_csv_export/i18n/es_CL.po index 4af918b7b..713da35ff 100644 --- a/account_balance_ebp_csv_export/i18n/es_CL.po +++ b/account_balance_ebp_csv_export/i18n/es_CL.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_balance_ebp_csv_export -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -11,17 +11,19 @@ msgstr "" "POT-Creation-Date: 2018-02-17 03:48+0000\n" "PO-Revision-Date: 2018-02-17 03:48+0000\n" "Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Spanish (Chile) (https://www.transifex.com/oca/teams/23907/es_CL/)\n" +"Language-Team: Spanish (Chile) (https://www.transifex.com/oca/teams/23907/" +"es_CL/)\n" +"Language: es_CL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_CL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_balance_ebp_csv_export #: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv msgid "" -"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit," +"Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" msgstr "" #. module: account_balance_ebp_csv_export diff --git a/account_balance_ebp_csv_export/i18n/es_CO.po b/account_balance_ebp_csv_export/i18n/es_CO.po index 37ba11e76..8c0511eab 100644 --- a/account_balance_ebp_csv_export/i18n/es_CO.po +++ b/account_balance_ebp_csv_export/i18n/es_CO.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_balance_ebp_csv_export -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -11,17 +11,19 @@ msgstr "" "POT-Creation-Date: 2018-02-17 03:48+0000\n" "PO-Revision-Date: 2018-02-17 03:48+0000\n" "Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/es_CO/)\n" +"Language-Team: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/" +"es_CO/)\n" +"Language: es_CO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_CO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_balance_ebp_csv_export #: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv msgid "" -"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit," +"Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" msgstr "" #. module: account_balance_ebp_csv_export diff --git a/account_balance_ebp_csv_export/i18n/es_CR.po b/account_balance_ebp_csv_export/i18n/es_CR.po index fe9237149..6988366d4 100644 --- a/account_balance_ebp_csv_export/i18n/es_CR.po +++ b/account_balance_ebp_csv_export/i18n/es_CR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_balance_ebp_csv_export -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -11,17 +11,19 @@ msgstr "" "POT-Creation-Date: 2018-02-17 03:48+0000\n" "PO-Revision-Date: 2018-02-17 03:48+0000\n" "Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/teams/23907/es_CR/)\n" +"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/" +"teams/23907/es_CR/)\n" +"Language: es_CR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_CR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_balance_ebp_csv_export #: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv msgid "" -"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit," +"Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" msgstr "" #. module: account_balance_ebp_csv_export diff --git a/account_balance_ebp_csv_export/i18n/es_DO.po b/account_balance_ebp_csv_export/i18n/es_DO.po index 38031fcb5..a7f914cde 100644 --- a/account_balance_ebp_csv_export/i18n/es_DO.po +++ b/account_balance_ebp_csv_export/i18n/es_DO.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_balance_ebp_csv_export -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -11,17 +11,19 @@ msgstr "" "POT-Creation-Date: 2018-02-17 03:48+0000\n" "PO-Revision-Date: 2018-02-17 03:48+0000\n" "Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/oca/teams/23907/es_DO/)\n" +"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/oca/" +"teams/23907/es_DO/)\n" +"Language: es_DO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_DO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_balance_ebp_csv_export #: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv msgid "" -"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit," +"Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" msgstr "" #. module: account_balance_ebp_csv_export diff --git a/account_balance_ebp_csv_export/i18n/es_EC.po b/account_balance_ebp_csv_export/i18n/es_EC.po index edeba3630..186c79cc7 100644 --- a/account_balance_ebp_csv_export/i18n/es_EC.po +++ b/account_balance_ebp_csv_export/i18n/es_EC.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_balance_ebp_csv_export -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -11,17 +11,19 @@ msgstr "" "POT-Creation-Date: 2018-02-17 03:48+0000\n" "PO-Revision-Date: 2018-02-17 03:48+0000\n" "Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Spanish (Ecuador) (https://www.transifex.com/oca/teams/23907/es_EC/)\n" +"Language-Team: Spanish (Ecuador) (https://www.transifex.com/oca/teams/23907/" +"es_EC/)\n" +"Language: es_EC\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_EC\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_balance_ebp_csv_export #: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv msgid "" -"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit," +"Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" msgstr "" #. module: account_balance_ebp_csv_export diff --git a/account_balance_ebp_csv_export/i18n/es_ES.po b/account_balance_ebp_csv_export/i18n/es_ES.po index 0175866d4..b483e5c20 100644 --- a/account_balance_ebp_csv_export/i18n/es_ES.po +++ b/account_balance_ebp_csv_export/i18n/es_ES.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_balance_ebp_csv_export -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -11,17 +11,19 @@ msgstr "" "POT-Creation-Date: 2018-02-17 03:48+0000\n" "PO-Revision-Date: 2018-02-17 03:48+0000\n" "Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Spanish (Spain) (https://www.transifex.com/oca/teams/23907/es_ES/)\n" +"Language-Team: Spanish (Spain) (https://www.transifex.com/oca/teams/23907/" +"es_ES/)\n" +"Language: es_ES\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_ES\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_balance_ebp_csv_export #: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv msgid "" -"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit," +"Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" msgstr "" #. module: account_balance_ebp_csv_export diff --git a/account_balance_ebp_csv_export/i18n/es_MX.po b/account_balance_ebp_csv_export/i18n/es_MX.po index 420f31cf5..e0a4ffc13 100644 --- a/account_balance_ebp_csv_export/i18n/es_MX.po +++ b/account_balance_ebp_csv_export/i18n/es_MX.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_balance_ebp_csv_export -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -11,17 +11,19 @@ msgstr "" "POT-Creation-Date: 2018-02-17 03:48+0000\n" "PO-Revision-Date: 2018-02-17 03:48+0000\n" "Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/es_MX/)\n" +"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/" +"es_MX/)\n" +"Language: es_MX\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_MX\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_balance_ebp_csv_export #: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv msgid "" -"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit," +"Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" msgstr "" #. module: account_balance_ebp_csv_export diff --git a/account_balance_ebp_csv_export/i18n/es_PE.po b/account_balance_ebp_csv_export/i18n/es_PE.po index dfbfa97b3..aeaa9f17e 100644 --- a/account_balance_ebp_csv_export/i18n/es_PE.po +++ b/account_balance_ebp_csv_export/i18n/es_PE.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_balance_ebp_csv_export -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -11,17 +11,19 @@ msgstr "" "POT-Creation-Date: 2018-02-17 03:48+0000\n" "PO-Revision-Date: 2018-02-17 03:48+0000\n" "Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Spanish (Peru) (https://www.transifex.com/oca/teams/23907/es_PE/)\n" +"Language-Team: Spanish (Peru) (https://www.transifex.com/oca/teams/23907/" +"es_PE/)\n" +"Language: es_PE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_PE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_balance_ebp_csv_export #: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv msgid "" -"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit," +"Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" msgstr "" #. module: account_balance_ebp_csv_export diff --git a/account_balance_ebp_csv_export/i18n/et.po b/account_balance_ebp_csv_export/i18n/et.po index e4365c03a..9b36a91d3 100644 --- a/account_balance_ebp_csv_export/i18n/et.po +++ b/account_balance_ebp_csv_export/i18n/et.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_balance_ebp_csv_export -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,16 +12,17 @@ msgstr "" "PO-Revision-Date: 2018-02-17 03:48+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Estonian (https://www.transifex.com/oca/teams/23907/et/)\n" +"Language: et\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: et\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_balance_ebp_csv_export #: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv msgid "" -"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit," +"Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" msgstr "" #. module: account_balance_ebp_csv_export diff --git a/account_balance_ebp_csv_export/i18n/eu.po b/account_balance_ebp_csv_export/i18n/eu.po index dcdccb14d..03071a756 100644 --- a/account_balance_ebp_csv_export/i18n/eu.po +++ b/account_balance_ebp_csv_export/i18n/eu.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_balance_ebp_csv_export -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,16 +12,17 @@ msgstr "" "PO-Revision-Date: 2018-02-17 03:48+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Basque (https://www.transifex.com/oca/teams/23907/eu/)\n" +"Language: eu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: eu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_balance_ebp_csv_export #: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv msgid "" -"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit," +"Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" msgstr "" #. module: account_balance_ebp_csv_export diff --git a/account_balance_ebp_csv_export/i18n/fa.po b/account_balance_ebp_csv_export/i18n/fa.po index a5f90df68..ad4b3d275 100644 --- a/account_balance_ebp_csv_export/i18n/fa.po +++ b/account_balance_ebp_csv_export/i18n/fa.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_balance_ebp_csv_export -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,16 +12,17 @@ msgstr "" "PO-Revision-Date: 2018-02-17 03:48+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Persian (https://www.transifex.com/oca/teams/23907/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: account_balance_ebp_csv_export #: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv msgid "" -"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit," +"Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" msgstr "" #. module: account_balance_ebp_csv_export diff --git a/account_balance_ebp_csv_export/i18n/fi.po b/account_balance_ebp_csv_export/i18n/fi.po index 43e1748d2..c3ca9f92f 100644 --- a/account_balance_ebp_csv_export/i18n/fi.po +++ b/account_balance_ebp_csv_export/i18n/fi.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_balance_ebp_csv_export -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,16 +12,17 @@ msgstr "" "PO-Revision-Date: 2018-02-17 03:48+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Finnish (https://www.transifex.com/oca/teams/23907/fi/)\n" +"Language: fi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: fi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_balance_ebp_csv_export #: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv msgid "" -"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit," +"Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" msgstr "" #. module: account_balance_ebp_csv_export diff --git a/account_balance_ebp_csv_export/i18n/fr.po b/account_balance_ebp_csv_export/i18n/fr.po index a922beb27..386195108 100644 --- a/account_balance_ebp_csv_export/i18n/fr.po +++ b/account_balance_ebp_csv_export/i18n/fr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_balance_ebp_csv_export -# +# # Translators: # OCA Transbot , 2018 # Quentin THEURET , 2018 @@ -13,18 +13,20 @@ msgstr "" "PO-Revision-Date: 2018-02-17 03:48+0000\n" "Last-Translator: Quentin THEURET , 2018\n" "Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: account_balance_ebp_csv_export #: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv msgid "" -"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit," +"Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" msgstr "" -"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit," +"Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" #. module: account_balance_ebp_csv_export #: model:ir.actions.report.xml,name:account_balance_ebp_csv_export.action_report_trial_balance_ebp_csv diff --git a/account_balance_ebp_csv_export/i18n/fr_CA.po b/account_balance_ebp_csv_export/i18n/fr_CA.po index 575f68594..b01d4632a 100644 --- a/account_balance_ebp_csv_export/i18n/fr_CA.po +++ b/account_balance_ebp_csv_export/i18n/fr_CA.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_balance_ebp_csv_export -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -11,17 +11,19 @@ msgstr "" "POT-Creation-Date: 2018-02-17 03:48+0000\n" "PO-Revision-Date: 2018-02-17 03:48+0000\n" "Last-Translator: OCA Transbot , 2018\n" -"Language-Team: French (Canada) (https://www.transifex.com/oca/teams/23907/fr_CA/)\n" +"Language-Team: French (Canada) (https://www.transifex.com/oca/teams/23907/" +"fr_CA/)\n" +"Language: fr_CA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: fr_CA\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: account_balance_ebp_csv_export #: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv msgid "" -"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit," +"Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" msgstr "" #. module: account_balance_ebp_csv_export diff --git a/account_balance_ebp_csv_export/i18n/fr_CH.po b/account_balance_ebp_csv_export/i18n/fr_CH.po index 719f318fe..82e2c35d2 100644 --- a/account_balance_ebp_csv_export/i18n/fr_CH.po +++ b/account_balance_ebp_csv_export/i18n/fr_CH.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_balance_ebp_csv_export -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -11,17 +11,19 @@ msgstr "" "POT-Creation-Date: 2018-02-17 03:48+0000\n" "PO-Revision-Date: 2018-02-17 03:48+0000\n" "Last-Translator: OCA Transbot , 2018\n" -"Language-Team: French (Switzerland) (https://www.transifex.com/oca/teams/23907/fr_CH/)\n" +"Language-Team: French (Switzerland) (https://www.transifex.com/oca/" +"teams/23907/fr_CH/)\n" +"Language: fr_CH\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: fr_CH\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: account_balance_ebp_csv_export #: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv msgid "" -"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit," +"Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" msgstr "" #. module: account_balance_ebp_csv_export diff --git a/account_balance_ebp_csv_export/i18n/gl.po b/account_balance_ebp_csv_export/i18n/gl.po index a3a0f8b30..d38cafa14 100644 --- a/account_balance_ebp_csv_export/i18n/gl.po +++ b/account_balance_ebp_csv_export/i18n/gl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_balance_ebp_csv_export -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,16 +12,17 @@ msgstr "" "PO-Revision-Date: 2018-02-17 03:48+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Galician (https://www.transifex.com/oca/teams/23907/gl/)\n" +"Language: gl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: gl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_balance_ebp_csv_export #: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv msgid "" -"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit," +"Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" msgstr "" #. module: account_balance_ebp_csv_export diff --git a/account_balance_ebp_csv_export/i18n/he.po b/account_balance_ebp_csv_export/i18n/he.po index eef9110f0..063af21c9 100644 --- a/account_balance_ebp_csv_export/i18n/he.po +++ b/account_balance_ebp_csv_export/i18n/he.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_balance_ebp_csv_export -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,16 +12,17 @@ msgstr "" "PO-Revision-Date: 2018-02-17 03:48+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Hebrew (https://www.transifex.com/oca/teams/23907/he/)\n" +"Language: he\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: he\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_balance_ebp_csv_export #: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv msgid "" -"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit," +"Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" msgstr "" #. module: account_balance_ebp_csv_export diff --git a/account_balance_ebp_csv_export/i18n/hr.po b/account_balance_ebp_csv_export/i18n/hr.po index 78c56e9c9..795f3ffe8 100644 --- a/account_balance_ebp_csv_export/i18n/hr.po +++ b/account_balance_ebp_csv_export/i18n/hr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_balance_ebp_csv_export -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,16 +12,18 @@ msgstr "" "PO-Revision-Date: 2018-02-17 03:48+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n" +"Language: hr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"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" +"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_balance_ebp_csv_export #: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv msgid "" -"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit," +"Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" msgstr "" #. module: account_balance_ebp_csv_export diff --git a/account_balance_ebp_csv_export/i18n/hu.po b/account_balance_ebp_csv_export/i18n/hu.po index 811298843..7acb30bda 100644 --- a/account_balance_ebp_csv_export/i18n/hu.po +++ b/account_balance_ebp_csv_export/i18n/hu.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_balance_ebp_csv_export -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,16 +12,17 @@ msgstr "" "PO-Revision-Date: 2018-02-17 03:48+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Hungarian (https://www.transifex.com/oca/teams/23907/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_balance_ebp_csv_export #: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv msgid "" -"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit," +"Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" msgstr "" #. module: account_balance_ebp_csv_export diff --git a/account_balance_ebp_csv_export/i18n/id.po b/account_balance_ebp_csv_export/i18n/id.po index 90d8c23bd..c60b1d8a7 100644 --- a/account_balance_ebp_csv_export/i18n/id.po +++ b/account_balance_ebp_csv_export/i18n/id.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_balance_ebp_csv_export -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,16 +12,17 @@ msgstr "" "PO-Revision-Date: 2018-02-17 03:48+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Indonesian (https://www.transifex.com/oca/teams/23907/id/)\n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: account_balance_ebp_csv_export #: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv msgid "" -"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit," +"Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" msgstr "" #. module: account_balance_ebp_csv_export diff --git a/account_balance_ebp_csv_export/i18n/it.po b/account_balance_ebp_csv_export/i18n/it.po index 4eeedec4c..84bc95091 100644 --- a/account_balance_ebp_csv_export/i18n/it.po +++ b/account_balance_ebp_csv_export/i18n/it.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_balance_ebp_csv_export -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,16 +12,17 @@ msgstr "" "PO-Revision-Date: 2018-02-17 03:48+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_balance_ebp_csv_export #: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv msgid "" -"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit," +"Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" msgstr "" #. module: account_balance_ebp_csv_export diff --git a/account_balance_ebp_csv_export/i18n/ja.po b/account_balance_ebp_csv_export/i18n/ja.po index 287421ee8..f743f29e9 100644 --- a/account_balance_ebp_csv_export/i18n/ja.po +++ b/account_balance_ebp_csv_export/i18n/ja.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_balance_ebp_csv_export -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,16 +12,17 @@ msgstr "" "PO-Revision-Date: 2018-02-17 03:48+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Japanese (https://www.transifex.com/oca/teams/23907/ja/)\n" +"Language: ja\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: ja\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: account_balance_ebp_csv_export #: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv msgid "" -"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit," +"Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" msgstr "" #. module: account_balance_ebp_csv_export diff --git a/account_balance_ebp_csv_export/i18n/ko.po b/account_balance_ebp_csv_export/i18n/ko.po index 8a6c1e896..fac84d3c2 100644 --- a/account_balance_ebp_csv_export/i18n/ko.po +++ b/account_balance_ebp_csv_export/i18n/ko.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_balance_ebp_csv_export -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,16 +12,17 @@ msgstr "" "PO-Revision-Date: 2018-02-17 03:48+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Korean (https://www.transifex.com/oca/teams/23907/ko/)\n" +"Language: ko\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: ko\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: account_balance_ebp_csv_export #: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv msgid "" -"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit," +"Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" msgstr "" #. module: account_balance_ebp_csv_export diff --git a/account_balance_ebp_csv_export/i18n/lo.po b/account_balance_ebp_csv_export/i18n/lo.po index 7e2260b28..be9b128cc 100644 --- a/account_balance_ebp_csv_export/i18n/lo.po +++ b/account_balance_ebp_csv_export/i18n/lo.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_balance_ebp_csv_export -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,16 +12,17 @@ msgstr "" "PO-Revision-Date: 2018-02-17 03:48+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Lao (https://www.transifex.com/oca/teams/23907/lo/)\n" +"Language: lo\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: lo\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: account_balance_ebp_csv_export #: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv msgid "" -"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit," +"Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" msgstr "" #. module: account_balance_ebp_csv_export diff --git a/account_balance_ebp_csv_export/i18n/lt.po b/account_balance_ebp_csv_export/i18n/lt.po index 7839aff47..4290405f8 100644 --- a/account_balance_ebp_csv_export/i18n/lt.po +++ b/account_balance_ebp_csv_export/i18n/lt.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_balance_ebp_csv_export -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,16 +12,18 @@ msgstr "" "PO-Revision-Date: 2018-02-17 03:48+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Lithuanian (https://www.transifex.com/oca/teams/23907/lt/)\n" +"Language: lt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"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" +"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_balance_ebp_csv_export #: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv msgid "" -"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit," +"Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" msgstr "" #. module: account_balance_ebp_csv_export diff --git a/account_balance_ebp_csv_export/i18n/lt_LT.po b/account_balance_ebp_csv_export/i18n/lt_LT.po index ab75bcb92..daad22e43 100644 --- a/account_balance_ebp_csv_export/i18n/lt_LT.po +++ b/account_balance_ebp_csv_export/i18n/lt_LT.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_balance_ebp_csv_export -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -11,17 +11,20 @@ msgstr "" "POT-Creation-Date: 2018-02-17 03:48+0000\n" "PO-Revision-Date: 2018-02-17 03:48+0000\n" "Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/oca/teams/23907/lt_LT/)\n" +"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/oca/" +"teams/23907/lt_LT/)\n" +"Language: lt_LT\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: lt_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" +"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_balance_ebp_csv_export #: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv msgid "" -"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit," +"Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" msgstr "" #. module: account_balance_ebp_csv_export diff --git a/account_balance_ebp_csv_export/i18n/lv.po b/account_balance_ebp_csv_export/i18n/lv.po index 29abe46aa..d173f84cb 100644 --- a/account_balance_ebp_csv_export/i18n/lv.po +++ b/account_balance_ebp_csv_export/i18n/lv.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_balance_ebp_csv_export -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,16 +12,18 @@ msgstr "" "PO-Revision-Date: 2018-02-17 03:48+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Latvian (https://www.transifex.com/oca/teams/23907/lv/)\n" +"Language: lv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " +"2);\n" #. module: account_balance_ebp_csv_export #: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv msgid "" -"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit," +"Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" msgstr "" #. module: account_balance_ebp_csv_export diff --git a/account_balance_ebp_csv_export/i18n/mk.po b/account_balance_ebp_csv_export/i18n/mk.po index df861795d..04e551bab 100644 --- a/account_balance_ebp_csv_export/i18n/mk.po +++ b/account_balance_ebp_csv_export/i18n/mk.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_balance_ebp_csv_export -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,16 +12,17 @@ msgstr "" "PO-Revision-Date: 2018-02-17 03:48+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Macedonian (https://www.transifex.com/oca/teams/23907/mk/)\n" +"Language: mk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: mk\n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" #. module: account_balance_ebp_csv_export #: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv msgid "" -"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit," +"Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" msgstr "" #. module: account_balance_ebp_csv_export diff --git a/account_balance_ebp_csv_export/i18n/mn.po b/account_balance_ebp_csv_export/i18n/mn.po index 90fd7c26c..08d4ba406 100644 --- a/account_balance_ebp_csv_export/i18n/mn.po +++ b/account_balance_ebp_csv_export/i18n/mn.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_balance_ebp_csv_export -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,16 +12,17 @@ msgstr "" "PO-Revision-Date: 2018-02-17 03:48+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Mongolian (https://www.transifex.com/oca/teams/23907/mn/)\n" +"Language: mn\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: mn\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_balance_ebp_csv_export #: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv msgid "" -"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit," +"Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" msgstr "" #. module: account_balance_ebp_csv_export diff --git a/account_balance_ebp_csv_export/i18n/nb.po b/account_balance_ebp_csv_export/i18n/nb.po index b4ece5938..5752fabaf 100644 --- a/account_balance_ebp_csv_export/i18n/nb.po +++ b/account_balance_ebp_csv_export/i18n/nb.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_balance_ebp_csv_export -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -11,17 +11,19 @@ msgstr "" "POT-Creation-Date: 2018-02-17 03:48+0000\n" "PO-Revision-Date: 2018-02-17 03:48+0000\n" "Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/nb/)\n" +"Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/" +"nb/)\n" +"Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: nb\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_balance_ebp_csv_export #: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv msgid "" -"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit," +"Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" msgstr "" #. module: account_balance_ebp_csv_export diff --git a/account_balance_ebp_csv_export/i18n/nl.po b/account_balance_ebp_csv_export/i18n/nl.po index a623ccc89..b5bc3562b 100644 --- a/account_balance_ebp_csv_export/i18n/nl.po +++ b/account_balance_ebp_csv_export/i18n/nl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_balance_ebp_csv_export -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,16 +12,17 @@ msgstr "" "PO-Revision-Date: 2018-02-17 03:48+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Dutch (https://www.transifex.com/oca/teams/23907/nl/)\n" +"Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_balance_ebp_csv_export #: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv msgid "" -"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit," +"Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" msgstr "" #. module: account_balance_ebp_csv_export diff --git a/account_balance_ebp_csv_export/i18n/nl_BE.po b/account_balance_ebp_csv_export/i18n/nl_BE.po index e673fc393..1cfc68229 100644 --- a/account_balance_ebp_csv_export/i18n/nl_BE.po +++ b/account_balance_ebp_csv_export/i18n/nl_BE.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_balance_ebp_csv_export -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -11,17 +11,19 @@ msgstr "" "POT-Creation-Date: 2018-02-17 03:48+0000\n" "PO-Revision-Date: 2018-02-17 03:48+0000\n" "Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Dutch (Belgium) (https://www.transifex.com/oca/teams/23907/nl_BE/)\n" +"Language-Team: Dutch (Belgium) (https://www.transifex.com/oca/teams/23907/" +"nl_BE/)\n" +"Language: nl_BE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: nl_BE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_balance_ebp_csv_export #: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv msgid "" -"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit," +"Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" msgstr "" #. module: account_balance_ebp_csv_export diff --git a/account_balance_ebp_csv_export/i18n/pl.po b/account_balance_ebp_csv_export/i18n/pl.po index fedc9b6f3..b3a7ee2aa 100644 --- a/account_balance_ebp_csv_export/i18n/pl.po +++ b/account_balance_ebp_csv_export/i18n/pl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_balance_ebp_csv_export -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,16 +12,19 @@ msgstr "" "PO-Revision-Date: 2018-02-17 03:48+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Polish (https://www.transifex.com/oca/teams/23907/pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"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" +"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_balance_ebp_csv_export #: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv msgid "" -"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit," +"Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" msgstr "" #. module: account_balance_ebp_csv_export diff --git a/account_balance_ebp_csv_export/i18n/pt.po b/account_balance_ebp_csv_export/i18n/pt.po index a0b9aa5bf..cf51c15c4 100644 --- a/account_balance_ebp_csv_export/i18n/pt.po +++ b/account_balance_ebp_csv_export/i18n/pt.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_balance_ebp_csv_export -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,16 +12,17 @@ msgstr "" "PO-Revision-Date: 2018-02-17 03:48+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_balance_ebp_csv_export #: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv msgid "" -"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit," +"Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" msgstr "" #. module: account_balance_ebp_csv_export diff --git a/account_balance_ebp_csv_export/i18n/pt_BR.po b/account_balance_ebp_csv_export/i18n/pt_BR.po index 17769f568..057847601 100644 --- a/account_balance_ebp_csv_export/i18n/pt_BR.po +++ b/account_balance_ebp_csv_export/i18n/pt_BR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_balance_ebp_csv_export -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -11,17 +11,19 @@ msgstr "" "POT-Creation-Date: 2018-02-17 03:48+0000\n" "PO-Revision-Date: 2018-02-17 03:48+0000\n" "Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/teams/23907/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/" +"teams/23907/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: account_balance_ebp_csv_export #: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv msgid "" -"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit," +"Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" msgstr "" #. module: account_balance_ebp_csv_export diff --git a/account_balance_ebp_csv_export/i18n/pt_PT.po b/account_balance_ebp_csv_export/i18n/pt_PT.po index f6b12d5ab..815e8149b 100644 --- a/account_balance_ebp_csv_export/i18n/pt_PT.po +++ b/account_balance_ebp_csv_export/i18n/pt_PT.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_balance_ebp_csv_export -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -11,17 +11,19 @@ msgstr "" "POT-Creation-Date: 2018-02-17 03:48+0000\n" "PO-Revision-Date: 2018-02-17 03:48+0000\n" "Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/teams/23907/pt_PT/)\n" +"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/" +"teams/23907/pt_PT/)\n" +"Language: pt_PT\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: pt_PT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_balance_ebp_csv_export #: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv msgid "" -"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit," +"Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" msgstr "" #. module: account_balance_ebp_csv_export diff --git a/account_balance_ebp_csv_export/i18n/ro.po b/account_balance_ebp_csv_export/i18n/ro.po index 30010f457..b20e0f200 100644 --- a/account_balance_ebp_csv_export/i18n/ro.po +++ b/account_balance_ebp_csv_export/i18n/ro.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_balance_ebp_csv_export -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,16 +12,18 @@ msgstr "" "PO-Revision-Date: 2018-02-17 03:48+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Romanian (https://www.transifex.com/oca/teams/23907/ro/)\n" +"Language: ro\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: ro\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" #. module: account_balance_ebp_csv_export #: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv msgid "" -"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit," +"Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" msgstr "" #. module: account_balance_ebp_csv_export diff --git a/account_balance_ebp_csv_export/i18n/ru.po b/account_balance_ebp_csv_export/i18n/ru.po index 44e6adc5c..07f8bba7a 100644 --- a/account_balance_ebp_csv_export/i18n/ru.po +++ b/account_balance_ebp_csv_export/i18n/ru.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_balance_ebp_csv_export -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,16 +12,19 @@ msgstr "" "PO-Revision-Date: 2018-02-17 03:48+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Russian (https://www.transifex.com/oca/teams/23907/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"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" +"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_balance_ebp_csv_export #: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv msgid "" -"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit," +"Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" msgstr "" #. module: account_balance_ebp_csv_export diff --git a/account_balance_ebp_csv_export/i18n/sk.po b/account_balance_ebp_csv_export/i18n/sk.po index 5b809f39c..18a27bcb4 100644 --- a/account_balance_ebp_csv_export/i18n/sk.po +++ b/account_balance_ebp_csv_export/i18n/sk.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_balance_ebp_csv_export -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,16 +12,17 @@ msgstr "" "PO-Revision-Date: 2018-02-17 03:48+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Slovak (https://www.transifex.com/oca/teams/23907/sk/)\n" +"Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: sk\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #. module: account_balance_ebp_csv_export #: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv msgid "" -"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit," +"Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" msgstr "" #. module: account_balance_ebp_csv_export diff --git a/account_balance_ebp_csv_export/i18n/sl.po b/account_balance_ebp_csv_export/i18n/sl.po index 1a3623be5..0b69e1b79 100644 --- a/account_balance_ebp_csv_export/i18n/sl.po +++ b/account_balance_ebp_csv_export/i18n/sl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_balance_ebp_csv_export -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,16 +12,18 @@ msgstr "" "PO-Revision-Date: 2018-02-17 03:48+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n" +"Language: sl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"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" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" #. module: account_balance_ebp_csv_export #: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv msgid "" -"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit," +"Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" msgstr "" #. module: account_balance_ebp_csv_export diff --git a/account_balance_ebp_csv_export/i18n/sr@latin.po b/account_balance_ebp_csv_export/i18n/sr@latin.po index 21bdc9eeb..5f39b45e0 100644 --- a/account_balance_ebp_csv_export/i18n/sr@latin.po +++ b/account_balance_ebp_csv_export/i18n/sr@latin.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_balance_ebp_csv_export -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -11,17 +11,20 @@ msgstr "" "POT-Creation-Date: 2018-02-17 03:48+0000\n" "PO-Revision-Date: 2018-02-17 03:48+0000\n" "Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/sr%40latin/)\n" +"Language-Team: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/sr" +"%40latin/)\n" +"Language: sr@latin\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: sr@latin\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" +"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_balance_ebp_csv_export #: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv msgid "" -"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit," +"Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" msgstr "" #. module: account_balance_ebp_csv_export diff --git a/account_balance_ebp_csv_export/i18n/sv.po b/account_balance_ebp_csv_export/i18n/sv.po index 7972574a8..1b1145ff9 100644 --- a/account_balance_ebp_csv_export/i18n/sv.po +++ b/account_balance_ebp_csv_export/i18n/sv.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_balance_ebp_csv_export -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,16 +12,17 @@ msgstr "" "PO-Revision-Date: 2018-02-17 03:48+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Swedish (https://www.transifex.com/oca/teams/23907/sv/)\n" +"Language: sv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_balance_ebp_csv_export #: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv msgid "" -"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit," +"Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" msgstr "" #. module: account_balance_ebp_csv_export diff --git a/account_balance_ebp_csv_export/i18n/th.po b/account_balance_ebp_csv_export/i18n/th.po index f74788a87..015b92dc6 100644 --- a/account_balance_ebp_csv_export/i18n/th.po +++ b/account_balance_ebp_csv_export/i18n/th.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_balance_ebp_csv_export -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,16 +12,17 @@ msgstr "" "PO-Revision-Date: 2018-02-17 03:48+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Thai (https://www.transifex.com/oca/teams/23907/th/)\n" +"Language: th\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: th\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: account_balance_ebp_csv_export #: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv msgid "" -"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit," +"Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" msgstr "" #. module: account_balance_ebp_csv_export diff --git a/account_balance_ebp_csv_export/i18n/tr.po b/account_balance_ebp_csv_export/i18n/tr.po index 1ff1366e6..75784adbd 100644 --- a/account_balance_ebp_csv_export/i18n/tr.po +++ b/account_balance_ebp_csv_export/i18n/tr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_balance_ebp_csv_export -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,16 +12,17 @@ msgstr "" "PO-Revision-Date: 2018-02-17 03:48+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\n" +"Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: tr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: account_balance_ebp_csv_export #: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv msgid "" -"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit," +"Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" msgstr "" #. module: account_balance_ebp_csv_export diff --git a/account_balance_ebp_csv_export/i18n/tr_TR.po b/account_balance_ebp_csv_export/i18n/tr_TR.po index 15d814a75..333b4ae51 100644 --- a/account_balance_ebp_csv_export/i18n/tr_TR.po +++ b/account_balance_ebp_csv_export/i18n/tr_TR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_balance_ebp_csv_export -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -11,17 +11,19 @@ msgstr "" "POT-Creation-Date: 2018-02-17 03:48+0000\n" "PO-Revision-Date: 2018-02-17 03:48+0000\n" "Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/tr_TR/)\n" +"Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/" +"tr_TR/)\n" +"Language: tr_TR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: account_balance_ebp_csv_export #: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv msgid "" -"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit," +"Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" msgstr "" #. module: account_balance_ebp_csv_export diff --git a/account_balance_ebp_csv_export/i18n/uk.po b/account_balance_ebp_csv_export/i18n/uk.po index b22519a16..51808f2bc 100644 --- a/account_balance_ebp_csv_export/i18n/uk.po +++ b/account_balance_ebp_csv_export/i18n/uk.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_balance_ebp_csv_export -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,16 +12,18 @@ msgstr "" "PO-Revision-Date: 2018-02-17 03:48+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Ukrainian (https://www.transifex.com/oca/teams/23907/uk/)\n" +"Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: uk\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" +"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_balance_ebp_csv_export #: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv msgid "" -"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit," +"Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" msgstr "" #. module: account_balance_ebp_csv_export diff --git a/account_balance_ebp_csv_export/i18n/vi.po b/account_balance_ebp_csv_export/i18n/vi.po index b1f10fcb0..e14a34bfa 100644 --- a/account_balance_ebp_csv_export/i18n/vi.po +++ b/account_balance_ebp_csv_export/i18n/vi.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_balance_ebp_csv_export -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,16 +12,17 @@ msgstr "" "PO-Revision-Date: 2018-02-17 03:48+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Vietnamese (https://www.transifex.com/oca/teams/23907/vi/)\n" +"Language: vi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: vi\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: account_balance_ebp_csv_export #: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv msgid "" -"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit," +"Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" msgstr "" #. module: account_balance_ebp_csv_export diff --git a/account_balance_ebp_csv_export/i18n/vi_VN.po b/account_balance_ebp_csv_export/i18n/vi_VN.po index 6dc4e1064..ee543b720 100644 --- a/account_balance_ebp_csv_export/i18n/vi_VN.po +++ b/account_balance_ebp_csv_export/i18n/vi_VN.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_balance_ebp_csv_export -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -11,17 +11,19 @@ msgstr "" "POT-Creation-Date: 2018-02-17 03:48+0000\n" "PO-Revision-Date: 2018-02-17 03:48+0000\n" "Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/oca/teams/23907/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/oca/" +"teams/23907/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: account_balance_ebp_csv_export #: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv msgid "" -"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit," +"Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" msgstr "" #. module: account_balance_ebp_csv_export diff --git a/account_balance_ebp_csv_export/i18n/zh_CN.po b/account_balance_ebp_csv_export/i18n/zh_CN.po index e257b332b..c00c21e16 100644 --- a/account_balance_ebp_csv_export/i18n/zh_CN.po +++ b/account_balance_ebp_csv_export/i18n/zh_CN.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_balance_ebp_csv_export -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -11,17 +11,19 @@ msgstr "" "POT-Creation-Date: 2018-02-17 03:48+0000\n" "PO-Revision-Date: 2018-02-17 03:48+0000\n" "Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/zh_CN/)\n" +"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/" +"zh_CN/)\n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: account_balance_ebp_csv_export #: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv msgid "" -"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit," +"Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" msgstr "" #. module: account_balance_ebp_csv_export diff --git a/account_balance_ebp_csv_export/i18n/zh_TW.po b/account_balance_ebp_csv_export/i18n/zh_TW.po index 66b5030d3..6f89e3313 100644 --- a/account_balance_ebp_csv_export/i18n/zh_TW.po +++ b/account_balance_ebp_csv_export/i18n/zh_TW.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_balance_ebp_csv_export -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -11,17 +11,19 @@ msgstr "" "POT-Creation-Date: 2018-02-17 03:48+0000\n" "PO-Revision-Date: 2018-02-17 03:48+0000\n" "Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Chinese (Taiwan) (https://www.transifex.com/oca/teams/23907/zh_TW/)\n" +"Language-Team: Chinese (Taiwan) (https://www.transifex.com/oca/teams/23907/" +"zh_TW/)\n" +"Language: zh_TW\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: zh_TW\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: account_balance_ebp_csv_export #: model:ir.ui.view,arch_db:account_balance_ebp_csv_export.report_trial_balance_ebp_csv msgid "" -"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit,Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" +"Compte.Numero,Compte.Intitule,Balance.SldCptNDebit,Balance.SldCptNCredit," +"Balance.SldCptNSoldeD,Balance.SldCptNSoldeC" msgstr "" #. module: account_balance_ebp_csv_export From 4e185fcdd1ccfe14b36877c434671a23934e09eb Mon Sep 17 00:00:00 2001 From: Alexis de Lattre Date: Wed, 9 Jan 2019 00:15:00 +0100 Subject: [PATCH 32/54] account_balance_ebp_csv_export: adapt to recent changes in account_financial_report_qweb --- account_balance_ebp_csv_export/report/balance_ebp_csv.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/account_balance_ebp_csv_export/report/balance_ebp_csv.xml b/account_balance_ebp_csv_export/report/balance_ebp_csv.xml index 5b0ad8c10..2e79711ad 100644 --- a/account_balance_ebp_csv_export/report/balance_ebp_csv.xml +++ b/account_balance_ebp_csv_export/report/balance_ebp_csv.xml @@ -1,8 +1,8 @@ -