odoo-addon-account-financial-report 15.0.1.1.0.1__py3-none-any.whl → 18.0.1.4.4.3__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- odoo/addons/account_financial_report/README.rst +131 -74
- odoo/addons/account_financial_report/__manifest__.py +6 -9
- odoo/addons/account_financial_report/i18n/account_financial_report.pot +313 -188
- odoo/addons/account_financial_report/i18n/ar.po +579 -433
- odoo/addons/account_financial_report/i18n/ca.po +474 -289
- odoo/addons/account_financial_report/i18n/{fr_FR.po → ca_AD.po} +539 -491
- odoo/addons/account_financial_report/i18n/ca_ES.po +1891 -0
- odoo/addons/account_financial_report/i18n/de.po +455 -295
- odoo/addons/account_financial_report/i18n/es.po +458 -394
- odoo/addons/account_financial_report/i18n/es_AR.po +464 -283
- odoo/addons/account_financial_report/i18n/es_MX.po +315 -220
- odoo/addons/account_financial_report/i18n/fr.po +620 -435
- odoo/addons/account_financial_report/i18n/fr_CH.po +616 -462
- odoo/addons/account_financial_report/i18n/hr.po +506 -355
- odoo/addons/account_financial_report/i18n/hr_HR.po +331 -232
- odoo/addons/account_financial_report/i18n/it.po +538 -356
- odoo/addons/account_financial_report/i18n/ja.po +339 -240
- odoo/addons/account_financial_report/i18n/nl.po +462 -324
- odoo/addons/account_financial_report/i18n/nl_NL.po +318 -220
- odoo/addons/account_financial_report/i18n/pt.po +429 -242
- odoo/addons/account_financial_report/i18n/pt_BR.po +588 -438
- odoo/addons/account_financial_report/i18n/ro.po +499 -342
- odoo/addons/account_financial_report/i18n/sl.po +1945 -0
- odoo/addons/account_financial_report/i18n/sv.po +1997 -0
- odoo/addons/account_financial_report/i18n/tr.po +1947 -0
- odoo/addons/account_financial_report/menuitems.xml +1 -1
- odoo/addons/account_financial_report/models/__init__.py +2 -0
- odoo/addons/account_financial_report/models/account_age_report_configuration.py +49 -0
- odoo/addons/account_financial_report/models/account_group.py +62 -23
- odoo/addons/account_financial_report/models/account_move_line.py +33 -3
- odoo/addons/account_financial_report/models/ir_actions_report.py +6 -4
- odoo/addons/account_financial_report/models/res_config_settings.py +36 -0
- odoo/addons/account_financial_report/readme/CONFIGURE.md +26 -0
- odoo/addons/account_financial_report/readme/CONTRIBUTORS.md +38 -0
- odoo/addons/account_financial_report/readme/CREDITS.md +1 -0
- odoo/addons/account_financial_report/readme/DESCRIPTION.md +21 -0
- odoo/addons/account_financial_report/readme/HISTORY.md +16 -0
- odoo/addons/account_financial_report/readme/ROADMAP.md +6 -0
- odoo/addons/account_financial_report/report/abstract_report.py +73 -23
- odoo/addons/account_financial_report/report/abstract_report_xlsx.py +28 -23
- odoo/addons/account_financial_report/report/aged_partner_balance.py +131 -30
- odoo/addons/account_financial_report/report/aged_partner_balance_xlsx.py +158 -118
- odoo/addons/account_financial_report/report/general_ledger.py +421 -340
- odoo/addons/account_financial_report/report/general_ledger_xlsx.py +127 -75
- odoo/addons/account_financial_report/report/journal_ledger.py +84 -68
- odoo/addons/account_financial_report/report/journal_ledger_xlsx.py +14 -8
- odoo/addons/account_financial_report/report/open_items.py +113 -70
- odoo/addons/account_financial_report/report/open_items_xlsx.py +152 -19
- odoo/addons/account_financial_report/report/templates/aged_partner_balance.xml +408 -311
- odoo/addons/account_financial_report/report/templates/general_ledger.xml +273 -213
- odoo/addons/account_financial_report/report/templates/journal_ledger.xml +70 -76
- odoo/addons/account_financial_report/report/templates/layouts.xml +12 -1
- odoo/addons/account_financial_report/report/templates/open_items.xml +181 -55
- odoo/addons/account_financial_report/report/templates/trial_balance.xml +304 -195
- odoo/addons/account_financial_report/report/templates/vat_report.xml +10 -10
- odoo/addons/account_financial_report/report/trial_balance.py +463 -211
- odoo/addons/account_financial_report/report/trial_balance_xlsx.py +37 -38
- odoo/addons/account_financial_report/report/vat_report.py +36 -25
- odoo/addons/account_financial_report/report/vat_report_xlsx.py +1 -1
- odoo/addons/account_financial_report/security/ir.model.access.csv +2 -0
- odoo/addons/account_financial_report/security/security.xml +8 -0
- odoo/addons/account_financial_report/static/description/index.html +106 -55
- odoo/addons/account_financial_report/static/src/css/report.css +77 -42
- odoo/addons/account_financial_report/static/src/css/report_html.css +10 -0
- odoo/addons/account_financial_report/static/src/js/report.esm.js +72 -0
- odoo/addons/account_financial_report/static/src/js/report_action.esm.js +39 -0
- odoo/addons/account_financial_report/static/src/xml/report.xml +10 -9
- odoo/addons/account_financial_report/tests/__init__.py +1 -0
- odoo/addons/account_financial_report/tests/test_age_report_configuration.py +42 -0
- odoo/addons/account_financial_report/tests/test_aged_partner_balance.py +99 -9
- odoo/addons/account_financial_report/tests/test_general_ledger.py +19 -9
- odoo/addons/account_financial_report/tests/test_journal_ledger.py +18 -9
- odoo/addons/account_financial_report/tests/test_open_items.py +42 -2
- odoo/addons/account_financial_report/tests/test_trial_balance.py +114 -223
- odoo/addons/account_financial_report/tests/test_vat_report.py +17 -9
- odoo/addons/account_financial_report/view/account_age_report_configuration_views.xml +41 -0
- odoo/addons/account_financial_report/view/res_config_settings_views.xml +51 -0
- odoo/addons/account_financial_report/wizard/abstract_wizard.py +23 -0
- odoo/addons/account_financial_report/wizard/aged_partner_balance_wizard.py +22 -8
- odoo/addons/account_financial_report/wizard/aged_partner_balance_wizard_view.xml +2 -3
- odoo/addons/account_financial_report/wizard/general_ledger_wizard.py +42 -36
- odoo/addons/account_financial_report/wizard/general_ledger_wizard_view.xml +26 -41
- odoo/addons/account_financial_report/wizard/journal_ledger_wizard.py +19 -7
- odoo/addons/account_financial_report/wizard/journal_ledger_wizard_view.xml +15 -14
- odoo/addons/account_financial_report/wizard/open_items_wizard.py +34 -8
- odoo/addons/account_financial_report/wizard/open_items_wizard_view.xml +16 -14
- odoo/addons/account_financial_report/wizard/trial_balance_wizard.py +68 -45
- odoo/addons/account_financial_report/wizard/trial_balance_wizard_view.xml +40 -39
- odoo/addons/account_financial_report/wizard/vat_report_wizard.py +9 -3
- odoo/addons/account_financial_report/wizard/vat_report_wizard_view.xml +14 -14
- odoo_addon_account_financial_report-18.0.1.4.4.3.dist-info/METADATA +234 -0
- odoo_addon_account_financial_report-18.0.1.4.4.3.dist-info/RECORD +107 -0
- {odoo_addon_account_financial_report-15.0.1.1.0.1.dist-info → odoo_addon_account_financial_report-18.0.1.4.4.3.dist-info}/WHEEL +1 -1
- odoo_addon_account_financial_report-18.0.1.4.4.3.dist-info/top_level.txt +1 -0
- odoo/addons/account_financial_report/readme/CONTRIBUTORS.rst +0 -35
- odoo/addons/account_financial_report/readme/DESCRIPTION.rst +0 -16
- odoo/addons/account_financial_report/readme/HISTORY.rst +0 -19
- odoo/addons/account_financial_report/readme/ROADMAP.rst +0 -7
- odoo/addons/account_financial_report/static/src/js/action_manager_report.js +0 -37
- odoo/addons/account_financial_report/static/src/js/client_action.js +0 -58
- odoo/addons/account_financial_report/static/src/js/report.js +0 -58
- odoo_addon_account_financial_report-15.0.1.1.0.1.dist-info/METADATA +0 -179
- odoo_addon_account_financial_report-15.0.1.1.0.1.dist-info/RECORD +0 -95
- odoo_addon_account_financial_report-15.0.1.1.0.1.dist-info/top_level.txt +0 -1
|
@@ -9,15 +9,15 @@ msgstr ""
|
|
|
9
9
|
"Project-Id-Version: Odoo Server 11.0\n"
|
|
10
10
|
"Report-Msgid-Bugs-To: \n"
|
|
11
11
|
"POT-Creation-Date: 2018-03-16 08:14+0000\n"
|
|
12
|
-
"PO-Revision-Date:
|
|
13
|
-
"Last-Translator:
|
|
12
|
+
"PO-Revision-Date: 2025-12-10 15:43+0000\n"
|
|
13
|
+
"Last-Translator: Ricard <ricard.calvo@forgeflow.com>\n"
|
|
14
14
|
"Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n"
|
|
15
15
|
"Language: ca\n"
|
|
16
16
|
"MIME-Version: 1.0\n"
|
|
17
17
|
"Content-Type: text/plain; charset=UTF-8\n"
|
|
18
18
|
"Content-Transfer-Encoding: \n"
|
|
19
19
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
|
20
|
-
"X-Generator: Weblate
|
|
20
|
+
"X-Generator: Weblate 5.10.4\n"
|
|
21
21
|
|
|
22
22
|
#. module: account_financial_report
|
|
23
23
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_lines_header
|
|
@@ -53,7 +53,23 @@ msgstr "91 - 120 d."
|
|
|
53
53
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
|
|
54
54
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
55
55
|
msgid "<b>Taxes summary</b>"
|
|
56
|
-
msgstr "<
|
|
56
|
+
msgstr "<b>Resum d'impostos</b>"
|
|
57
|
+
|
|
58
|
+
#. module: account_financial_report
|
|
59
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.trial_balance_wizard
|
|
60
|
+
msgid ""
|
|
61
|
+
"<i class=\"fa fa-exclamation-triangle mr-3\"/>\n"
|
|
62
|
+
" Duplicate amounts may be shown because more than one "
|
|
63
|
+
"analytical account may be defined in the journal items."
|
|
64
|
+
msgstr ""
|
|
65
|
+
"<i class=\"fa fa-exclamation-triangle mr-3\"/>\n"
|
|
66
|
+
" Es poden mostrar imports duplicats perquè es pot definir "
|
|
67
|
+
"més d'un compte analític als apunts del diari."
|
|
68
|
+
|
|
69
|
+
#. module: account_financial_report
|
|
70
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
71
|
+
msgid "<span class=\"o_form_label\">Intervals configuration</span>"
|
|
72
|
+
msgstr "<span class=\"o_form_label\">Configuració d'intervals</span>"
|
|
57
73
|
|
|
58
74
|
#. module: account_financial_report
|
|
59
75
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.aged_partner_balance_wizard
|
|
@@ -76,9 +92,10 @@ msgstr "Assistent d'extracte"
|
|
|
76
92
|
#. module: account_financial_report
|
|
77
93
|
#: model:ir.model,name:account_financial_report.model_report_account_financial_report_abstract_report_xlsx
|
|
78
94
|
msgid "Abstract XLSX Account Financial Report"
|
|
79
|
-
msgstr ""
|
|
95
|
+
msgstr "Informe financer de comptes XLSX abstracte"
|
|
80
96
|
|
|
81
97
|
#. module: account_financial_report
|
|
98
|
+
#. odoo-python
|
|
82
99
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
83
100
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
84
101
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
@@ -90,10 +107,14 @@ msgstr ""
|
|
|
90
107
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
91
108
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
92
109
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
93
|
-
#, python-format
|
|
94
110
|
msgid "Account"
|
|
95
111
|
msgstr "Compte"
|
|
96
112
|
|
|
113
|
+
#. module: account_financial_report
|
|
114
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__account_age_report_config_id
|
|
115
|
+
msgid "Account Age Report Config"
|
|
116
|
+
msgstr "Configuració de l'informe d'antiguitat de comptes"
|
|
117
|
+
|
|
97
118
|
#. module: account_financial_report
|
|
98
119
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__account_code_from
|
|
99
120
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__account_code_from
|
|
@@ -116,24 +137,24 @@ msgid "Account Group"
|
|
|
116
137
|
msgstr "Grup de comptes"
|
|
117
138
|
|
|
118
139
|
#. module: account_financial_report
|
|
140
|
+
#. odoo-python
|
|
119
141
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
120
|
-
#, python-format
|
|
121
142
|
msgid "Account Name"
|
|
122
143
|
msgstr "Compte"
|
|
123
144
|
|
|
124
145
|
#. module: account_financial_report
|
|
146
|
+
#. odoo-python
|
|
125
147
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
126
148
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
127
|
-
#, python-format
|
|
128
149
|
msgid "Account at 0 filter"
|
|
129
150
|
msgstr "Filtrar per compte a 0"
|
|
130
151
|
|
|
131
152
|
#. module: account_financial_report
|
|
153
|
+
#. odoo-python
|
|
132
154
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
133
155
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
134
156
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
135
157
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
136
|
-
#, python-format
|
|
137
158
|
msgid "Account balance at 0 filter"
|
|
138
159
|
msgstr "Balanç de compte en filtre 0"
|
|
139
160
|
|
|
@@ -152,18 +173,23 @@ msgstr "Activar centralització"
|
|
|
152
173
|
msgid "Additional Filtering"
|
|
153
174
|
msgstr "Filtrat addicional"
|
|
154
175
|
|
|
176
|
+
#. module: account_financial_report
|
|
177
|
+
#: model:ir.actions.act_window,name:account_financial_report.action_aged_partner_report_configuration
|
|
178
|
+
msgid "Age Partner Report Configuration"
|
|
179
|
+
msgstr "Configuració de l'informe d'antiguitat de partners"
|
|
180
|
+
|
|
155
181
|
#. module: account_financial_report
|
|
156
182
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
157
183
|
msgid ""
|
|
158
184
|
"Age ≤ 120\n"
|
|
159
|
-
"
|
|
185
|
+
" d."
|
|
160
186
|
msgstr ""
|
|
161
187
|
"Antiguitat ≤ 120\n"
|
|
162
|
-
"
|
|
188
|
+
" d."
|
|
163
189
|
|
|
164
190
|
#. module: account_financial_report
|
|
191
|
+
#. odoo-python
|
|
165
192
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
166
|
-
#, python-format
|
|
167
193
|
msgid "Age ≤ 120 d."
|
|
168
194
|
msgstr "Antiguitat ≤ 120 d."
|
|
169
195
|
|
|
@@ -171,14 +197,14 @@ msgstr "Antiguitat ≤ 120 d."
|
|
|
171
197
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
172
198
|
msgid ""
|
|
173
199
|
"Age ≤ 30\n"
|
|
174
|
-
"
|
|
200
|
+
" d."
|
|
175
201
|
msgstr ""
|
|
176
202
|
"Antiguitat ≤ 30\n"
|
|
177
|
-
"
|
|
203
|
+
" d."
|
|
178
204
|
|
|
179
205
|
#. module: account_financial_report
|
|
206
|
+
#. odoo-python
|
|
180
207
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
181
|
-
#, python-format
|
|
182
208
|
msgid "Age ≤ 30 d."
|
|
183
209
|
msgstr "Antiguitat ≤ 30 d."
|
|
184
210
|
|
|
@@ -186,14 +212,14 @@ msgstr "Antiguitat ≤ 30 d."
|
|
|
186
212
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
187
213
|
msgid ""
|
|
188
214
|
"Age ≤ 60\n"
|
|
189
|
-
"
|
|
215
|
+
" d."
|
|
190
216
|
msgstr ""
|
|
191
217
|
"Antiguitat ≤ 60\n"
|
|
192
|
-
"
|
|
218
|
+
" d."
|
|
193
219
|
|
|
194
220
|
#. module: account_financial_report
|
|
221
|
+
#. odoo-python
|
|
195
222
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
196
|
-
#, python-format
|
|
197
223
|
msgid "Age ≤ 60 d."
|
|
198
224
|
msgstr "Antiguitat ≤ 60 d."
|
|
199
225
|
|
|
@@ -201,24 +227,24 @@ msgstr "Antiguitat ≤ 60 d."
|
|
|
201
227
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
202
228
|
msgid ""
|
|
203
229
|
"Age ≤ 90\n"
|
|
204
|
-
"
|
|
230
|
+
" d."
|
|
205
231
|
msgstr ""
|
|
206
232
|
"Antiguitat ≤ 90\n"
|
|
207
|
-
"
|
|
233
|
+
" d."
|
|
208
234
|
|
|
209
235
|
#. module: account_financial_report
|
|
236
|
+
#. odoo-python
|
|
210
237
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
211
|
-
#, python-format
|
|
212
238
|
msgid "Age ≤ 90 d."
|
|
213
239
|
msgstr "Antiguitat ≤ 90 d."
|
|
214
240
|
|
|
215
241
|
#. module: account_financial_report
|
|
242
|
+
#. odoo-python
|
|
216
243
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
217
244
|
#: model:ir.actions.act_window,name:account_financial_report.action_aged_partner_balance_wizard
|
|
218
245
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_aged_partner_balance_html
|
|
219
246
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_aged_partner_balance_qweb
|
|
220
247
|
#: model:ir.ui.menu,name:account_financial_report.menu_aged_partner_balance_wizard
|
|
221
|
-
#, python-format
|
|
222
248
|
msgid "Aged Partner Balance"
|
|
223
249
|
msgstr "Saldo vençuts d'empresa"
|
|
224
250
|
|
|
@@ -248,8 +274,8 @@ msgid "Aged Partner Balance XLSX"
|
|
|
248
274
|
msgstr "Saldo vençuts d'empresa XLSX"
|
|
249
275
|
|
|
250
276
|
#. module: account_financial_report
|
|
277
|
+
#. odoo-python
|
|
251
278
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
252
|
-
#, python-format
|
|
253
279
|
msgid "All"
|
|
254
280
|
msgstr "Tots"
|
|
255
281
|
|
|
@@ -272,6 +298,7 @@ msgid "All Posted Entries"
|
|
|
272
298
|
msgstr "Tots els assentaments assentats"
|
|
273
299
|
|
|
274
300
|
#. module: account_financial_report
|
|
301
|
+
#. odoo-python
|
|
275
302
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
276
303
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
277
304
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
@@ -280,11 +307,11 @@ msgstr "Tots els assentaments assentats"
|
|
|
280
307
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
281
308
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
282
309
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
283
|
-
#, python-format
|
|
284
310
|
msgid "All entries"
|
|
285
311
|
msgstr "Tots els assentaments"
|
|
286
312
|
|
|
287
313
|
#. module: account_financial_report
|
|
314
|
+
#. odoo-python
|
|
288
315
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
289
316
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
290
317
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
@@ -293,7 +320,6 @@ msgstr "Tots els assentaments"
|
|
|
293
320
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
294
321
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
295
322
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
296
|
-
#, python-format
|
|
297
323
|
msgid "All posted entries"
|
|
298
324
|
msgstr "Tots els assentaments assentats"
|
|
299
325
|
|
|
@@ -303,25 +329,31 @@ msgid "Amount Cur."
|
|
|
303
329
|
msgstr "Import inicial."
|
|
304
330
|
|
|
305
331
|
#. module: account_financial_report
|
|
332
|
+
#. odoo-python
|
|
306
333
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
307
|
-
#, python-format
|
|
308
334
|
msgid "Amount Currency"
|
|
309
335
|
msgstr "Moneda de l'import"
|
|
310
336
|
|
|
311
337
|
#. module: account_financial_report
|
|
338
|
+
#. odoo-python
|
|
312
339
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
313
340
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
314
|
-
#, python-format
|
|
315
341
|
msgid "Amount cur."
|
|
316
|
-
msgstr "Import actual"
|
|
342
|
+
msgstr "Import actual."
|
|
317
343
|
|
|
318
344
|
#. module: account_financial_report
|
|
319
|
-
#:
|
|
320
|
-
#:
|
|
321
|
-
#, python-format
|
|
345
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_move_line__analytic_account_ids
|
|
346
|
+
#: model:ir.model.fields.selection,name:account_financial_report.selection__trial_balance_report_wizard__grouped_by__analytic_account
|
|
322
347
|
msgid "Analytic Account"
|
|
323
348
|
msgstr "Compte analític"
|
|
324
349
|
|
|
350
|
+
#. module: account_financial_report
|
|
351
|
+
#. odoo-python
|
|
352
|
+
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
353
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
354
|
+
msgid "Analytic Distribution"
|
|
355
|
+
msgstr "Distribució analítica"
|
|
356
|
+
|
|
325
357
|
#. module: account_financial_report
|
|
326
358
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
|
|
327
359
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
@@ -335,20 +367,20 @@ msgid "Base Amount"
|
|
|
335
367
|
msgstr "Import base"
|
|
336
368
|
|
|
337
369
|
#. module: account_financial_report
|
|
370
|
+
#. odoo-python
|
|
338
371
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
339
|
-
#, python-format
|
|
340
372
|
msgid "Base Balance"
|
|
341
373
|
msgstr "Saldo base"
|
|
342
374
|
|
|
343
375
|
#. module: account_financial_report
|
|
376
|
+
#. odoo-python
|
|
344
377
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
345
|
-
#, python-format
|
|
346
378
|
msgid "Base Credit"
|
|
347
379
|
msgstr "Haver base"
|
|
348
380
|
|
|
349
381
|
#. module: account_financial_report
|
|
382
|
+
#. odoo-python
|
|
350
383
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
351
|
-
#, python-format
|
|
352
384
|
msgid "Base Debit"
|
|
353
385
|
msgstr "Deure base"
|
|
354
386
|
|
|
@@ -359,8 +391,8 @@ msgid "Based On"
|
|
|
359
391
|
msgstr "Basat en"
|
|
360
392
|
|
|
361
393
|
#. module: account_financial_report
|
|
394
|
+
#. odoo-python
|
|
362
395
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
363
|
-
#, python-format
|
|
364
396
|
msgid "Based on"
|
|
365
397
|
msgstr "Basat en"
|
|
366
398
|
|
|
@@ -372,41 +404,38 @@ msgstr "Basat en"
|
|
|
372
404
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.trial_balance_wizard
|
|
373
405
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.vat_report_wizard
|
|
374
406
|
msgid "Cancel"
|
|
375
|
-
msgstr "Cancel·lar
|
|
407
|
+
msgstr "Cancel·lar"
|
|
376
408
|
|
|
377
409
|
#. module: account_financial_report
|
|
410
|
+
#. odoo-python
|
|
378
411
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
379
412
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
380
|
-
#, python-format
|
|
381
413
|
msgid "Centralize filter"
|
|
382
|
-
msgstr ""
|
|
414
|
+
msgstr "Filtre de centralització"
|
|
383
415
|
|
|
384
416
|
#. module: account_financial_report
|
|
385
417
|
#: model:ir.model.fields,field_description:account_financial_report.field_account_account__centralized
|
|
386
418
|
msgid "Centralized"
|
|
387
419
|
msgstr "Centralitzat"
|
|
388
420
|
|
|
389
|
-
#. module: account_financial_report
|
|
390
|
-
#: model:ir.model.fields.selection,name:account_financial_report.selection__trial_balance_report_wizard__hierarchy_on__relation
|
|
391
|
-
msgid "Child Accounts"
|
|
392
|
-
msgstr "Comptes fill"
|
|
393
|
-
|
|
394
421
|
#. module: account_financial_report
|
|
395
422
|
#: model:ir.model.fields,field_description:account_financial_report.field_account_group__group_child_ids
|
|
396
423
|
msgid "Child Groups"
|
|
397
424
|
msgstr "Grups fill"
|
|
398
425
|
|
|
399
426
|
#. module: account_financial_report
|
|
427
|
+
#. odoo-python
|
|
400
428
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
401
429
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
402
430
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
403
431
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
404
|
-
#, python-format
|
|
405
432
|
msgid "Code"
|
|
406
433
|
msgstr "Codi"
|
|
407
434
|
|
|
408
435
|
#. module: account_financial_report
|
|
436
|
+
#. odoo-python
|
|
409
437
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
438
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__company_id
|
|
410
439
|
#: model:ir.model.fields,field_description:account_financial_report.field_account_financial_report_abstract_wizard__company_id
|
|
411
440
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__company_id
|
|
412
441
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__company_id
|
|
@@ -414,9 +443,8 @@ msgstr "Codi"
|
|
|
414
443
|
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__company_id
|
|
415
444
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__company_id
|
|
416
445
|
#: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__company_id
|
|
417
|
-
#, python-format
|
|
418
446
|
msgid "Company"
|
|
419
|
-
msgstr "Empresa
|
|
447
|
+
msgstr "Empresa"
|
|
420
448
|
|
|
421
449
|
#. module: account_financial_report
|
|
422
450
|
#: model:ir.model.fields,field_description:account_financial_report.field_account_group__compute_account_ids
|
|
@@ -424,24 +452,18 @@ msgid "Compute accounts"
|
|
|
424
452
|
msgstr "Calcula comptes"
|
|
425
453
|
|
|
426
454
|
#. module: account_financial_report
|
|
427
|
-
#: model:ir.model
|
|
428
|
-
msgid "
|
|
429
|
-
msgstr "
|
|
455
|
+
#: model:ir.model,name:account_financial_report.model_res_config_settings
|
|
456
|
+
msgid "Config Settings"
|
|
457
|
+
msgstr "Paràmetres de configuració"
|
|
430
458
|
|
|
431
459
|
#. module: account_financial_report
|
|
432
|
-
#:
|
|
433
|
-
msgid ""
|
|
434
|
-
|
|
435
|
-
" that represent prefixes of the actual accounts.\n"
|
|
436
|
-
"\n"
|
|
437
|
-
" Child Accounts: Use when your account groups are hierarchical.\n"
|
|
438
|
-
"\n"
|
|
439
|
-
" No hierarchy: Use to display just the accounts, without any "
|
|
440
|
-
"grouping.\n"
|
|
441
|
-
" "
|
|
442
|
-
msgstr ""
|
|
460
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
461
|
+
msgid "Configurations"
|
|
462
|
+
msgstr "Configuracions"
|
|
443
463
|
|
|
444
464
|
#. module: account_financial_report
|
|
465
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__create_uid
|
|
466
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__create_uid
|
|
445
467
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__create_uid
|
|
446
468
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__create_uid
|
|
447
469
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__create_uid
|
|
@@ -449,9 +471,11 @@ msgstr ""
|
|
|
449
471
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__create_uid
|
|
450
472
|
#: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__create_uid
|
|
451
473
|
msgid "Created by"
|
|
452
|
-
msgstr "Creat per
|
|
474
|
+
msgstr "Creat per"
|
|
453
475
|
|
|
454
476
|
#. module: account_financial_report
|
|
477
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__create_date
|
|
478
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__create_date
|
|
455
479
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__create_date
|
|
456
480
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__create_date
|
|
457
481
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__create_date
|
|
@@ -459,9 +483,10 @@ msgstr "Creat per "
|
|
|
459
483
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__create_date
|
|
460
484
|
#: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__create_date
|
|
461
485
|
msgid "Created on"
|
|
462
|
-
msgstr "Creat a
|
|
486
|
+
msgstr "Creat a"
|
|
463
487
|
|
|
464
488
|
#. module: account_financial_report
|
|
489
|
+
#. odoo-python
|
|
465
490
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
466
491
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
467
492
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
@@ -470,57 +495,60 @@ msgstr "Creat a "
|
|
|
470
495
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
471
496
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
472
497
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
473
|
-
#, python-format
|
|
474
498
|
msgid "Credit"
|
|
475
499
|
msgstr "Haver"
|
|
476
500
|
|
|
477
501
|
#. module: account_financial_report
|
|
502
|
+
#. odoo-python
|
|
478
503
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
479
504
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
msgstr ""
|
|
505
|
+
msgid "Cumul cur."
|
|
506
|
+
msgstr "Acum. div."
|
|
483
507
|
|
|
484
508
|
#. module: account_financial_report
|
|
509
|
+
#. odoo-python
|
|
485
510
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
486
|
-
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
487
|
-
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
488
511
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
512
|
+
msgid "Cumul. Bal."
|
|
513
|
+
msgstr "Saldo acum."
|
|
514
|
+
|
|
515
|
+
#. module: account_financial_report
|
|
516
|
+
#. odoo-python
|
|
517
|
+
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
489
518
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
490
519
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
491
|
-
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
492
|
-
#, python-format
|
|
493
520
|
msgid "Cur."
|
|
494
|
-
msgstr ""
|
|
521
|
+
msgstr "Div."
|
|
495
522
|
|
|
496
523
|
#. module: account_financial_report
|
|
524
|
+
#. odoo-python
|
|
497
525
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
498
526
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
499
|
-
#, python-format
|
|
500
527
|
msgid "Cur. Original"
|
|
501
|
-
msgstr ""
|
|
528
|
+
msgstr "Div. original"
|
|
502
529
|
|
|
503
530
|
#. module: account_financial_report
|
|
531
|
+
#. odoo-python
|
|
504
532
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
505
533
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
506
|
-
#, python-format
|
|
507
534
|
msgid "Cur. Residual"
|
|
508
|
-
msgstr ""
|
|
535
|
+
msgstr "Div. Residual"
|
|
509
536
|
|
|
510
537
|
#. module: account_financial_report
|
|
538
|
+
#. odoo-python
|
|
511
539
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
512
|
-
#, python-format
|
|
513
540
|
msgid "Currency"
|
|
514
541
|
msgstr "Moneda"
|
|
515
542
|
|
|
516
543
|
#. module: account_financial_report
|
|
544
|
+
#. odoo-python
|
|
517
545
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
518
546
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
519
|
-
#, python-format
|
|
520
547
|
msgid "Current"
|
|
521
548
|
msgstr "Actual"
|
|
522
549
|
|
|
523
550
|
#. module: account_financial_report
|
|
551
|
+
#. odoo-python
|
|
524
552
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
525
553
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
526
554
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
@@ -530,7 +558,6 @@ msgstr "Actual"
|
|
|
530
558
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
531
559
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
532
560
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
533
|
-
#, python-format
|
|
534
561
|
msgid "Date"
|
|
535
562
|
msgstr "Data"
|
|
536
563
|
|
|
@@ -538,7 +565,7 @@ msgstr "Data"
|
|
|
538
565
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__date_at
|
|
539
566
|
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__date_at
|
|
540
567
|
msgid "Date At"
|
|
541
|
-
msgstr ""
|
|
568
|
+
msgstr "Data a"
|
|
542
569
|
|
|
543
570
|
#. module: account_financial_report
|
|
544
571
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__date_from
|
|
@@ -557,17 +584,17 @@ msgid "Date To"
|
|
|
557
584
|
msgstr "Data final"
|
|
558
585
|
|
|
559
586
|
#. module: account_financial_report
|
|
587
|
+
#. odoo-python
|
|
560
588
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
561
589
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
562
590
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_filters
|
|
563
591
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
564
|
-
#, python-format
|
|
565
592
|
msgid "Date at filter"
|
|
566
|
-
msgstr ""
|
|
593
|
+
msgstr "Filtre de data a"
|
|
567
594
|
|
|
568
595
|
#. module: account_financial_report
|
|
596
|
+
#. odoo-python
|
|
569
597
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
570
|
-
#, python-format
|
|
571
598
|
msgid "Date from"
|
|
572
599
|
msgstr "Data inicial"
|
|
573
600
|
|
|
@@ -580,22 +607,23 @@ msgid "Date range"
|
|
|
580
607
|
msgstr "Rang de dates"
|
|
581
608
|
|
|
582
609
|
#. module: account_financial_report
|
|
610
|
+
#. odoo-python
|
|
583
611
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
584
612
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
585
613
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
586
614
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
587
615
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
588
|
-
#, python-format
|
|
589
616
|
msgid "Date range filter"
|
|
590
617
|
msgstr "Filtre del rang de dates"
|
|
591
618
|
|
|
592
619
|
#. module: account_financial_report
|
|
620
|
+
#. odoo-python
|
|
593
621
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
594
|
-
#, python-format
|
|
595
622
|
msgid "Date to"
|
|
596
623
|
msgstr "Data final"
|
|
597
624
|
|
|
598
625
|
#. module: account_financial_report
|
|
626
|
+
#. odoo-python
|
|
599
627
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
600
628
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
601
629
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
@@ -604,15 +632,14 @@ msgstr "Data final"
|
|
|
604
632
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
605
633
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
606
634
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
607
|
-
#, python-format
|
|
608
635
|
msgid "Debit"
|
|
609
636
|
msgstr "Deure"
|
|
610
637
|
|
|
611
638
|
#. module: account_financial_report
|
|
639
|
+
#. odoo-python
|
|
612
640
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
613
641
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
|
|
614
642
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
615
|
-
#, python-format
|
|
616
643
|
msgid "Description"
|
|
617
644
|
msgstr "Descripció"
|
|
618
645
|
|
|
@@ -622,33 +649,16 @@ msgid "Detail Taxes"
|
|
|
622
649
|
msgstr "Detall d'impostos"
|
|
623
650
|
|
|
624
651
|
#. module: account_financial_report
|
|
625
|
-
#: model:ir.model.fields,field_description:account_financial_report.
|
|
626
|
-
#: model:ir.model.fields,field_description:account_financial_report.
|
|
627
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_account_group__display_name
|
|
628
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_account_move_line__display_name
|
|
652
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__display_name
|
|
653
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__display_name
|
|
629
654
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__display_name
|
|
630
655
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__display_name
|
|
631
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_ir_actions_report__display_name
|
|
632
656
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__display_name
|
|
633
657
|
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__display_name
|
|
634
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_aged_partner_balance_xlsx__display_name
|
|
635
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_general_ledger_xlsx__display_name
|
|
636
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_journal_ledger_xlsx__display_name
|
|
637
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_open_items_xlsx__display_name
|
|
638
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_trial_balance_xlsx__display_name
|
|
639
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_vat_report_xlsx__display_name
|
|
640
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_abstract_report__display_name
|
|
641
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_abstract_report_xlsx__display_name
|
|
642
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_aged_partner_balance__display_name
|
|
643
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_general_ledger__display_name
|
|
644
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_journal_ledger__display_name
|
|
645
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_open_items__display_name
|
|
646
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_trial_balance__display_name
|
|
647
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_vat_report__display_name
|
|
648
658
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__display_name
|
|
649
659
|
#: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__display_name
|
|
650
660
|
msgid "Display Name"
|
|
651
|
-
msgstr "Nom a mostrar
|
|
661
|
+
msgstr "Nom a mostrar"
|
|
652
662
|
|
|
653
663
|
#. module: account_financial_report
|
|
654
664
|
#: model:ir.model.fields,help:account_financial_report.field_general_ledger_report_wizard__foreign_currency
|
|
@@ -674,21 +684,22 @@ msgid ""
|
|
|
674
684
|
"Due\n"
|
|
675
685
|
" date"
|
|
676
686
|
msgstr ""
|
|
687
|
+
"Data\n"
|
|
688
|
+
" venciment"
|
|
677
689
|
|
|
678
690
|
#. module: account_financial_report
|
|
679
691
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
680
|
-
#, fuzzy
|
|
681
692
|
msgid ""
|
|
682
693
|
"Due\n"
|
|
683
694
|
" date"
|
|
684
695
|
msgstr ""
|
|
685
|
-
"
|
|
686
|
-
"
|
|
696
|
+
"Data\n"
|
|
697
|
+
" venciment"
|
|
687
698
|
|
|
688
699
|
#. module: account_financial_report
|
|
700
|
+
#. odoo-python
|
|
689
701
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
690
702
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
691
|
-
#, python-format
|
|
692
703
|
msgid "Due date"
|
|
693
704
|
msgstr "Venciment"
|
|
694
705
|
|
|
@@ -708,6 +719,8 @@ msgid ""
|
|
|
708
719
|
"Ending\n"
|
|
709
720
|
" balance"
|
|
710
721
|
msgstr ""
|
|
722
|
+
"Saldo\n"
|
|
723
|
+
" final"
|
|
711
724
|
|
|
712
725
|
#. module: account_financial_report
|
|
713
726
|
#: model:ir.model.fields,help:account_financial_report.field_aged_partner_balance_report_wizard__account_code_to
|
|
@@ -718,32 +731,32 @@ msgid "Ending account in a range"
|
|
|
718
731
|
msgstr "Darrer compte d'un rang"
|
|
719
732
|
|
|
720
733
|
#. module: account_financial_report
|
|
734
|
+
#. odoo-python
|
|
721
735
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
722
736
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
723
737
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
724
738
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_ending_cumul
|
|
725
739
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
726
|
-
#, python-format
|
|
727
740
|
msgid "Ending balance"
|
|
728
741
|
msgstr "Saldo final"
|
|
729
742
|
|
|
730
743
|
#. module: account_financial_report
|
|
731
744
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
732
|
-
#, fuzzy
|
|
733
745
|
msgid ""
|
|
734
746
|
"Ending balance\n"
|
|
735
747
|
" cur."
|
|
736
748
|
msgstr ""
|
|
737
|
-
"
|
|
738
|
-
"
|
|
749
|
+
"Saldo final\n"
|
|
750
|
+
" div."
|
|
739
751
|
|
|
740
752
|
#. module: account_financial_report
|
|
753
|
+
#. odoo-python
|
|
741
754
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
742
|
-
#, python-format
|
|
743
755
|
msgid "Entries sorted by"
|
|
744
756
|
msgstr "Apunts ordenats per"
|
|
745
757
|
|
|
746
758
|
#. module: account_financial_report
|
|
759
|
+
#. odoo-python
|
|
747
760
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
748
761
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
749
762
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
@@ -752,20 +765,18 @@ msgstr "Apunts ordenats per"
|
|
|
752
765
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
753
766
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
754
767
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
755
|
-
#, python-format
|
|
756
768
|
msgid "Entry"
|
|
757
769
|
msgstr "Apunt"
|
|
758
770
|
|
|
759
771
|
#. module: account_financial_report
|
|
772
|
+
#. odoo-python
|
|
760
773
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
761
|
-
#, python-format
|
|
762
774
|
msgid "Entry number"
|
|
763
775
|
msgstr "Número d'apunt"
|
|
764
776
|
|
|
765
777
|
#. module: account_financial_report
|
|
766
|
-
#.
|
|
778
|
+
#. odoo-javascript
|
|
767
779
|
#: code:addons/account_financial_report/static/src/xml/report.xml:0
|
|
768
|
-
#, python-format
|
|
769
780
|
msgid "Export"
|
|
770
781
|
msgstr "Exportar"
|
|
771
782
|
|
|
@@ -803,12 +814,6 @@ msgstr "Filtra comptes"
|
|
|
803
814
|
msgid "Filter analytic accounts"
|
|
804
815
|
msgstr "Filtra comptes analítics"
|
|
805
816
|
|
|
806
|
-
#. module: account_financial_report
|
|
807
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__analytic_tag_ids
|
|
808
|
-
#: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
|
|
809
|
-
msgid "Filter analytic tags"
|
|
810
|
-
msgstr "Filtra etiquetes analítiques"
|
|
811
|
-
|
|
812
817
|
#. module: account_financial_report
|
|
813
818
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__cost_center_ids
|
|
814
819
|
msgid "Filter cost centers"
|
|
@@ -833,6 +838,11 @@ msgstr "Filtra partners"
|
|
|
833
838
|
msgid "Foreign Currency"
|
|
834
839
|
msgstr "Divisa estrangera"
|
|
835
840
|
|
|
841
|
+
#. module: account_financial_report
|
|
842
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
|
|
843
|
+
msgid "Format"
|
|
844
|
+
msgstr "Format"
|
|
845
|
+
|
|
836
846
|
#. module: account_financial_report
|
|
837
847
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.aged_partner_balance_wizard
|
|
838
848
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
|
|
@@ -848,12 +858,12 @@ msgid "From:"
|
|
|
848
858
|
msgstr "Des de:"
|
|
849
859
|
|
|
850
860
|
#. module: account_financial_report
|
|
861
|
+
#. odoo-python
|
|
851
862
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
852
863
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
853
864
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
msgstr "Des de: %s A: %s"
|
|
865
|
+
msgid "From: %(date_from)s To: %(date_to)s"
|
|
866
|
+
msgstr "De: %(date_from)s A: %(date_to)s"
|
|
857
867
|
|
|
858
868
|
#. module: account_financial_report
|
|
859
869
|
#: model:ir.model.fields,field_description:account_financial_report.field_account_group__complete_code
|
|
@@ -869,16 +879,16 @@ msgstr "Nom complet"
|
|
|
869
879
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__fy_start_date
|
|
870
880
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__fy_start_date
|
|
871
881
|
msgid "Fy Start Date"
|
|
872
|
-
msgstr ""
|
|
882
|
+
msgstr "Data inici exercici"
|
|
873
883
|
|
|
874
884
|
#. module: account_financial_report
|
|
885
|
+
#. odoo-python
|
|
875
886
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
876
887
|
#: model:ir.actions.act_window,name:account_financial_report.act_action_general_ledger_wizard_partner_relation
|
|
877
888
|
#: model:ir.actions.act_window,name:account_financial_report.action_general_ledger_wizard
|
|
878
889
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_general_ledger_html
|
|
879
890
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_general_ledger_qweb
|
|
880
891
|
#: model:ir.ui.menu,name:account_financial_report.menu_general_ledger_wizard
|
|
881
|
-
#, python-format
|
|
882
892
|
msgid "General Ledger"
|
|
883
893
|
msgstr "Llibre major"
|
|
884
894
|
|
|
@@ -913,7 +923,7 @@ msgid ""
|
|
|
913
923
|
"General Ledger can be computed only if selected company have\n"
|
|
914
924
|
" only one unaffected earnings account."
|
|
915
925
|
msgstr ""
|
|
916
|
-
"El llibre major només pot calcular-se si la empresa seleccionada
|
|
926
|
+
"El llibre major només pot calcular-se si la empresa seleccionada té\n"
|
|
917
927
|
" només un compte de guanys no afectat."
|
|
918
928
|
|
|
919
929
|
#. module: account_financial_report
|
|
@@ -922,13 +932,28 @@ msgid "Group entries by"
|
|
|
922
932
|
msgstr "Agrupar apunts per"
|
|
923
933
|
|
|
924
934
|
#. module: account_financial_report
|
|
935
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__grouped_by
|
|
936
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__grouped_by
|
|
937
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__grouped_by
|
|
938
|
+
msgid "Grouped By"
|
|
939
|
+
msgstr "Agrupat per"
|
|
940
|
+
|
|
941
|
+
#. module: account_financial_report
|
|
942
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
943
|
+
msgid ""
|
|
944
|
+
"Here you can set the intervals that will appear on the Aged Partner Balance."
|
|
945
|
+
msgstr ""
|
|
946
|
+
"Aquí podeu establir els intervals que apareixeran al balanç d'antiguitat de "
|
|
947
|
+
"partners."
|
|
948
|
+
|
|
949
|
+
#. module: account_financial_report
|
|
950
|
+
#. odoo-python
|
|
925
951
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
926
952
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
927
953
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
928
954
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
929
955
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
930
956
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
931
|
-
#, python-format
|
|
932
957
|
msgid "Hide"
|
|
933
958
|
msgstr "Amaga"
|
|
934
959
|
|
|
@@ -949,34 +974,12 @@ msgid "Hierarchy Levels to display"
|
|
|
949
974
|
msgstr "Nivells de jerarquia a mostrar"
|
|
950
975
|
|
|
951
976
|
#. module: account_financial_report
|
|
952
|
-
#: model:ir.model.fields,field_description:account_financial_report.
|
|
953
|
-
|
|
954
|
-
msgstr "Jerarquia en"
|
|
955
|
-
|
|
956
|
-
#. module: account_financial_report
|
|
957
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_account_account__id
|
|
958
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_account_financial_report_abstract_wizard__id
|
|
959
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_account_group__id
|
|
960
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_account_move_line__id
|
|
977
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__id
|
|
978
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__id
|
|
961
979
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__id
|
|
962
980
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__id
|
|
963
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_ir_actions_report__id
|
|
964
981
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__id
|
|
965
982
|
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__id
|
|
966
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_aged_partner_balance_xlsx__id
|
|
967
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_general_ledger_xlsx__id
|
|
968
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_journal_ledger_xlsx__id
|
|
969
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_open_items_xlsx__id
|
|
970
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_trial_balance_xlsx__id
|
|
971
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_vat_report_xlsx__id
|
|
972
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_abstract_report__id
|
|
973
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_abstract_report_xlsx__id
|
|
974
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_aged_partner_balance__id
|
|
975
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_general_ledger__id
|
|
976
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_journal_ledger__id
|
|
977
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_open_items__id
|
|
978
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_trial_balance__id
|
|
979
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_vat_report__id
|
|
980
983
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__id
|
|
981
984
|
#: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__id
|
|
982
985
|
msgid "ID"
|
|
@@ -991,15 +994,25 @@ msgstr ""
|
|
|
991
994
|
"Si es marca, no es mostraran els detalls a l'informe del llibre major (només "
|
|
992
995
|
"el webkit), només imports centralitzats per període."
|
|
993
996
|
|
|
997
|
+
#. module: account_financial_report
|
|
998
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__inferior_limit
|
|
999
|
+
msgid "Inferior Limit"
|
|
1000
|
+
msgstr "Límit inferior"
|
|
1001
|
+
|
|
1002
|
+
#. module: account_financial_report
|
|
1003
|
+
#. odoo-python
|
|
1004
|
+
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1005
|
+
msgid "Inferior Limit must be greather than zero"
|
|
1006
|
+
msgstr "El límit inferior ha de ser superior a zero"
|
|
1007
|
+
|
|
994
1008
|
#. module: account_financial_report
|
|
995
1009
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
996
|
-
#, fuzzy
|
|
997
1010
|
msgid ""
|
|
998
1011
|
"Initial\n"
|
|
999
1012
|
" balance cur."
|
|
1000
1013
|
msgstr ""
|
|
1001
|
-
"
|
|
1002
|
-
"
|
|
1014
|
+
"Saldo\n"
|
|
1015
|
+
" inicial div."
|
|
1003
1016
|
|
|
1004
1017
|
#. module: account_financial_report
|
|
1005
1018
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
@@ -1011,14 +1024,21 @@ msgstr ""
|
|
|
1011
1024
|
" inicial"
|
|
1012
1025
|
|
|
1013
1026
|
#. module: account_financial_report
|
|
1027
|
+
#. odoo-python
|
|
1014
1028
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1015
1029
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1016
1030
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1017
|
-
#, python-format
|
|
1018
1031
|
msgid "Initial balance"
|
|
1019
1032
|
msgstr "Saldo inicial"
|
|
1020
1033
|
|
|
1021
1034
|
#. module: account_financial_report
|
|
1035
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__age_partner_config_id
|
|
1036
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_res_config_settings__age_partner_config_id
|
|
1037
|
+
msgid "Intervals configuration"
|
|
1038
|
+
msgstr "Configuració d'intervals"
|
|
1039
|
+
|
|
1040
|
+
#. module: account_financial_report
|
|
1041
|
+
#. odoo-python
|
|
1022
1042
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1023
1043
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1024
1044
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
@@ -1027,7 +1047,6 @@ msgstr "Saldo inicial"
|
|
|
1027
1047
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
1028
1048
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1029
1049
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1030
|
-
#, python-format
|
|
1031
1050
|
msgid "Journal"
|
|
1032
1051
|
msgstr "Diari"
|
|
1033
1052
|
|
|
@@ -1039,14 +1058,14 @@ msgstr "Apunt comptable"
|
|
|
1039
1058
|
#. module: account_financial_report
|
|
1040
1059
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__domain
|
|
1041
1060
|
msgid "Journal Items Domain"
|
|
1042
|
-
msgstr ""
|
|
1061
|
+
msgstr "Domini d'apunts comptables"
|
|
1043
1062
|
|
|
1044
1063
|
#. module: account_financial_report
|
|
1064
|
+
#. odoo-python
|
|
1045
1065
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1046
1066
|
#: model:ir.actions.act_window,name:account_financial_report.action_journal_ledger_wizard
|
|
1047
1067
|
#: model:ir.actions.report,name:account_financial_report.action_print_journal_ledger_wizard_html
|
|
1048
1068
|
#: model:ir.ui.menu,name:account_financial_report.menu_journal_ledger_wizard
|
|
1049
|
-
#, python-format
|
|
1050
1069
|
msgid "Journal Ledger"
|
|
1051
1070
|
msgstr "Llibre diari"
|
|
1052
1071
|
|
|
@@ -1076,43 +1095,27 @@ msgid "Journal Ledger XLSX Report"
|
|
|
1076
1095
|
msgstr "Informe llibre diari XLSX"
|
|
1077
1096
|
|
|
1078
1097
|
#. module: account_financial_report
|
|
1098
|
+
#. odoo-python
|
|
1079
1099
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1080
1100
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__journal_ids
|
|
1081
1101
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.journal_ledger_wizard
|
|
1082
|
-
#, python-format
|
|
1083
1102
|
msgid "Journals"
|
|
1084
1103
|
msgstr "Diaris"
|
|
1085
1104
|
|
|
1086
1105
|
#. module: account_financial_report
|
|
1087
|
-
#: model:ir.model.fields,field_description:account_financial_report.
|
|
1088
|
-
#: model:ir.model.fields,field_description:account_financial_report.
|
|
1089
|
-
#: model:ir.model.fields,field_description:account_financial_report.
|
|
1090
|
-
#: model:ir.model.fields,field_description:account_financial_report.
|
|
1091
|
-
#: model:ir.model.fields,field_description:account_financial_report.
|
|
1092
|
-
#: model:ir.model.fields,field_description:account_financial_report.
|
|
1093
|
-
#: model:ir.model.fields,field_description:account_financial_report.
|
|
1094
|
-
|
|
1095
|
-
|
|
1096
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_aged_partner_balance_xlsx____last_update
|
|
1097
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_general_ledger_xlsx____last_update
|
|
1098
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_journal_ledger_xlsx____last_update
|
|
1099
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_open_items_xlsx____last_update
|
|
1100
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_trial_balance_xlsx____last_update
|
|
1101
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_vat_report_xlsx____last_update
|
|
1102
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_abstract_report____last_update
|
|
1103
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_abstract_report_xlsx____last_update
|
|
1104
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_aged_partner_balance____last_update
|
|
1105
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_general_ledger____last_update
|
|
1106
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_journal_ledger____last_update
|
|
1107
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_open_items____last_update
|
|
1108
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_trial_balance____last_update
|
|
1109
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_vat_report____last_update
|
|
1110
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard____last_update
|
|
1111
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard____last_update
|
|
1112
|
-
msgid "Last Modified on"
|
|
1113
|
-
msgstr "Última modificació a "
|
|
1106
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_financial_report_abstract_wizard__label_text_limit
|
|
1107
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__label_text_limit
|
|
1108
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__label_text_limit
|
|
1109
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__label_text_limit
|
|
1110
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__label_text_limit
|
|
1111
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__label_text_limit
|
|
1112
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__label_text_limit
|
|
1113
|
+
msgid "Label Text Limit"
|
|
1114
|
+
msgstr "Límit de text de l'etiqueta"
|
|
1114
1115
|
|
|
1115
1116
|
#. module: account_financial_report
|
|
1117
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__write_uid
|
|
1118
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__write_uid
|
|
1116
1119
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__write_uid
|
|
1117
1120
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__write_uid
|
|
1118
1121
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__write_uid
|
|
@@ -1120,9 +1123,11 @@ msgstr "Última modificació a "
|
|
|
1120
1123
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__write_uid
|
|
1121
1124
|
#: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__write_uid
|
|
1122
1125
|
msgid "Last Updated by"
|
|
1123
|
-
msgstr "Última actualització per
|
|
1126
|
+
msgstr "Última actualització per"
|
|
1124
1127
|
|
|
1125
1128
|
#. module: account_financial_report
|
|
1129
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__write_date
|
|
1130
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__write_date
|
|
1126
1131
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__write_date
|
|
1127
1132
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__write_date
|
|
1128
1133
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__write_date
|
|
@@ -1130,7 +1135,7 @@ msgstr "Última actualització per "
|
|
|
1130
1135
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__write_date
|
|
1131
1136
|
#: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__write_date
|
|
1132
1137
|
msgid "Last Updated on"
|
|
1133
|
-
msgstr "Última actualització a
|
|
1138
|
+
msgstr "Última actualització a"
|
|
1134
1139
|
|
|
1135
1140
|
#. module: account_financial_report
|
|
1136
1141
|
#: model:ir.model.fields,field_description:account_financial_report.field_account_group__level
|
|
@@ -1139,23 +1144,57 @@ msgid "Level"
|
|
|
1139
1144
|
msgstr "Nivell"
|
|
1140
1145
|
|
|
1141
1146
|
#. module: account_financial_report
|
|
1147
|
+
#. odoo-python
|
|
1142
1148
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1143
|
-
#, python-format
|
|
1144
1149
|
msgid "Level %s"
|
|
1145
1150
|
msgstr "Nivell %s"
|
|
1146
1151
|
|
|
1147
1152
|
#. module: account_financial_report
|
|
1153
|
+
#. odoo-python
|
|
1148
1154
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1149
1155
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__limit_hierarchy_level
|
|
1150
1156
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1151
|
-
#, python-format
|
|
1152
1157
|
msgid "Limit hierarchy levels"
|
|
1153
1158
|
msgstr "Limita nivells de jerarquia"
|
|
1154
1159
|
|
|
1160
|
+
#. module: account_financial_report
|
|
1161
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__line_ids
|
|
1162
|
+
msgid "Line"
|
|
1163
|
+
msgstr "Línia"
|
|
1164
|
+
|
|
1165
|
+
#. module: account_financial_report
|
|
1166
|
+
#. odoo-python
|
|
1167
|
+
#: code:addons/account_financial_report/report/general_ledger.py:0
|
|
1168
|
+
#: code:addons/account_financial_report/report/open_items.py:0
|
|
1169
|
+
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1170
|
+
#: code:addons/account_financial_report/report/trial_balance.py:0
|
|
1171
|
+
msgid "Missing Partner"
|
|
1172
|
+
msgstr "Falta el partner"
|
|
1173
|
+
|
|
1174
|
+
#. module: account_financial_report
|
|
1175
|
+
#. odoo-python
|
|
1176
|
+
#: code:addons/account_financial_report/report/open_items.py:0
|
|
1177
|
+
msgid "Missing Salesperson"
|
|
1178
|
+
msgstr "Falta comercial"
|
|
1179
|
+
|
|
1180
|
+
#. module: account_financial_report
|
|
1181
|
+
#: model:ir.model,name:account_financial_report.model_account_age_report_configuration_line
|
|
1182
|
+
msgid "Model to set interval lines for Age partner balance report"
|
|
1183
|
+
msgstr ""
|
|
1184
|
+
"Model per establir línies d'interval per a l'informe de saldo d'antiguitat "
|
|
1185
|
+
"de partners"
|
|
1186
|
+
|
|
1187
|
+
#. module: account_financial_report
|
|
1188
|
+
#: model:ir.model,name:account_financial_report.model_account_age_report_configuration
|
|
1189
|
+
msgid "Model to set intervals for Age partner balance report"
|
|
1190
|
+
msgstr ""
|
|
1191
|
+
"Model per establir intervals per a l'informe de saldo d'antiguitat de "
|
|
1192
|
+
"partners"
|
|
1193
|
+
|
|
1155
1194
|
#. module: account_financial_report
|
|
1156
1195
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__move_target
|
|
1157
1196
|
msgid "Move Target"
|
|
1158
|
-
msgstr ""
|
|
1197
|
+
msgstr "Moviment destí"
|
|
1159
1198
|
|
|
1160
1199
|
#. module: account_financial_report
|
|
1161
1200
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal
|
|
@@ -1163,52 +1202,65 @@ msgid "Moves"
|
|
|
1163
1202
|
msgstr "Assentaments"
|
|
1164
1203
|
|
|
1165
1204
|
#. module: account_financial_report
|
|
1205
|
+
#. odoo-python
|
|
1206
|
+
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1207
|
+
msgid "Must complete Configuration Lines"
|
|
1208
|
+
msgstr "Heu de completar les línies de configuració"
|
|
1209
|
+
|
|
1210
|
+
#. module: account_financial_report
|
|
1211
|
+
#. odoo-python
|
|
1166
1212
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1167
1213
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1214
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__name
|
|
1215
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__name
|
|
1168
1216
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
|
|
1169
1217
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
1170
1218
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
1171
|
-
#, python-format
|
|
1172
1219
|
msgid "Name"
|
|
1173
1220
|
msgstr "Nom"
|
|
1174
1221
|
|
|
1175
1222
|
#. module: account_financial_report
|
|
1223
|
+
#: model:ir.model.constraint,message:account_financial_report.constraint_account_age_report_configuration_line_unique_name_config_combination
|
|
1224
|
+
msgid "Name must be unique per report configuration"
|
|
1225
|
+
msgstr "El nom ha de ser únic per configuració d'informe"
|
|
1226
|
+
|
|
1227
|
+
#. module: account_financial_report
|
|
1228
|
+
#. odoo-python
|
|
1176
1229
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1177
1230
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
1178
|
-
#, python-format
|
|
1179
1231
|
msgid "Net"
|
|
1180
1232
|
msgstr "Net"
|
|
1181
1233
|
|
|
1182
1234
|
#. module: account_financial_report
|
|
1235
|
+
#. odoo-python
|
|
1183
1236
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1184
1237
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1185
1238
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1186
1239
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1187
|
-
#, python-format
|
|
1188
1240
|
msgid "No"
|
|
1189
1241
|
msgstr "No"
|
|
1190
1242
|
|
|
1191
1243
|
#. module: account_financial_report
|
|
1244
|
+
#. odoo-python
|
|
1192
1245
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
1193
|
-
#, python-format
|
|
1194
1246
|
msgid "No group"
|
|
1195
1247
|
msgstr "Sense grup"
|
|
1196
1248
|
|
|
1197
1249
|
#. module: account_financial_report
|
|
1198
|
-
|
|
1199
|
-
msgid "No hierarchy"
|
|
1200
|
-
msgstr "Sense jerarquia"
|
|
1201
|
-
|
|
1202
|
-
#. module: account_financial_report
|
|
1250
|
+
#. odoo-python
|
|
1203
1251
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1204
1252
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1205
|
-
#, python-format
|
|
1206
1253
|
msgid "No limit"
|
|
1207
1254
|
msgstr "Sense límit"
|
|
1208
1255
|
|
|
1209
1256
|
#. module: account_financial_report
|
|
1257
|
+
#: model:ir.model.fields.selection,name:account_financial_report.selection__general_ledger_report_wizard__grouped_by__none
|
|
1258
|
+
msgid "None"
|
|
1259
|
+
msgstr "Cap"
|
|
1260
|
+
|
|
1261
|
+
#. module: account_financial_report
|
|
1262
|
+
#. odoo-python
|
|
1210
1263
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
1211
|
-
#, python-format
|
|
1212
1264
|
msgid "Not Posted"
|
|
1213
1265
|
msgstr "No confirmat"
|
|
1214
1266
|
|
|
@@ -1218,10 +1270,9 @@ msgid "Not due"
|
|
|
1218
1270
|
msgstr "No vençut"
|
|
1219
1271
|
|
|
1220
1272
|
#. module: account_financial_report
|
|
1221
|
-
#:
|
|
1222
|
-
|
|
1223
|
-
|
|
1224
|
-
msgstr ""
|
|
1273
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
1274
|
+
msgid "OCA Aged Report Configuration"
|
|
1275
|
+
msgstr "Configuració de l'informe d'antiguitat OCA"
|
|
1225
1276
|
|
|
1226
1277
|
#. module: account_financial_report
|
|
1227
1278
|
#: model:ir.ui.menu,name:account_financial_report.menu_oca_reports
|
|
@@ -1229,19 +1280,25 @@ msgid "OCA accounting reports"
|
|
|
1229
1280
|
msgstr "Informes comptables OCA"
|
|
1230
1281
|
|
|
1231
1282
|
#. module: account_financial_report
|
|
1283
|
+
#. odoo-python
|
|
1232
1284
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1233
1285
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
1234
|
-
#, python-format
|
|
1235
1286
|
msgid "Older"
|
|
1236
1287
|
msgstr "Més antic"
|
|
1237
1288
|
|
|
1238
1289
|
#. module: account_financial_report
|
|
1290
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__only_one_unaffected_earnings_account
|
|
1291
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__only_one_unaffected_earnings_account
|
|
1292
|
+
msgid "Only One Unaffected Earnings Account"
|
|
1293
|
+
msgstr "Només un compte de guanys no afectats"
|
|
1294
|
+
|
|
1295
|
+
#. module: account_financial_report
|
|
1296
|
+
#. odoo-python
|
|
1239
1297
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1240
1298
|
#: model:ir.actions.act_window,name:account_financial_report.action_open_items_wizard
|
|
1241
1299
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_open_items_html
|
|
1242
1300
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_open_items_qweb
|
|
1243
1301
|
#: model:ir.ui.menu,name:account_financial_report.menu_open_items_wizard
|
|
1244
|
-
#, python-format
|
|
1245
1302
|
msgid "Open Items"
|
|
1246
1303
|
msgstr "Partides obertes"
|
|
1247
1304
|
|
|
@@ -1253,7 +1310,7 @@ msgstr "Partides obertes -"
|
|
|
1253
1310
|
#. module: account_financial_report
|
|
1254
1311
|
#: model:ir.actions.act_window,name:account_financial_report.act_action_open_items_wizard_partner_relation
|
|
1255
1312
|
msgid "Open Items Partner"
|
|
1256
|
-
msgstr ""
|
|
1313
|
+
msgstr "Partner de partides obertes"
|
|
1257
1314
|
|
|
1258
1315
|
#. module: account_financial_report
|
|
1259
1316
|
#: model:ir.model,name:account_financial_report.model_report_account_financial_report_open_items
|
|
@@ -1281,13 +1338,14 @@ msgid "Options"
|
|
|
1281
1338
|
msgstr "Opcions"
|
|
1282
1339
|
|
|
1283
1340
|
#. module: account_financial_report
|
|
1341
|
+
#. odoo-python
|
|
1284
1342
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1285
1343
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1286
|
-
#, python-format
|
|
1287
1344
|
msgid "Original"
|
|
1288
1345
|
msgstr "Original"
|
|
1289
1346
|
|
|
1290
1347
|
#. module: account_financial_report
|
|
1348
|
+
#. odoo-python
|
|
1291
1349
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1292
1350
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1293
1351
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
@@ -1299,9 +1357,8 @@ msgstr "Original"
|
|
|
1299
1357
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1300
1358
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1301
1359
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
1302
|
-
#, python-format
|
|
1303
1360
|
msgid "Partner"
|
|
1304
|
-
msgstr "
|
|
1361
|
+
msgstr "Empresa"
|
|
1305
1362
|
|
|
1306
1363
|
#. module: account_financial_report
|
|
1307
1364
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_partner_ending_cumul
|
|
@@ -1309,28 +1366,46 @@ msgid ""
|
|
|
1309
1366
|
"Partner\n"
|
|
1310
1367
|
" cumul aged balance"
|
|
1311
1368
|
msgstr ""
|
|
1369
|
+
"Saldo d'antiguitat\n"
|
|
1370
|
+
" acumulada del partner"
|
|
1312
1371
|
|
|
1313
1372
|
#. module: account_financial_report
|
|
1373
|
+
#. odoo-python
|
|
1314
1374
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1315
|
-
#, python-format
|
|
1316
1375
|
msgid "Partner Initial balance"
|
|
1317
1376
|
msgstr "Saldo inicial partner"
|
|
1318
1377
|
|
|
1319
1378
|
#. module: account_financial_report
|
|
1379
|
+
#: model:ir.model.fields.selection,name:account_financial_report.selection__open_items_report_wizard__grouped_by__salesperson
|
|
1380
|
+
msgid "Partner Salesperson"
|
|
1381
|
+
msgstr "Comercial del partner"
|
|
1382
|
+
|
|
1383
|
+
#. module: account_financial_report
|
|
1384
|
+
#. odoo-python
|
|
1320
1385
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1321
|
-
#, python-format
|
|
1322
1386
|
msgid "Partner cumul aged balance"
|
|
1323
|
-
msgstr ""
|
|
1387
|
+
msgstr "Saldo d'antiguitat acumulada del partner"
|
|
1324
1388
|
|
|
1325
1389
|
#. module: account_financial_report
|
|
1390
|
+
#. odoo-python
|
|
1326
1391
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1327
1392
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1328
1393
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_ending_cumul
|
|
1329
1394
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_ending_cumul
|
|
1330
|
-
#, python-format
|
|
1331
1395
|
msgid "Partner ending balance"
|
|
1332
1396
|
msgstr "Saldo final partner"
|
|
1333
1397
|
|
|
1398
|
+
#. module: account_financial_report
|
|
1399
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1400
|
+
msgid "Partner initial balance"
|
|
1401
|
+
msgstr "Saldo inicial partner"
|
|
1402
|
+
|
|
1403
|
+
#. module: account_financial_report
|
|
1404
|
+
#: model:ir.model.fields.selection,name:account_financial_report.selection__general_ledger_report_wizard__grouped_by__partners
|
|
1405
|
+
#: model:ir.model.fields.selection,name:account_financial_report.selection__open_items_report_wizard__grouped_by__partners
|
|
1406
|
+
msgid "Partners"
|
|
1407
|
+
msgstr "Empreses"
|
|
1408
|
+
|
|
1334
1409
|
#. module: account_financial_report
|
|
1335
1410
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__payable_accounts_only
|
|
1336
1411
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__payable_accounts_only
|
|
@@ -1345,9 +1420,9 @@ msgid "Percents"
|
|
|
1345
1420
|
msgstr "Percentatges"
|
|
1346
1421
|
|
|
1347
1422
|
#. module: account_financial_report
|
|
1423
|
+
#. odoo-python
|
|
1348
1424
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1349
1425
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
1350
|
-
#, python-format
|
|
1351
1426
|
msgid "Period balance"
|
|
1352
1427
|
msgstr "Saldo del període"
|
|
1353
1428
|
|
|
@@ -1357,24 +1432,17 @@ msgid "Periods"
|
|
|
1357
1432
|
msgstr "Períodes"
|
|
1358
1433
|
|
|
1359
1434
|
#. module: account_financial_report
|
|
1435
|
+
#. odoo-python
|
|
1360
1436
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
1361
|
-
#, python-format
|
|
1362
1437
|
msgid "Posted"
|
|
1363
|
-
msgstr ""
|
|
1364
|
-
|
|
1365
|
-
#. module: account_financial_report
|
|
1366
|
-
#. openerp-web
|
|
1367
|
-
#: code:addons/account_financial_report/static/src/xml/report.xml:0
|
|
1368
|
-
#, python-format
|
|
1369
|
-
msgid "Print"
|
|
1370
|
-
msgstr "Imprimir"
|
|
1438
|
+
msgstr "Confirmat"
|
|
1371
1439
|
|
|
1372
1440
|
#. module: account_financial_report
|
|
1441
|
+
#. odoo-python
|
|
1373
1442
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1374
1443
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1375
|
-
#, python-format
|
|
1376
1444
|
msgid "Rec."
|
|
1377
|
-
msgstr ""
|
|
1445
|
+
msgstr "Conc."
|
|
1378
1446
|
|
|
1379
1447
|
#. module: account_financial_report
|
|
1380
1448
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__receivable_accounts_only
|
|
@@ -1391,26 +1459,27 @@ msgid ""
|
|
|
1391
1459
|
"Ref -\n"
|
|
1392
1460
|
" Label"
|
|
1393
1461
|
msgstr ""
|
|
1462
|
+
"Ref -\n"
|
|
1463
|
+
" Etiqueta"
|
|
1394
1464
|
|
|
1395
1465
|
#. module: account_financial_report
|
|
1396
1466
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1397
|
-
#, fuzzy
|
|
1398
1467
|
msgid ""
|
|
1399
1468
|
"Ref -\n"
|
|
1400
1469
|
" Label"
|
|
1401
1470
|
msgstr ""
|
|
1402
|
-
"
|
|
1403
|
-
"
|
|
1471
|
+
"Ref -\n"
|
|
1472
|
+
" Etiqueta"
|
|
1404
1473
|
|
|
1405
1474
|
#. module: account_financial_report
|
|
1475
|
+
#. odoo-python
|
|
1406
1476
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1407
1477
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1408
1478
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1409
1479
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1410
1480
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1411
|
-
#, python-format
|
|
1412
1481
|
msgid "Ref - Label"
|
|
1413
|
-
msgstr ""
|
|
1482
|
+
msgstr "Ref - Etiqueta"
|
|
1414
1483
|
|
|
1415
1484
|
#. module: account_financial_report
|
|
1416
1485
|
#: model:ir.model,name:account_financial_report.model_ir_actions_report
|
|
@@ -1418,30 +1487,30 @@ msgid "Report Action"
|
|
|
1418
1487
|
msgstr "Acció d'informe"
|
|
1419
1488
|
|
|
1420
1489
|
#. module: account_financial_report
|
|
1490
|
+
#. odoo-python
|
|
1421
1491
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1422
1492
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1423
1493
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_lines_header
|
|
1424
1494
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
1425
1495
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1426
|
-
#, python-format
|
|
1427
1496
|
msgid "Residual"
|
|
1428
|
-
msgstr "
|
|
1497
|
+
msgstr "Pendent"
|
|
1429
1498
|
|
|
1430
1499
|
#. module: account_financial_report
|
|
1500
|
+
#. odoo-python
|
|
1431
1501
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1432
1502
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1433
|
-
#, python-format
|
|
1434
1503
|
msgid "Sequence"
|
|
1435
1504
|
msgstr "Seqüència"
|
|
1436
1505
|
|
|
1437
1506
|
#. module: account_financial_report
|
|
1507
|
+
#. odoo-python
|
|
1438
1508
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1439
1509
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1440
1510
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1441
1511
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1442
1512
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
1443
1513
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1444
|
-
#, python-format
|
|
1445
1514
|
msgid "Show"
|
|
1446
1515
|
msgstr "Mostrar"
|
|
1447
1516
|
|
|
@@ -1461,31 +1530,27 @@ msgid "Show Move Line Details"
|
|
|
1461
1530
|
msgstr "Mostrar detalls d'apunts"
|
|
1462
1531
|
|
|
1463
1532
|
#. module: account_financial_report
|
|
1464
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__show_partner_details
|
|
1465
1533
|
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__show_partner_details
|
|
1466
1534
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__show_partner_details
|
|
1467
1535
|
msgid "Show Partner Details"
|
|
1468
1536
|
msgstr "Mostrar detalls de partner"
|
|
1469
1537
|
|
|
1470
1538
|
#. module: account_financial_report
|
|
1471
|
-
|
|
1472
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__show_analytic_tags
|
|
1473
|
-
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1474
|
-
#, python-format
|
|
1475
|
-
msgid "Show analytic tags"
|
|
1476
|
-
msgstr "Mostrar etiquetes analítiques"
|
|
1477
|
-
|
|
1478
|
-
#. module: account_financial_report
|
|
1539
|
+
#. odoo-python
|
|
1479
1540
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1480
1541
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1481
1542
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1482
1543
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__foreign_currency
|
|
1483
1544
|
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__foreign_currency
|
|
1484
1545
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__foreign_currency
|
|
1485
|
-
#, python-format
|
|
1486
1546
|
msgid "Show foreign currency"
|
|
1487
1547
|
msgstr "Mostrar divisa estrangera"
|
|
1488
1548
|
|
|
1549
|
+
#. module: account_financial_report
|
|
1550
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__show_hierarchy
|
|
1551
|
+
msgid "Show hierarchy"
|
|
1552
|
+
msgstr "Mostrar jerarquia"
|
|
1553
|
+
|
|
1489
1554
|
#. module: account_financial_report
|
|
1490
1555
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__sort_option
|
|
1491
1556
|
msgid "Sort entries by"
|
|
@@ -1504,15 +1569,19 @@ msgstr "Data inicial"
|
|
|
1504
1569
|
#. module: account_financial_report
|
|
1505
1570
|
#: model:ir.model.fields,help:account_financial_report.field_aged_partner_balance_report_wizard__account_code_from
|
|
1506
1571
|
#: model:ir.model.fields,help:account_financial_report.field_general_ledger_report_wizard__account_code_from
|
|
1507
|
-
#: model:ir.model.fields,help:account_financial_report.field_open_items_report_wizard__account_code_from
|
|
1508
1572
|
#: model:ir.model.fields,help:account_financial_report.field_trial_balance_report_wizard__account_code_from
|
|
1509
1573
|
msgid "Starting account in a range"
|
|
1510
1574
|
msgstr "Compte inicial del rang"
|
|
1511
1575
|
|
|
1512
1576
|
#. module: account_financial_report
|
|
1513
|
-
|
|
1577
|
+
#. odoo-python
|
|
1578
|
+
#: code:addons/account_financial_report/report/trial_balance.py:0
|
|
1579
|
+
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1580
|
+
msgid "TOTAL"
|
|
1581
|
+
msgstr "TOTAL"
|
|
1582
|
+
|
|
1583
|
+
#. module: account_financial_report
|
|
1514
1584
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1515
|
-
#, python-format
|
|
1516
1585
|
msgid "Tags"
|
|
1517
1586
|
msgstr "Etiquetes"
|
|
1518
1587
|
|
|
@@ -1523,9 +1592,10 @@ msgstr "Etiquetes"
|
|
|
1523
1592
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__target_move
|
|
1524
1593
|
#: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__target_move
|
|
1525
1594
|
msgid "Target Moves"
|
|
1526
|
-
msgstr ""
|
|
1595
|
+
msgstr "Assentaments a incloure"
|
|
1527
1596
|
|
|
1528
1597
|
#. module: account_financial_report
|
|
1598
|
+
#. odoo-python
|
|
1529
1599
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1530
1600
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1531
1601
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
@@ -1535,14 +1605,13 @@ msgstr ""
|
|
|
1535
1605
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1536
1606
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
1537
1607
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1538
|
-
#, python-format
|
|
1539
1608
|
msgid "Target moves filter"
|
|
1540
|
-
msgstr ""
|
|
1609
|
+
msgstr "Filtre d'assentaments a incloure"
|
|
1541
1610
|
|
|
1542
1611
|
#. module: account_financial_report
|
|
1612
|
+
#. odoo-python
|
|
1543
1613
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1544
1614
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
1545
|
-
#, python-format
|
|
1546
1615
|
msgid "Tax"
|
|
1547
1616
|
msgstr "Impost"
|
|
1548
1617
|
|
|
@@ -1553,49 +1622,68 @@ msgid "Tax Amount"
|
|
|
1553
1622
|
msgstr "Total impost"
|
|
1554
1623
|
|
|
1555
1624
|
#. module: account_financial_report
|
|
1625
|
+
#. odoo-python
|
|
1556
1626
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1557
|
-
#, python-format
|
|
1558
1627
|
msgid "Tax Balance"
|
|
1559
1628
|
msgstr "Saldo d'impostos"
|
|
1560
1629
|
|
|
1561
1630
|
#. module: account_financial_report
|
|
1631
|
+
#. odoo-python
|
|
1562
1632
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1563
|
-
#, python-format
|
|
1564
1633
|
msgid "Tax Credit"
|
|
1565
|
-
msgstr ""
|
|
1634
|
+
msgstr "Haver impost"
|
|
1566
1635
|
|
|
1567
1636
|
#. module: account_financial_report
|
|
1637
|
+
#. odoo-python
|
|
1568
1638
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1569
|
-
#, python-format
|
|
1570
1639
|
msgid "Tax Debit"
|
|
1571
|
-
msgstr ""
|
|
1640
|
+
msgstr "Deure impost"
|
|
1572
1641
|
|
|
1573
1642
|
#. module: account_financial_report
|
|
1643
|
+
#. odoo-python
|
|
1574
1644
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1575
1645
|
#: model:ir.model.fields.selection,name:account_financial_report.selection__vat_report_wizard__based_on__taxgroups
|
|
1576
|
-
#, python-format
|
|
1577
1646
|
msgid "Tax Groups"
|
|
1578
1647
|
msgstr "Grups d'impostos"
|
|
1579
1648
|
|
|
1580
1649
|
#. module: account_financial_report
|
|
1650
|
+
#. odoo-python
|
|
1651
|
+
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1652
|
+
msgid "Tax Initial balance"
|
|
1653
|
+
msgstr "Saldo inicial d'impostos"
|
|
1654
|
+
|
|
1655
|
+
#. module: account_financial_report
|
|
1656
|
+
#. odoo-python
|
|
1581
1657
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1582
1658
|
#: model:ir.model.fields.selection,name:account_financial_report.selection__vat_report_wizard__based_on__taxtags
|
|
1583
|
-
#, python-format
|
|
1584
1659
|
msgid "Tax Tags"
|
|
1585
1660
|
msgstr "Etiquetes d'impostos"
|
|
1586
1661
|
|
|
1587
1662
|
#. module: account_financial_report
|
|
1663
|
+
#. odoo-python
|
|
1664
|
+
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1665
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_ending_cumul
|
|
1666
|
+
msgid "Tax ending balance"
|
|
1667
|
+
msgstr "Saldo final d'impostos"
|
|
1668
|
+
|
|
1669
|
+
#. module: account_financial_report
|
|
1670
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1671
|
+
msgid "Tax initial balance"
|
|
1672
|
+
msgstr "Saldo inicial d'impostos"
|
|
1673
|
+
|
|
1674
|
+
#. module: account_financial_report
|
|
1675
|
+
#. odoo-python
|
|
1588
1676
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1589
1677
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1678
|
+
#: model:ir.model.fields.selection,name:account_financial_report.selection__general_ledger_report_wizard__grouped_by__taxes
|
|
1590
1679
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1591
1680
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1592
|
-
#, python-format
|
|
1593
1681
|
msgid "Taxes"
|
|
1594
1682
|
msgstr "Impostos"
|
|
1595
1683
|
|
|
1596
1684
|
#. module: account_financial_report
|
|
1685
|
+
#. odoo-python
|
|
1597
1686
|
#: code:addons/account_financial_report/wizard/general_ledger_wizard.py:0
|
|
1598
|
-
#, python-format
|
|
1599
1687
|
msgid ""
|
|
1600
1688
|
"The Company in the General Ledger Report Wizard and in Date Range must be "
|
|
1601
1689
|
"the same."
|
|
@@ -1604,18 +1692,18 @@ msgstr ""
|
|
|
1604
1692
|
"mateixa."
|
|
1605
1693
|
|
|
1606
1694
|
#. module: account_financial_report
|
|
1695
|
+
#. odoo-python
|
|
1607
1696
|
#: code:addons/account_financial_report/wizard/trial_balance_wizard.py:0
|
|
1608
|
-
#, python-format
|
|
1609
1697
|
msgid ""
|
|
1610
1698
|
"The Company in the Trial Balance Report Wizard and in Date Range must be the "
|
|
1611
1699
|
"same."
|
|
1612
1700
|
msgstr ""
|
|
1613
|
-
"La
|
|
1614
|
-
"mateixa."
|
|
1701
|
+
"La companyia de l'informe del balanç de sumes i saldos i la del rang de "
|
|
1702
|
+
"dates han de ser la mateixa."
|
|
1615
1703
|
|
|
1616
1704
|
#. module: account_financial_report
|
|
1705
|
+
#. odoo-python
|
|
1617
1706
|
#: code:addons/account_financial_report/wizard/vat_report_wizard.py:0
|
|
1618
|
-
#, python-format
|
|
1619
1707
|
msgid ""
|
|
1620
1708
|
"The Company in the Vat Report Wizard and in Date Range must be the same."
|
|
1621
1709
|
msgstr ""
|
|
@@ -1623,11 +1711,21 @@ msgstr ""
|
|
|
1623
1711
|
"mateixa."
|
|
1624
1712
|
|
|
1625
1713
|
#. module: account_financial_report
|
|
1714
|
+
#. odoo-python
|
|
1626
1715
|
#: code:addons/account_financial_report/wizard/trial_balance_wizard.py:0
|
|
1627
|
-
#, python-format
|
|
1628
1716
|
msgid "The hierarchy level to filter on must be greater than 0."
|
|
1629
1717
|
msgstr "El nivell de jerarquia pel filtre ha de ser més gran que 0."
|
|
1630
1718
|
|
|
1719
|
+
#. module: account_financial_report
|
|
1720
|
+
#. odoo-python
|
|
1721
|
+
#: code:addons/account_financial_report/report/trial_balance.py:0
|
|
1722
|
+
msgid ""
|
|
1723
|
+
"There is a problem in the structure of the account groups. You may need to "
|
|
1724
|
+
"create some child group of %s."
|
|
1725
|
+
msgstr ""
|
|
1726
|
+
"Hi ha un problema en l'estructura dels grups de comptes. És possible que "
|
|
1727
|
+
"hàgiu de crear algun grup fill de %s."
|
|
1728
|
+
|
|
1631
1729
|
#. module: account_financial_report
|
|
1632
1730
|
#: model:ir.model.fields,help:account_financial_report.field_general_ledger_report_wizard__domain
|
|
1633
1731
|
msgid "This domain will be used to select specific domain for Journal Items"
|
|
@@ -1646,31 +1744,31 @@ msgid "To:"
|
|
|
1646
1744
|
msgstr "Fins:"
|
|
1647
1745
|
|
|
1648
1746
|
#. module: account_financial_report
|
|
1747
|
+
#. odoo-python
|
|
1748
|
+
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1649
1749
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_account_ending_cumul
|
|
1650
1750
|
msgid "Total"
|
|
1651
1751
|
msgstr "Total"
|
|
1652
1752
|
|
|
1653
1753
|
#. module: account_financial_report
|
|
1754
|
+
#. odoo-python
|
|
1654
1755
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1655
1756
|
#: model:ir.actions.act_window,name:account_financial_report.action_trial_balance_wizard
|
|
1656
1757
|
#: model:ir.actions.report,name:account_financial_report.action_report_trial_balance_html
|
|
1657
1758
|
#: model:ir.actions.report,name:account_financial_report.action_report_trial_balance_qweb
|
|
1658
1759
|
#: model:ir.ui.menu,name:account_financial_report.menu_trial_balance_wizard
|
|
1659
|
-
#, python-format
|
|
1660
1760
|
msgid "Trial Balance"
|
|
1661
1761
|
msgstr "Balanç de sumes i saldos"
|
|
1662
1762
|
|
|
1663
1763
|
#. module: account_financial_report
|
|
1664
1764
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_base
|
|
1665
|
-
#, fuzzy
|
|
1666
1765
|
msgid "Trial Balance -"
|
|
1667
|
-
msgstr "
|
|
1766
|
+
msgstr "Balanç de sumes i saldos-"
|
|
1668
1767
|
|
|
1669
1768
|
#. module: account_financial_report
|
|
1670
1769
|
#: model:ir.model,name:account_financial_report.model_report_account_financial_report_trial_balance
|
|
1671
|
-
#, fuzzy
|
|
1672
1770
|
msgid "Trial Balance Report"
|
|
1673
|
-
msgstr "
|
|
1771
|
+
msgstr "Balanç de sumes i saldos"
|
|
1674
1772
|
|
|
1675
1773
|
#. module: account_financial_report
|
|
1676
1774
|
#: model:ir.model,name:account_financial_report.model_trial_balance_report_wizard
|
|
@@ -1684,9 +1782,8 @@ msgstr "Balanç de sumes i saldos XLSX"
|
|
|
1684
1782
|
|
|
1685
1783
|
#. module: account_financial_report
|
|
1686
1784
|
#: model:ir.model,name:account_financial_report.model_report_a_f_r_report_trial_balance_xlsx
|
|
1687
|
-
#, fuzzy
|
|
1688
1785
|
msgid "Trial Balance XLSX Report"
|
|
1689
|
-
msgstr "
|
|
1786
|
+
msgstr "Informe XLSX de balanç de sumes i saldos"
|
|
1690
1787
|
|
|
1691
1788
|
#. module: account_financial_report
|
|
1692
1789
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.trial_balance_wizard
|
|
@@ -1694,6 +1791,9 @@ msgid ""
|
|
|
1694
1791
|
"Trial Balance can be computed only if selected company have only\n"
|
|
1695
1792
|
" one unaffected earnings account."
|
|
1696
1793
|
msgstr ""
|
|
1794
|
+
"El balanç de comprovació només es pot calcular si l'empresa seleccionada té "
|
|
1795
|
+
"només\n"
|
|
1796
|
+
" un compte de guanys no afectats."
|
|
1697
1797
|
|
|
1698
1798
|
#. module: account_financial_report
|
|
1699
1799
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__unaffected_earnings_account
|
|
@@ -1709,6 +1809,14 @@ msgid ""
|
|
|
1709
1809
|
"If partners are filtered, debits and credits totals will not match the trial "
|
|
1710
1810
|
"balance."
|
|
1711
1811
|
msgstr ""
|
|
1812
|
+
"Utilitzeu aquest filtre per amagar un compte o una empresa amb un saldo "
|
|
1813
|
+
"final a 0. Si es filtren les empreses, els totals del deure i l'haver no "
|
|
1814
|
+
"coincidiran amb el balanç de sumes i saldos."
|
|
1815
|
+
|
|
1816
|
+
#. module: account_financial_report
|
|
1817
|
+
#: model:ir.model.fields,help:account_financial_report.field_trial_balance_report_wizard__show_hierarchy
|
|
1818
|
+
msgid "Use when your account groups are hierarchical"
|
|
1819
|
+
msgstr "Utilitzeu quan els vostres grups de comptes siguin jeràrquics"
|
|
1712
1820
|
|
|
1713
1821
|
#. module: account_financial_report
|
|
1714
1822
|
#: model:ir.actions.act_window,name:account_financial_report.action_vat_report_wizard
|
|
@@ -1739,16 +1847,15 @@ msgid "VAT Report XLSX"
|
|
|
1739
1847
|
msgstr "Informe d'IVA XLSX"
|
|
1740
1848
|
|
|
1741
1849
|
#. module: account_financial_report
|
|
1850
|
+
#. odoo-python
|
|
1742
1851
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1743
|
-
#, fuzzy, python-format
|
|
1744
1852
|
msgid "Vat Report"
|
|
1745
|
-
msgstr "Informe
|
|
1853
|
+
msgstr "Informe d'IVA"
|
|
1746
1854
|
|
|
1747
1855
|
#. module: account_financial_report
|
|
1748
1856
|
#: model:ir.model,name:account_financial_report.model_report_account_financial_report_vat_report
|
|
1749
|
-
#, fuzzy
|
|
1750
1857
|
msgid "Vat Report Report"
|
|
1751
|
-
msgstr "Informe
|
|
1858
|
+
msgstr "Informe d'IVA"
|
|
1752
1859
|
|
|
1753
1860
|
#. module: account_financial_report
|
|
1754
1861
|
#: model:ir.model,name:account_financial_report.model_report_a_f_r_report_vat_report_xlsx
|
|
@@ -1780,22 +1887,27 @@ msgid "With Account Name"
|
|
|
1780
1887
|
msgstr "Amb el nom de compte"
|
|
1781
1888
|
|
|
1782
1889
|
#. module: account_financial_report
|
|
1890
|
+
#. odoo-python
|
|
1891
|
+
#: code:addons/account_financial_report/report/trial_balance.py:0
|
|
1892
|
+
msgid "Without analytic account"
|
|
1893
|
+
msgstr "Sense compte analític"
|
|
1894
|
+
|
|
1895
|
+
#. module: account_financial_report
|
|
1896
|
+
#. odoo-python
|
|
1783
1897
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1784
1898
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1785
1899
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1786
1900
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1787
|
-
#, python-format
|
|
1788
1901
|
msgid "Yes"
|
|
1789
1902
|
msgstr "Sí"
|
|
1790
1903
|
|
|
1791
1904
|
#. module: account_financial_report
|
|
1905
|
+
#. odoo-python
|
|
1792
1906
|
#: code:addons/account_financial_report/report/general_ledger.py:0
|
|
1793
|
-
#, python-format
|
|
1794
1907
|
msgid "future"
|
|
1795
1908
|
msgstr "futur"
|
|
1796
1909
|
|
|
1797
1910
|
#. module: account_financial_report
|
|
1798
|
-
#: model_terms:ir.ui.view,arch_db:account_financial_report.aged_partner_balance_wizard
|
|
1799
1911
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
|
|
1800
1912
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.journal_ledger_wizard
|
|
1801
1913
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.open_items_wizard
|
|
@@ -1844,6 +1956,79 @@ msgstr "ample: 38.92%;"
|
|
|
1844
1956
|
msgid "width: 8.11%;"
|
|
1845
1957
|
msgstr "ample: 8.11%;"
|
|
1846
1958
|
|
|
1959
|
+
#~ msgid ""
|
|
1960
|
+
#~ "Age ??? 120\n"
|
|
1961
|
+
#~ " d."
|
|
1962
|
+
#~ msgstr ""
|
|
1963
|
+
#~ "Antiguitat ??? 120\n"
|
|
1964
|
+
#~ " d."
|
|
1965
|
+
|
|
1966
|
+
#, python-format
|
|
1967
|
+
#~ msgid "Age ??? 120 d."
|
|
1968
|
+
#~ msgstr "Antiguitat ??? 120 d."
|
|
1969
|
+
|
|
1970
|
+
#~ msgid ""
|
|
1971
|
+
#~ "Age ??? 30\n"
|
|
1972
|
+
#~ " d."
|
|
1973
|
+
#~ msgstr ""
|
|
1974
|
+
#~ "Antiguitat ??? 30\n"
|
|
1975
|
+
#~ " d."
|
|
1976
|
+
|
|
1977
|
+
#, python-format
|
|
1978
|
+
#~ msgid "Age ??? 30 d."
|
|
1979
|
+
#~ msgstr "Antiguitat ??? 30 d."
|
|
1980
|
+
|
|
1981
|
+
#~ msgid ""
|
|
1982
|
+
#~ "Age ??? 60\n"
|
|
1983
|
+
#~ " d."
|
|
1984
|
+
#~ msgstr ""
|
|
1985
|
+
#~ "Antiguitat ??? 60\n"
|
|
1986
|
+
#~ " d."
|
|
1987
|
+
|
|
1988
|
+
#, python-format
|
|
1989
|
+
#~ msgid "Age ??? 60 d."
|
|
1990
|
+
#~ msgstr "Antiguitat ??? 60 d."
|
|
1991
|
+
|
|
1992
|
+
#~ msgid ""
|
|
1993
|
+
#~ "Age ??? 90\n"
|
|
1994
|
+
#~ " d."
|
|
1995
|
+
#~ msgstr ""
|
|
1996
|
+
#~ "Antiguitat ??? 90\n"
|
|
1997
|
+
#~ " d."
|
|
1998
|
+
|
|
1999
|
+
#, python-format
|
|
2000
|
+
#~ msgid "Age ??? 90 d."
|
|
2001
|
+
#~ msgstr "Antiguitat ??? 90 d."
|
|
2002
|
+
|
|
2003
|
+
#~ msgid "Last Modified on"
|
|
2004
|
+
#~ msgstr "??ltima modificaci?? a "
|
|
2005
|
+
|
|
2006
|
+
#~ msgid "Filter analytic tags"
|
|
2007
|
+
#~ msgstr "Filtra etiquetes anal??tiques"
|
|
2008
|
+
|
|
2009
|
+
#, python-format
|
|
2010
|
+
#~ msgid "Print"
|
|
2011
|
+
#~ msgstr "Imprimir"
|
|
2012
|
+
|
|
2013
|
+
#, python-format
|
|
2014
|
+
#~ msgid "Show analytic tags"
|
|
2015
|
+
#~ msgstr "Mostrar etiquetes anal??tiques"
|
|
2016
|
+
|
|
2017
|
+
#~ msgid "Child Accounts"
|
|
2018
|
+
#~ msgstr "Comptes fill"
|
|
2019
|
+
|
|
2020
|
+
#~ msgid "Computed Accounts"
|
|
2021
|
+
#~ msgstr "Comptes calculats"
|
|
2022
|
+
|
|
2023
|
+
#~ msgid "Hierarchy On"
|
|
2024
|
+
#~ msgstr "Jerarquia en"
|
|
2025
|
+
|
|
2026
|
+
#~ msgid "No hierarchy"
|
|
2027
|
+
#~ msgstr "Sense jerarquia"
|
|
2028
|
+
|
|
2029
|
+
#~ msgid "From: %s To: %s"
|
|
2030
|
+
#~ msgstr "Des de: %s A: %s"
|
|
2031
|
+
|
|
1847
2032
|
#~ msgid "<span class=\"fa fa-download\"/> Export"
|
|
1848
2033
|
#~ msgstr "<span class=\"fa fa-download\"/>Exportar"
|
|
1849
2034
|
|
|
@@ -1851,7 +2036,7 @@ msgstr "ample: 8.11%;"
|
|
|
1851
2036
|
#~ msgstr "<span class=\"fa fa-print\"/>Imprimir"
|
|
1852
2037
|
|
|
1853
2038
|
#~ msgid "Account ID"
|
|
1854
|
-
#~ msgstr "N
|
|
2039
|
+
#~ msgstr "N?? Compte"
|
|
1855
2040
|
|
|
1856
2041
|
#~ msgid "Account Type"
|
|
1857
2042
|
#~ msgstr "Tipus de compte"
|
|
@@ -1877,7 +2062,7 @@ msgstr "ample: 8.11%;"
|
|
|
1877
2062
|
|
|
1878
2063
|
#, fuzzy
|
|
1879
2064
|
#~ msgid "Period Balance"
|
|
1880
|
-
#~ msgstr "Cancel
|
|
2065
|
+
#~ msgstr "Cancel??lar "
|
|
1881
2066
|
|
|
1882
2067
|
#, fuzzy
|
|
1883
2068
|
#~ msgid "Tax Name"
|