From a349c47d57c002803cae85c54de8ab8db704c35e Mon Sep 17 00:00:00 2001 From: tafaRU Date: Thu, 19 Nov 2020 15:40:04 +0100 Subject: [PATCH 01/29] [FIX] account_financial_report: get module compatible with HomeMenu widget added by web_enterprise module Steps to reproduce: * install account_financial_report module alongside Odoo Enterpise * open General Ledger report * click on View button * click on Home button or by using the shortcut (Shift +h) Current behaviour: Uncaught TypeError: currentController.widget.on_detach_callback is not a function http://localhost:8069/web/static/src/js/chrome/action_manager.js:94 Traceback: TypeError: currentController.widget.on_detach_callback is not a function at Class.on_detach_callback (http://localhost:8069/web/static/src/js/chrome/action_manager.js:94:38) at http://localhost:8069/web/static/src/js/core/dom.js:175:26 at Function._.each._.forEach (http://localhost:8069/web/static/lib/underscore/underscore.js:145:9) at Object.detach (http://localhost:8069/web/static/src/js/core/dom.js:173:11) at http://localhost:8069/web_enterprise/static/src/js/web_client.js:289:21 at http://localhost:8069/web/static/lib/jquery/jquery.js:3276:89 at fire (http://localhost:8069/web/static/lib/jquery/jquery.js:3119:58) at Object.add [as done] (http://localhost:8069/web/static/lib/jquery/jquery.js:3165:49) at Array. (http://localhost:8069/web/static/lib/jquery/jquery.js:3275:77) at Function.each (http://localhost:8069/web/static/lib/jquery/jquery.js:383:58) In addition, after having implemented on_detach_callback, if I click on the icon chevron left or by using the shortcut, I get the following error: Uncaught TypeError: currentController.widget.on_attach_callback is not a function http://localhost:8069/web/static/src/js/chrome/action_manager.js:84 Traceback: TypeError: currentController.widget.on_attach_callback is not a function at Class.on_attach_callback (http://localhost:8069/web/static/src/js/chrome/action_manager.js:84:38) at http://localhost:8069/web/static/src/js/core/dom.js:38:22 at Function._.each._.forEach (http://localhost:8069/web/static/lib/underscore/underscore.js:145:9) at _notify (http://localhost:8069/web/static/src/js/core/dom.js:36:7) at Object.append (http://localhost:8069/web/static/src/js/core/dom.js:60:13) at Class.toggle_home_menu (http://localhost:8069/web_enterprise/static/src/js/web_client.js:305:17) at Class.self.toggle_home_menu (http://localhost:8069/web_enterprise/static/src/js/widgets/debug_manager.js:21:38) at Class._onHideHomeMenu (http://localhost:8069/web_enterprise/static/src/js/web_client.js:329:18) at Class. (http://localhost:8069/web/static/src/js/core/mixins.js:278:23) at Class.trigger (http://localhost:8069/web/static/src/js/core/mixins.js:225:31) --- .../static/src/js/account_financial_report_backend.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/account_financial_report/static/src/js/account_financial_report_backend.js b/account_financial_report/static/src/js/account_financial_report_backend.js index 3dc87d31..b415556c 100644 --- a/account_financial_report/static/src/js/account_financial_report_backend.js +++ b/account_financial_report/static/src/js/account_financial_report_backend.js @@ -104,6 +104,12 @@ odoo.define('account_financial_report.account_financial_report_backend', functio canBeRemoved: function () { return $.when(); }, + on_attach_callback: function () { + this.isInDOM = true; + }, + on_detach_callback: function () { + this.isInDOM = false; + }, }); core.action_registry.add( From 099a23c191426c28afe444b0e59eed9b14923d49 Mon Sep 17 00:00:00 2001 From: SimoRubi Date: Tue, 24 Nov 2020 15:39:17 +0100 Subject: [PATCH 02/29] [FIX] account_financial_report: Correctly inject selected journals in accounts query --- account_financial_report/__manifest__.py | 2 +- account_financial_report/report/general_ledger.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/account_financial_report/__manifest__.py b/account_financial_report/__manifest__.py index aaaef0b6..43555ef8 100644 --- a/account_financial_report/__manifest__.py +++ b/account_financial_report/__manifest__.py @@ -4,7 +4,7 @@ # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). { 'name': 'Account Financial Reports', - 'version': '12.0.1.4.1', + 'version': '12.0.1.4.2', 'category': 'Reporting', 'summary': 'OCA Financial Reports', 'author': 'Camptocamp SA,' diff --git a/account_financial_report/report/general_ledger.py b/account_financial_report/report/general_ledger.py index 5beb736d..35111a62 100644 --- a/account_financial_report/report/general_ledger.py +++ b/account_financial_report/report/general_ledger.py @@ -338,8 +338,8 @@ class GeneralLedgerReportCompute(models.TransientModel): if self.filter_journal_ids: sub_subquery_sum_amounts += """ AND - ml.journal_id IN %s - """ % (tuple(self.filter_journal_ids.ids,),) + ml.journal_id IN (%s) + """ % ', '.join(map(str, self.filter_journal_ids.ids)) if self.only_posted_moves: sub_subquery_sum_amounts += """ From aeffd2a8edc5b0a102cfb2a1520e72ab38e4f910 Mon Sep 17 00:00:00 2001 From: Carles Antoli Date: Fri, 15 Jan 2021 16:43:46 +0000 Subject: [PATCH 03/29] Translated using Weblate (Catalan) Currently translated at 100.0% (47 of 47 strings) Translation: account-financial-reporting-12.0/account-financial-reporting-12.0-account_tax_balance Translate-URL: https://translation.odoo-community.org/projects/account-financial-reporting-12-0/account-financial-reporting-12-0-account_tax_balance/ca/ --- account_tax_balance/i18n/ca.po | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/account_tax_balance/i18n/ca.po b/account_tax_balance/i18n/ca.po index 1477ccbe..5f6331c3 100644 --- a/account_tax_balance/i18n/ca.po +++ b/account_tax_balance/i18n/ca.po @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: Odoo Server 11.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-02-28 10:11+0000\n" -"PO-Revision-Date: 2020-02-27 22:13+0000\n" +"PO-Revision-Date: 2021-01-15 18:44+0000\n" "Last-Translator: Carles Antoli \n" "Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n" "Language: ca\n" @@ -17,7 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.10\n" +"X-Generator: Weblate 4.3.2\n" #. module: account_tax_balance #: code:addons/account_tax_balance/wizard/open_tax_balances.py:48 @@ -49,7 +49,7 @@ msgstr "Tots els apunts tancats" #. module: account_tax_balance #: model:ir.model.fields,field_description:account_tax_balance.field_account_tax__balance_regular msgid "Balance" -msgstr "Balanç " +msgstr "Balanç" #. module: account_tax_balance #: model:ir.model.fields,field_description:account_tax_balance.field_account_tax__balance_refund @@ -74,22 +74,22 @@ msgstr "Total base" #. module: account_tax_balance #: model_terms:ir.ui.view,arch_db:account_tax_balance.wizard_open_tax_balances msgid "Cancel" -msgstr "Cancel·lar " +msgstr "Cancel·lar" #. module: account_tax_balance #: model:ir.model.fields,field_description:account_tax_balance.field_wizard_open_tax_balances__company_id msgid "Company" -msgstr "Empresa " +msgstr "Empresa" #. module: account_tax_balance #: model:ir.model.fields,field_description:account_tax_balance.field_wizard_open_tax_balances__create_uid msgid "Created by" -msgstr "Creat per " +msgstr "Creat per" #. module: account_tax_balance #: model:ir.model.fields,field_description:account_tax_balance.field_wizard_open_tax_balances__create_date msgid "Created on" -msgstr "Creat a " +msgstr "Creat el" #. module: account_tax_balance #: model:ir.model.fields,field_description:account_tax_balance.field_wizard_open_tax_balances__date_range_id @@ -99,7 +99,7 @@ msgstr "Rang de dates" #. module: account_tax_balance #: model:ir.model.fields,field_description:account_tax_balance.field_wizard_open_tax_balances__display_name msgid "Display Name" -msgstr "Nom a mostrar " +msgstr "Nom a mostrar" #. module: account_tax_balance #: model:ir.model.fields,field_description:account_tax_balance.field_wizard_open_tax_balances__from_date @@ -134,17 +134,17 @@ msgstr "Apunt comptable" #. module: account_tax_balance #: model:ir.model.fields,field_description:account_tax_balance.field_wizard_open_tax_balances____last_update msgid "Last Modified on" -msgstr "Última modificació a " +msgstr "Última modificació el" #. module: account_tax_balance #: model:ir.model.fields,field_description:account_tax_balance.field_wizard_open_tax_balances__write_uid msgid "Last Updated by" -msgstr "Última actualització per " +msgstr "Darrera actualització per" #. module: account_tax_balance #: model:ir.model.fields,field_description:account_tax_balance.field_wizard_open_tax_balances__write_date msgid "Last Updated on" -msgstr "Última actualització a " +msgstr "Darrera actualització el" #. module: account_tax_balance #: model:ir.model.fields,field_description:account_tax_balance.field_account_move__move_type From 72a7de06a47ee53338530542acb0ea8892ecab17 Mon Sep 17 00:00:00 2001 From: Carles Antoli Date: Fri, 15 Jan 2021 16:40:50 +0000 Subject: [PATCH 04/29] Translated using Weblate (Catalan) Currently translated at 100.0% (333 of 333 strings) Translation: account-financial-reporting-12.0/account-financial-reporting-12.0-account_financial_report Translate-URL: https://translation.odoo-community.org/projects/account-financial-reporting-12-0/account-financial-reporting-12-0-account_financial_report/ca/ --- account_financial_report/i18n/ca.po | 221 ++++++++++++++++------------ 1 file changed, 124 insertions(+), 97 deletions(-) diff --git a/account_financial_report/i18n/ca.po b/account_financial_report/i18n/ca.po index e781719e..aaebf29b 100644 --- a/account_financial_report/i18n/ca.po +++ b/account_financial_report/i18n/ca.po @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: Odoo Server 11.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-03-16 08:14+0000\n" -"PO-Revision-Date: 2021-01-14 20:44+0000\n" +"PO-Revision-Date: 2021-01-15 18:44+0000\n" "Last-Translator: Carles Antoli \n" "Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n" "Language: ca\n" @@ -132,7 +132,6 @@ msgstr "Tipus de compte" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__account_type_ids -#, fuzzy msgid "Account Types" msgstr "Tipus de compte" @@ -392,7 +391,7 @@ msgstr "Base Balanç" #: model:ir.model.fields,field_description:account_financial_report.field_report_journal_ledger_report_tax_line__base_credit #, python-format msgid "Base Credit" -msgstr "" +msgstr "Haver" #. module: account_financial_report #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:107 @@ -400,7 +399,7 @@ msgstr "" #: model:ir.model.fields,field_description:account_financial_report.field_report_journal_ledger_report_tax_line__base_debit #, python-format msgid "Base Debit" -msgstr "" +msgstr "Total Deure" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_vat_report__based_on @@ -531,6 +530,15 @@ msgid "" "grouping.\n" " " msgstr "" +"Comptes calculats: s'utilitza quan el grup de comptes té codis\n" +" que representen prefixos dels comptes reals.\n" +"\n" +" Comptes secundaris: utilitzeu-los quan els grups de comptes siguin " +"jeràrquics.\n" +"\n" +" Sense jerarquia: s'utilitza per mostrar només els comptes, sense cap " +"agrupament.\n" +" " #. module: account_financial_report #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines @@ -669,7 +677,7 @@ msgstr "Import residual acumulat" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_general_ledger_move_line__cumul_balance msgid "Cumul Balance" -msgstr "" +msgstr "Saldo acumulat" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_aged_partner_balance_account__cumul_current @@ -1048,7 +1056,7 @@ msgstr "Filtre compte" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_general_ledger__filter_analytic_tag_ids msgid "Filter Analytic Tag" -msgstr "Filtrar per etiqueta analítica" +msgstr "Filtre per etiqueta analítica" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_general_ledger__filter_cost_center_ids @@ -1059,7 +1067,7 @@ msgstr "Filtre per centre de cost" #: model:ir.model.fields,field_description:account_financial_report.field_report_general_ledger__filter_journal_ids #: model:ir.model.fields,field_description:account_financial_report.field_report_trial_balance__filter_journal_ids msgid "Filter Journal" -msgstr "Filtrar per diari" +msgstr "Filtre per diari" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_aged_partner_balance__filter_partner_ids @@ -1082,7 +1090,7 @@ msgstr "Filtre comptes" #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__analytic_tag_ids #: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard msgid "Filter analytic tags" -msgstr "Filtrar per etiquetes analítiques" +msgstr "Filtre per etiquetes analítiques" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__cost_center_ids @@ -1093,7 +1101,7 @@ msgstr "Filtre centres de cost" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__account_journal_ids msgid "Filter journals" -msgstr "Filtreu per diaris" +msgstr "Filtre per diaris" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_wizard__partner_ids @@ -1102,7 +1110,7 @@ msgstr "Filtreu per diaris" #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__partner_ids #: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard msgid "Filter partners" -msgstr "Filtreu per empresa" +msgstr "Filtre per empresa" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_open_items_account__final_amount_residual @@ -1126,7 +1134,7 @@ msgstr "Import final total pendent" #: model:ir.model.fields,field_description:account_financial_report.field_report_open_items_account__final_amount_total_due_currency #: model:ir.model.fields,field_description:account_financial_report.field_report_open_items_partner__final_amount_total_due_currency msgid "Final Amount Total Due Currency" -msgstr "" +msgstr "Import final total de la moneda deguda" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_general_ledger_account__final_balance @@ -1221,16 +1229,18 @@ msgid "" "General Ledger can be computed only if selected company have only one " "unaffected earnings account." msgstr "" +"El Llibre Major només es pot calcular si l'empresa seleccionada només té un " +"compte de resultats no afectats." #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_journal_ledger__group_option msgid "Group Option" -msgstr "" +msgstr "Opció d'agrupació" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__group_option msgid "Group entries by" -msgstr "" +msgstr "Agrupa les entrades per" #. module: account_financial_report #: code:addons/account_financial_report/report/general_ledger_xlsx.py:86 @@ -1259,24 +1269,24 @@ msgstr "Amaga la línia" #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__hide_account_at_0 #: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__hide_account_at_0 msgid "Hide account ending balance at 0" -msgstr "" +msgstr "Amaga el saldo final del compte a 0" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__hide_account_at_0 msgid "Hide accounts at 0" -msgstr "" +msgstr "Amaga els comptes a 0" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_trial_balance__show_hierarchy_level #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__show_hierarchy_level msgid "Hierarchy Levels to display" -msgstr "" +msgstr "Nivells de jerarquia a visualitzar" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_trial_balance__hierarchy_on #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__hierarchy_on msgid "Hierarchy On" -msgstr "" +msgstr "Jerarquia en" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_account_financial_report_abstract__id @@ -1328,12 +1338,14 @@ msgid "" "If flagged, no details will be displayed in the General Ledger report (the " "webkit one only), only centralized amounts per period." msgstr "" +"Si es marca, no es mostraran detalls a l'informe del llibre major (només el " +"webkit), només les quantitats centralitzades per període." #. module: account_financial_report #: model:ir.model.fields,help:account_financial_report.field_general_ledger_report_wizard__partner_ungrouped #: model:ir.model.fields,help:account_financial_report.field_report_general_ledger__partner_ungrouped msgid "If set moves are not grouped by partner in any case" -msgstr "" +msgstr "Si els moviments establerts no s'agrupen per empresa en cap cas" #. module: account_financial_report #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header @@ -1341,6 +1353,8 @@ msgid "" "Initial\n" " balance" msgstr "" +"Saldo\n" +" inicial" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_general_ledger_account__initial_balance @@ -1348,7 +1362,7 @@ msgstr "" #: model:ir.model.fields,field_description:account_financial_report.field_report_trial_balance_account__initial_balance #: model:ir.model.fields,field_description:account_financial_report.field_report_trial_balance_partner__initial_balance msgid "Initial Balance" -msgstr "" +msgstr "Saldo inicial" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_general_ledger_account__initial_balance_foreign_currency @@ -1356,19 +1370,19 @@ msgstr "" #: model:ir.model.fields,field_description:account_financial_report.field_report_trial_balance_account__initial_balance_foreign_currency #: model:ir.model.fields,field_description:account_financial_report.field_report_trial_balance_partner__initial_balance_foreign_currency msgid "Initial Balance Foreign Currency" -msgstr "" +msgstr "Saldo inicial moneda estrangera" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_general_ledger_account__initial_credit #: model:ir.model.fields,field_description:account_financial_report.field_report_general_ledger_partner__initial_credit msgid "Initial Credit" -msgstr "" +msgstr "Saldo inicial Haver" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_general_ledger_account__initial_debit #: model:ir.model.fields,field_description:account_financial_report.field_report_general_ledger_partner__initial_debit msgid "Initial Debit" -msgstr "" +msgstr "Saldo inicial Deure" #. module: account_financial_report #: code:addons/account_financial_report/report/general_ledger_xlsx.py:169 @@ -1379,17 +1393,17 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines #, python-format msgid "Initial balance" -msgstr "" +msgstr "Saldo inicial" #. module: account_financial_report #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header msgid "Initial blance cur." -msgstr "" +msgstr "Saldo inicial act." #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_general_ledger_account__is_partner_account msgid "Is Partner Account" -msgstr "" +msgstr "És compte d'empresa" #. module: account_financial_report #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:66 @@ -1433,12 +1447,12 @@ msgstr "Diari de comptabilitat -" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_journal_ledger_report_wizard msgid "Journal Ledger Report Wizard" -msgstr "" +msgstr "Assistent d'informe de Llibre Diari" #. module: account_financial_report #: model:ir.actions.report,name:account_financial_report.action_report_journal_ledger_xlsx msgid "Journal Ledger XLSX" -msgstr "" +msgstr "Llibre diari XLSX" #. module: account_financial_report #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:181 @@ -1590,22 +1604,22 @@ msgstr "Nivell %s" #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters #, python-format msgid "Limit hierarchy levels" -msgstr "" +msgstr "Limita els nivells de jerarquia" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_aged_partner_balance_partner__line_ids msgid "Line" -msgstr "" +msgstr "Línia" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_general_ledger_move_line__matching_number msgid "Matching Number" -msgstr "" +msgstr "Número coincident" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_journal_ledger_move__move_id msgid "Move" -msgstr "" +msgstr "Assentament" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_aged_partner_balance_move_line__move_line_id @@ -1617,18 +1631,18 @@ msgstr "" #: model:ir.model.fields,field_description:account_financial_report.field_report_open_items_move_line__move_line_id #: model:ir.model.fields,field_description:account_financial_report.field_report_open_items_partner__move_line_ids msgid "Move Line" -msgstr "" +msgstr "Línia d'assentament" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__move_target #: model:ir.model.fields,field_description:account_financial_report.field_report_journal_ledger__move_target msgid "Move Target" -msgstr "" +msgstr "Assentament objectiu" #. module: account_financial_report #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal msgid "Moves" -msgstr "" +msgstr "Assentaments" #. module: account_financial_report #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:97 @@ -1650,7 +1664,7 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base #, python-format msgid "Name" -msgstr "" +msgstr "Nom" #. module: account_financial_report #: code:addons/account_financial_report/report/vat_report_xlsx.py:19 @@ -1659,7 +1673,7 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base #, python-format msgid "Net" -msgstr "" +msgstr "Net" #. module: account_financial_report #: code:addons/account_financial_report/report/general_ledger_xlsx.py:90 @@ -1670,26 +1684,26 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters #, python-format msgid "No" -msgstr "" +msgstr "No" #. module: account_financial_report #: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:80 #, python-format msgid "No group" -msgstr "" +msgstr "Sense grup" #. module: account_financial_report #: selection:report_trial_balance,hierarchy_on:0 #: selection:trial.balance.report.wizard,hierarchy_on:0 msgid "No hierarchy" -msgstr "" +msgstr "Cap jerarquia" #. module: account_financial_report #: code:addons/account_financial_report/report/trial_balance_xlsx.py:115 #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters #, python-format msgid "No limit" -msgstr "" +msgstr "Sense límit" #. module: account_financial_report #: code:addons/account_financial_report/report/general_ledger.py:776 @@ -1698,7 +1712,7 @@ msgstr "" #: code:addons/account_financial_report/report/open_items.py:556 #, python-format msgid "No partner allocated" -msgstr "" +msgstr "Empresa sense assignar" #. module: account_financial_report #: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:66 @@ -2047,7 +2061,7 @@ msgstr "Informe de línia d'impostos" #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines #, python-format msgid "Residual" -msgstr "" +msgstr "Remanent" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_trial_balance_account__sequence @@ -2063,29 +2077,29 @@ msgstr "Seqüència" #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters #, python-format msgid "Show" -msgstr "" +msgstr "Mostra" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_general_ledger__show_analytic_tags msgid "Show Analytic Tags" -msgstr "" +msgstr "Mostra etiquetes analítiques" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_general_ledger__show_cost_center msgid "Show Cost Center" -msgstr "" +msgstr "Mostra centre de cost" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_wizard__show_move_line_details #: model:ir.model.fields,field_description:account_financial_report.field_report_aged_partner_balance__show_move_line_details msgid "Show Move Line Details" -msgstr "" +msgstr "Mostra detalls d'assentaments" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_trial_balance__show_partner_details #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__show_partner_details msgid "Show Partner Details" -msgstr "" +msgstr "Mostra detalls d'empresa" #. module: account_financial_report #: code:addons/account_financial_report/report/general_ledger_xlsx.py:93 @@ -2093,7 +2107,7 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters #, python-format msgid "Show analytic tags" -msgstr "" +msgstr "Mostra etiquetes analítiques" #. module: account_financial_report #: code:addons/account_financial_report/report/general_ledger_xlsx.py:97 @@ -2104,17 +2118,17 @@ msgstr "" #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__foreign_currency #, python-format msgid "Show foreign currency" -msgstr "" +msgstr "Mostra moneda extrangera" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_journal_ledger__sort_option msgid "Sort Option" -msgstr "" +msgstr "Opció d'ordenació" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__sort_option msgid "Sort entries by" -msgstr "" +msgstr "Ordena les entrades per" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__date_from @@ -2270,6 +2284,8 @@ msgid "" "The Company in the General Ledger Report Wizard and in Date Range must be " "the same." msgstr "" +"L'empresa de l'Assistent d'informes de llibres majors i de l'interval de " +"dates ha de ser la mateixa." #. module: account_financial_report #: code:addons/account_financial_report/wizard/trial_balance_wizard.py:162 @@ -2278,6 +2294,8 @@ msgid "" "The Company in the Trial Balance Report Wizard and in Date Range must be the " "same." msgstr "" +"L'empresa de l'assistent d'informes del Balanç de comprovació i de " +"l'interval de dates ha de ser la mateixa." #. module: account_financial_report #: code:addons/account_financial_report/wizard/vat_report_wizard.py:62 @@ -2285,12 +2303,14 @@ msgstr "" msgid "" "The Company in the Vat Report Wizard and in Date Range must be the same." msgstr "" +"L'empresa en l'assistent per a informes d'IVA i en interval de dates ha de " +"ser la mateixa." #. module: account_financial_report #: code:addons/account_financial_report/wizard/trial_balance_wizard.py:94 #, python-format msgid "The hierarchy level to filter on must be greater than 0." -msgstr "" +msgstr "El nivell de jerarquia a filtrar ha de ser superior a 0." #. module: account_financial_report #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters @@ -2325,7 +2345,7 @@ msgstr "Balanç de Sumes i Saldos -" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_trial_balance_report_wizard msgid "Trial Balance Report Wizard" -msgstr "Assistent de l'informe de balanç de sumes i saldos" +msgstr "Assistent de l'informe de balanç de Sumes i Saldos" #. module: account_financial_report #: model:ir.actions.report,name:account_financial_report.action_report_trial_balance_xlsx @@ -2338,11 +2358,13 @@ msgid "" "Trial Balance can be computed only if selected company have only one " "unaffected earnings account." msgstr "" +"El balanç de sumes i saldos només pot calcular si la companyia seleccionada " +"té una i només un compte de guanys." #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_general_ledger__unaffected_earnings_account msgid "Unaffected Earnings Account" -msgstr "" +msgstr "Compte de guanys no afectat" #. module: account_financial_report #: model:ir.model.fields,help:account_financial_report.field_general_ledger_report_wizard__hide_account_at_0 @@ -2352,6 +2374,9 @@ msgid "" "If partners are filtered, debits and credits totals will not match the trial " "balance." msgstr "" +"Utilitzeu aquest filtre per amagar un compte o un soci amb un saldo final a " +"0. Si es filtra els socis, els totals de dèbit i crèdit no coincidiran amb " +"el balanç de sumes i saldos." #. module: account_financial_report #: code:addons/account_financial_report/report/vat_report_xlsx.py:12 @@ -2362,27 +2387,27 @@ msgstr "" #: model:ir.ui.menu,name:account_financial_report.menu_vat_report_wizard #, python-format msgid "VAT Report" -msgstr "" +msgstr "Informe d'impostos" #. module: account_financial_report #: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base msgid "VAT Report -" -msgstr "" +msgstr "Informe d'impostos -" #. module: account_financial_report #: model_terms:ir.ui.view,arch_db:account_financial_report.vat_report_wizard msgid "VAT Report Options" -msgstr "" +msgstr "Opcions d'informe d'impostos" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_vat_report_wizard msgid "VAT Report Wizard" -msgstr "" +msgstr "Assistent informe d'impostos" #. module: account_financial_report #: model:ir.actions.report,name:account_financial_report.action_report_vat_report_xlsx msgid "VAT Report XLSX" -msgstr "" +msgstr "Informe d'impostos XLSX" #. module: account_financial_report #: model_terms:ir.ui.view,arch_db:account_financial_report.aged_partner_balance_wizard @@ -2400,12 +2425,14 @@ msgid "" "When this option is enabled, the trial balance will not display accounts " "that have initial balance = debit = credit = end balance = 0" msgstr "" +"Quan habiliti aquesta opció el balanç de sumes i saldos no mostrarà comptes " +"que tinguin saldo inicial = dèbit = crèdit = saldo final = 0" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__with_account_name #: model:ir.model.fields,field_description:account_financial_report.field_report_journal_ledger__with_account_name msgid "With Account Name" -msgstr "" +msgstr "Amb el nom del compte" #. module: account_financial_report #: code:addons/account_financial_report/report/general_ledger_xlsx.py:90 @@ -2431,184 +2458,184 @@ msgstr "o" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_report_a_f_r_report_aged_partner_balance_xlsx msgid "report.a_f_r.report_aged_partner_balance_xlsx" -msgstr "" +msgstr "informe.a_f_r.informe_saldos_empresa_per_antiguitat_xlxs" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_report_a_f_r_report_general_ledger_xlsx msgid "report.a_f_r.report_general_ledger_xlsx" -msgstr "" +msgstr "informe_a_f_r.llibre_major_xlsx" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_report_a_f_r_report_journal_ledger_xlsx msgid "report.a_f_r.report_journal_ledger_xlsx" -msgstr "" +msgstr "informe_a_f_r.informe_llibre_diari_xlsx" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_report_a_f_r_report_open_items_xlsx msgid "report.a_f_r.report_open_items_xlsx" -msgstr "" +msgstr "informe.a_f_r.informe_oberts_xlsx" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_report_a_f_r_report_trial_balance_xlsx msgid "report.a_f_r.report_trial_balance_xlsx" -msgstr "" +msgstr "informe.a_f_r.informe_balanç_sumes_y_saldos_xlsx" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_report_a_f_r_report_vat_report_xlsx msgid "report.a_f_r.report_vat_report_xlsx" -msgstr "" +msgstr "informe.a_f_r.informe_impostos_xlsx" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_report_account_financial_report_abstract_report_xlsx msgid "report.account_financial_report.abstract_report_xlsx" -msgstr "" +msgstr "informe.informes_de_comptabilitat.informe_abstracte_xlsx" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_report_aged_partner_balance msgid "report_aged_partner_balance" -msgstr "" +msgstr "informe_saldos_empresa_per_antiguitat" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_report_aged_partner_balance_account msgid "report_aged_partner_balance_account" -msgstr "" +msgstr "informe_saldos_empresa_per_antiguitat" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_report_aged_partner_balance_line msgid "report_aged_partner_balance_line" -msgstr "" +msgstr "informe_linea_saldos_empresa_per_antiguitat" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_report_aged_partner_balance_move_line msgid "report_aged_partner_balance_move_line" -msgstr "" +msgstr "informe_linia_de_asemptament_saldos_empresa_per_antiguitat" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_report_aged_partner_balance_partner msgid "report_aged_partner_balance_partner" -msgstr "" +msgstr "informe_saldo_empresa_per_antiguitat" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_report_general_ledger msgid "report_general_ledger" -msgstr "" +msgstr "informe_llibre_major" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_report_general_ledger_account msgid "report_general_ledger_account" -msgstr "" +msgstr "informe_compte_llibre_major" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_report_general_ledger_move_line msgid "report_general_ledger_move_line" -msgstr "" +msgstr "informe_linia_asemptament_llibre_major" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_report_general_ledger_partner msgid "report_general_ledger_partner" -msgstr "" +msgstr "informe_llibre_major_empresa" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_report_journal_ledger msgid "report_journal_ledger" -msgstr "" +msgstr "informe_llibre_diari" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_report_journal_ledger_journal msgid "report_journal_ledger_journal" -msgstr "" +msgstr "informe_diari_llibre_diari" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_report_journal_ledger_journal_tax_line msgid "report_journal_ledger_journal_tax_line" -msgstr "" +msgstr "informe_linia_impost_llibre_diari" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_report_journal_ledger_move msgid "report_journal_ledger_move" -msgstr "" +msgstr "informe_asemptament_llibre_diari" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_report_journal_ledger_move_line msgid "report_journal_ledger_move_line" -msgstr "" +msgstr "informe_linia_asemptament_llibre_diari" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_report_journal_ledger_report_tax_line msgid "report_journal_ledger_report_tax_line" -msgstr "" +msgstr "informe_linia_impost_llibre_diari" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_report_open_items msgid "report_open_items" -msgstr "" +msgstr "informe_items_oberts" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_report_open_items_account msgid "report_open_items_account" -msgstr "" +msgstr "informe_compte_elements_oberts" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_report_open_items_move_line msgid "report_open_items_move_line" -msgstr "" +msgstr "informe_linia_assemptament_elements_oberts" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_report_open_items_partner msgid "report_open_items_partner" -msgstr "" +msgstr "informe_elements_oberts_empresa" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_report_trial_balance msgid "report_trial_balance" -msgstr "" +msgstr "informe_balanç_de_sumes_y_saldos" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_report_trial_balance_account msgid "report_trial_balance_account" -msgstr "" +msgstr "informe_compte_balanç_sumes_y_saldos" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_report_trial_balance_partner msgid "report_trial_balance_partner" -msgstr "" +msgstr "informe_balanç_sumes_i_saldos_empresa" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_report_vat_report msgid "report_vat_report" -msgstr "" +msgstr "informe_informe_impostos" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_report_vat_report_tax msgid "report_vat_report_tax" -msgstr "" +msgstr "informe_informe_impostos" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_report_vat_report_taxtag msgid "report_vat_report_taxtag" -msgstr "" +msgstr "informe_etiquetes_de_impost" #. module: account_financial_report #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal msgid "to" -msgstr "" +msgstr "a" #. module: account_financial_report #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header msgid "width: 23.24%;" -msgstr "" +msgstr "ample: 23.24%;" #. module: account_financial_report #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header msgid "width: 23.78%;" -msgstr "" +msgstr "ample: 23.78%;" #. module: account_financial_report #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header msgid "width: 38.92%;" -msgstr "" +msgstr "ample: 38.92%;" #. module: account_financial_report #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header msgid "width: 8.11%;" -msgstr "" +msgstr "ample: 8.11%;" From 731afc846353e75ebc1b327db8037e4da8f3657e Mon Sep 17 00:00:00 2001 From: Jan Verbeek Date: Fri, 22 Jan 2021 18:44:42 +0100 Subject: [PATCH 05/29] [FIX] account_financial_report: add index to report_move_id When running `DELETE FROM report_journal_ledger_move` this column is checked repeatedly, even though the table is empty. On our setup that caused the query to take hours. Adding an index solved it. --- account_financial_report/report/journal_ledger.py | 1 + 1 file changed, 1 insertion(+) diff --git a/account_financial_report/report/journal_ledger.py b/account_financial_report/report/journal_ledger.py index 3e4d7293..fbb66941 100644 --- a/account_financial_report/report/journal_ledger.py +++ b/account_financial_report/report/journal_ledger.py @@ -722,6 +722,7 @@ class ReportJournalLedgerMoveLine(models.TransientModel): comodel_name='report_journal_ledger_move', required=True, ondelete='cascade', + index=True, ) move_line_id = fields.Many2one( comodel_name='account.move.line', From 510d5c71265bb8b46689bd8dbbc4a626c576fb36 Mon Sep 17 00:00:00 2001 From: OCA-git-bot Date: Sat, 30 Jan 2021 14:31:26 +0000 Subject: [PATCH 06/29] account_financial_report 12.0.1.4.2 --- account_financial_report/__manifest__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/account_financial_report/__manifest__.py b/account_financial_report/__manifest__.py index aaaef0b6..43555ef8 100644 --- a/account_financial_report/__manifest__.py +++ b/account_financial_report/__manifest__.py @@ -4,7 +4,7 @@ # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). { 'name': 'Account Financial Reports', - 'version': '12.0.1.4.1', + 'version': '12.0.1.4.2', 'category': 'Reporting', 'summary': 'OCA Financial Reports', 'author': 'Camptocamp SA,' From 8b2dc5f39b09f242cb8c822876138fd9dc271bc5 Mon Sep 17 00:00:00 2001 From: Lorenzo Battistini Date: Fri, 19 Feb 2021 17:24:20 +0000 Subject: [PATCH 07/29] Translated using Weblate (Italian) Currently translated at 84.9% (283 of 333 strings) Translation: account-financial-reporting-12.0/account-financial-reporting-12.0-account_financial_report Translate-URL: https://translation.odoo-community.org/projects/account-financial-reporting-12-0/account-financial-reporting-12-0-account_financial_report/it/ --- account_financial_report/i18n/it.po | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/account_financial_report/i18n/it.po b/account_financial_report/i18n/it.po index 2505a3cf..b0a9e945 100644 --- a/account_financial_report/i18n/it.po +++ b/account_financial_report/i18n/it.po @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: Odoo Server 12.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-06-03 12:07+0000\n" -"PO-Revision-Date: 2020-08-27 17:00+0000\n" -"Last-Translator: stevech091 \n" +"PO-Revision-Date: 2021-02-19 19:45+0000\n" +"Last-Translator: Lorenzo Battistini \n" "Language-Team: \n" "Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.10\n" +"X-Generator: Weblate 4.3.2\n" #. module: account_financial_report #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_lines_header @@ -1428,22 +1428,22 @@ msgstr "Movimento contabile" #: model:ir.ui.menu,name:account_financial_report.menu_journal_ledger_wizard #, python-format msgid "Journal Ledger" -msgstr "Libro giornale" +msgstr "Libro registri" #. module: account_financial_report #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_base msgid "Journal Ledger -" -msgstr "Libro giornale -" +msgstr "Libro registri -" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_journal_ledger_report_wizard msgid "Journal Ledger Report Wizard" -msgstr "Procedura rendiconto libro giornale" +msgstr "Procedura rendiconto libro registri" #. module: account_financial_report #: model:ir.actions.report,name:account_financial_report.action_report_journal_ledger_xlsx msgid "Journal Ledger XLSX" -msgstr "Libro giornale in XLSX" +msgstr "Libro registri in XLSX" #. module: account_financial_report #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:181 From 2c2d2d5a86739a5019b4683933bac7047c8f8be4 Mon Sep 17 00:00:00 2001 From: JonathanStein Date: Thu, 1 Apr 2021 13:51:14 +0000 Subject: [PATCH 08/29] Translated using Weblate (Danish) Currently translated at 63.0% (210 of 333 strings) Translation: account-financial-reporting-12.0/account-financial-reporting-12.0-account_financial_report Translate-URL: https://translation.odoo-community.org/projects/account-financial-reporting-12-0/account-financial-reporting-12-0-account_financial_report/da/ --- account_financial_report/i18n/da.po | 158 ++++++++++++++-------------- 1 file changed, 79 insertions(+), 79 deletions(-) diff --git a/account_financial_report/i18n/da.po b/account_financial_report/i18n/da.po index ed7b7188..e54f783e 100644 --- a/account_financial_report/i18n/da.po +++ b/account_financial_report/i18n/da.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 12.0\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2021-01-13 20:13+0000\n" -"Last-Translator: Hans Henrik Gabelgaard \n" +"PO-Revision-Date: 2021-04-01 16:46+0000\n" +"Last-Translator: JonathanStein \n" "Language-Team: none\n" "Language: da\n" "MIME-Version: 1.0\n" @@ -50,12 +50,12 @@ msgstr "91 - 120 d." #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes msgid "Taxes summary" -msgstr "Moms oversigt" +msgstr "Momsoversigt" #. module: account_financial_report #: model_terms:ir.ui.view,arch_db:account_financial_report.report_buttons msgid " Export" -msgstr " Export" +msgstr " Eksport" #. module: account_financial_report #: model_terms:ir.ui.view,arch_db:account_financial_report.report_buttons @@ -65,12 +65,12 @@ msgstr " Udskriv" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_account_financial_report_abstract msgid "Abstract Report" -msgstr "Abstract Rapport" +msgstr "Resumérapport" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_account_financial_report_abstract_wizard msgid "Abstract Wizard" -msgstr "Abstract Wizard" +msgstr "Resuméguide" #. module: account_financial_report #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:67 @@ -103,13 +103,13 @@ msgstr "Konto" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_journal_ledger_move_line__account_code msgid "Account Code" -msgstr "Konto kode" +msgstr "Kontokode" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_account_group #: model:ir.model.fields,field_description:account_financial_report.field_report_trial_balance_account__account_group_id msgid "Account Group" -msgstr "Konto gruppe" +msgstr "Kontogruppe" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_journal_ledger_move_line__account_id @@ -137,7 +137,7 @@ msgstr "Kontotyper" #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters #, python-format msgid "Account at 0 filter" -msgstr "Konto er 0 filter" +msgstr "0-kontosaldo filter" #. module: account_financial_report #: code:addons/account_financial_report/report/general_ledger_xlsx.py:85 @@ -146,7 +146,7 @@ msgstr "Konto er 0 filter" #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters #, python-format msgid "Account balance at 0 filter" -msgstr "Konto balance er 0 filter" +msgstr "Konti med 0-saldo" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_account_group__account_ids @@ -156,7 +156,7 @@ msgstr "Konti" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__centralize msgid "Activate centralization" -msgstr "Aktiver centralisering" +msgstr "Aktivér centralisering" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_aged_partner_balance_line__age_120_days @@ -255,22 +255,22 @@ msgstr "Alder ≤ 90 d." #: model:ir.ui.menu,name:account_financial_report.menu_aged_partner_balance_wizard #, python-format msgid "Aged Partner Balance" -msgstr "Aldersfordelt Partnersaldo" +msgstr "Aldersfordelt partnersaldo" #. module: account_financial_report #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_base msgid "Aged Partner Balance -" -msgstr "ALdersfordelt Partner Balance -" +msgstr "Aldersfordelt partnersaldo -" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_aged_partner_balance_wizard msgid "Aged Partner Balance Wizard" -msgstr "Aldersfordelt Partner Balance Wizard" +msgstr "Aldersfordelt partnersaldo guide" #. module: account_financial_report #: model:ir.actions.report,name:account_financial_report.action_report_aged_partner_balance_xlsx msgid "Aged Partner Balance XLSX" -msgstr "Aldersfordelt Partner Balance XLSX" +msgstr "Aldersfordelt partnersaldo XLSX" #. module: account_financial_report #: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:64 @@ -284,7 +284,7 @@ msgstr "Alle" #: selection:open.items.report.wizard,target_move:0 #: selection:trial.balance.report.wizard,target_move:0 msgid "All Entries" -msgstr "Alle indtstninger" +msgstr "Alle posteringer" #. module: account_financial_report #: selection:aged.partner.balance.wizard,target_move:0 @@ -292,7 +292,7 @@ msgstr "Alle indtstninger" #: selection:open.items.report.wizard,target_move:0 #: selection:trial.balance.report.wizard,target_move:0 msgid "All Posted Entries" -msgstr "Alle bogførte indtastninger" +msgstr "Alle bogførte posteringer" #. module: account_financial_report #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:125 @@ -305,7 +305,7 @@ msgstr "Alle bogførte indtastninger" #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters #, python-format msgid "All entries" -msgstr "Alle indtastninger" +msgstr "Alle posteringer" #. module: account_financial_report #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:125 @@ -318,7 +318,7 @@ msgstr "Alle indtastninger" #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters #, python-format msgid "All posted entries" -msgstr "Alle bogførte indtastninger" +msgstr "Alle bogførte postgeringer" #. module: account_financial_report #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header @@ -338,22 +338,22 @@ msgstr "Beløb valuta" #: model:ir.model.fields,field_description:account_financial_report.field_report_aged_partner_balance_move_line__amount_residual #: model:ir.model.fields,field_description:account_financial_report.field_report_open_items_move_line__amount_residual msgid "Amount Residual" -msgstr "Rest beløb" +msgstr "Restbeløb" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_open_items_move_line__amount_residual_currency msgid "Amount Residual Currency" -msgstr "Rest beløb valuta" +msgstr "Restbeløb valuta" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_open_items_move_line__amount_total_due msgid "Amount Total Due" -msgstr "Totalt beløb forfalden" +msgstr "Totalt forfaldent beløb" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_open_items_move_line__amount_total_due_currency msgid "Amount Total Due Currency" -msgstr "Totalt beløb forfaldent valuta" +msgstr "Totalt forfaldent beløb valuta" #. module: account_financial_report #: code:addons/account_financial_report/report/general_ledger_xlsx.py:61 @@ -442,7 +442,7 @@ msgstr "Centraliseret" #: code:addons/account_financial_report/report/general_ledger.py:1451 #, python-format msgid "Centralized Entries" -msgstr "Centraliseret posteringer" +msgstr "Centraliserede posteringer" #. module: account_financial_report #: selection:report_trial_balance,hierarchy_on:0 @@ -528,11 +528,11 @@ msgid "" " " msgstr "" "Beregnede konti: Anvendes når kontogruppen har koder\n" -" der repræsentere prefixes for de aktuelle konti.\n" +" der repræsenterer præfikser for de aktuelle konti.\n" "\n" -" Underkonti:Anvendes når kontogrupperne er hierarkiske.\n" +" Underkonti: Anvendes når kontogrupperne er hierarkiske.\n" "\n" -" Intet hierarki Anvendes til blot at vise konti, uden nogen " +" Intet hierarki: Anvendes til blot at vise konti, uden nogen " "gruppering.\n" " " @@ -542,19 +542,19 @@ msgid "" "Cost\n" " center" msgstr "" -"Cost\n" +"Omkostsnings\n" " center" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_general_ledger_move_line__cost_center msgid "Cost Center" -msgstr "Cost Center" +msgstr "Omkostningscenter" #. module: account_financial_report #: code:addons/account_financial_report/report/general_ledger_xlsx.py:29 #, python-format msgid "Cost center" -msgstr "Cost center" +msgstr "Omkostningscenter" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_wizard__create_uid @@ -648,49 +648,49 @@ msgstr "Kredit" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_aged_partner_balance_account__cumul_age_120_days msgid "Cumul Age 120 Days" -msgstr "Cumul Alder 120 Dage" +msgstr "Kumuleret Alder 120 Dage" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_aged_partner_balance_account__cumul_age_30_days msgid "Cumul Age 30 Days" -msgstr "Cumul Alder 30 Dage" +msgstr "Kumuleret Alder 30 Dage" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_aged_partner_balance_account__cumul_age_60_days msgid "Cumul Age 60 Days" -msgstr "Cumul Alder 60 Dage" +msgstr "Kumuleret Alder 60 Dage" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_aged_partner_balance_account__cumul_age_90_days msgid "Cumul Age 90 Days" -msgstr "Cumul Alder 90 Dage" +msgstr "Kumuleret Alder 90 Dage" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_aged_partner_balance_account__cumul_amount_residual msgid "Cumul Amount Residual" -msgstr "Cumul rest beløb" +msgstr "Kumuleret restbeløb" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_general_ledger_move_line__cumul_balance msgid "Cumul Balance" -msgstr "Cumul Balance" +msgstr "Kumuleret saldo" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_aged_partner_balance_account__cumul_current msgid "Cumul Current" -msgstr "Cumul valuta" +msgstr "Kumuleret valuta" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_aged_partner_balance_account__cumul_older msgid "Cumul Older" -msgstr "Cumul ældre" +msgstr "Kumuleret ældre" #. module: account_financial_report #: code:addons/account_financial_report/report/general_ledger_xlsx.py:48 #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines #, python-format msgid "Cumul. Bal." -msgstr "Cumul. Bal." +msgstr "Kumul. saldo" #. module: account_financial_report #: code:addons/account_financial_report/report/general_ledger_xlsx.py:57 @@ -717,7 +717,7 @@ msgstr "Valuta Original" #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines #, python-format msgid "Cur. Residual" -msgstr "Valuta rest beløb" +msgstr "Valuta restbeløb" #. module: account_financial_report #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:76 @@ -811,7 +811,7 @@ msgstr "Til dato" #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters #, python-format msgid "Date at filter" -msgstr "Dato filter" +msgstr "Datofilter" #. module: account_financial_report #: code:addons/account_financial_report/report/vat_report_xlsx.py:31 @@ -825,7 +825,7 @@ msgstr "Fra dato" #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__date_range_id #: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__date_range_id msgid "Date range" -msgstr "Dato interval" +msgstr "Datointerval" #. module: account_financial_report #: code:addons/account_financial_report/report/general_ledger_xlsx.py:76 @@ -835,7 +835,7 @@ msgstr "Dato interval" #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters #, python-format msgid "Date range filter" -msgstr "Dato intervalfilter" +msgstr "Datointervalfilter" #. module: account_financial_report #: code:addons/account_financial_report/report/vat_report_xlsx.py:32 @@ -942,7 +942,7 @@ msgid "" "Due\n" " date" msgstr "" -"Forfalds\n" +"Forfalds-\n" " dato" #. module: account_financial_report @@ -960,7 +960,7 @@ msgstr "Slutdato" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__date_to msgid "End date" -msgstr "Slut dato" +msgstr "Slutdato" #. module: account_financial_report #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_ending_cumul @@ -968,7 +968,7 @@ msgid "" "Ending\n" " balance" msgstr "" -"Slut\n" +"Slut-\n" " balance" #. module: account_financial_report @@ -982,12 +982,12 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header #, python-format msgid "Ending balance" -msgstr "Slut balance" +msgstr "Slutsaldo" #. module: account_financial_report #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header msgid "Ending blance cur." -msgstr "Slut blance val." +msgstr "Slutsaldo val." #. module: account_financial_report #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:177 @@ -1026,7 +1026,7 @@ msgstr "Posteringsnummer" #: model_terms:ir.ui.view,arch_db:account_financial_report.trial_balance_wizard #: model_terms:ir.ui.view,arch_db:account_financial_report.vat_report_wizard msgid "Export PDF" -msgstr "Export PDF" +msgstr "Eksportér PDF" #. module: account_financial_report #: model_terms:ir.ui.view,arch_db:account_financial_report.aged_partner_balance_wizard @@ -1036,7 +1036,7 @@ msgstr "Export PDF" #: model_terms:ir.ui.view,arch_db:account_financial_report.trial_balance_wizard #: model_terms:ir.ui.view,arch_db:account_financial_report.vat_report_wizard msgid "Export XLSX" -msgstr "Export XLSX" +msgstr "Eksportér XLSX" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_aged_partner_balance__filter_account_ids @@ -1049,12 +1049,12 @@ msgstr "Filtrer konti" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_general_ledger__filter_analytic_tag_ids msgid "Filter Analytic Tag" -msgstr "Filter analyse tag" +msgstr "Filtrer analysetags" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_general_ledger__filter_cost_center_ids msgid "Filter Cost Center" -msgstr "Filter Cost Center" +msgstr "Filtrér Omkostningscenter" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_general_ledger__filter_journal_ids @@ -1231,7 +1231,7 @@ msgstr "" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__group_option msgid "Group entries by" -msgstr "" +msgstr "Gruppér posteringer efter" #. module: account_financial_report #: code:addons/account_financial_report/report/general_ledger_xlsx.py:86 @@ -1260,7 +1260,7 @@ msgstr "Skjul linie" #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__hide_account_at_0 #: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__hide_account_at_0 msgid "Hide account ending balance at 0" -msgstr "Skjul konti med slutbalance på 0" +msgstr "Skjul konti med slutsaldo på 0" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__hide_account_at_0 @@ -1277,7 +1277,7 @@ msgstr "" #: model:ir.model.fields,field_description:account_financial_report.field_report_trial_balance__hierarchy_on #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__hierarchy_on msgid "Hierarchy On" -msgstr "" +msgstr "Gruppér efter" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_account_financial_report_abstract__id @@ -1591,7 +1591,7 @@ msgstr "Niveau %s" #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters #, python-format msgid "Limit hierarchy levels" -msgstr "" +msgstr "Begræns niveauer" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_aged_partner_balance_partner__line_ids @@ -1683,7 +1683,7 @@ msgstr "Ingen gruppe" #: selection:report_trial_balance,hierarchy_on:0 #: selection:trial.balance.report.wizard,hierarchy_on:0 msgid "No hierarchy" -msgstr "INtet hierarki" +msgstr "Intet hierarki" #. module: account_financial_report #: code:addons/account_financial_report/report/trial_balance_xlsx.py:115 @@ -1721,7 +1721,7 @@ msgstr "" #. module: account_financial_report #: model:ir.ui.menu,name:account_financial_report.menu_oca_reports msgid "OCA accounting reports" -msgstr "OCA regnskabs rapporter" +msgstr "OCA regnskabsrapporter" #. module: account_financial_report #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:56 @@ -1856,7 +1856,7 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_ending_cumul #, python-format msgid "Partner ending balance" -msgstr "" +msgstr "Partner slutsaldo" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__partner_ungrouped @@ -1869,7 +1869,7 @@ msgstr "" #: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__payable_accounts_only #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__payable_accounts_only msgid "Payable Accounts Only" -msgstr "" +msgstr "Kun passivkonti" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_aged_partner_balance_account__percent_age_120_days @@ -1894,12 +1894,12 @@ msgstr "" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_aged_partner_balance_account__percent_current msgid "Percent Current" -msgstr "" +msgstr "Procent aktuelle" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_aged_partner_balance_account__percent_older msgid "Percent Older" -msgstr "" +msgstr "Procent ældre" #. module: account_financial_report #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:168 @@ -1907,13 +1907,13 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_account_ending_cumul #, python-format msgid "Percents" -msgstr "" +msgstr "Procenter" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_trial_balance_account__period_balance #: model:ir.model.fields,field_description:account_financial_report.field_report_trial_balance_partner__period_balance msgid "Period Balance" -msgstr "" +msgstr "Periodesaldo" #. module: account_financial_report #: code:addons/account_financial_report/report/trial_balance_xlsx.py:34 @@ -1921,12 +1921,12 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header #, python-format msgid "Period balance" -msgstr "" +msgstr "Periodesaldo" #. module: account_financial_report #: model_terms:ir.ui.view,arch_db:account_financial_report.journal_ledger_wizard msgid "Periods" -msgstr "" +msgstr "Perioder" #. module: account_financial_report #: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:65 @@ -1946,7 +1946,7 @@ msgstr "" #: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__receivable_accounts_only #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__receivable_accounts_only msgid "Receivable Accounts Only" -msgstr "" +msgstr "Kun aktivkonti" #. module: account_financial_report #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines @@ -2101,7 +2101,7 @@ msgstr "" #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__foreign_currency #, python-format msgid "Show foreign currency" -msgstr "" +msgstr "Vis fremmed valuta" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_journal_ledger__sort_option @@ -2137,7 +2137,7 @@ msgstr "" #: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__target_move #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__target_move msgid "Target Moves" -msgstr "" +msgstr "Medtag posteringer" #. module: account_financial_report #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:124 @@ -2204,30 +2204,30 @@ msgstr "" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_vat_report__tax_detail msgid "Tax Detail" -msgstr "" +msgstr "Momsdetaljer" #. module: account_financial_report #: selection:report_vat_report,based_on:0 #: selection:vat.report.wizard,based_on:0 msgid "Tax Groups" -msgstr "" +msgstr "Momsgrupper" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_vat_report_tax__tax_id msgid "Tax ID" -msgstr "" +msgstr "Moms ID" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_journal_ledger_journal_tax_line__tax_name #: model:ir.model.fields,field_description:account_financial_report.field_report_journal_ledger_report_tax_line__tax_name msgid "Tax Name" -msgstr "" +msgstr "Afgiftsnavn" #. module: account_financial_report #: selection:report_vat_report,based_on:0 #: selection:vat.report.wizard,based_on:0 msgid "Tax Tags" -msgstr "" +msgstr "Momstags" #. module: account_financial_report #: code:addons/account_financial_report/report/general_ledger_xlsx.py:24 @@ -2237,28 +2237,28 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header #, python-format msgid "Taxes" -msgstr "" +msgstr "Afgifter" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_general_ledger_move_line__taxes_description #: model:ir.model.fields,field_description:account_financial_report.field_report_journal_ledger_move_line__taxes_description msgid "Taxes Description" -msgstr "" +msgstr "Afgiftsbeskrivelse" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_vat_report_taxtag__taxgroup_id msgid "Taxgroup" -msgstr "" +msgstr "Momsgruppe" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_vat_report_taxtag__taxtag_id msgid "Taxtag" -msgstr "" +msgstr "Momstag" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_vat_report__taxtags_ids msgid "Taxtags" -msgstr "" +msgstr "Momstags" #. module: account_financial_report #: code:addons/account_financial_report/wizard/general_ledger_wizard.py:187 From d81ec9d2868089a589f99ec9802d0731a87f5063 Mon Sep 17 00:00:00 2001 From: alvarorib Date: Fri, 9 Apr 2021 17:36:27 +0000 Subject: [PATCH 09/29] Translated using Weblate (Portuguese) Currently translated at 100.0% (333 of 333 strings) Translation: account-financial-reporting-12.0/account-financial-reporting-12.0-account_financial_report Translate-URL: https://translation.odoo-community.org/projects/account-financial-reporting-12-0/account-financial-reporting-12-0-account_financial_report/pt/ --- account_financial_report/i18n/pt.po | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/account_financial_report/i18n/pt.po b/account_financial_report/i18n/pt.po index 63fead6b..589a7b0f 100644 --- a/account_financial_report/i18n/pt.po +++ b/account_financial_report/i18n/pt.po @@ -9,15 +9,15 @@ msgstr "" "Project-Id-Version: Odoo Server 11.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-03-16 08:14+0000\n" -"PO-Revision-Date: 2020-06-17 23:19+0000\n" -"Last-Translator: Fernando Colus \n" +"PO-Revision-Date: 2021-04-09 19:46+0000\n" +"Last-Translator: alvarorib \n" "Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/pt/)\n" "Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Weblate 3.10\n" +"X-Generator: Weblate 4.3.2\n" #. module: account_financial_report #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_lines_header @@ -149,7 +149,7 @@ msgstr "Conta para filtro 0" #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters #, python-format msgid "Account balance at 0 filter" -msgstr "Filtro de de conta com saldo 0" +msgstr "Filtro de conta com saldo 0" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_account_group__account_ids @@ -1334,6 +1334,7 @@ msgstr "" #: model:ir.model.fields,help:account_financial_report.field_report_general_ledger__partner_ungrouped msgid "If set moves are not grouped by partner in any case" msgstr "" +"Se os movimentos definidos não forem agrupados por parceiro em nenhum caso" #. module: account_financial_report #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header @@ -1865,7 +1866,7 @@ msgstr "Saldo final de parceiro" #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__partner_ungrouped #: model:ir.model.fields,field_description:account_financial_report.field_report_general_ledger__partner_ungrouped msgid "Partner ungrouped" -msgstr "" +msgstr "Parceiro sem grupo" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_wizard__payable_accounts_only From 701faf5f71ebc7b3d38d5984b543f3a07442ade0 Mon Sep 17 00:00:00 2001 From: OCA-git-bot Date: Tue, 13 Apr 2021 08:22:25 +0000 Subject: [PATCH 10/29] account_financial_report 12.0.1.4.3 --- account_financial_report/__manifest__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/account_financial_report/__manifest__.py b/account_financial_report/__manifest__.py index 43555ef8..07ac0f25 100644 --- a/account_financial_report/__manifest__.py +++ b/account_financial_report/__manifest__.py @@ -4,7 +4,7 @@ # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). { 'name': 'Account Financial Reports', - 'version': '12.0.1.4.2', + 'version': '12.0.1.4.3', 'category': 'Reporting', 'summary': 'OCA Financial Reports', 'author': 'Camptocamp SA,' From 928a44037fc8ee011f3e7b52125cb4307cdac0df Mon Sep 17 00:00:00 2001 From: OCA-git-bot Date: Wed, 14 Apr 2021 16:18:24 +0000 Subject: [PATCH 11/29] account_financial_report 12.0.1.4.4 --- account_financial_report/__manifest__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/account_financial_report/__manifest__.py b/account_financial_report/__manifest__.py index 07ac0f25..de7950df 100644 --- a/account_financial_report/__manifest__.py +++ b/account_financial_report/__manifest__.py @@ -4,7 +4,7 @@ # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). { 'name': 'Account Financial Reports', - 'version': '12.0.1.4.3', + 'version': '12.0.1.4.4', 'category': 'Reporting', 'summary': 'OCA Financial Reports', 'author': 'Camptocamp SA,' From d89b07143596b1f9faa33800c59f5ffba84de10a Mon Sep 17 00:00:00 2001 From: Bosd Date: Tue, 27 Apr 2021 11:19:41 +0000 Subject: [PATCH 12/29] Translated using Weblate (Dutch) Currently translated at 75.3% (251 of 333 strings) Translation: account-financial-reporting-12.0/account-financial-reporting-12.0-account_financial_report Translate-URL: https://translation.odoo-community.org/projects/account-financial-reporting-12-0/account-financial-reporting-12-0-account_financial_report/nl/ --- account_financial_report/i18n/nl.po | 49 ++++++++++++++--------------- 1 file changed, 23 insertions(+), 26 deletions(-) diff --git a/account_financial_report/i18n/nl.po b/account_financial_report/i18n/nl.po index 1c296367..9d7fe2d3 100644 --- a/account_financial_report/i18n/nl.po +++ b/account_financial_report/i18n/nl.po @@ -9,25 +9,25 @@ msgstr "" "Project-Id-Version: Odoo Server 11.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-03-16 08:14+0000\n" -"PO-Revision-Date: 2018-10-03 14:13+0000\n" -"Last-Translator: Yung-Wa \n" +"PO-Revision-Date: 2021-04-27 13:47+0000\n" +"Last-Translator: Bosd \n" "Language-Team: Dutch (https://www.transifex.com/oca/teams/23907/nl/)\n" "Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.1.1\n" +"X-Generator: Weblate 4.3.2\n" #. module: account_financial_report #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_lines_header msgid "> 120 d." -msgstr "" +msgstr "> 120 d." #. module: account_financial_report #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_lines_header msgid "1 - 30 d." -msgstr "" +msgstr "1 - 30 d." #. module: account_financial_report #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes @@ -37,17 +37,17 @@ msgstr "" #. module: account_financial_report #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_lines_header msgid "31 - 60 d." -msgstr "" +msgstr "31 - 60 d." #. module: account_financial_report #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_lines_header msgid "61 - 90 d." -msgstr "" +msgstr "61 - 90 d." #. module: account_financial_report #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_lines_header msgid "91 - 120 d." -msgstr "" +msgstr "91 - 120 d." #. module: account_financial_report #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes @@ -200,9 +200,9 @@ msgstr "" #. module: account_financial_report #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:50 #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:105 -#, fuzzy, python-format +#, python-format msgid "Age ≤ 120 d." -msgstr "Leeftijd van‰¤ 120 d." +msgstr "Vv. ≤ 120 d." #. module: account_financial_report #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines @@ -216,9 +216,9 @@ msgstr "" #. module: account_financial_report #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:32 #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:84 -#, fuzzy, python-format +#, python-format msgid "Age ≤ 30 d." -msgstr "Leeftijd van‰¤ 30 d." +msgstr "Vv. ≤ 30 d." #. module: account_financial_report #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines @@ -232,9 +232,9 @@ msgstr "" #. module: account_financial_report #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:38 #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:91 -#, fuzzy, python-format +#, python-format msgid "Age ≤ 60 d." -msgstr "Leeftijd van‰¤ 60 d." +msgstr "Vv. ≤ 60 d." #. module: account_financial_report #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines @@ -248,9 +248,9 @@ msgstr "" #. module: account_financial_report #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:44 #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:98 -#, fuzzy, python-format +#, python-format msgid "Age ≤ 90 d." -msgstr "Leeftijd van‰¤ 90 d." +msgstr "Vv. ≤ 90 d." #. module: account_financial_report #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:14 @@ -372,9 +372,8 @@ msgstr "Valutabedrag." #. module: account_financial_report #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes -#, fuzzy msgid "Balance" -msgstr "Proefbalans" +msgstr "Saldo" #. module: account_financial_report #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes @@ -1102,9 +1101,8 @@ msgstr "Filter kostenplaatsen" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__account_journal_ids -#, fuzzy msgid "Filter journals" -msgstr "Filter rekeningen" +msgstr "Dagboekselectie" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_wizard__partner_ids @@ -1112,9 +1110,8 @@ msgstr "Filter rekeningen" #: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__partner_ids #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__partner_ids #: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard -#, fuzzy msgid "Filter partners" -msgstr "Filter partners" +msgstr "Relatieselectie" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_open_items_account__final_amount_residual @@ -1869,9 +1866,9 @@ msgstr "Partner" #. module: account_financial_report #: code:addons/account_financial_report/report/general_ledger_xlsx.py:166 -#, fuzzy, python-format +#, python-format msgid "Partner Initial balance" -msgstr "Proefbalans" +msgstr "Relatiebeginsaldo" #. module: account_financial_report #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:225 @@ -2208,9 +2205,9 @@ msgstr "Belastingbedrag" #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:137 #: model:ir.model.fields,field_description:account_financial_report.field_report_journal_ledger_journal_tax_line__tax_balance #: model:ir.model.fields,field_description:account_financial_report.field_report_journal_ledger_report_tax_line__tax_balance -#, fuzzy, python-format +#, python-format msgid "Tax Balance" -msgstr "Proefbalans" +msgstr "BTW-saldo" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_journal_ledger_journal_tax_line__tax_code From 852c0e467b7a8308484bb9ee6f2468fd73d2aa78 Mon Sep 17 00:00:00 2001 From: Stefan Rijnhart Date: Fri, 28 May 2021 14:35:55 +0200 Subject: [PATCH 13/29] [FIX] account_tax_balance: prevent multicompany glitch in tests Prevent selecting a journal from another company, resulting in UserError(_("Cannot create moves for different companies.")) --- account_tax_balance/tests/test_account_tax_balance.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/account_tax_balance/tests/test_account_tax_balance.py b/account_tax_balance/tests/test_account_tax_balance.py index 2b9b6647..a1d93c04 100644 --- a/account_tax_balance/tests/test_account_tax_balance.py +++ b/account_tax_balance/tests/test_account_tax_balance.py @@ -168,7 +168,8 @@ class TestAccountTaxBalance(HttpCase): self.env['account.move'].create({ 'date': Date.context_today(self.env.user), 'journal_id': self.env['account.journal'].search( - [('type', '=', 'bank')], limit=1).id, + [('type', '=', 'bank'), + ('company_id', '=', self.env.user.company_id.id)], limit=1).id, 'name': 'Test move', 'line_ids': [(0, 0, { 'account_id': liquidity_account_id, From 4c4d108a175dda3e0475831bb715a673fadec00e Mon Sep 17 00:00:00 2001 From: Hans Henrik Gabelgaard Date: Mon, 5 Jul 2021 09:35:26 +0000 Subject: [PATCH 14/29] Translated using Weblate (Danish) Currently translated at 89.1% (297 of 333 strings) Translation: account-financial-reporting-12.0/account-financial-reporting-12.0-account_financial_report Translate-URL: https://translation.odoo-community.org/projects/account-financial-reporting-12-0/account-financial-reporting-12-0-account_financial_report/da/ --- account_financial_report/i18n/da.po | 180 ++++++++++++++++------------ 1 file changed, 101 insertions(+), 79 deletions(-) diff --git a/account_financial_report/i18n/da.po b/account_financial_report/i18n/da.po index e54f783e..d488c6d7 100644 --- a/account_financial_report/i18n/da.po +++ b/account_financial_report/i18n/da.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 12.0\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2021-04-01 16:46+0000\n" -"Last-Translator: JonathanStein \n" +"PO-Revision-Date: 2021-07-05 09:36+0000\n" +"Last-Translator: Hans Henrik Gabelgaard \n" "Language-Team: none\n" "Language: da\n" "MIME-Version: 1.0\n" @@ -928,6 +928,9 @@ msgid "" "setup through chart of accounts will display initial and final balance in " "that currency." msgstr "" +"Vis fremmed valuta for flytte linjer, medmindre kontoens valuta ikke er " +"konfigureret gennem kontoplanen, vises den indledende og endelige saldo i " +"den valuta." #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_trial_balance__hide_parent_hierarchy_level @@ -1083,13 +1086,13 @@ msgstr "Filtre konti" #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__analytic_tag_ids #: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard msgid "Filter analytic tags" -msgstr "" +msgstr "Filter analyse tags" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__cost_center_ids #: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard msgid "Filter cost centers" -msgstr "" +msgstr "Filtrer omkostningscentre" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__account_journal_ids @@ -1109,25 +1112,25 @@ msgstr "Filtrer partnere" #: model:ir.model.fields,field_description:account_financial_report.field_report_open_items_account__final_amount_residual #: model:ir.model.fields,field_description:account_financial_report.field_report_open_items_partner__final_amount_residual msgid "Final Amount Residual" -msgstr "" +msgstr "Endelig restbeløb" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_open_items_account__final_amount_residual_currency #: model:ir.model.fields,field_description:account_financial_report.field_report_open_items_partner__final_amount_residual_currency msgid "Final Amount Residual Currency" -msgstr "" +msgstr "Endelig restbeløb valuta" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_open_items_account__final_amount_total_due #: model:ir.model.fields,field_description:account_financial_report.field_report_open_items_partner__final_amount_total_due msgid "Final Amount Total Due" -msgstr "" +msgstr "Endeligt beløb i alt forfalden" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_open_items_account__final_amount_total_due_currency #: model:ir.model.fields,field_description:account_financial_report.field_report_open_items_partner__final_amount_total_due_currency msgid "Final Amount Total Due Currency" -msgstr "" +msgstr "Endeligt beløb i alt forfalden valuta" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_general_ledger_account__final_balance @@ -1143,19 +1146,19 @@ msgstr "Slutbalance" #: model:ir.model.fields,field_description:account_financial_report.field_report_trial_balance_account__final_balance_foreign_currency #: model:ir.model.fields,field_description:account_financial_report.field_report_trial_balance_partner__final_balance_foreign_currency msgid "Final Balance Foreign Currency" -msgstr "" +msgstr "Endelig saldo udenlandsk valuta" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_general_ledger_account__final_credit #: model:ir.model.fields,field_description:account_financial_report.field_report_general_ledger_partner__final_credit msgid "Final Credit" -msgstr "" +msgstr "Endelig kredit" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_general_ledger_account__final_debit #: model:ir.model.fields,field_description:account_financial_report.field_report_general_ledger_partner__final_debit msgid "Final Debit" -msgstr "" +msgstr "Endelig debit" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__foreign_currency @@ -1164,7 +1167,7 @@ msgstr "" #: model:ir.model.fields,field_description:account_financial_report.field_report_open_items__foreign_currency #: model:ir.model.fields,field_description:account_financial_report.field_report_trial_balance__foreign_currency msgid "Foreign Currency" -msgstr "" +msgstr "Udenlandsk valuta" #. module: account_financial_report #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters @@ -1209,7 +1212,7 @@ msgstr "Generel posteringsrapport -" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_general_ledger_report_wizard msgid "General Ledger Report Wizard" -msgstr "" +msgstr "General posteringsrapport guide" #. module: account_financial_report #: model:ir.actions.report,name:account_financial_report.action_report_general_ledger_xlsx @@ -1222,11 +1225,13 @@ msgid "" "General Ledger can be computed only if selected company have only one " "unaffected earnings account." msgstr "" +"General posteringarapport kan kun beregnes, hvis det valgte selskab kun har " +"én upåvirket indtjeningskonto." #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_journal_ledger__group_option msgid "Group Option" -msgstr "" +msgstr "Gruppering" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__group_option @@ -1271,7 +1276,7 @@ msgstr "Skjul nulkonti" #: model:ir.model.fields,field_description:account_financial_report.field_report_trial_balance__show_hierarchy_level #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__show_hierarchy_level msgid "Hierarchy Levels to display" -msgstr "" +msgstr "Hierarkiniveauer, der skal vises" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_trial_balance__hierarchy_on @@ -1321,7 +1326,7 @@ msgstr "Gruppér efter" #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__id #: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__id msgid "ID" -msgstr "" +msgstr "ID" #. module: account_financial_report #: model:ir.model.fields,help:account_financial_report.field_account_account__centralized @@ -1329,12 +1334,14 @@ msgid "" "If flagged, no details will be displayed in the General Ledger report (the " "webkit one only), only centralized amounts per period." msgstr "" +"Hvis markeret, vises ingen detaljer i rapporten General posteringsrapport (" +"kun webkit), kun centraliserede beløb pr. periode." #. module: account_financial_report #: model:ir.model.fields,help:account_financial_report.field_general_ledger_report_wizard__partner_ungrouped #: model:ir.model.fields,help:account_financial_report.field_report_general_ledger__partner_ungrouped msgid "If set moves are not grouped by partner in any case" -msgstr "" +msgstr "hvis sat vil der ikke blive grupperet pr partner" #. module: account_financial_report #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header @@ -1342,6 +1349,8 @@ msgid "" "Initial\n" " balance" msgstr "" +"Initiel\n" +" balance" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_general_ledger_account__initial_balance @@ -1349,7 +1358,7 @@ msgstr "" #: model:ir.model.fields,field_description:account_financial_report.field_report_trial_balance_account__initial_balance #: model:ir.model.fields,field_description:account_financial_report.field_report_trial_balance_partner__initial_balance msgid "Initial Balance" -msgstr "" +msgstr "Initiel Balance" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_general_ledger_account__initial_balance_foreign_currency @@ -1357,19 +1366,19 @@ msgstr "" #: model:ir.model.fields,field_description:account_financial_report.field_report_trial_balance_account__initial_balance_foreign_currency #: model:ir.model.fields,field_description:account_financial_report.field_report_trial_balance_partner__initial_balance_foreign_currency msgid "Initial Balance Foreign Currency" -msgstr "" +msgstr "Initiel balance fremmed valuta" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_general_ledger_account__initial_credit #: model:ir.model.fields,field_description:account_financial_report.field_report_general_ledger_partner__initial_credit msgid "Initial Credit" -msgstr "" +msgstr "Initiel kredit" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_general_ledger_account__initial_debit #: model:ir.model.fields,field_description:account_financial_report.field_report_general_ledger_partner__initial_debit msgid "Initial Debit" -msgstr "" +msgstr "Initiel debit" #. module: account_financial_report #: code:addons/account_financial_report/report/general_ledger_xlsx.py:169 @@ -1380,17 +1389,17 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines #, python-format msgid "Initial balance" -msgstr "" +msgstr "Initiel balance" #. module: account_financial_report #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header msgid "Initial blance cur." -msgstr "" +msgstr "Initiel balance val." #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_general_ledger_account__is_partner_account msgid "Is Partner Account" -msgstr "" +msgstr "Er partner konto" #. module: account_financial_report #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:66 @@ -1409,7 +1418,7 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines #, python-format msgid "Journal" -msgstr "" +msgstr "Journal" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_account_move_line @@ -1434,7 +1443,7 @@ msgstr "Journal rapport -" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_journal_ledger_report_wizard msgid "Journal Ledger Report Wizard" -msgstr "" +msgstr "Journal posterings rapport guide" #. module: account_financial_report #: model:ir.actions.report,name:account_financial_report.action_report_journal_ledger_xlsx @@ -1499,7 +1508,7 @@ msgstr "Etiket" #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard____last_update #: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard____last_update msgid "Last Modified on" -msgstr "" +msgstr "Senest ændret den" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_wizard__write_uid @@ -1534,7 +1543,7 @@ msgstr "" #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__write_uid #: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__write_uid msgid "Last Updated by" -msgstr "" +msgstr "Senest opdateret den" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_wizard__write_date @@ -1569,7 +1578,7 @@ msgstr "" #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__write_date #: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__write_date msgid "Last Updated on" -msgstr "" +msgstr "Senest opdateret den" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_account_group__level @@ -1601,7 +1610,7 @@ msgstr "Linie" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_general_ledger_move_line__matching_number msgid "Matching Number" -msgstr "" +msgstr "Matchende nummer" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_journal_ledger_move__move_id @@ -1624,7 +1633,7 @@ msgstr "Posteringslinie" #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__move_target #: model:ir.model.fields,field_description:account_financial_report.field_report_journal_ledger__move_target msgid "Move Target" -msgstr "" +msgstr "Medtag posteringer" #. module: account_financial_report #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal @@ -1660,7 +1669,7 @@ msgstr "Navn" #: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base #, python-format msgid "Net" -msgstr "" +msgstr "Net" #. module: account_financial_report #: code:addons/account_financial_report/report/general_ledger_xlsx.py:90 @@ -1690,7 +1699,7 @@ msgstr "Intet hierarki" #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters #, python-format msgid "No limit" -msgstr "" +msgstr "Ingen grænser" #. module: account_financial_report #: code:addons/account_financial_report/report/general_ledger.py:776 @@ -1699,7 +1708,7 @@ msgstr "" #: code:addons/account_financial_report/report/open_items.py:556 #, python-format msgid "No partner allocated" -msgstr "" +msgstr "Ingen partner allokeret" #. module: account_financial_report #: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:66 @@ -1716,7 +1725,7 @@ msgstr "Ikke forfalden" #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__not_only_one_unaffected_earnings_account #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__not_only_one_unaffected_earnings_account msgid "Not only one unaffected earnings account" -msgstr "" +msgstr "Ikke kun en upåvirket indtjeningskonto" #. module: account_financial_report #: model:ir.ui.menu,name:account_financial_report.menu_oca_reports @@ -1766,7 +1775,7 @@ msgstr "Åbne posteringer partner" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_open_items_report_wizard msgid "Open Items Report Wizard" -msgstr "" +msgstr "Åbn poster rapport guide" #. module: account_financial_report #: model:ir.actions.report,name:account_financial_report.action_report_open_items_xlsx @@ -1783,7 +1792,7 @@ msgstr "Muligheder" #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines #, python-format msgid "Original" -msgstr "" +msgstr "Original" #. module: account_financial_report #: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard @@ -1793,7 +1802,7 @@ msgstr "Andre muligheder" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_trial_balance_account__parent_id msgid "Parent" -msgstr "" +msgstr "Overordnet" #. module: account_financial_report #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:20 @@ -1823,7 +1832,7 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header #, python-format msgid "Partner" -msgstr "" +msgstr "Partner" #. module: account_financial_report #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_partner_ending_cumul @@ -1831,23 +1840,25 @@ msgid "" "Partner\n" " cumul aged balance" msgstr "" +"Partner\n" +" kumuleret aldersbalance" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_journal_ledger_move_line__partner_id msgid "Partner ID" -msgstr "" +msgstr "Partner ID" #. module: account_financial_report #: code:addons/account_financial_report/report/general_ledger_xlsx.py:166 #, python-format msgid "Partner Initial balance" -msgstr "" +msgstr "Partner Initiel balance" #. module: account_financial_report #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:225 #, python-format msgid "Partner cumul aged balance" -msgstr "" +msgstr "Partner kumuleret aldersbalance" #. module: account_financial_report #: code:addons/account_financial_report/report/general_ledger_xlsx.py:178 @@ -1862,7 +1873,7 @@ msgstr "Partner slutsaldo" #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__partner_ungrouped #: model:ir.model.fields,field_description:account_financial_report.field_report_general_ledger__partner_ungrouped msgid "Partner ungrouped" -msgstr "" +msgstr "Partner ikke-grupperet" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_wizard__payable_accounts_only @@ -1874,22 +1885,22 @@ msgstr "Kun passivkonti" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_aged_partner_balance_account__percent_age_120_days msgid "Percent Age 120 Days" -msgstr "" +msgstr "Procent alder 120 dage" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_aged_partner_balance_account__percent_age_30_days msgid "Percent Age 30 Days" -msgstr "" +msgstr "Procent alder 30 dage" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_aged_partner_balance_account__percent_age_60_days msgid "Percent Age 60 Days" -msgstr "" +msgstr "Procent alder 60 dage" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_aged_partner_balance_account__percent_age_90_days msgid "Percent Age 90 Days" -msgstr "" +msgstr "Procent alder 90 dage" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_aged_partner_balance_account__percent_current @@ -1939,7 +1950,7 @@ msgstr "Bogført" #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines #, python-format msgid "Rec." -msgstr "" +msgstr "Rec." #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_wizard__receivable_accounts_only @@ -1956,6 +1967,8 @@ msgid "" "Ref -\n" " Label" msgstr "" +"Ref -\n" +" Etiket" #. module: account_financial_report #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:69 @@ -1965,7 +1978,7 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header #, python-format msgid "Ref - Label" -msgstr "" +msgstr "Ref - Etiket" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_aged_partner_balance_account__report_id @@ -1996,25 +2009,25 @@ msgstr "Rapport konto" #: model:ir.model.fields,field_description:account_financial_report.field_report_journal_ledger_move__report_journal_ledger_id #: model:ir.model.fields,field_description:account_financial_report.field_report_journal_ledger_move_line__report_journal_ledger_id msgid "Report Journal Ledger" -msgstr "" +msgstr "Journal rapport" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_journal_ledger__report_journal_ledger_tax_line_ids msgid "Report Journal Ledger Tax Line" -msgstr "" +msgstr "Journal rapport moms linie" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_journal_ledger__report_move_ids #: model:ir.model.fields,field_description:account_financial_report.field_report_journal_ledger_journal__report_move_ids #: model:ir.model.fields,field_description:account_financial_report.field_report_journal_ledger_move_line__report_move_id msgid "Report Move" -msgstr "" +msgstr "Rapport postering" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_journal_ledger__report_move_line_ids #: model:ir.model.fields,field_description:account_financial_report.field_report_journal_ledger_move__report_move_line_ids msgid "Report Move Line" -msgstr "" +msgstr "Rapport posteringslinie" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_aged_partner_balance_line__report_partner_id @@ -2022,18 +2035,18 @@ msgstr "" #: model:ir.model.fields,field_description:account_financial_report.field_report_general_ledger_move_line__report_partner_id #: model:ir.model.fields,field_description:account_financial_report.field_report_open_items_move_line__report_partner_id msgid "Report Partner" -msgstr "" +msgstr "Rapport partner" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_vat_report_tax__report_tax_id msgid "Report Tax" -msgstr "" +msgstr "Rapport moms" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_journal_ledger__report_tax_line_ids #: model:ir.model.fields,field_description:account_financial_report.field_report_journal_ledger_journal__report_tax_line_ids msgid "Report Tax Line" -msgstr "" +msgstr "Rapport moms linie" #. module: account_financial_report #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:21 @@ -2044,7 +2057,7 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines #, python-format msgid "Residual" -msgstr "" +msgstr "Resterende" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_trial_balance_account__sequence @@ -2065,24 +2078,24 @@ msgstr "Vis" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_general_ledger__show_analytic_tags msgid "Show Analytic Tags" -msgstr "" +msgstr "Vis analyse tags" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_general_ledger__show_cost_center msgid "Show Cost Center" -msgstr "" +msgstr "Vis omkostningscentre" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_wizard__show_move_line_details #: model:ir.model.fields,field_description:account_financial_report.field_report_aged_partner_balance__show_move_line_details msgid "Show Move Line Details" -msgstr "" +msgstr "Vis posteringslinie detaljer" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_trial_balance__show_partner_details #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__show_partner_details msgid "Show Partner Details" -msgstr "" +msgstr "Vis partner detaljer" #. module: account_financial_report #: code:addons/account_financial_report/report/general_ledger_xlsx.py:93 @@ -2090,7 +2103,7 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters #, python-format msgid "Show analytic tags" -msgstr "" +msgstr "Vis analyse tags" #. module: account_financial_report #: code:addons/account_financial_report/report/general_ledger_xlsx.py:97 @@ -2129,7 +2142,7 @@ msgstr "Startdato" #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines #, python-format msgid "Tags" -msgstr "" +msgstr "Tags" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_wizard__target_move @@ -2151,7 +2164,7 @@ msgstr "Medtag posteringer" #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters #, python-format msgid "Target moves filter" -msgstr "" +msgstr "Posteringsfilter" #. module: account_financial_report #: code:addons/account_financial_report/report/vat_report_xlsx.py:23 @@ -2163,13 +2176,13 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base #, python-format msgid "Tax" -msgstr "" +msgstr "Moms" #. module: account_financial_report #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes msgid "Tax Amount" -msgstr "" +msgstr "Momsbeløb" #. module: account_financial_report #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:137 @@ -2177,13 +2190,13 @@ msgstr "" #: model:ir.model.fields,field_description:account_financial_report.field_report_journal_ledger_report_tax_line__tax_balance #, python-format msgid "Tax Balance" -msgstr "" +msgstr "Moms balance" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_journal_ledger_journal_tax_line__tax_code #: model:ir.model.fields,field_description:account_financial_report.field_report_journal_ledger_report_tax_line__tax_code msgid "Tax Code" -msgstr "" +msgstr "Moms kode" #. module: account_financial_report #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:131 @@ -2191,7 +2204,7 @@ msgstr "" #: model:ir.model.fields,field_description:account_financial_report.field_report_journal_ledger_report_tax_line__tax_credit #, python-format msgid "Tax Credit" -msgstr "" +msgstr "Moms kredit" #. module: account_financial_report #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:125 @@ -2199,7 +2212,7 @@ msgstr "" #: model:ir.model.fields,field_description:account_financial_report.field_report_journal_ledger_report_tax_line__tax_debit #, python-format msgid "Tax Debit" -msgstr "" +msgstr "Moms debit" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_vat_report__tax_detail @@ -2267,6 +2280,8 @@ msgid "" "The Company in the General Ledger Report Wizard and in Date Range must be " "the same." msgstr "" +"Virksomheden i guiden General Ledger Report Wizard og i datointerval skal " +"være den samme." #. module: account_financial_report #: code:addons/account_financial_report/wizard/trial_balance_wizard.py:162 @@ -2274,20 +2289,20 @@ msgstr "" msgid "" "The Company in the Trial Balance Report Wizard and in Date Range must be the " "same." -msgstr "" +msgstr "Virksomheden i guiden råbalance og i datointerval skal være den samme." #. module: account_financial_report #: code:addons/account_financial_report/wizard/vat_report_wizard.py:62 #, python-format msgid "" "The Company in the Vat Report Wizard and in Date Range must be the same." -msgstr "" +msgstr "Virksomheden i moms rapporten og i datointerval skal være den samme." #. module: account_financial_report #: code:addons/account_financial_report/wizard/trial_balance_wizard.py:94 #, python-format msgid "The hierarchy level to filter on must be greater than 0." -msgstr "" +msgstr "Hierarkiniveauet, der skal filtreres på, skal være større end 0." #. module: account_financial_report #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters @@ -2301,7 +2316,7 @@ msgstr "Til:" #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_account_ending_cumul #, python-format msgid "Total" -msgstr "" +msgstr "Total" #. module: account_financial_report #: code:addons/account_financial_report/report/trial_balance_xlsx.py:14 @@ -2322,7 +2337,7 @@ msgstr "Råbalance-" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_trial_balance_report_wizard msgid "Trial Balance Report Wizard" -msgstr "" +msgstr "Råbalance rapport guide" #. module: account_financial_report #: model:ir.actions.report,name:account_financial_report.action_report_trial_balance_xlsx @@ -2335,11 +2350,13 @@ msgid "" "Trial Balance can be computed only if selected company have only one " "unaffected earnings account." msgstr "" +"Råbalance kan kun beregnes, hvis det valgte selskab kun har en upåvirket " +"indtjeningskonto." #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_general_ledger__unaffected_earnings_account msgid "Unaffected Earnings Account" -msgstr "" +msgstr "Ikke-påvirket indtjeningskonto" #. module: account_financial_report #: model:ir.model.fields,help:account_financial_report.field_general_ledger_report_wizard__hide_account_at_0 @@ -2349,6 +2366,9 @@ msgid "" "If partners are filtered, debits and credits totals will not match the trial " "balance." msgstr "" +"Brug dette filter til at skjule en konto eller en partner med en " +"slutningssaldo på 0. Hvis partnere filtreres, svarer debiteringer og " +"kreditsummen ikke til prøvebalancen." #. module: account_financial_report #: code:addons/account_financial_report/report/vat_report_xlsx.py:12 @@ -2369,17 +2389,17 @@ msgstr "Momsrapport -" #. module: account_financial_report #: model_terms:ir.ui.view,arch_db:account_financial_report.vat_report_wizard msgid "VAT Report Options" -msgstr "" +msgstr "Moms rapport muligheder" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_vat_report_wizard msgid "VAT Report Wizard" -msgstr "" +msgstr "Moms rapport guide" #. module: account_financial_report #: model:ir.actions.report,name:account_financial_report.action_report_vat_report_xlsx msgid "VAT Report XLSX" -msgstr "" +msgstr "Moms rapport XLSX" #. module: account_financial_report #: model_terms:ir.ui.view,arch_db:account_financial_report.aged_partner_balance_wizard @@ -2397,6 +2417,8 @@ msgid "" "When this option is enabled, the trial balance will not display accounts " "that have initial balance = debit = credit = end balance = 0" msgstr "" +"Når denne indstilling er aktiveret, viser råbalancen ikke konti, der har en " +"indledende saldo = debitering = kredit = slutbalance = 0" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__with_account_name From 789d6dc484204ebcc20b15993805bf12c06e2ce6 Mon Sep 17 00:00:00 2001 From: Hans Henrik Gabelgaard Date: Mon, 5 Jul 2021 09:42:03 +0000 Subject: [PATCH 15/29] Translated using Weblate (Danish) Currently translated at 97.4% (77 of 79 strings) Translation: account-financial-reporting-12.0/account-financial-reporting-12.0-partner_statement Translate-URL: https://translation.odoo-community.org/projects/account-financial-reporting-12-0/account-financial-reporting-12-0-partner_statement/da/ --- partner_statement/i18n/da.po | 27 +++++++++++++++++++-------- 1 file changed, 19 insertions(+), 8 deletions(-) diff --git a/partner_statement/i18n/da.po b/partner_statement/i18n/da.po index 7fb37205..1428d7d0 100644 --- a/partner_statement/i18n/da.po +++ b/partner_statement/i18n/da.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 12.0\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2020-06-18 08:09+0000\n" +"PO-Revision-Date: 2021-07-05 09:42+0000\n" "Last-Translator: Hans Henrik Gabelgaard \n" "Language-Team: none\n" "Language: da\n" @@ -14,7 +14,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.10\n" +"X-Generator: Weblate 4.3.2\n" #. module: partner_statement #: code:addons/partner_statement/report/report_statement_common.py:243 @@ -143,6 +143,8 @@ msgstr "Forfaldsrapport pr" #: model_terms:ir.ui.view,arch_db:partner_statement.statement_common_view msgid "Aging details can be shown in the report, expressed in aging buckets, so the partner can review how much is open, due or overdue." msgstr "" +"Aldringsoplysninger kan vises i rapporten, udtrykt i aldrende spande, så " +"partneren kan gennemgå, hvor meget der er åbent, forfaldent eller for sent." #. module: partner_statement #: model_terms:ir.ui.view,arch_db:partner_statement.activity_statement_document @@ -245,12 +247,12 @@ msgstr "Forfaldsdato" #. module: partner_statement #: model:ir.model.fields,field_description:partner_statement.field_res_config_settings__group_activity_statement msgid "Enable OCA Activity Statements" -msgstr "" +msgstr "Aktivér OCA aktivitets kontoudtog" #. module: partner_statement #: model:ir.model.fields,field_description:partner_statement.field_res_config_settings__group_outstanding_statement msgid "Enable OCA Outstanding Statements" -msgstr "" +msgstr "Aktivér OCA udestående kontoudtog" #. module: partner_statement #: model_terms:ir.ui.view,arch_db:partner_statement.activity_statement_document @@ -284,7 +286,7 @@ msgstr "Eksport PDF" #: model:ir.model.fields,field_description:partner_statement.field_statement_common__id #: model:ir.model.fields,field_description:partner_statement.field_statement_common_wizard__id msgid "ID" -msgstr "" +msgstr "ID" #. module: partner_statement #: model:ir.model.fields,field_description:partner_statement.field_activity_statement_wizard____last_update @@ -320,7 +322,7 @@ msgstr "Navn" #: model:ir.model.fields,field_description:partner_statement.field_outstanding_statement_wizard__number_partner_ids #: model:ir.model.fields,field_description:partner_statement.field_statement_common_wizard__number_partner_ids msgid "Number Partner" -msgstr "" +msgstr "Antal partner" #. module: partner_statement #: code:addons/partner_statement/report/report_statement_common.py:258 @@ -368,7 +370,7 @@ msgstr "Partner kontoudtog udestående" #: selection:outstanding.statement.wizard,account_type:0 #: selection:statement.common.wizard,account_type:0 msgid "Payable" -msgstr "" +msgstr "Kreditor" #. module: partner_statement #: model_terms:ir.ui.view,arch_db:partner_statement.activity_statement_document @@ -385,7 +387,7 @@ msgstr "Angiv venligst opsætning under Kontoudtog." #: selection:outstanding.statement.wizard,account_type:0 #: selection:statement.common.wizard,account_type:0 msgid "Receivable" -msgstr "" +msgstr "Debitor" #. module: partner_statement #: model_terms:ir.ui.view,arch_db:partner_statement.activity_statement_document @@ -436,11 +438,20 @@ msgstr "Leverandør" #: model_terms:ir.ui.view,arch_db:partner_statement.activity_statement_wizard_view msgid "The activity statement provides details of all activity on a partner's receivables and payables between two selected dates. This includes all invoices, refunds and payments. Any outstanding balance dated prior to the chosen statement period will appear as a forward balance at the top of the statement. The list is displayed in chronological order and is split by currencies." msgstr "" +"Aktivitetsoversigten indeholder oplysninger om al aktivitet på en partners " +"tilgodehavender og gæld mellem to valgte datoer. Dette inkluderer alle " +"fakturaer, refusioner og betalinger. Enhver udestående saldo dateret før den " +"valgte periodeperiode vises som en terminsaldo øverst i opgørelsen. Listen " +"vises i kronologisk rækkefølge og er opdelt efter valutaer." #. module: partner_statement #: model_terms:ir.ui.view,arch_db:partner_statement.outstanding_statement_wizard_view msgid "The outstanding statement provides details of all partner's outstanding receivables and payables up to a particular date. This includes all unpaid invoices, unclaimed refunds and outstanding payments. The list is displayed in chronological order and is split by currencies." msgstr "" +"Den udestående opgørelse indeholder detaljer om alle partners udestående " +"tilgodehavender og gæld til en bestemt dato. Dette inkluderer alle ubetalte " +"fakturaer, uanmodede refusioner og udestående betalinger. Listen vises i " +"kronologisk rækkefølge og er opdelt efter valutaer." #. module: partner_statement #: code:addons/partner_statement/report/report_statement_common.py:248 From 8737686f567f9e723c3ebe6a6b27a87644e0a18b Mon Sep 17 00:00:00 2001 From: Maria Sparenberg Date: Mon, 5 Jul 2021 15:03:15 +0000 Subject: [PATCH 16/29] Translated using Weblate (German) Currently translated at 100.0% (47 of 47 strings) Translation: account-financial-reporting-12.0/account-financial-reporting-12.0-account_tax_balance Translate-URL: https://translation.odoo-community.org/projects/account-financial-reporting-12-0/account-financial-reporting-12-0-account_tax_balance/de/ --- account_tax_balance/i18n/de.po | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/account_tax_balance/i18n/de.po b/account_tax_balance/i18n/de.po index 70b67803..8a3ded49 100644 --- a/account_tax_balance/i18n/de.po +++ b/account_tax_balance/i18n/de.po @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: Odoo Server 11.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-03-27 12:02+0000\n" -"PO-Revision-Date: 2020-05-06 14:19+0000\n" +"PO-Revision-Date: 2021-07-05 17:48+0000\n" "Last-Translator: Maria Sparenberg \n" "Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" "Language: de\n" @@ -17,13 +17,13 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.10\n" +"X-Generator: Weblate 4.3.2\n" #. module: account_tax_balance #: code:addons/account_tax_balance/wizard/open_tax_balances.py:48 #, python-format msgid "%(name)s: %(target)s from %(from)s to %(to)s" -msgstr "" +msgstr "%(name)s: %(target)s vom %(from)s bis %(to)s" #. module: account_tax_balance #: model_terms:ir.ui.view,arch_db:account_tax_balance.view_tax_search_balance @@ -148,9 +148,8 @@ msgstr "Zuletzt aktualisiert am" #. module: account_tax_balance #: model:ir.model.fields,field_description:account_tax_balance.field_account_move__move_type -#, fuzzy msgid "Move Type" -msgstr "Buchungsart" +msgstr "Buchungstyp" #. module: account_tax_balance #: model_terms:ir.ui.view,arch_db:account_tax_balance.view_account_move_filter From 5de73f8f6103f1bd8a0e90cf48930e91ea719781 Mon Sep 17 00:00:00 2001 From: Maria Sparenberg Date: Mon, 5 Jul 2021 15:00:17 +0000 Subject: [PATCH 17/29] Translated using Weblate (German) Currently translated at 99.3% (331 of 333 strings) Translation: account-financial-reporting-12.0/account-financial-reporting-12.0-account_financial_report Translate-URL: https://translation.odoo-community.org/projects/account-financial-reporting-12-0/account-financial-reporting-12-0-account_financial_report/de/ --- account_financial_report/i18n/de.po | 36 +++-------------------------- 1 file changed, 3 insertions(+), 33 deletions(-) diff --git a/account_financial_report/i18n/de.po b/account_financial_report/i18n/de.po index 73453122..2d2206ee 100644 --- a/account_financial_report/i18n/de.po +++ b/account_financial_report/i18n/de.po @@ -11,15 +11,15 @@ msgstr "" "Project-Id-Version: Odoo Server 11.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-06-01 22:18+0000\n" -"PO-Revision-Date: 2020-07-23 17:19+0000\n" -"Last-Translator: André Volksdorf \n" +"PO-Revision-Date: 2021-07-05 17:48+0000\n" +"Last-Translator: Maria Sparenberg \n" "Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.10\n" +"X-Generator: Weblate 4.3.2\n" #. module: account_financial_report #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_lines_header @@ -2467,181 +2467,151 @@ msgstr "report.a_f_r.report_general_ledger_xlsx" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_report_a_f_r_report_journal_ledger_xlsx -#, fuzzy msgid "report.a_f_r.report_journal_ledger_xlsx" msgstr "report.a_f_r.report_journal_ledger_xlsx" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_report_a_f_r_report_open_items_xlsx -#, fuzzy msgid "report.a_f_r.report_open_items_xlsx" msgstr "report.a_f_r.report_open_items_xlsx" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_report_a_f_r_report_trial_balance_xlsx -#, fuzzy msgid "report.a_f_r.report_trial_balance_xlsx" msgstr "report.a_f_r.report_trial_balance_xlsx" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_report_a_f_r_report_vat_report_xlsx -#, fuzzy msgid "report.a_f_r.report_vat_report_xlsx" msgstr "report.a_f_r.report_vat_report_xlsx" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_report_account_financial_report_abstract_report_xlsx -#, fuzzy msgid "report.account_financial_report.abstract_report_xlsx" msgstr "report.account_financial_report.abstract_report_xlsx" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_report_aged_partner_balance -#, fuzzy msgid "report_aged_partner_balance" msgstr "report_aged_partner_balance" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_report_aged_partner_balance_account -#, fuzzy msgid "report_aged_partner_balance_account" msgstr "report_aged_partner_balance_account" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_report_aged_partner_balance_line -#, fuzzy msgid "report_aged_partner_balance_line" msgstr "report_aged_partner_balance_line" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_report_aged_partner_balance_move_line -#, fuzzy msgid "report_aged_partner_balance_move_line" msgstr "report_aged_partner_balance_move_line" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_report_aged_partner_balance_partner -#, fuzzy msgid "report_aged_partner_balance_partner" msgstr "report_aged_partner_balance_partner" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_report_general_ledger -#, fuzzy msgid "report_general_ledger" msgstr "report_general_ledger" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_report_general_ledger_account -#, fuzzy msgid "report_general_ledger_account" msgstr "report_general_ledger_account" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_report_general_ledger_move_line -#, fuzzy msgid "report_general_ledger_move_line" msgstr "report_general_ledger_move_line" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_report_general_ledger_partner -#, fuzzy msgid "report_general_ledger_partner" msgstr "report_general_ledger_partner" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_report_journal_ledger -#, fuzzy msgid "report_journal_ledger" msgstr "report_journal_ledger" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_report_journal_ledger_journal -#, fuzzy msgid "report_journal_ledger_journal" msgstr "report_journal_ledger_journal" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_report_journal_ledger_journal_tax_line -#, fuzzy msgid "report_journal_ledger_journal_tax_line" msgstr "report_journal_ledger_journal_tax_line" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_report_journal_ledger_move -#, fuzzy msgid "report_journal_ledger_move" msgstr "report_journal_ledger_move" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_report_journal_ledger_move_line -#, fuzzy msgid "report_journal_ledger_move_line" msgstr "report_journal_ledger_move_line" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_report_journal_ledger_report_tax_line -#, fuzzy msgid "report_journal_ledger_report_tax_line" msgstr "report_journal_ledger_report_tax_line" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_report_open_items -#, fuzzy msgid "report_open_items" msgstr "report_open_items" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_report_open_items_account -#, fuzzy msgid "report_open_items_account" msgstr "report_open_items_account" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_report_open_items_move_line -#, fuzzy msgid "report_open_items_move_line" msgstr "report_open_items_move_line" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_report_open_items_partner -#, fuzzy msgid "report_open_items_partner" msgstr "report_open_items_partner" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_report_trial_balance -#, fuzzy msgid "report_trial_balance" msgstr "report_trial_balance" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_report_trial_balance_account -#, fuzzy msgid "report_trial_balance_account" msgstr "report_trial_balance_account" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_report_trial_balance_partner -#, fuzzy msgid "report_trial_balance_partner" msgstr "report_trial_balance_partner" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_report_vat_report -#, fuzzy msgid "report_vat_report" msgstr "report_vat_report" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_report_vat_report_tax -#, fuzzy msgid "report_vat_report_tax" msgstr "report_vat_report_tax" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_report_vat_report_taxtag -#, fuzzy msgid "report_vat_report_taxtag" msgstr "report_vat_report_taxtag" From a212bb6fa2ca74d9e7b1dcc6d2f1ccd55519f853 Mon Sep 17 00:00:00 2001 From: Andrea Date: Thu, 15 Jul 2021 11:55:02 +0200 Subject: [PATCH 18/29] [FIX] Scope of Trial Balance query within allowed account groups --- account_financial_report/report/trial_balance.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/account_financial_report/report/trial_balance.py b/account_financial_report/report/trial_balance.py index 6696d0cc..7885cd86 100644 --- a/account_financial_report/report/trial_balance.py +++ b/account_financial_report/report/trial_balance.py @@ -391,6 +391,9 @@ AND ra.report_id = %s def _inject_account_group_values(self): """Inject report values for report_trial_balance_account""" + allowed_groups = self.env["account.group"].search([]) + if not allowed_groups: + return query_inject_account_group = """ INSERT INTO report_trial_balance_account @@ -416,10 +419,14 @@ SELECT accgroup.code_prefix, accgroup.level FROM - account_group accgroup""" + account_group accgroup +WHERE + accgroup.id in %s + """ query_inject_account_params = ( self.id, self.env.uid, + tuple(allowed_groups.ids), ) self.env.cr.execute(query_inject_account_group, query_inject_account_params) From f035986ba91638e94acf3cce0c657bfb6cb08e69 Mon Sep 17 00:00:00 2001 From: OCA-git-bot Date: Thu, 15 Jul 2021 10:53:32 +0000 Subject: [PATCH 19/29] account_financial_report 12.0.1.4.5 --- account_financial_report/__manifest__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/account_financial_report/__manifest__.py b/account_financial_report/__manifest__.py index de7950df..2835bbcb 100644 --- a/account_financial_report/__manifest__.py +++ b/account_financial_report/__manifest__.py @@ -4,7 +4,7 @@ # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). { 'name': 'Account Financial Reports', - 'version': '12.0.1.4.4', + 'version': '12.0.1.4.5', 'category': 'Reporting', 'summary': 'OCA Financial Reports', 'author': 'Camptocamp SA,' From 45f33828e46150bfa30a0246c298543fcf3d3e68 Mon Sep 17 00:00:00 2001 From: OCA-git-bot Date: Fri, 16 Jul 2021 07:03:58 +0000 Subject: [PATCH 20/29] account_tax_balance 12.0.1.1.2 --- account_tax_balance/__manifest__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/account_tax_balance/__manifest__.py b/account_tax_balance/__manifest__.py index 2a7e4402..06e8bb40 100644 --- a/account_tax_balance/__manifest__.py +++ b/account_tax_balance/__manifest__.py @@ -6,7 +6,7 @@ { "name": "Tax Balance", "summary": "Compute tax balances based on date range", - "version": "12.0.1.1.1", + "version": "12.0.1.1.2", "category": "Invoices & Payments", "website": "https://github.com/OCA/account-financial-reporting", "author": "Agile Business Group, Therp BV, Tecnativa, ACSONE SA/NV, " From 97de523de47e598d33271a195d6efc15fde0848b Mon Sep 17 00:00:00 2001 From: alvarorib Date: Thu, 29 Jul 2021 16:47:32 +0000 Subject: [PATCH 21/29] Translated using Weblate (Portuguese) Currently translated at 100.0% (52 of 52 strings) Translation: account-financial-reporting-12.0/account-financial-reporting-12.0-mis_builder_cash_flow Translate-URL: https://translation.odoo-community.org/projects/account-financial-reporting-12-0/account-financial-reporting-12-0-mis_builder_cash_flow/pt/ --- mis_builder_cash_flow/i18n/pt.po | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/mis_builder_cash_flow/i18n/pt.po b/mis_builder_cash_flow/i18n/pt.po index 6b35d308..2273d0a3 100644 --- a/mis_builder_cash_flow/i18n/pt.po +++ b/mis_builder_cash_flow/i18n/pt.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 12.0\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2020-04-07 19:19+0000\n" +"PO-Revision-Date: 2021-07-29 18:49+0000\n" "Last-Translator: alvarorib \n" "Language-Team: none\n" "Language: pt\n" @@ -14,7 +14,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 3.10\n" +"X-Generator: Weblate 4.3.2\n" #. module: mis_builder_cash_flow #: model:mis.report.instance.period,name:mis_builder_cash_flow.mis_period_plus_1w @@ -113,7 +113,7 @@ msgstr "Crédito" #. module: mis_builder_cash_flow #: model:mis.report.instance.period,name:mis_builder_cash_flow.mis_period_current msgid "Current" -msgstr "Corrente" +msgstr "Atual" #. module: mis_builder_cash_flow #: model:ir.model.fields,field_description:mis_builder_cash_flow.field_mis_cash_flow__date @@ -154,17 +154,17 @@ msgstr "ID" #. module: mis_builder_cash_flow #: model:mis.report.kpi,description:mis_builder_cash_flow.mis_kpi_in_total msgid "IN TOTAL" -msgstr "NO TOTAL" +msgstr "TOTAL RECEBIMENTOS" #. module: mis_builder_cash_flow #: model:mis.report.kpi,description:mis_builder_cash_flow.mis_kpi_in_forecast msgid "In forecast" -msgstr "Na previsão" +msgstr "Previsão de recebimentos" #. module: mis_builder_cash_flow #: model:mis.report.kpi,description:mis_builder_cash_flow.mis_kpi_in_receivable msgid "In receivable" -msgstr "Em recebível" +msgstr "Recebível" #. module: mis_builder_cash_flow #: model:ir.model.fields,field_description:mis_builder_cash_flow.field_mis_cash_flow__move_line_id @@ -231,7 +231,7 @@ msgstr "Nome" #. module: mis_builder_cash_flow #: model:mis.report.kpi,description:mis_builder_cash_flow.mis_kpi_out_total msgid "OUT TOTAL" -msgstr "FORA DO TOTAL" +msgstr "TOTAL PAGAMENTOS" #. module: mis_builder_cash_flow #: model_terms:ir.ui.view,arch_db:mis_builder_cash_flow.mis_cash_flow_tree_view @@ -241,12 +241,12 @@ msgstr "Item de Diário em Aberto / Linha de Previsão" #. module: mis_builder_cash_flow #: model:mis.report.kpi,description:mis_builder_cash_flow.mis_kpi_out_forecast msgid "Out forecast" -msgstr "Fora da Previsão" +msgstr "Previsão pagamentos" #. module: mis_builder_cash_flow #: model:mis.report.kpi,description:mis_builder_cash_flow.mis_kpi_out_payable msgid "Out payable" -msgstr "Fora dos Pagáveis" +msgstr "Pagável" #. module: mis_builder_cash_flow #: model:mis.report.kpi,description:mis_builder_cash_flow.mis_kpi_period_balance From 7f68949eb869ec2154caf97faa5b1d09b3978478 Mon Sep 17 00:00:00 2001 From: Pascal GOUHIER Date: Tue, 3 Aug 2021 15:18:34 +0000 Subject: [PATCH 22/29] Added translation using Weblate (French) --- mis_builder_cash_flow/i18n/fr.po | 301 +++++++++++++++++++++++++++++++ 1 file changed, 301 insertions(+) create mode 100644 mis_builder_cash_flow/i18n/fr.po diff --git a/mis_builder_cash_flow/i18n/fr.po b/mis_builder_cash_flow/i18n/fr.po new file mode 100644 index 00000000..ddf62c63 --- /dev/null +++ b/mis_builder_cash_flow/i18n/fr.po @@ -0,0 +1,301 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mis_builder_cash_flow +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" + +#. module: mis_builder_cash_flow +#: model:mis.report.instance.period,name:mis_builder_cash_flow.mis_period_plus_1w +msgid "+1w" +msgstr "" + +#. module: mis_builder_cash_flow +#: model:mis.report.instance.period,name:mis_builder_cash_flow.mis_period_plus_2w +msgid "+2w" +msgstr "" + +#. module: mis_builder_cash_flow +#: model:mis.report.instance.period,name:mis_builder_cash_flow.mis_period_plus_3w +msgid "+3w" +msgstr "" + +#. module: mis_builder_cash_flow +#: model:mis.report.instance.period,name:mis_builder_cash_flow.mis_period_plus_4w +msgid "+4w" +msgstr "" + +#. module: mis_builder_cash_flow +#: model:mis.report.instance.period,name:mis_builder_cash_flow.mis_period_plus_5w +msgid "+5w" +msgstr "" + +#. module: mis_builder_cash_flow +#: model:mis.report.instance.period,name:mis_builder_cash_flow.mis_period_plus_6w +msgid "+6w" +msgstr "" + +#. module: mis_builder_cash_flow +#: model:mis.report.instance.period,name:mis_builder_cash_flow.mis_period_plus_7w +msgid "+7w" +msgstr "" + +#. module: mis_builder_cash_flow +#: model:mis.report.instance.period,name:mis_builder_cash_flow.mis_period_plus_8w +msgid "+8w" +msgstr "" + +#. module: mis_builder_cash_flow +#: model:ir.model,name:mis_builder_cash_flow.model_account_account +#: model:ir.model.fields,field_description:mis_builder_cash_flow.field_mis_cash_flow__account_id +#: model:ir.model.fields,field_description:mis_builder_cash_flow.field_mis_cash_flow_forecast_line__account_id +#: model_terms:ir.ui.view,arch_db:mis_builder_cash_flow.mis_cash_flow_forecast_line_view_search +#: model_terms:ir.ui.view,arch_db:mis_builder_cash_flow.mis_cash_flow_search_view +msgid "Account" +msgstr "" + +#. module: mis_builder_cash_flow +#: model:mis.report.kpi,description:mis_builder_cash_flow.mis_kpi_balance +msgid "BALANCE" +msgstr "" + +#. module: mis_builder_cash_flow +#: model:ir.model.fields,field_description:mis_builder_cash_flow.field_mis_cash_flow_forecast_line__balance +msgid "Balance" +msgstr "" + +#. module: mis_builder_cash_flow +#: model:mis.report,name:mis_builder_cash_flow.mis_report_cash_flow +#: model:mis.report.instance,name:mis_builder_cash_flow.mis_instance_cash_flow +msgid "Cash Flow" +msgstr "" + +#. module: mis_builder_cash_flow +#: model:ir.actions.act_window,name:mis_builder_cash_flow.action_mis_cash_flow_forecast_line +#: model:ir.ui.menu,name:mis_builder_cash_flow.menu_mis_cash_flow_forecast_line +msgid "Cash Flow Forecast Line" +msgstr "" + +#. module: mis_builder_cash_flow +#: model:ir.model.fields,field_description:mis_builder_cash_flow.field_mis_cash_flow__company_id +#: model:ir.model.fields,field_description:mis_builder_cash_flow.field_mis_cash_flow_forecast_line__company_id +#: model_terms:ir.ui.view,arch_db:mis_builder_cash_flow.mis_cash_flow_forecast_line_view_search +#: model_terms:ir.ui.view,arch_db:mis_builder_cash_flow.mis_cash_flow_search_view +msgid "Company" +msgstr "" + +#. module: mis_builder_cash_flow +#: model:ir.model.fields,field_description:mis_builder_cash_flow.field_mis_cash_flow_forecast_line__create_uid +msgid "Created by" +msgstr "" + +#. module: mis_builder_cash_flow +#: model:ir.model.fields,field_description:mis_builder_cash_flow.field_mis_cash_flow_forecast_line__create_date +msgid "Created on" +msgstr "" + +#. module: mis_builder_cash_flow +#: model:ir.model.fields,field_description:mis_builder_cash_flow.field_mis_cash_flow__credit +msgid "Credit" +msgstr "" + +#. module: mis_builder_cash_flow +#: model:mis.report.instance.period,name:mis_builder_cash_flow.mis_period_current +msgid "Current" +msgstr "" + +#. module: mis_builder_cash_flow +#: model:ir.model.fields,field_description:mis_builder_cash_flow.field_mis_cash_flow__date +#: model:ir.model.fields,field_description:mis_builder_cash_flow.field_mis_cash_flow_forecast_line__date +#: model_terms:ir.ui.view,arch_db:mis_builder_cash_flow.mis_cash_flow_forecast_line_view_search +#: model_terms:ir.ui.view,arch_db:mis_builder_cash_flow.mis_cash_flow_search_view +msgid "Date" +msgstr "" + +#. module: mis_builder_cash_flow +#: model:ir.model.fields,field_description:mis_builder_cash_flow.field_mis_cash_flow__debit +msgid "Debit" +msgstr "" + +#. module: mis_builder_cash_flow +#: model:ir.model.fields,field_description:mis_builder_cash_flow.field_mis_cash_flow__display_name +#: model:ir.model.fields,field_description:mis_builder_cash_flow.field_mis_cash_flow_forecast_line__display_name +msgid "Display Name" +msgstr "" + +#. module: mis_builder_cash_flow +#: model_terms:ir.ui.view,arch_db:mis_builder_cash_flow.mis_cash_flow_search_view +#: selection:mis.cash_flow,line_type:0 +msgid "Forecast Line" +msgstr "" + +#. module: mis_builder_cash_flow +#: model:ir.model.fields,field_description:mis_builder_cash_flow.field_account_account__hide_in_cash_flow +msgid "Hide in Cash Flow?" +msgstr "" + +#. module: mis_builder_cash_flow +#: model:ir.model.fields,field_description:mis_builder_cash_flow.field_mis_cash_flow__id +#: model:ir.model.fields,field_description:mis_builder_cash_flow.field_mis_cash_flow_forecast_line__id +msgid "ID" +msgstr "" + +#. module: mis_builder_cash_flow +#: model:mis.report.kpi,description:mis_builder_cash_flow.mis_kpi_in_total +msgid "IN TOTAL" +msgstr "" + +#. module: mis_builder_cash_flow +#: model:mis.report.kpi,description:mis_builder_cash_flow.mis_kpi_in_forecast +msgid "In forecast" +msgstr "" + +#. module: mis_builder_cash_flow +#: model:mis.report.kpi,description:mis_builder_cash_flow.mis_kpi_in_receivable +msgid "In receivable" +msgstr "" + +#. module: mis_builder_cash_flow +#: model:ir.model.fields,field_description:mis_builder_cash_flow.field_mis_cash_flow__move_line_id +#: model_terms:ir.ui.view,arch_db:mis_builder_cash_flow.mis_cash_flow_search_view +#: selection:mis.cash_flow,line_type:0 +msgid "Journal Item" +msgstr "" + +#. module: mis_builder_cash_flow +#: model_terms:ir.ui.view,arch_db:mis_builder_cash_flow.mis_cash_flow_search_view +msgid "Journal items where matching number isn't set" +msgstr "" + +#. module: mis_builder_cash_flow +#: model:mis.report.kpi,description:mis_builder_cash_flow.mis_kpi_aliquidity +msgid "LIQUIDITY" +msgstr "" + +#. module: mis_builder_cash_flow +#: model:ir.model.fields,field_description:mis_builder_cash_flow.field_mis_cash_flow____last_update +#: model:ir.model.fields,field_description:mis_builder_cash_flow.field_mis_cash_flow_forecast_line____last_update +msgid "Last Modified on" +msgstr "" + +#. module: mis_builder_cash_flow +#: model:ir.model.fields,field_description:mis_builder_cash_flow.field_mis_cash_flow_forecast_line__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: mis_builder_cash_flow +#: model:ir.model.fields,field_description:mis_builder_cash_flow.field_mis_cash_flow_forecast_line__write_date +msgid "Last Updated on" +msgstr "" + +#. module: mis_builder_cash_flow +#: model:ir.model.fields,field_description:mis_builder_cash_flow.field_mis_cash_flow__line_type +#: model_terms:ir.ui.view,arch_db:mis_builder_cash_flow.mis_cash_flow_search_view +msgid "Line Type" +msgstr "" + +#. module: mis_builder_cash_flow +#: model:ir.model,name:mis_builder_cash_flow.model_mis_cash_flow +msgid "MIS Cash Flow" +msgstr "" + +#. module: mis_builder_cash_flow +#: model:ir.model,name:mis_builder_cash_flow.model_mis_cash_flow_forecast_line +#: model_terms:ir.ui.view,arch_db:mis_builder_cash_flow.mis_cash_flow_forecast_line_view_form +#: model_terms:ir.ui.view,arch_db:mis_builder_cash_flow.mis_cash_flow_forecast_line_view_tree +msgid "MIS Cash Flow Forecast Line" +msgstr "" + +#. module: mis_builder_cash_flow +#: model:ir.model.fields,field_description:mis_builder_cash_flow.field_mis_cash_flow__full_reconcile_id +msgid "Matching Number" +msgstr "" + +#. module: mis_builder_cash_flow +#: model:ir.model.fields,field_description:mis_builder_cash_flow.field_mis_cash_flow__name +#: model:ir.model.fields,field_description:mis_builder_cash_flow.field_mis_cash_flow_forecast_line__name +msgid "Name" +msgstr "" + +#. module: mis_builder_cash_flow +#: model:mis.report.kpi,description:mis_builder_cash_flow.mis_kpi_out_total +msgid "OUT TOTAL" +msgstr "" + +#. module: mis_builder_cash_flow +#: model_terms:ir.ui.view,arch_db:mis_builder_cash_flow.mis_cash_flow_tree_view +msgid "Open Journal Item / Forecast Line" +msgstr "" + +#. module: mis_builder_cash_flow +#: model:mis.report.kpi,description:mis_builder_cash_flow.mis_kpi_out_forecast +msgid "Out forecast" +msgstr "" + +#. module: mis_builder_cash_flow +#: model:mis.report.kpi,description:mis_builder_cash_flow.mis_kpi_out_payable +msgid "Out payable" +msgstr "" + +#. module: mis_builder_cash_flow +#: model:mis.report.kpi,description:mis_builder_cash_flow.mis_kpi_period_balance +msgid "PERIOD BALANCE" +msgstr "" + +#. module: mis_builder_cash_flow +#: model:ir.model.fields,field_description:mis_builder_cash_flow.field_mis_cash_flow__partner_id +#: model:ir.model.fields,field_description:mis_builder_cash_flow.field_mis_cash_flow_forecast_line__partner_id +#: model_terms:ir.ui.view,arch_db:mis_builder_cash_flow.mis_cash_flow_forecast_line_view_search +msgid "Partner" +msgstr "" + +#. module: mis_builder_cash_flow +#: model:ir.model.fields,field_description:mis_builder_cash_flow.field_mis_cash_flow__reconciled +msgid "Reconciled" +msgstr "" + +#. module: mis_builder_cash_flow +#: code:addons/mis_builder_cash_flow/models/mis_cash_flow_forecast_line.py:46 +#, python-format +msgid "The Company and the Company of the Account must be the same." +msgstr "" + +#. module: mis_builder_cash_flow +#: model:ir.model.fields,help:mis_builder_cash_flow.field_mis_cash_flow_forecast_line__account_id +msgid "The account of the forecast line is only for informative purpose" +msgstr "" + +#. module: mis_builder_cash_flow +#: model_terms:ir.ui.view,arch_db:mis_builder_cash_flow.mis_cash_flow_form_view +#: model_terms:ir.ui.view,arch_db:mis_builder_cash_flow.mis_cash_flow_tree_view +msgid "Total" +msgstr "" + +#. module: mis_builder_cash_flow +#: model_terms:ir.ui.view,arch_db:mis_builder_cash_flow.mis_cash_flow_search_view +msgid "Unreconciled" +msgstr "" + +#. module: mis_builder_cash_flow +#: model:ir.model.fields,field_description:mis_builder_cash_flow.field_mis_cash_flow__user_type_id +msgid "User Type" +msgstr "" + +#. module: mis_builder_cash_flow +#: model:mis.report.instance.period,name:mis_builder_cash_flow.mis_period_plus_fourth_month +msgid "fourth month" +msgstr "" + +#. module: mis_builder_cash_flow +#: model:mis.report.instance.period,name:mis_builder_cash_flow.mis_period_plus_third_month +msgid "third month" +msgstr "" From eeddba84c666d1ec07a00661b832a7d180a4692e Mon Sep 17 00:00:00 2001 From: Pascal GOUHIER Date: Tue, 3 Aug 2021 15:18:22 +0000 Subject: [PATCH 23/29] Translated using Weblate (French) Currently translated at 100.0% (47 of 47 strings) Translation: account-financial-reporting-12.0/account-financial-reporting-12.0-account_tax_balance Translate-URL: https://translation.odoo-community.org/projects/account-financial-reporting-12-0/account-financial-reporting-12-0-account_tax_balance/fr/ --- account_tax_balance/i18n/fr.po | 53 +++++++++++++++++----------------- 1 file changed, 26 insertions(+), 27 deletions(-) diff --git a/account_tax_balance/i18n/fr.po b/account_tax_balance/i18n/fr.po index a790479d..21a1d92a 100644 --- a/account_tax_balance/i18n/fr.po +++ b/account_tax_balance/i18n/fr.po @@ -9,21 +9,21 @@ msgstr "" "Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2017-01-19 01:37+0000\n" -"PO-Revision-Date: 2019-05-01 20:02+0000\n" -"Last-Translator: Katerina Katapodi \n" +"PO-Revision-Date: 2021-08-03 17:49+0000\n" +"Last-Translator: Pascal GOUHIER \n" "Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 3.5.1\n" +"X-Generator: Weblate 4.3.2\n" #. module: account_tax_balance #: code:addons/account_tax_balance/wizard/open_tax_balances.py:48 #, python-format msgid "%(name)s: %(target)s from %(from)s to %(to)s" -msgstr "" +msgstr "%(name)s : %(target)s du %(from)s au %(to)s" #. module: account_tax_balance #: model_terms:ir.ui.view,arch_db:account_tax_balance.view_tax_search_balance @@ -34,7 +34,7 @@ msgstr "Compte" #: model_terms:ir.ui.view,arch_db:account_tax_balance.view_tax_search_balance #: model_terms:ir.ui.view,arch_db:account_tax_balance.view_tax_tree_balance msgid "Account Tax" -msgstr "Impot de Compte" +msgstr "Compte de Taxe" #. module: account_tax_balance #: selection:wizard.open.tax.balances,target_move:0 @@ -54,7 +54,7 @@ msgstr "Solde" #. module: account_tax_balance #: model:ir.model.fields,field_description:account_tax_balance.field_account_tax__balance_refund msgid "Balance Refund" -msgstr "Solde Rembourse" +msgstr "Solde du Remboursement" #. module: account_tax_balance #: model:ir.model.fields,field_description:account_tax_balance.field_account_tax__base_balance_regular @@ -109,12 +109,12 @@ msgstr "A partir de la date" #. module: account_tax_balance #: model_terms:ir.ui.view,arch_db:account_tax_balance.view_tax_search_balance msgid "Group By" -msgstr "Groupe de" +msgstr "Grouper Par" #. module: account_tax_balance #: model:ir.model.fields,field_description:account_tax_balance.field_account_tax__has_moves msgid "Has balance in period" -msgstr "Le Solde de la Periode" +msgstr "Solde de la Periode" #. module: account_tax_balance #: model:ir.model.fields,field_description:account_tax_balance.field_wizard_open_tax_balances__id @@ -123,14 +123,13 @@ msgstr "ID" #. module: account_tax_balance #: model:ir.model,name:account_tax_balance.model_account_move -#, fuzzy msgid "Journal Entries" -msgstr "Écritures comptabilisées + non-comptabilisées" +msgstr "Écritures comptabilisées + provisoires" #. module: account_tax_balance #: model:ir.model,name:account_tax_balance.model_account_move_line msgid "Journal Item" -msgstr "" +msgstr "Écritures" #. module: account_tax_balance #: model:ir.model.fields,field_description:account_tax_balance.field_wizard_open_tax_balances____last_update @@ -150,17 +149,17 @@ msgstr "Dernière mise à jour le" #. module: account_tax_balance #: model:ir.model.fields,field_description:account_tax_balance.field_account_move__move_type msgid "Move Type" -msgstr "Type Change" +msgstr "Type de mouvement comptable" #. module: account_tax_balance #: model_terms:ir.ui.view,arch_db:account_tax_balance.view_account_move_filter msgid "Move type" -msgstr "Type change" +msgstr "Type de mouvement comptable" #. module: account_tax_balance #: model_terms:ir.ui.view,arch_db:account_tax_balance.wizard_open_tax_balances msgid "Open Taxes" -msgstr "Taxes Ouverts" +msgstr "Encours de Taxes" #. module: account_tax_balance #: model_terms:ir.ui.view,arch_db:account_tax_balance.view_tax_search_balance @@ -176,7 +175,7 @@ msgstr "Écritures ciblées" #. module: account_tax_balance #: model:ir.model,name:account_tax_balance.model_account_tax msgid "Tax" -msgstr "Impot" +msgstr "Taxe" #. module: account_tax_balance #: model_terms:ir.ui.view,arch_db:account_tax_balance.view_tax_search_balance @@ -186,7 +185,7 @@ msgstr "Groupe de Taxes" #. module: account_tax_balance #: model_terms:ir.ui.view,arch_db:account_tax_balance.view_tax_search_balance msgid "Tax Scope" -msgstr "But du Taxe" +msgstr "Domaine de la taxe" #. module: account_tax_balance #: model:ir.actions.act_window,name:account_tax_balance.action_open_tax_balances @@ -195,12 +194,12 @@ msgstr "But du Taxe" #: model:ir.ui.menu,name:account_tax_balance.menu_tax_balances #: model_terms:ir.ui.view,arch_db:account_tax_balance.wizard_open_tax_balances msgid "Taxes Balance" -msgstr "Taxes Totaux" +msgstr "Solde des Taxes" #. module: account_tax_balance #: model:ir.model.fields,field_description:account_tax_balance.field_wizard_open_tax_balances__to_date msgid "To date" -msgstr "jusqu'au jour" +msgstr "Jusqu'au" #. module: account_tax_balance #: model_terms:ir.ui.view,arch_db:account_tax_balance.view_tax_tree_balance @@ -215,48 +214,48 @@ msgstr "Solde Total" #. module: account_tax_balance #: model:ir.model.fields,field_description:account_tax_balance.field_account_tax__base_balance msgid "Total Base Balance" -msgstr "Solde de Base Total" +msgstr "Solde Total des bases de taxe" #. module: account_tax_balance #: code:addons/account_tax_balance/models/account_tax.py:90 #, python-format msgid "Unsupported search operator" -msgstr "Gestionnaire de Recherche Non-appuye" +msgstr "Critère de recherche non valable" #. module: account_tax_balance #: model_terms:ir.ui.view,arch_db:account_tax_balance.view_tax_tree_balance msgid "View base lines" -msgstr "Voir lignes de base" +msgstr "Vue des lignes des bases de taxe" #. module: account_tax_balance #: model_terms:ir.ui.view,arch_db:account_tax_balance.view_tax_tree_balance msgid "View base refund lines" -msgstr "Voir les lignes de base de la somme remboursee" +msgstr "Vue des lignes des bases remboursées" #. module: account_tax_balance #: model_terms:ir.ui.view,arch_db:account_tax_balance.view_tax_tree_balance msgid "View base regular lines" -msgstr "Voir lignes de bases regulieres" +msgstr "Vue des lignes régulières des bases de taxe" #. module: account_tax_balance #: model_terms:ir.ui.view,arch_db:account_tax_balance.view_tax_tree_balance msgid "View tax lines" -msgstr "Visualiser les lignes d'impots" +msgstr "Vue des lignes de taxes" #. module: account_tax_balance #: model_terms:ir.ui.view,arch_db:account_tax_balance.view_tax_tree_balance msgid "View tax refund lines" -msgstr "Visualiser les lignes des taxes remboursees" +msgstr "Vue des lignes des taxes remboursées" #. module: account_tax_balance #: model_terms:ir.ui.view,arch_db:account_tax_balance.view_tax_tree_balance msgid "View tax regular lines" -msgstr "Voir lignes des taxes de la somme remboursee" +msgstr "Vue des lignes de taxes régulières" #. module: account_tax_balance #: model:ir.model,name:account_tax_balance.model_wizard_open_tax_balances msgid "Wizard Open Tax Balances" -msgstr "Mage Soldes de Taxes Ouverts" +msgstr "Utilitaire des Soldes de Taxes" #. module: account_tax_balance #: model_terms:ir.ui.view,arch_db:account_tax_balance.wizard_open_tax_balances From e91c2f9e37dfc45205417cff859224e2c7145318 Mon Sep 17 00:00:00 2001 From: Pascal GOUHIER Date: Tue, 3 Aug 2021 15:18:14 +0000 Subject: [PATCH 24/29] Translated using Weblate (French) Currently translated at 100.0% (79 of 79 strings) Translation: account-financial-reporting-12.0/account-financial-reporting-12.0-partner_statement Translate-URL: https://translation.odoo-community.org/projects/account-financial-reporting-12-0/account-financial-reporting-12-0-partner_statement/fr/ --- partner_statement/i18n/fr.po | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/partner_statement/i18n/fr.po b/partner_statement/i18n/fr.po index be7ecf88..0052f9d0 100644 --- a/partner_statement/i18n/fr.po +++ b/partner_statement/i18n/fr.po @@ -10,15 +10,15 @@ msgstr "" "Project-Id-Version: Odoo Server 11.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-02-28 10:11+0000\n" -"PO-Revision-Date: 2019-10-11 16:37+0000\n" -"Last-Translator: Khalid Hazam \n" +"PO-Revision-Date: 2021-08-03 17:49+0000\n" +"Last-Translator: Pascal GOUHIER \n" "Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 3.8\n" +"X-Generator: Weblate 4.3.2\n" #. module: partner_statement #: code:addons/partner_statement/report/report_statement_common.py:243 @@ -30,7 +30,7 @@ msgstr "1-30 jours" #: code:addons/partner_statement/report/report_statement_common.py:254 #, python-format msgid "1 Month" -msgstr "1 mois" +msgstr "1 Mois" #. module: partner_statement #: code:addons/partner_statement/report/report_statement_common.py:247 @@ -42,13 +42,13 @@ msgstr "+120 jours" #: code:addons/partner_statement/report/report_statement_common.py:255 #, python-format msgid "2 Months" -msgstr "2 mois" +msgstr "2 Mois" #. module: partner_statement #: code:addons/partner_statement/report/report_statement_common.py:256 #, python-format msgid "3 Months" -msgstr "3 mois" +msgstr "3 Mois" #. module: partner_statement #: code:addons/partner_statement/report/report_statement_common.py:244 @@ -389,7 +389,7 @@ msgstr "Paiement" #. module: partner_statement #: model_terms:ir.ui.view,arch_db:partner_statement.res_config_settings_view_form msgid "Please set defaults under Activity Statements." -msgstr "Merci d'indiquer les valeurs par défaut dans le relevé de compte" +msgstr "Merci d'indiquer les valeurs par défaut dans le relevé de compte." #. module: partner_statement #: selection:activity.statement.wizard,account_type:0 From fd988d560518eca5d1ba52f7541df6c3203148b4 Mon Sep 17 00:00:00 2001 From: jcleonard2018 Date: Tue, 3 Aug 2021 14:29:17 +0000 Subject: [PATCH 25/29] Translated using Weblate (French) Currently translated at 100.0% (79 of 79 strings) Translation: account-financial-reporting-12.0/account-financial-reporting-12.0-partner_statement Translate-URL: https://translation.odoo-community.org/projects/account-financial-reporting-12-0/account-financial-reporting-12-0-partner_statement/fr/ --- partner_statement/i18n/fr.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/partner_statement/i18n/fr.po b/partner_statement/i18n/fr.po index 0052f9d0..be0b77e6 100644 --- a/partner_statement/i18n/fr.po +++ b/partner_statement/i18n/fr.po @@ -11,7 +11,7 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-02-28 10:11+0000\n" "PO-Revision-Date: 2021-08-03 17:49+0000\n" -"Last-Translator: Pascal GOUHIER \n" +"Last-Translator: jcleonard2018 \n" "Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" "Language: fr\n" "MIME-Version: 1.0\n" @@ -121,7 +121,7 @@ msgstr "afficher toutes les transactions entre deux dates." #: selection:res.config.settings,default_aging_type:0 #: selection:statement.common.wizard,aging_type:0 msgid "Age by Days" -msgstr "Age par jours" +msgstr "Age en jours" #. module: partner_statement #: selection:activity.statement.wizard,aging_type:0 From 42b9df84afe9d7ffe4e28e598f99ca0c9240d8e4 Mon Sep 17 00:00:00 2001 From: Pascal GOUHIER Date: Tue, 3 Aug 2021 16:10:41 +0000 Subject: [PATCH 26/29] Translated using Weblate (French) Currently translated at 100.0% (333 of 333 strings) Translation: account-financial-reporting-12.0/account-financial-reporting-12.0-account_financial_report Translate-URL: https://translation.odoo-community.org/projects/account-financial-reporting-12-0/account-financial-reporting-12-0-account_financial_report/fr/ --- account_financial_report/i18n/fr.po | 153 ++++++++++++++-------------- 1 file changed, 74 insertions(+), 79 deletions(-) diff --git a/account_financial_report/i18n/fr.po b/account_financial_report/i18n/fr.po index d8ff1196..9947547a 100644 --- a/account_financial_report/i18n/fr.po +++ b/account_financial_report/i18n/fr.po @@ -9,15 +9,15 @@ msgstr "" "Project-Id-Version: Odoo Server 11.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-03-16 08:14+0000\n" -"PO-Revision-Date: 2019-12-24 12:05+0000\n" -"Last-Translator: Martronic SA \n" +"PO-Revision-Date: 2021-08-03 17:49+0000\n" +"Last-Translator: Pascal GOUHIER \n" "Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 3.9.1\n" +"X-Generator: Weblate 4.3.2\n" #. module: account_financial_report #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_lines_header @@ -58,12 +58,12 @@ msgstr " Synthèse des taxes" #. module: account_financial_report #: model_terms:ir.ui.view,arch_db:account_financial_report.report_buttons msgid " Export" -msgstr "Exporter" +msgstr " Exporter" #. module: account_financial_report #: model_terms:ir.ui.view,arch_db:account_financial_report.report_buttons msgid " Print" -msgstr "Imprimer" +msgstr " Imprimer" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_account_financial_report_abstract @@ -132,9 +132,8 @@ msgstr "Type de Compte" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__account_type_ids -#, fuzzy msgid "Account Types" -msgstr "Type de Compte" +msgstr "Types de Compte" #. module: account_financial_report #: code:addons/account_financial_report/report/trial_balance_xlsx.py:109 @@ -191,7 +190,9 @@ msgstr "90 jours" msgid "" "Age ≤ 120\n" " d." -msgstr "≤ 120 jours" +msgstr "" +"Arriété ≤ 120\n" +" J." #. module: account_financial_report #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:50 @@ -226,7 +227,7 @@ msgstr "≤ 60 jours" #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:91 #, python-format msgid "Age ≤ 60 d." -msgstr "≤ 60 j." +msgstr "Arriéré ≤ 60 j." #. module: account_financial_report #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines @@ -319,7 +320,7 @@ msgstr "Toutes les écritures postées" #. module: account_financial_report #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header msgid "Amount Cur." -msgstr "Montant Devise" +msgstr "Montant Dev." #. module: account_financial_report #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:82 @@ -344,7 +345,7 @@ msgstr "Montant résiduel Devise" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_open_items_move_line__amount_total_due msgid "Amount Total Due" -msgstr "Total montant dû" +msgstr "Montant total dû" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_open_items_move_line__amount_total_due_currency @@ -356,7 +357,7 @@ msgstr "Total montant dû Devise" #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines #, python-format msgid "Amount cur." -msgstr "Montant Devise" +msgstr "Montant Dev." #. module: account_financial_report #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes @@ -523,13 +524,13 @@ msgid "" "grouping.\n" " " msgstr "" -"Comptes calculés: À utiliser lorsque les groupes de comptes ont des codes\n" +"Comptes calculés : À utiliser lorsque les groupes de comptes ont des codes\n" " qui représentent des préfixes des comptes actuels.\n" "\n" -" Comptes enfants: À utiliser lorsque vos groupes de comptes sont " +" Comptes enfants : À utiliser lorsque vos groupes de comptes sont " "hiérarchisés.\n" "\n" -" Pas de hiérarchie: À utiliser pour n'afficher que les comptes sans " +" Pas de hiérarchie : À utiliser pour n'afficher que les comptes sans " "aucun groupement.\n" " " @@ -1036,7 +1037,7 @@ msgstr "Export PDF" #: model_terms:ir.ui.view,arch_db:account_financial_report.trial_balance_wizard #: model_terms:ir.ui.view,arch_db:account_financial_report.vat_report_wizard msgid "Export XLSX" -msgstr "Export XLSX" +msgstr "Exporter en XLSX" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_aged_partner_balance__filter_account_ids @@ -1170,7 +1171,7 @@ msgstr "Devise étrangère" #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters msgid "From:" -msgstr "Du:" +msgstr "Du :" #. module: account_financial_report #: code:addons/account_financial_report/report/general_ledger_xlsx.py:77 @@ -1178,16 +1179,15 @@ msgstr "Du:" #: code:addons/account_financial_report/report/trial_balance_xlsx.py:105 #, python-format msgid "From: %s To: %s" -msgstr "Du: %s au: %s" +msgstr "Du : %s au : %s" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__fy_start_date #: model:ir.model.fields,field_description:account_financial_report.field_report_general_ledger__fy_start_date #: model:ir.model.fields,field_description:account_financial_report.field_report_trial_balance__fy_start_date #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__fy_start_date -#, fuzzy msgid "Fy Start Date" -msgstr "Af Date de début" +msgstr "Date de début d'ex." #. module: account_financial_report #: code:addons/account_financial_report/report/general_ledger_xlsx.py:15 @@ -1339,7 +1339,7 @@ msgstr "" #: model:ir.model.fields,help:account_financial_report.field_general_ledger_report_wizard__partner_ungrouped #: model:ir.model.fields,help:account_financial_report.field_report_general_ledger__partner_ungrouped msgid "If set moves are not grouped by partner in any case" -msgstr "" +msgstr "Si configuré les écritures ne sont jamais groupées par partenaires" #. module: account_financial_report #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header @@ -1396,7 +1396,6 @@ msgstr "Solde initial dev." #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_general_ledger_account__is_partner_account -#, fuzzy msgid "Is Partner Account" msgstr "Est un compte partenaire" @@ -1430,7 +1429,7 @@ msgstr "Écriture comptable" #: model:ir.actions.report,name:account_financial_report.action_report_journal_ledger_html #: model:ir.actions.report,name:account_financial_report.action_report_journal_ledger_qweb #: model:ir.ui.menu,name:account_financial_report.menu_journal_ledger_wizard -#, fuzzy, python-format +#, python-format msgid "Journal Ledger" msgstr "Livre des journaux" @@ -1441,9 +1440,8 @@ msgstr "Livre des Journaux -" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_journal_ledger_report_wizard -#, fuzzy msgid "Journal Ledger Report Wizard" -msgstr "Dialogue du rapport du Livre des Journaux" +msgstr "Utilitaire de Rapport du Livre des Journaux" #. module: account_financial_report #: model:ir.actions.report,name:account_financial_report.action_report_journal_ledger_xlsx @@ -1796,9 +1794,8 @@ msgstr "Original" #. module: account_financial_report #: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard -#, fuzzy msgid "Other options" -msgstr "Options" +msgstr "Autres Options" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_trial_balance_account__parent_id @@ -1874,7 +1871,7 @@ msgstr "Solde de clôture du partenaire" #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__partner_ungrouped #: model:ir.model.fields,field_description:account_financial_report.field_report_general_ledger__partner_ungrouped msgid "Partner ungrouped" -msgstr "" +msgstr "Partenaires non regroupés" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_wizard__payable_accounts_only @@ -2002,7 +1999,7 @@ msgstr "Rapport" #: model:ir.model.fields,field_description:account_financial_report.field_report_open_items_partner__report_account_id #: model:ir.model.fields,field_description:account_financial_report.field_report_trial_balance_partner__report_account_id msgid "Report Account" -msgstr "" +msgstr "Rapport Comptable" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_journal_ledger__report_journal_ledger_ids @@ -2010,26 +2007,25 @@ msgstr "" #: model:ir.model.fields,field_description:account_financial_report.field_report_journal_ledger_move__report_journal_ledger_id #: model:ir.model.fields,field_description:account_financial_report.field_report_journal_ledger_move_line__report_journal_ledger_id msgid "Report Journal Ledger" -msgstr "" +msgstr "Grand Livre" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_journal_ledger__report_journal_ledger_tax_line_ids msgid "Report Journal Ledger Tax Line" -msgstr "" +msgstr "Grand Livre - Taxes" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_journal_ledger__report_move_ids #: model:ir.model.fields,field_description:account_financial_report.field_report_journal_ledger_journal__report_move_ids #: model:ir.model.fields,field_description:account_financial_report.field_report_journal_ledger_move_line__report_move_id -#, fuzzy msgid "Report Move" -msgstr "Écritures ciblées" +msgstr "Journaux" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_journal_ledger__report_move_line_ids #: model:ir.model.fields,field_description:account_financial_report.field_report_journal_ledger_move__report_move_line_ids msgid "Report Move Line" -msgstr "" +msgstr "Ecritures" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_aged_partner_balance_line__report_partner_id @@ -2037,18 +2033,18 @@ msgstr "" #: model:ir.model.fields,field_description:account_financial_report.field_report_general_ledger_move_line__report_partner_id #: model:ir.model.fields,field_description:account_financial_report.field_report_open_items_move_line__report_partner_id msgid "Report Partner" -msgstr "" +msgstr "Partenaires" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_vat_report_tax__report_tax_id msgid "Report Tax" -msgstr "" +msgstr "Taxes" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_journal_ledger__report_tax_line_ids #: model:ir.model.fields,field_description:account_financial_report.field_report_journal_ledger_journal__report_tax_line_ids msgid "Report Tax Line" -msgstr "" +msgstr "Lignes de taxe" #. module: account_financial_report #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:21 @@ -2059,12 +2055,12 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines #, python-format msgid "Residual" -msgstr "" +msgstr "Solde dû" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_trial_balance_account__sequence msgid "Sequence" -msgstr "" +msgstr "Séquence" #. module: account_financial_report #: code:addons/account_financial_report/report/general_ledger_xlsx.py:86 @@ -2235,9 +2231,8 @@ msgstr "ID de taxe" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_journal_ledger_journal_tax_line__tax_name #: model:ir.model.fields,field_description:account_financial_report.field_report_journal_ledger_report_tax_line__tax_name -#, fuzzy msgid "Tax Name" -msgstr "Nom affiché" +msgstr "Nom de taxe" #. module: account_financial_report #: selection:report_vat_report,based_on:0 @@ -2315,7 +2310,7 @@ msgstr "Le niveau de hiérarchie à filtrer doit être plus rand que 0." #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters msgid "To:" -msgstr "Au:" +msgstr "Au :" #. module: account_financial_report #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:161 @@ -2457,184 +2452,184 @@ msgstr "ou" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_report_a_f_r_report_aged_partner_balance_xlsx msgid "report.a_f_r.report_aged_partner_balance_xlsx" -msgstr "" +msgstr "rapport.rapport_comptable_financier.balance_agee_xlsx" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_report_a_f_r_report_general_ledger_xlsx msgid "report.a_f_r.report_general_ledger_xlsx" -msgstr "" +msgstr "rapport.rapport_comptable_financier.rapport_grand_livre_general_xlsx" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_report_a_f_r_report_journal_ledger_xlsx msgid "report.a_f_r.report_journal_ledger_xlsx" -msgstr "" +msgstr "rapport.rapport_comptable_financier.rapport_livre_journal_xlsx" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_report_a_f_r_report_open_items_xlsx msgid "report.a_f_r.report_open_items_xlsx" -msgstr "" +msgstr "rapport.rapport_comptable_financier.rapport_elements_non_soldes_xlsx" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_report_a_f_r_report_trial_balance_xlsx msgid "report.a_f_r.report_trial_balance_xlsx" -msgstr "" +msgstr "rapport.rapport_comptable_financier.rapport_balance_generale_xlsx" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_report_a_f_r_report_vat_report_xlsx msgid "report.a_f_r.report_vat_report_xlsx" -msgstr "" +msgstr "rapport.rapport_comptable_financier.rapport_TVA_xlsx" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_report_account_financial_report_abstract_report_xlsx msgid "report.account_financial_report.abstract_report_xlsx" -msgstr "" +msgstr "rapport.rapport_comptable_financier.rapport_resume_xlsx" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_report_aged_partner_balance msgid "report_aged_partner_balance" -msgstr "" +msgstr "rapport_balance_agee_partenaires" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_report_aged_partner_balance_account msgid "report_aged_partner_balance_account" -msgstr "" +msgstr "rapport_balance_agee_partenaires_compte" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_report_aged_partner_balance_line msgid "report_aged_partner_balance_line" -msgstr "" +msgstr "rapport_balance_agee_partenaires_ligne" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_report_aged_partner_balance_move_line msgid "report_aged_partner_balance_move_line" -msgstr "" +msgstr "rapport_balance_agee_partenaire_ligne_ecriture" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_report_aged_partner_balance_partner msgid "report_aged_partner_balance_partner" -msgstr "" +msgstr "rapport_balance_agee_partenaires" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_report_general_ledger msgid "report_general_ledger" -msgstr "" +msgstr "rapport_grand_livre" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_report_general_ledger_account msgid "report_general_ledger_account" -msgstr "" +msgstr "rapport_grand_livre_compte" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_report_general_ledger_move_line msgid "report_general_ledger_move_line" -msgstr "" +msgstr "rapport_grand_livre_ecriture" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_report_general_ledger_partner msgid "report_general_ledger_partner" -msgstr "" +msgstr "rapport_grand_livre_partenaire" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_report_journal_ledger msgid "report_journal_ledger" -msgstr "" +msgstr "rapport_livre_journal" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_report_journal_ledger_journal msgid "report_journal_ledger_journal" -msgstr "" +msgstr "rapport_livre_journal_journal" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_report_journal_ledger_journal_tax_line msgid "report_journal_ledger_journal_tax_line" -msgstr "" +msgstr "rapport_livre_journal_journal_ligne_taxe" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_report_journal_ledger_move msgid "report_journal_ledger_move" -msgstr "" +msgstr "rapport_livre_journal_piece" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_report_journal_ledger_move_line msgid "report_journal_ledger_move_line" -msgstr "" +msgstr "rapport_livre_journal_piece_ligne" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_report_journal_ledger_report_tax_line msgid "report_journal_ledger_report_tax_line" -msgstr "" +msgstr "rapport_livre_journal_rapport_ligne_taxe" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_report_open_items msgid "report_open_items" -msgstr "" +msgstr "rapport_elements_non_soldes" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_report_open_items_account msgid "report_open_items_account" -msgstr "" +msgstr "rapport_elements_non_soldes_compte" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_report_open_items_move_line msgid "report_open_items_move_line" -msgstr "" +msgstr "rapport_elements_non_soldes_ligne" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_report_open_items_partner msgid "report_open_items_partner" -msgstr "" +msgstr "rapport_elements_non_soldes_partenaire" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_report_trial_balance msgid "report_trial_balance" -msgstr "" +msgstr "rapport_balance_generale" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_report_trial_balance_account msgid "report_trial_balance_account" -msgstr "" +msgstr "rapport_balance_generale_compte" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_report_trial_balance_partner msgid "report_trial_balance_partner" -msgstr "" +msgstr "rapport_balance_generale_partenaire" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_report_vat_report msgid "report_vat_report" -msgstr "" +msgstr "rapport_rapport_TVA" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_report_vat_report_tax msgid "report_vat_report_tax" -msgstr "" +msgstr "rapport_rapport_TVA_taxe" #. module: account_financial_report #: model:ir.model,name:account_financial_report.model_report_vat_report_taxtag msgid "report_vat_report_taxtag" -msgstr "" +msgstr "rapport_rapport_tva_etiquetteDeTaxe" #. module: account_financial_report #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal msgid "to" -msgstr "à" +msgstr "au" #. module: account_financial_report #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header msgid "width: 23.24%;" -msgstr "" +msgstr "largeur : 23.24% ;" #. module: account_financial_report #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header msgid "width: 23.78%;" -msgstr "" +msgstr "largeur : 23.78% ;" #. module: account_financial_report #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header msgid "width: 38.92%;" -msgstr "" +msgstr "largeur : 38.92% ;" #. module: account_financial_report #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header msgid "width: 8.11%;" -msgstr "" +msgstr "largeur : 8.11% ;" From d94849cfdc383de04329ae24abcf0f06f4f23ed9 Mon Sep 17 00:00:00 2001 From: jcleonard2018 Date: Tue, 3 Aug 2021 14:35:15 +0000 Subject: [PATCH 27/29] Translated using Weblate (French) Currently translated at 100.0% (333 of 333 strings) Translation: account-financial-reporting-12.0/account-financial-reporting-12.0-account_financial_report Translate-URL: https://translation.odoo-community.org/projects/account-financial-reporting-12-0/account-financial-reporting-12-0-account_financial_report/fr/ --- account_financial_report/i18n/fr.po | 28 +++++++++++++++++----------- 1 file changed, 17 insertions(+), 11 deletions(-) diff --git a/account_financial_report/i18n/fr.po b/account_financial_report/i18n/fr.po index 9947547a..d71babd0 100644 --- a/account_financial_report/i18n/fr.po +++ b/account_financial_report/i18n/fr.po @@ -10,7 +10,7 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-03-16 08:14+0000\n" "PO-Revision-Date: 2021-08-03 17:49+0000\n" -"Last-Translator: Pascal GOUHIER \n" +"Last-Translator: jcleonard2018 \n" "Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" "Language: fr\n" "MIME-Version: 1.0\n" @@ -165,25 +165,25 @@ msgstr "Activer la centralisation" #: model:ir.model.fields,field_description:account_financial_report.field_report_aged_partner_balance_line__age_120_days #: model:ir.model.fields,field_description:account_financial_report.field_report_aged_partner_balance_move_line__age_120_days msgid "Age 120 Days" -msgstr "120 jours" +msgstr "Arriéré 120 jours" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_aged_partner_balance_line__age_30_days #: model:ir.model.fields,field_description:account_financial_report.field_report_aged_partner_balance_move_line__age_30_days msgid "Age 30 Days" -msgstr "30 jours" +msgstr "Arriéré 30 jours" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_aged_partner_balance_line__age_60_days #: model:ir.model.fields,field_description:account_financial_report.field_report_aged_partner_balance_move_line__age_60_days msgid "Age 60 Days" -msgstr "60 jours" +msgstr "Arriéré 60 jours" #. module: account_financial_report #: model:ir.model.fields,field_description:account_financial_report.field_report_aged_partner_balance_line__age_90_days #: model:ir.model.fields,field_description:account_financial_report.field_report_aged_partner_balance_move_line__age_90_days msgid "Age 90 Days" -msgstr "90 jours" +msgstr "Arriéré 90 jours" #. module: account_financial_report #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines @@ -199,28 +199,32 @@ msgstr "" #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:105 #, python-format msgid "Age ≤ 120 d." -msgstr "≤ 120 jours" +msgstr "Arriéré ≤ 120 j." #. module: account_financial_report #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines msgid "" "Age ≤ 30\n" " d." -msgstr "≤ 30 jours" +msgstr "" +"Arriéré ≤ 30\n" +" j." #. module: account_financial_report #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:32 #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:84 #, python-format msgid "Age ≤ 30 d." -msgstr "≤ 30 j." +msgstr "Arriéré ≤ 30 j." #. module: account_financial_report #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines msgid "" "Age ≤ 60\n" " d." -msgstr "≤ 60 jours" +msgstr "" +"Arriéré ≤ 60\n" +" j." #. module: account_financial_report #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:38 @@ -234,14 +238,16 @@ msgstr "Arriéré ≤ 60 j." msgid "" "Age ≤ 90\n" " d." -msgstr "≤ 90 j." +msgstr "" +"Arriéré ≤ 90\n" +" j." #. module: account_financial_report #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:44 #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:98 #, python-format msgid "Age ≤ 90 d." -msgstr "≤ 90 j." +msgstr "Arriéré ≤ 90 j." #. module: account_financial_report #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:14 From b735f72d1b34ae0a68b6d8f8aba2668abeec6a41 Mon Sep 17 00:00:00 2001 From: Pascal GOUHIER Date: Tue, 3 Aug 2021 15:17:38 +0000 Subject: [PATCH 28/29] Translated using Weblate (French) Currently translated at 100.0% (49 of 49 strings) Translation: account-financial-reporting-12.0/account-financial-reporting-12.0-account_export_csv Translate-URL: https://translation.odoo-community.org/projects/account-financial-reporting-12-0/account-financial-reporting-12-0-account_export_csv/fr/ --- account_export_csv/i18n/fr.po | 35 ++++++++++++++++++----------------- 1 file changed, 18 insertions(+), 17 deletions(-) diff --git a/account_export_csv/i18n/fr.po b/account_export_csv/i18n/fr.po index 60b7cb18..58e47ea2 100644 --- a/account_export_csv/i18n/fr.po +++ b/account_export_csv/i18n/fr.po @@ -7,26 +7,26 @@ msgstr "" "Project-Id-Version: OpenERP Server 7.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-04-10 15:11+0000\n" -"PO-Revision-Date: 2020-10-16 10:09+0000\n" -"Last-Translator: vdewulf \n" +"PO-Revision-Date: 2021-08-03 17:49+0000\n" +"Last-Translator: Pascal GOUHIER \n" "Language-Team: \n" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 3.10\n" +"X-Generator: Weblate 4.3.2\n" #. module: account_export_csv #: model_terms:ir.ui.view,arch_db:account_export_csv.account_csv_export_view msgid "" -msgstr "" +msgstr "" #. module: account_export_csv #: code:addons/account_export_csv/wizard/account_export_csv.py:256 #, python-format msgid "ACCOUNT CODE" -msgstr "CODE DU COMPTE" +msgstr "Numéro de compte" #. module: account_export_csv #: code:addons/account_export_csv/wizard/account_export_csv.py:175 @@ -39,7 +39,7 @@ msgstr "NOM DU COMPTE" #: code:addons/account_export_csv/wizard/account_export_csv.py:269 #, python-format msgid "AMOUNT CURRENCY" -msgstr "MONTANT" +msgstr "MONTANT EN DEVISE" #. module: account_export_csv #: code:addons/account_export_csv/wizard/account_export_csv.py:263 @@ -51,7 +51,7 @@ msgstr "CODE DU COMPTE ANALYTIQUE" #: code:addons/account_export_csv/wizard/account_export_csv.py:271 #, python-format msgid "ANALYTIC ACCOUNT NAME" -msgstr "NOM DU CODE ANALYTIQUE" +msgstr "NOM DU COMPTE ANALYTIQUE" #. module: account_export_csv #: code:addons/account_export_csv/wizard/account_export_csv.py:172 @@ -94,7 +94,7 @@ msgstr "RELEVE BANCAIRE" #. module: account_export_csv #: code:addons/account_export_csv/wizard/account_export_csv.py:117 #: code:addons/account_export_csv/wizard/account_export_csv.py:174 -#, fuzzy, python-format +#, python-format msgid "CODE" msgstr "CODE" @@ -170,7 +170,7 @@ msgstr "Date de fin" #. module: account_export_csv #: model:ir.model.fields,field_description:account_export_csv.field_account_csv_export__date_start msgid "Date Start" -msgstr "Date de début" +msgstr "Date de début de période" #. module: account_export_csv #: model:ir.model.fields,field_description:account_export_csv.field_account_csv_export__date_range_id @@ -186,7 +186,7 @@ msgstr "Nom affiché" #: code:addons/account_export_csv/wizard/account_export_csv.py:266 #, python-format msgid "ENTRY NUMBER" -msgstr "" +msgstr "Numéro d'écriture" #. module: account_export_csv #: model:ir.model,name:account_export_csv.model_account_csv_export @@ -213,6 +213,7 @@ msgstr "ID" #: model:ir.model.fields,help:account_export_csv.field_account_csv_export__journal_ids msgid "If empty, use all journals, only used for journal entries" msgstr "" +"Si vide, utilise tous les journaux, utilisé uniquement pour les écritures" #. module: account_export_csv #: code:addons/account_export_csv/wizard/account_export_csv.py:272 @@ -229,7 +230,7 @@ msgstr "CODE DU JOURNAL" #. module: account_export_csv #: model_terms:ir.ui.view,arch_db:account_export_csv.account_csv_export_view msgid "Journal Entries" -msgstr "Mouvements du journal" +msgstr "Ecritures comptables" #. module: account_export_csv #: model:ir.model.fields,field_description:account_export_csv.field_account_csv_export__journal_ids @@ -261,30 +262,30 @@ msgstr "NOM" #: code:addons/account_export_csv/wizard/account_export_csv.py:257 #, python-format msgid "PARTNER NAME" -msgstr "NOM DU PARTENAIRE" +msgstr "Nom du partenaire" #. module: account_export_csv #: code:addons/account_export_csv/wizard/account_export_csv.py:258 #, python-format msgid "REF" -msgstr "" +msgstr "REF" #. module: account_export_csv #: model_terms:ir.ui.view,arch_db:account_export_csv.account_csv_export_view msgid "Report" -msgstr "" +msgstr "Rapport" #. module: account_export_csv #: code:addons/account_export_csv/wizard/account_export_csv.py:273 #, python-format msgid "TAX CODE" -msgstr "" +msgstr "CODE DE TAXE" #. module: account_export_csv #: code:addons/account_export_csv/wizard/account_export_csv.py:274 #, python-format msgid "TAX NAME" -msgstr "" +msgstr "NOM DE TAXE" #. module: account_export_csv #: model_terms:ir.ui.view,arch_db:account_export_csv.account_csv_export_view @@ -294,7 +295,7 @@ msgstr "Balance générale" #. module: account_export_csv #: model_terms:ir.ui.view,arch_db:account_export_csv.account_csv_export_view msgid "or" -msgstr "" +msgstr "ou" #~ msgid "All periods in the fiscal year if empty" #~ msgstr "Toutes les périodes de l'année fiscale si vide" From d06f0683241bc00d7f90d13d8d7584c4195e1b24 Mon Sep 17 00:00:00 2001 From: Pascal GOUHIER Date: Tue, 3 Aug 2021 16:05:45 +0000 Subject: [PATCH 29/29] Translated using Weblate (French) Currently translated at 100.0% (52 of 52 strings) Translation: account-financial-reporting-12.0/account-financial-reporting-12.0-mis_builder_cash_flow Translate-URL: https://translation.odoo-community.org/projects/account-financial-reporting-12-0/account-financial-reporting-12-0-mis_builder_cash_flow/fr/ --- mis_builder_cash_flow/i18n/fr.po | 107 ++++++++++++++++--------------- 1 file changed, 55 insertions(+), 52 deletions(-) diff --git a/mis_builder_cash_flow/i18n/fr.po b/mis_builder_cash_flow/i18n/fr.po index ddf62c63..d37da5ce 100644 --- a/mis_builder_cash_flow/i18n/fr.po +++ b/mis_builder_cash_flow/i18n/fr.po @@ -6,53 +6,55 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 12.0\n" "Report-Msgid-Bugs-To: \n" -"Last-Translator: Automatically generated\n" +"PO-Revision-Date: 2021-08-03 17:49+0000\n" +"Last-Translator: Pascal GOUHIER \n" "Language-Team: none\n" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 4.3.2\n" #. module: mis_builder_cash_flow #: model:mis.report.instance.period,name:mis_builder_cash_flow.mis_period_plus_1w msgid "+1w" -msgstr "" +msgstr "+1s" #. module: mis_builder_cash_flow #: model:mis.report.instance.period,name:mis_builder_cash_flow.mis_period_plus_2w msgid "+2w" -msgstr "" +msgstr "+2s" #. module: mis_builder_cash_flow #: model:mis.report.instance.period,name:mis_builder_cash_flow.mis_period_plus_3w msgid "+3w" -msgstr "" +msgstr "+3s" #. module: mis_builder_cash_flow #: model:mis.report.instance.period,name:mis_builder_cash_flow.mis_period_plus_4w msgid "+4w" -msgstr "" +msgstr "+4s" #. module: mis_builder_cash_flow #: model:mis.report.instance.period,name:mis_builder_cash_flow.mis_period_plus_5w msgid "+5w" -msgstr "" +msgstr "+5s" #. module: mis_builder_cash_flow #: model:mis.report.instance.period,name:mis_builder_cash_flow.mis_period_plus_6w msgid "+6w" -msgstr "" +msgstr "+6s" #. module: mis_builder_cash_flow #: model:mis.report.instance.period,name:mis_builder_cash_flow.mis_period_plus_7w msgid "+7w" -msgstr "" +msgstr "+7s" #. module: mis_builder_cash_flow #: model:mis.report.instance.period,name:mis_builder_cash_flow.mis_period_plus_8w msgid "+8w" -msgstr "" +msgstr "+8s" #. module: mis_builder_cash_flow #: model:ir.model,name:mis_builder_cash_flow.model_account_account @@ -61,29 +63,29 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:mis_builder_cash_flow.mis_cash_flow_forecast_line_view_search #: model_terms:ir.ui.view,arch_db:mis_builder_cash_flow.mis_cash_flow_search_view msgid "Account" -msgstr "" +msgstr "Compte" #. module: mis_builder_cash_flow #: model:mis.report.kpi,description:mis_builder_cash_flow.mis_kpi_balance msgid "BALANCE" -msgstr "" +msgstr "SOLDE" #. module: mis_builder_cash_flow #: model:ir.model.fields,field_description:mis_builder_cash_flow.field_mis_cash_flow_forecast_line__balance msgid "Balance" -msgstr "" +msgstr "Solde" #. module: mis_builder_cash_flow #: model:mis.report,name:mis_builder_cash_flow.mis_report_cash_flow #: model:mis.report.instance,name:mis_builder_cash_flow.mis_instance_cash_flow msgid "Cash Flow" -msgstr "" +msgstr "Cash Flow" #. module: mis_builder_cash_flow #: model:ir.actions.act_window,name:mis_builder_cash_flow.action_mis_cash_flow_forecast_line #: model:ir.ui.menu,name:mis_builder_cash_flow.menu_mis_cash_flow_forecast_line msgid "Cash Flow Forecast Line" -msgstr "" +msgstr "Ligne Prévisionnelle de Cash Flow" #. module: mis_builder_cash_flow #: model:ir.model.fields,field_description:mis_builder_cash_flow.field_mis_cash_flow__company_id @@ -91,27 +93,27 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:mis_builder_cash_flow.mis_cash_flow_forecast_line_view_search #: model_terms:ir.ui.view,arch_db:mis_builder_cash_flow.mis_cash_flow_search_view msgid "Company" -msgstr "" +msgstr "Société" #. module: mis_builder_cash_flow #: model:ir.model.fields,field_description:mis_builder_cash_flow.field_mis_cash_flow_forecast_line__create_uid msgid "Created by" -msgstr "" +msgstr "Créé par" #. module: mis_builder_cash_flow #: model:ir.model.fields,field_description:mis_builder_cash_flow.field_mis_cash_flow_forecast_line__create_date msgid "Created on" -msgstr "" +msgstr "Créé le" #. module: mis_builder_cash_flow #: model:ir.model.fields,field_description:mis_builder_cash_flow.field_mis_cash_flow__credit msgid "Credit" -msgstr "" +msgstr "Crédit" #. module: mis_builder_cash_flow #: model:mis.report.instance.period,name:mis_builder_cash_flow.mis_period_current msgid "Current" -msgstr "" +msgstr "Actuel" #. module: mis_builder_cash_flow #: model:ir.model.fields,field_description:mis_builder_cash_flow.field_mis_cash_flow__date @@ -119,183 +121,184 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:mis_builder_cash_flow.mis_cash_flow_forecast_line_view_search #: model_terms:ir.ui.view,arch_db:mis_builder_cash_flow.mis_cash_flow_search_view msgid "Date" -msgstr "" +msgstr "Date" #. module: mis_builder_cash_flow #: model:ir.model.fields,field_description:mis_builder_cash_flow.field_mis_cash_flow__debit msgid "Debit" -msgstr "" +msgstr "Débit" #. module: mis_builder_cash_flow #: model:ir.model.fields,field_description:mis_builder_cash_flow.field_mis_cash_flow__display_name #: model:ir.model.fields,field_description:mis_builder_cash_flow.field_mis_cash_flow_forecast_line__display_name msgid "Display Name" -msgstr "" +msgstr "Nom affiché" #. module: mis_builder_cash_flow #: model_terms:ir.ui.view,arch_db:mis_builder_cash_flow.mis_cash_flow_search_view #: selection:mis.cash_flow,line_type:0 msgid "Forecast Line" -msgstr "" +msgstr "Ligne Prévisionnelle" #. module: mis_builder_cash_flow #: model:ir.model.fields,field_description:mis_builder_cash_flow.field_account_account__hide_in_cash_flow msgid "Hide in Cash Flow?" -msgstr "" +msgstr "Caché dans le Cash Flow ?" #. module: mis_builder_cash_flow #: model:ir.model.fields,field_description:mis_builder_cash_flow.field_mis_cash_flow__id #: model:ir.model.fields,field_description:mis_builder_cash_flow.field_mis_cash_flow_forecast_line__id msgid "ID" -msgstr "" +msgstr "ID" #. module: mis_builder_cash_flow #: model:mis.report.kpi,description:mis_builder_cash_flow.mis_kpi_in_total msgid "IN TOTAL" -msgstr "" +msgstr "TOTAL ENTRANT" #. module: mis_builder_cash_flow #: model:mis.report.kpi,description:mis_builder_cash_flow.mis_kpi_in_forecast msgid "In forecast" -msgstr "" +msgstr "Entrant prévisionnel" #. module: mis_builder_cash_flow #: model:mis.report.kpi,description:mis_builder_cash_flow.mis_kpi_in_receivable msgid "In receivable" -msgstr "" +msgstr "Entrant Clients" #. module: mis_builder_cash_flow #: model:ir.model.fields,field_description:mis_builder_cash_flow.field_mis_cash_flow__move_line_id #: model_terms:ir.ui.view,arch_db:mis_builder_cash_flow.mis_cash_flow_search_view #: selection:mis.cash_flow,line_type:0 msgid "Journal Item" -msgstr "" +msgstr "Élément de Journal" #. module: mis_builder_cash_flow #: model_terms:ir.ui.view,arch_db:mis_builder_cash_flow.mis_cash_flow_search_view msgid "Journal items where matching number isn't set" msgstr "" +"Éléments du journal pour lesquels le numéro correspondant n'est pas défini" #. module: mis_builder_cash_flow #: model:mis.report.kpi,description:mis_builder_cash_flow.mis_kpi_aliquidity msgid "LIQUIDITY" -msgstr "" +msgstr "TRÉSORERIE" #. module: mis_builder_cash_flow #: model:ir.model.fields,field_description:mis_builder_cash_flow.field_mis_cash_flow____last_update #: model:ir.model.fields,field_description:mis_builder_cash_flow.field_mis_cash_flow_forecast_line____last_update msgid "Last Modified on" -msgstr "" +msgstr "Dernière modification le" #. module: mis_builder_cash_flow #: model:ir.model.fields,field_description:mis_builder_cash_flow.field_mis_cash_flow_forecast_line__write_uid msgid "Last Updated by" -msgstr "" +msgstr "Dernière modification par" #. module: mis_builder_cash_flow #: model:ir.model.fields,field_description:mis_builder_cash_flow.field_mis_cash_flow_forecast_line__write_date msgid "Last Updated on" -msgstr "" +msgstr "Dernière mise à jour le" #. module: mis_builder_cash_flow #: model:ir.model.fields,field_description:mis_builder_cash_flow.field_mis_cash_flow__line_type #: model_terms:ir.ui.view,arch_db:mis_builder_cash_flow.mis_cash_flow_search_view msgid "Line Type" -msgstr "" +msgstr "Type de ligne" #. module: mis_builder_cash_flow #: model:ir.model,name:mis_builder_cash_flow.model_mis_cash_flow msgid "MIS Cash Flow" -msgstr "" +msgstr "MIS Cash Flow" #. module: mis_builder_cash_flow #: model:ir.model,name:mis_builder_cash_flow.model_mis_cash_flow_forecast_line #: model_terms:ir.ui.view,arch_db:mis_builder_cash_flow.mis_cash_flow_forecast_line_view_form #: model_terms:ir.ui.view,arch_db:mis_builder_cash_flow.mis_cash_flow_forecast_line_view_tree msgid "MIS Cash Flow Forecast Line" -msgstr "" +msgstr "MIS Cash Flow Ligne Prévisionnelle" #. module: mis_builder_cash_flow #: model:ir.model.fields,field_description:mis_builder_cash_flow.field_mis_cash_flow__full_reconcile_id msgid "Matching Number" -msgstr "" +msgstr "Code lettrage" #. module: mis_builder_cash_flow #: model:ir.model.fields,field_description:mis_builder_cash_flow.field_mis_cash_flow__name #: model:ir.model.fields,field_description:mis_builder_cash_flow.field_mis_cash_flow_forecast_line__name msgid "Name" -msgstr "" +msgstr "Nom" #. module: mis_builder_cash_flow #: model:mis.report.kpi,description:mis_builder_cash_flow.mis_kpi_out_total msgid "OUT TOTAL" -msgstr "" +msgstr "TOTAL SORTANT" #. module: mis_builder_cash_flow #: model_terms:ir.ui.view,arch_db:mis_builder_cash_flow.mis_cash_flow_tree_view msgid "Open Journal Item / Forecast Line" -msgstr "" +msgstr "Élément de journal non soldé / Ligne Prévisionnelle" #. module: mis_builder_cash_flow #: model:mis.report.kpi,description:mis_builder_cash_flow.mis_kpi_out_forecast msgid "Out forecast" -msgstr "" +msgstr "Sortie Prévisionnelle" #. module: mis_builder_cash_flow #: model:mis.report.kpi,description:mis_builder_cash_flow.mis_kpi_out_payable msgid "Out payable" -msgstr "" +msgstr "Sortie payable" #. module: mis_builder_cash_flow #: model:mis.report.kpi,description:mis_builder_cash_flow.mis_kpi_period_balance msgid "PERIOD BALANCE" -msgstr "" +msgstr "SOLDE PÉRIODIQUE" #. module: mis_builder_cash_flow #: model:ir.model.fields,field_description:mis_builder_cash_flow.field_mis_cash_flow__partner_id #: model:ir.model.fields,field_description:mis_builder_cash_flow.field_mis_cash_flow_forecast_line__partner_id #: model_terms:ir.ui.view,arch_db:mis_builder_cash_flow.mis_cash_flow_forecast_line_view_search msgid "Partner" -msgstr "" +msgstr "Partenaire" #. module: mis_builder_cash_flow #: model:ir.model.fields,field_description:mis_builder_cash_flow.field_mis_cash_flow__reconciled msgid "Reconciled" -msgstr "" +msgstr "Réconcilié" #. module: mis_builder_cash_flow #: code:addons/mis_builder_cash_flow/models/mis_cash_flow_forecast_line.py:46 #, python-format msgid "The Company and the Company of the Account must be the same." -msgstr "" +msgstr "La société et la société du compte doivent être la même." #. module: mis_builder_cash_flow #: model:ir.model.fields,help:mis_builder_cash_flow.field_mis_cash_flow_forecast_line__account_id msgid "The account of the forecast line is only for informative purpose" -msgstr "" +msgstr "Le compte de la ligne prévisionnelle n'est là que pour information" #. module: mis_builder_cash_flow #: model_terms:ir.ui.view,arch_db:mis_builder_cash_flow.mis_cash_flow_form_view #: model_terms:ir.ui.view,arch_db:mis_builder_cash_flow.mis_cash_flow_tree_view msgid "Total" -msgstr "" +msgstr "Total" #. module: mis_builder_cash_flow #: model_terms:ir.ui.view,arch_db:mis_builder_cash_flow.mis_cash_flow_search_view msgid "Unreconciled" -msgstr "" +msgstr "Non Réconcilié" #. module: mis_builder_cash_flow #: model:ir.model.fields,field_description:mis_builder_cash_flow.field_mis_cash_flow__user_type_id msgid "User Type" -msgstr "" +msgstr "Type d'utilisateur" #. module: mis_builder_cash_flow #: model:mis.report.instance.period,name:mis_builder_cash_flow.mis_period_plus_fourth_month msgid "fourth month" -msgstr "" +msgstr "Quatrième Mois" #. module: mis_builder_cash_flow #: model:mis.report.instance.period,name:mis_builder_cash_flow.mis_period_plus_third_month msgid "third month" -msgstr "" +msgstr "Troisième Mois"