odoo-addon-account-financial-report 17.0.1.6.1.1__py3-none-any.whl → 18.0.1.0.0.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.
Potentially problematic release.
This version of odoo-addon-account-financial-report might be problematic. Click here for more details.
- odoo/addons/account_financial_report/README.rst +15 -8
- odoo/addons/account_financial_report/__manifest__.py +3 -2
- odoo/addons/account_financial_report/i18n/account_financial_report.pot +1 -124
- odoo/addons/account_financial_report/i18n/ar.po +3 -100
- odoo/addons/account_financial_report/i18n/ca.po +1 -100
- odoo/addons/account_financial_report/i18n/de.po +3 -100
- odoo/addons/account_financial_report/i18n/es.po +0 -100
- odoo/addons/account_financial_report/i18n/es_AR.po +0 -100
- odoo/addons/account_financial_report/i18n/es_MX.po +0 -100
- odoo/addons/account_financial_report/i18n/fr.po +0 -100
- odoo/addons/account_financial_report/i18n/fr_CH.po +1 -100
- odoo/addons/account_financial_report/i18n/fr_FR.po +0 -100
- odoo/addons/account_financial_report/i18n/hr.po +0 -100
- odoo/addons/account_financial_report/i18n/hr_HR.po +3 -100
- odoo/addons/account_financial_report/i18n/it.po +3 -107
- odoo/addons/account_financial_report/i18n/ja.po +3 -100
- odoo/addons/account_financial_report/i18n/nl.po +1 -100
- odoo/addons/account_financial_report/i18n/nl_NL.po +2 -100
- odoo/addons/account_financial_report/i18n/pt.po +0 -100
- odoo/addons/account_financial_report/i18n/pt_BR.po +0 -100
- odoo/addons/account_financial_report/i18n/ro.po +1 -100
- odoo/addons/account_financial_report/i18n/sv.po +0 -100
- odoo/addons/account_financial_report/i18n/tr.po +0 -100
- odoo/addons/account_financial_report/models/account.py +1 -1
- odoo/addons/account_financial_report/models/account_age_report_configuration.py +6 -4
- odoo/addons/account_financial_report/models/account_group.py +3 -3
- odoo/addons/account_financial_report/readme/CONFIGURE.md +1 -1
- odoo/addons/account_financial_report/readme/CONTRIBUTORS.md +2 -1
- odoo/addons/account_financial_report/readme/CREDITS.md +1 -0
- odoo/addons/account_financial_report/report/__init__.py +3 -3
- odoo/addons/account_financial_report/report/abstract_report.py +3 -1
- odoo/addons/account_financial_report/report/abstract_report_xlsx.py +5 -5
- odoo/addons/account_financial_report/report/aged_partner_balance.py +16 -20
- odoo/addons/account_financial_report/report/aged_partner_balance_xlsx.py +30 -30
- odoo/addons/account_financial_report/report/general_ledger.py +26 -14
- odoo/addons/account_financial_report/report/general_ledger_xlsx.py +3 -3
- odoo/addons/account_financial_report/report/journal_ledger.py +9 -9
- odoo/addons/account_financial_report/report/journal_ledger_xlsx.py +1 -1
- odoo/addons/account_financial_report/report/open_items.py +1 -1
- odoo/addons/account_financial_report/report/open_items_xlsx.py +1 -1
- odoo/addons/account_financial_report/report/templates/aged_partner_balance.xml +29 -27
- odoo/addons/account_financial_report/report/templates/general_ledger.xml +2 -2
- odoo/addons/account_financial_report/report/templates/journal_ledger.xml +58 -66
- odoo/addons/account_financial_report/report/templates/layouts.xml +3 -9
- odoo/addons/account_financial_report/report/templates/trial_balance.xml +3 -5
- odoo/addons/account_financial_report/report/trial_balance.py +27 -30
- odoo/addons/account_financial_report/report/trial_balance_xlsx.py +1 -1
- odoo/addons/account_financial_report/report/vat_report.py +8 -4
- odoo/addons/account_financial_report/report/vat_report_xlsx.py +1 -1
- odoo/addons/account_financial_report/static/description/index.html +15 -8
- odoo/addons/account_financial_report/static/src/js/report.esm.js +1 -2
- odoo/addons/account_financial_report/static/src/js/report_action.esm.js +0 -1
- odoo/addons/account_financial_report/static/src/{css/report.css → scss/report.scss} +74 -42
- odoo/addons/account_financial_report/static/src/scss/report_html.scss +10 -0
- odoo/addons/account_financial_report/tests/__init__.py +1 -1
- odoo/addons/account_financial_report/tests/test_general_ledger.py +3 -3
- odoo/addons/account_financial_report/tests/test_journal_ledger.py +3 -4
- odoo/addons/account_financial_report/tests/test_open_items.py +2 -2
- odoo/addons/account_financial_report/tests/test_trial_balance.py +15 -8
- odoo/addons/account_financial_report/tests/test_vat_report.py +4 -5
- odoo/addons/account_financial_report/view/account_age_report_configuration_views.xml +6 -6
- odoo/addons/account_financial_report/wizard/aged_partner_balance_wizard.py +6 -4
- odoo/addons/account_financial_report/wizard/general_ledger_wizard.py +5 -5
- odoo/addons/account_financial_report/wizard/general_ledger_wizard_view.xml +14 -14
- odoo/addons/account_financial_report/wizard/journal_ledger_wizard.py +8 -4
- odoo/addons/account_financial_report/wizard/journal_ledger_wizard_view.xml +14 -14
- odoo/addons/account_financial_report/wizard/open_items_wizard.py +1 -1
- odoo/addons/account_financial_report/wizard/open_items_wizard_view.xml +14 -14
- odoo/addons/account_financial_report/wizard/trial_balance_wizard.py +10 -8
- odoo/addons/account_financial_report/wizard/trial_balance_wizard_view.xml +14 -14
- odoo/addons/account_financial_report/wizard/vat_report_wizard.py +2 -2
- odoo/addons/account_financial_report/wizard/vat_report_wizard_view.xml +14 -14
- {odoo_addon_account_financial_report-17.0.1.6.1.1.dist-info → odoo_addon_account_financial_report-18.0.1.0.0.3.dist-info}/METADATA +20 -13
- {odoo_addon_account_financial_report-17.0.1.6.1.1.dist-info → odoo_addon_account_financial_report-18.0.1.0.0.3.dist-info}/RECORD +76 -75
- odoo/addons/account_financial_report/static/src/css/report_html.css +0 -7
- {odoo_addon_account_financial_report-17.0.1.6.1.1.dist-info → odoo_addon_account_financial_report-18.0.1.0.0.3.dist-info}/WHEEL +0 -0
- {odoo_addon_account_financial_report-17.0.1.6.1.1.dist-info → odoo_addon_account_financial_report-18.0.1.0.0.3.dist-info}/top_level.txt +0 -0
|
@@ -107,7 +107,6 @@ msgstr ""
|
|
|
107
107
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
108
108
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
109
109
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
110
|
-
#, python-format
|
|
111
110
|
msgid "Account"
|
|
112
111
|
msgstr "Konto"
|
|
113
112
|
|
|
@@ -142,7 +141,6 @@ msgstr "Kontengruppe"
|
|
|
142
141
|
#. module: account_financial_report
|
|
143
142
|
#. odoo-python
|
|
144
143
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
145
|
-
#, python-format
|
|
146
144
|
msgid "Account Name"
|
|
147
145
|
msgstr "Kontobezeichnung"
|
|
148
146
|
|
|
@@ -150,7 +148,6 @@ msgstr "Kontobezeichnung"
|
|
|
150
148
|
#. odoo-python
|
|
151
149
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
152
150
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
153
|
-
#, python-format
|
|
154
151
|
msgid "Account at 0 filter"
|
|
155
152
|
msgstr "Ausgeglichene Salden Filter"
|
|
156
153
|
|
|
@@ -160,7 +157,6 @@ msgstr "Ausgeglichene Salden Filter"
|
|
|
160
157
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
161
158
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
162
159
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
163
|
-
#, python-format
|
|
164
160
|
msgid "Account balance at 0 filter"
|
|
165
161
|
msgstr "Ausgeglichene-Salden-Filter"
|
|
166
162
|
|
|
@@ -194,7 +190,6 @@ msgstr ""
|
|
|
194
190
|
#. module: account_financial_report
|
|
195
191
|
#. odoo-python
|
|
196
192
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
197
|
-
#, python-format
|
|
198
193
|
msgid "Age ≤ 120 d."
|
|
199
194
|
msgstr ""
|
|
200
195
|
|
|
@@ -208,7 +203,6 @@ msgstr ""
|
|
|
208
203
|
#. module: account_financial_report
|
|
209
204
|
#. odoo-python
|
|
210
205
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
211
|
-
#, python-format
|
|
212
206
|
msgid "Age ≤ 30 d."
|
|
213
207
|
msgstr ""
|
|
214
208
|
|
|
@@ -222,7 +216,6 @@ msgstr ""
|
|
|
222
216
|
#. module: account_financial_report
|
|
223
217
|
#. odoo-python
|
|
224
218
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
225
|
-
#, python-format
|
|
226
219
|
msgid "Age ≤ 60 d."
|
|
227
220
|
msgstr ""
|
|
228
221
|
|
|
@@ -236,7 +229,6 @@ msgstr ""
|
|
|
236
229
|
#. module: account_financial_report
|
|
237
230
|
#. odoo-python
|
|
238
231
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
239
|
-
#, python-format
|
|
240
232
|
msgid "Age ≤ 90 d."
|
|
241
233
|
msgstr ""
|
|
242
234
|
|
|
@@ -247,7 +239,6 @@ msgstr ""
|
|
|
247
239
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_aged_partner_balance_html
|
|
248
240
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_aged_partner_balance_qweb
|
|
249
241
|
#: model:ir.ui.menu,name:account_financial_report.menu_aged_partner_balance_wizard
|
|
250
|
-
#, python-format
|
|
251
242
|
msgid "Aged Partner Balance"
|
|
252
243
|
msgstr "Partnersalden nach Alter"
|
|
253
244
|
|
|
@@ -281,7 +272,6 @@ msgstr "Partnersalden n. Alter XLSX"
|
|
|
281
272
|
#. module: account_financial_report
|
|
282
273
|
#. odoo-python
|
|
283
274
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
284
|
-
#, python-format
|
|
285
275
|
msgid "All"
|
|
286
276
|
msgstr "Alle"
|
|
287
277
|
|
|
@@ -313,7 +303,6 @@ msgstr "Alle gebuchten Posten"
|
|
|
313
303
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
314
304
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
315
305
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
316
|
-
#, python-format
|
|
317
306
|
msgid "All entries"
|
|
318
307
|
msgstr "Alle Posten"
|
|
319
308
|
|
|
@@ -327,7 +316,6 @@ msgstr "Alle Posten"
|
|
|
327
316
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
328
317
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
329
318
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
330
|
-
#, python-format
|
|
331
319
|
msgid "All posted entries"
|
|
332
320
|
msgstr "Alle gebuchten Posten"
|
|
333
321
|
|
|
@@ -340,7 +328,6 @@ msgstr "Betragw??hrung"
|
|
|
340
328
|
#. module: account_financial_report
|
|
341
329
|
#. odoo-python
|
|
342
330
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
343
|
-
#, python-format
|
|
344
331
|
msgid "Amount Currency"
|
|
345
332
|
msgstr "Betragsw??hrung"
|
|
346
333
|
|
|
@@ -348,7 +335,6 @@ msgstr "Betragsw??hrung"
|
|
|
348
335
|
#. odoo-python
|
|
349
336
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
350
337
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
351
|
-
#, python-format
|
|
352
338
|
msgid "Amount cur."
|
|
353
339
|
msgstr "Betragw??hr."
|
|
354
340
|
|
|
@@ -363,7 +349,6 @@ msgstr "Konten filtern"
|
|
|
363
349
|
#. odoo-python
|
|
364
350
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
365
351
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
366
|
-
#, python-format
|
|
367
352
|
msgid "Analytic Distribution"
|
|
368
353
|
msgstr ""
|
|
369
354
|
|
|
@@ -383,21 +368,19 @@ msgstr "Bemessungsgrundlage"
|
|
|
383
368
|
#. module: account_financial_report
|
|
384
369
|
#. odoo-python
|
|
385
370
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
386
|
-
#, python-format
|
|
387
371
|
msgid "Base Balance"
|
|
388
372
|
msgstr "Bemessungsgrundlage Saldo"
|
|
389
373
|
|
|
390
374
|
#. module: account_financial_report
|
|
391
375
|
#. odoo-python
|
|
392
376
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
393
|
-
#, fuzzy
|
|
377
|
+
#, fuzzy
|
|
394
378
|
msgid "Base Credit"
|
|
395
379
|
msgstr "Haben"
|
|
396
380
|
|
|
397
381
|
#. module: account_financial_report
|
|
398
382
|
#. odoo-python
|
|
399
383
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
400
|
-
#, python-format
|
|
401
384
|
msgid "Base Debit"
|
|
402
385
|
msgstr "Soll"
|
|
403
386
|
|
|
@@ -410,7 +393,6 @@ msgstr "Basierend auf"
|
|
|
410
393
|
#. module: account_financial_report
|
|
411
394
|
#. odoo-python
|
|
412
395
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
413
|
-
#, python-format
|
|
414
396
|
msgid "Based on"
|
|
415
397
|
msgstr "Basierend auf"
|
|
416
398
|
|
|
@@ -428,7 +410,6 @@ msgstr "Abbrechen"
|
|
|
428
410
|
#. odoo-python
|
|
429
411
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
430
412
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
431
|
-
#, python-format
|
|
432
413
|
msgid "Centralize filter"
|
|
433
414
|
msgstr "Zusammenfassung Filter"
|
|
434
415
|
|
|
@@ -448,7 +429,6 @@ msgstr "Untergruppe"
|
|
|
448
429
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
449
430
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
450
431
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
451
|
-
#, python-format
|
|
452
432
|
msgid "Code"
|
|
453
433
|
msgstr "Nummer"
|
|
454
434
|
|
|
@@ -463,7 +443,6 @@ msgstr "Nummer"
|
|
|
463
443
|
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__company_id
|
|
464
444
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__company_id
|
|
465
445
|
#: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__company_id
|
|
466
|
-
#, python-format
|
|
467
446
|
msgid "Company"
|
|
468
447
|
msgstr "Unternehmen"
|
|
469
448
|
|
|
@@ -517,7 +496,6 @@ msgstr "Erstellt am"
|
|
|
517
496
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
518
497
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
519
498
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
520
|
-
#, python-format
|
|
521
499
|
msgid "Credit"
|
|
522
500
|
msgstr "Haben"
|
|
523
501
|
|
|
@@ -525,7 +503,6 @@ msgstr "Haben"
|
|
|
525
503
|
#. odoo-python
|
|
526
504
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
527
505
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
528
|
-
#, python-format
|
|
529
506
|
msgid "Cumul cur."
|
|
530
507
|
msgstr ""
|
|
531
508
|
|
|
@@ -533,7 +510,6 @@ msgstr ""
|
|
|
533
510
|
#. odoo-python
|
|
534
511
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
535
512
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
536
|
-
#, python-format
|
|
537
513
|
msgid "Cumul. Bal."
|
|
538
514
|
msgstr "Kumul. Saldo"
|
|
539
515
|
|
|
@@ -542,7 +518,6 @@ msgstr "Kumul. Saldo"
|
|
|
542
518
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
543
519
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
544
520
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
545
|
-
#, python-format
|
|
546
521
|
msgid "Cur."
|
|
547
522
|
msgstr "Whrg."
|
|
548
523
|
|
|
@@ -550,7 +525,6 @@ msgstr "Whrg."
|
|
|
550
525
|
#. odoo-python
|
|
551
526
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
552
527
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
553
|
-
#, python-format
|
|
554
528
|
msgid "Cur. Original"
|
|
555
529
|
msgstr "Urspr. W??hrung"
|
|
556
530
|
|
|
@@ -558,14 +532,12 @@ msgstr "Urspr. W??hrung"
|
|
|
558
532
|
#. odoo-python
|
|
559
533
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
560
534
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
561
|
-
#, python-format
|
|
562
535
|
msgid "Cur. Residual"
|
|
563
536
|
msgstr "W??hrung Restbetrag"
|
|
564
537
|
|
|
565
538
|
#. module: account_financial_report
|
|
566
539
|
#. odoo-python
|
|
567
540
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
568
|
-
#, python-format
|
|
569
541
|
msgid "Currency"
|
|
570
542
|
msgstr "W??hrung"
|
|
571
543
|
|
|
@@ -573,7 +545,6 @@ msgstr "W??hrung"
|
|
|
573
545
|
#. odoo-python
|
|
574
546
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
575
547
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
576
|
-
#, python-format
|
|
577
548
|
msgid "Current"
|
|
578
549
|
msgstr "Ist-Summe"
|
|
579
550
|
|
|
@@ -588,7 +559,6 @@ msgstr "Ist-Summe"
|
|
|
588
559
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
589
560
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
590
561
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
591
|
-
#, python-format
|
|
592
562
|
msgid "Date"
|
|
593
563
|
msgstr "Datum"
|
|
594
564
|
|
|
@@ -620,14 +590,12 @@ msgstr "Datum bis"
|
|
|
620
590
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
621
591
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_filters
|
|
622
592
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
623
|
-
#, python-format
|
|
624
593
|
msgid "Date at filter"
|
|
625
594
|
msgstr "Stichtagfilter"
|
|
626
595
|
|
|
627
596
|
#. module: account_financial_report
|
|
628
597
|
#. odoo-python
|
|
629
598
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
630
|
-
#, python-format
|
|
631
599
|
msgid "Date from"
|
|
632
600
|
msgstr "Datum von"
|
|
633
601
|
|
|
@@ -646,14 +614,12 @@ msgstr "Zeitraum"
|
|
|
646
614
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
647
615
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
648
616
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
649
|
-
#, python-format
|
|
650
617
|
msgid "Date range filter"
|
|
651
618
|
msgstr "Zeitraumfilter"
|
|
652
619
|
|
|
653
620
|
#. module: account_financial_report
|
|
654
621
|
#. odoo-python
|
|
655
622
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
656
|
-
#, python-format
|
|
657
623
|
msgid "Date to"
|
|
658
624
|
msgstr "Datum bis"
|
|
659
625
|
|
|
@@ -667,7 +633,6 @@ msgstr "Datum bis"
|
|
|
667
633
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
668
634
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
669
635
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
670
|
-
#, python-format
|
|
671
636
|
msgid "Debit"
|
|
672
637
|
msgstr "Soll"
|
|
673
638
|
|
|
@@ -676,7 +641,6 @@ msgstr "Soll"
|
|
|
676
641
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
677
642
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
|
|
678
643
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
679
|
-
#, python-format
|
|
680
644
|
msgid "Description"
|
|
681
645
|
msgstr "Beschreibung"
|
|
682
646
|
|
|
@@ -738,7 +702,6 @@ msgstr ""
|
|
|
738
702
|
#. odoo-python
|
|
739
703
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
740
704
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
741
|
-
#, python-format
|
|
742
705
|
msgid "Due date"
|
|
743
706
|
msgstr "F??lligkeit"
|
|
744
707
|
|
|
@@ -774,7 +737,6 @@ msgstr ""
|
|
|
774
737
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
775
738
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_ending_cumul
|
|
776
739
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
777
|
-
#, python-format
|
|
778
740
|
msgid "Ending balance"
|
|
779
741
|
msgstr "Endsaldo"
|
|
780
742
|
|
|
@@ -789,7 +751,6 @@ msgstr "Endstand"
|
|
|
789
751
|
#. module: account_financial_report
|
|
790
752
|
#. odoo-python
|
|
791
753
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
792
|
-
#, python-format
|
|
793
754
|
msgid "Entries sorted by"
|
|
794
755
|
msgstr "Sortierung nach"
|
|
795
756
|
|
|
@@ -803,21 +764,18 @@ msgstr "Sortierung nach"
|
|
|
803
764
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
804
765
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
805
766
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
806
|
-
#, python-format
|
|
807
767
|
msgid "Entry"
|
|
808
768
|
msgstr "Buchung"
|
|
809
769
|
|
|
810
770
|
#. module: account_financial_report
|
|
811
771
|
#. odoo-python
|
|
812
772
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
813
|
-
#, python-format
|
|
814
773
|
msgid "Entry number"
|
|
815
774
|
msgstr "Buchungssatz Nummer"
|
|
816
775
|
|
|
817
776
|
#. module: account_financial_report
|
|
818
777
|
#. odoo-javascript
|
|
819
778
|
#: code:addons/account_financial_report/static/src/xml/report.xml:0
|
|
820
|
-
#, python-format
|
|
821
779
|
msgid "Export"
|
|
822
780
|
msgstr ""
|
|
823
781
|
|
|
@@ -901,7 +859,6 @@ msgstr "Von:"
|
|
|
901
859
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
902
860
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
903
861
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
904
|
-
#, python-format
|
|
905
862
|
msgid "From: %(date_from)s To: %(date_to)s"
|
|
906
863
|
msgstr ""
|
|
907
864
|
|
|
@@ -931,7 +888,6 @@ msgstr "GJ Beginn"
|
|
|
931
888
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_general_ledger_html
|
|
932
889
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_general_ledger_qweb
|
|
933
890
|
#: model:ir.ui.menu,name:account_financial_report.menu_general_ledger_wizard
|
|
934
|
-
#, python-format
|
|
935
891
|
msgid "General Ledger"
|
|
936
892
|
msgstr "Hauptbuch"
|
|
937
893
|
|
|
@@ -994,7 +950,6 @@ msgstr ""
|
|
|
994
950
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
995
951
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
996
952
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
997
|
-
#, python-format
|
|
998
953
|
msgid "Hide"
|
|
999
954
|
msgstr "Ausblenden"
|
|
1000
955
|
|
|
@@ -1043,7 +998,6 @@ msgstr ""
|
|
|
1043
998
|
#. module: account_financial_report
|
|
1044
999
|
#. odoo-python
|
|
1045
1000
|
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1046
|
-
#, python-format
|
|
1047
1001
|
msgid "Inferior Limit must be greather than zero"
|
|
1048
1002
|
msgstr ""
|
|
1049
1003
|
|
|
@@ -1067,7 +1021,6 @@ msgstr "Anfangssaldo"
|
|
|
1067
1021
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1068
1022
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1069
1023
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1070
|
-
#, python-format
|
|
1071
1024
|
msgid "Initial balance"
|
|
1072
1025
|
msgstr "Anfangssaldo"
|
|
1073
1026
|
|
|
@@ -1087,7 +1040,6 @@ msgstr ""
|
|
|
1087
1040
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
1088
1041
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1089
1042
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1090
|
-
#, python-format
|
|
1091
1043
|
msgid "Journal"
|
|
1092
1044
|
msgstr "Journal"
|
|
1093
1045
|
|
|
@@ -1107,7 +1059,6 @@ msgstr ""
|
|
|
1107
1059
|
#: model:ir.actions.act_window,name:account_financial_report.action_journal_ledger_wizard
|
|
1108
1060
|
#: model:ir.actions.report,name:account_financial_report.action_print_journal_ledger_wizard_html
|
|
1109
1061
|
#: model:ir.ui.menu,name:account_financial_report.menu_journal_ledger_wizard
|
|
1110
|
-
#, python-format
|
|
1111
1062
|
msgid "Journal Ledger"
|
|
1112
1063
|
msgstr "Buchungsjournal"
|
|
1113
1064
|
|
|
@@ -1143,7 +1094,6 @@ msgstr "Buchungsjournale XLSX"
|
|
|
1143
1094
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1144
1095
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__journal_ids
|
|
1145
1096
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.journal_ledger_wizard
|
|
1146
|
-
#, python-format
|
|
1147
1097
|
msgid "Journals"
|
|
1148
1098
|
msgstr "Journale"
|
|
1149
1099
|
|
|
@@ -1180,7 +1130,6 @@ msgstr "Ebene"
|
|
|
1180
1130
|
#. module: account_financial_report
|
|
1181
1131
|
#. odoo-python
|
|
1182
1132
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1183
|
-
#, python-format
|
|
1184
1133
|
msgid "Level %s"
|
|
1185
1134
|
msgstr "Ebene %s"
|
|
1186
1135
|
|
|
@@ -1189,7 +1138,6 @@ msgstr "Ebene %s"
|
|
|
1189
1138
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1190
1139
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__limit_hierarchy_level
|
|
1191
1140
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1192
|
-
#, python-format
|
|
1193
1141
|
msgid "Limit hierarchy levels"
|
|
1194
1142
|
msgstr "Ebenen festlegen"
|
|
1195
1143
|
|
|
@@ -1203,7 +1151,6 @@ msgstr "Position"
|
|
|
1203
1151
|
#: code:addons/account_financial_report/report/general_ledger.py:0
|
|
1204
1152
|
#: code:addons/account_financial_report/report/open_items.py:0
|
|
1205
1153
|
#: code:addons/account_financial_report/report/trial_balance.py:0
|
|
1206
|
-
#, python-format
|
|
1207
1154
|
msgid "Missing Partner"
|
|
1208
1155
|
msgstr ""
|
|
1209
1156
|
|
|
@@ -1230,7 +1177,6 @@ msgstr "Buchungen"
|
|
|
1230
1177
|
#. module: account_financial_report
|
|
1231
1178
|
#. odoo-python
|
|
1232
1179
|
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1233
|
-
#, python-format
|
|
1234
1180
|
msgid "Must complete Configuration Lines"
|
|
1235
1181
|
msgstr ""
|
|
1236
1182
|
|
|
@@ -1243,15 +1189,11 @@ msgstr ""
|
|
|
1243
1189
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
|
|
1244
1190
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
1245
1191
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
1246
|
-
#, python-format
|
|
1247
1192
|
msgid "Name"
|
|
1248
1193
|
msgstr "Bezeichnung"
|
|
1249
1194
|
|
|
1250
1195
|
#. module: account_financial_report
|
|
1251
|
-
#. odoo-python
|
|
1252
|
-
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1253
1196
|
#: model:ir.model.constraint,message:account_financial_report.constraint_account_age_report_configuration_line_unique_name_config_combination
|
|
1254
|
-
#, python-format
|
|
1255
1197
|
msgid "Name must be unique per report configuration"
|
|
1256
1198
|
msgstr ""
|
|
1257
1199
|
|
|
@@ -1259,7 +1201,6 @@ msgstr ""
|
|
|
1259
1201
|
#. odoo-python
|
|
1260
1202
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1261
1203
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
1262
|
-
#, python-format
|
|
1263
1204
|
msgid "Net"
|
|
1264
1205
|
msgstr "Netto"
|
|
1265
1206
|
|
|
@@ -1269,14 +1210,12 @@ msgstr "Netto"
|
|
|
1269
1210
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1270
1211
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1271
1212
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1272
|
-
#, python-format
|
|
1273
1213
|
msgid "No"
|
|
1274
1214
|
msgstr "Nein"
|
|
1275
1215
|
|
|
1276
1216
|
#. module: account_financial_report
|
|
1277
1217
|
#. odoo-python
|
|
1278
1218
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
1279
|
-
#, python-format
|
|
1280
1219
|
msgid "No group"
|
|
1281
1220
|
msgstr "Keine Gruppierung"
|
|
1282
1221
|
|
|
@@ -1284,7 +1223,6 @@ msgstr "Keine Gruppierung"
|
|
|
1284
1223
|
#. odoo-python
|
|
1285
1224
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1286
1225
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1287
|
-
#, python-format
|
|
1288
1226
|
msgid "No limit"
|
|
1289
1227
|
msgstr "Keine Einschr??nkung"
|
|
1290
1228
|
|
|
@@ -1296,7 +1234,6 @@ msgstr ""
|
|
|
1296
1234
|
#. module: account_financial_report
|
|
1297
1235
|
#. odoo-python
|
|
1298
1236
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
1299
|
-
#, python-format
|
|
1300
1237
|
msgid "Not Posted"
|
|
1301
1238
|
msgstr "Nicht gebucht"
|
|
1302
1239
|
|
|
@@ -1319,7 +1256,6 @@ msgstr "OCA Finanzberichte"
|
|
|
1319
1256
|
#. odoo-python
|
|
1320
1257
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1321
1258
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
1322
|
-
#, python-format
|
|
1323
1259
|
msgid "Older"
|
|
1324
1260
|
msgstr "??lter"
|
|
1325
1261
|
|
|
@@ -1336,7 +1272,6 @@ msgstr ""
|
|
|
1336
1272
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_open_items_html
|
|
1337
1273
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_open_items_qweb
|
|
1338
1274
|
#: model:ir.ui.menu,name:account_financial_report.menu_open_items_wizard
|
|
1339
|
-
#, python-format
|
|
1340
1275
|
msgid "Open Items"
|
|
1341
1276
|
msgstr "Offene Posten"
|
|
1342
1277
|
|
|
@@ -1382,7 +1317,6 @@ msgstr "Optionen"
|
|
|
1382
1317
|
#. odoo-python
|
|
1383
1318
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1384
1319
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1385
|
-
#, python-format
|
|
1386
1320
|
msgid "Original"
|
|
1387
1321
|
msgstr "Urspr??nglich"
|
|
1388
1322
|
|
|
@@ -1399,7 +1333,6 @@ msgstr "Urspr??nglich"
|
|
|
1399
1333
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1400
1334
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1401
1335
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
1402
|
-
#, python-format
|
|
1403
1336
|
msgid "Partner"
|
|
1404
1337
|
msgstr "Partner"
|
|
1405
1338
|
|
|
@@ -1415,14 +1348,12 @@ msgstr ""
|
|
|
1415
1348
|
#. module: account_financial_report
|
|
1416
1349
|
#. odoo-python
|
|
1417
1350
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1418
|
-
#, python-format
|
|
1419
1351
|
msgid "Partner Initial balance"
|
|
1420
1352
|
msgstr "Partner-Anfangssaldo"
|
|
1421
1353
|
|
|
1422
1354
|
#. module: account_financial_report
|
|
1423
1355
|
#. odoo-python
|
|
1424
1356
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1425
|
-
#, python-format
|
|
1426
1357
|
msgid "Partner cumul aged balance"
|
|
1427
1358
|
msgstr "Partner-Salden nach Alter"
|
|
1428
1359
|
|
|
@@ -1432,7 +1363,6 @@ msgstr "Partner-Salden nach Alter"
|
|
|
1432
1363
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1433
1364
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_ending_cumul
|
|
1434
1365
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_ending_cumul
|
|
1435
|
-
#, python-format
|
|
1436
1366
|
msgid "Partner ending balance"
|
|
1437
1367
|
msgstr "Partner-Endsaldo"
|
|
1438
1368
|
|
|
@@ -1463,7 +1393,6 @@ msgstr "Prozente"
|
|
|
1463
1393
|
#. odoo-python
|
|
1464
1394
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1465
1395
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
1466
|
-
#, python-format
|
|
1467
1396
|
msgid "Period balance"
|
|
1468
1397
|
msgstr "Endsaldo"
|
|
1469
1398
|
|
|
@@ -1475,7 +1404,6 @@ msgstr "Zeitr??ume"
|
|
|
1475
1404
|
#. module: account_financial_report
|
|
1476
1405
|
#. odoo-python
|
|
1477
1406
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
1478
|
-
#, python-format
|
|
1479
1407
|
msgid "Posted"
|
|
1480
1408
|
msgstr "Gebucht"
|
|
1481
1409
|
|
|
@@ -1483,7 +1411,6 @@ msgstr "Gebucht"
|
|
|
1483
1411
|
#. odoo-python
|
|
1484
1412
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1485
1413
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1486
|
-
#, python-format
|
|
1487
1414
|
msgid "Rec."
|
|
1488
1415
|
msgstr "Ford."
|
|
1489
1416
|
|
|
@@ -1522,7 +1449,6 @@ msgstr ""
|
|
|
1522
1449
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1523
1450
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1524
1451
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1525
|
-
#, python-format
|
|
1526
1452
|
msgid "Ref - Label"
|
|
1527
1453
|
msgstr "Ref - Titel"
|
|
1528
1454
|
|
|
@@ -1538,7 +1464,6 @@ msgstr ""
|
|
|
1538
1464
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_lines_header
|
|
1539
1465
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
1540
1466
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1541
|
-
#, python-format
|
|
1542
1467
|
msgid "Residual"
|
|
1543
1468
|
msgstr "Restbetrag"
|
|
1544
1469
|
|
|
@@ -1546,7 +1471,6 @@ msgstr "Restbetrag"
|
|
|
1546
1471
|
#. odoo-python
|
|
1547
1472
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1548
1473
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1549
|
-
#, python-format
|
|
1550
1474
|
msgid "Sequence"
|
|
1551
1475
|
msgstr "Sequenz"
|
|
1552
1476
|
|
|
@@ -1558,7 +1482,6 @@ msgstr "Sequenz"
|
|
|
1558
1482
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1559
1483
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
1560
1484
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1561
|
-
#, python-format
|
|
1562
1485
|
msgid "Show"
|
|
1563
1486
|
msgstr "Anzeigen"
|
|
1564
1487
|
|
|
@@ -1592,7 +1515,6 @@ msgstr "Partnerdetails anzeigen"
|
|
|
1592
1515
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__foreign_currency
|
|
1593
1516
|
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__foreign_currency
|
|
1594
1517
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__foreign_currency
|
|
1595
|
-
#, python-format
|
|
1596
1518
|
msgid "Show foreign currency"
|
|
1597
1519
|
msgstr "Fremdw??hrung anzeigen"
|
|
1598
1520
|
|
|
@@ -1629,7 +1551,6 @@ msgstr ""
|
|
|
1629
1551
|
#. odoo-python
|
|
1630
1552
|
#: code:addons/account_financial_report/report/trial_balance.py:0
|
|
1631
1553
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1632
|
-
#, python-format
|
|
1633
1554
|
msgid "TOTAL"
|
|
1634
1555
|
msgstr ""
|
|
1635
1556
|
|
|
@@ -1658,7 +1579,6 @@ msgstr "Anzuzeigende Buchungen"
|
|
|
1658
1579
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1659
1580
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
1660
1581
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1661
|
-
#, python-format
|
|
1662
1582
|
msgid "Target moves filter"
|
|
1663
1583
|
msgstr "Anzuzeigende Buchungen filtern"
|
|
1664
1584
|
|
|
@@ -1666,7 +1586,6 @@ msgstr "Anzuzeigende Buchungen filtern"
|
|
|
1666
1586
|
#. odoo-python
|
|
1667
1587
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1668
1588
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
1669
|
-
#, python-format
|
|
1670
1589
|
msgid "Tax"
|
|
1671
1590
|
msgstr "Steuer"
|
|
1672
1591
|
|
|
@@ -1679,21 +1598,19 @@ msgstr "Steuer"
|
|
|
1679
1598
|
#. module: account_financial_report
|
|
1680
1599
|
#. odoo-python
|
|
1681
1600
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1682
|
-
#, python-format
|
|
1683
1601
|
msgid "Tax Balance"
|
|
1684
1602
|
msgstr "Steuersaldo"
|
|
1685
1603
|
|
|
1686
1604
|
#. module: account_financial_report
|
|
1687
1605
|
#. odoo-python
|
|
1688
1606
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1689
|
-
#, fuzzy
|
|
1607
|
+
#, fuzzy
|
|
1690
1608
|
msgid "Tax Credit"
|
|
1691
1609
|
msgstr "Haben"
|
|
1692
1610
|
|
|
1693
1611
|
#. module: account_financial_report
|
|
1694
1612
|
#. odoo-python
|
|
1695
1613
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1696
|
-
#, python-format
|
|
1697
1614
|
msgid "Tax Debit"
|
|
1698
1615
|
msgstr "Soll"
|
|
1699
1616
|
|
|
@@ -1701,14 +1618,12 @@ msgstr "Soll"
|
|
|
1701
1618
|
#. odoo-python
|
|
1702
1619
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1703
1620
|
#: model:ir.model.fields.selection,name:account_financial_report.selection__vat_report_wizard__based_on__taxgroups
|
|
1704
|
-
#, python-format
|
|
1705
1621
|
msgid "Tax Groups"
|
|
1706
1622
|
msgstr "Steuergruppen"
|
|
1707
1623
|
|
|
1708
1624
|
#. module: account_financial_report
|
|
1709
1625
|
#. odoo-python
|
|
1710
1626
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1711
|
-
#, python-format
|
|
1712
1627
|
msgid "Tax Initial balance"
|
|
1713
1628
|
msgstr ""
|
|
1714
1629
|
|
|
@@ -1716,7 +1631,6 @@ msgstr ""
|
|
|
1716
1631
|
#. odoo-python
|
|
1717
1632
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1718
1633
|
#: model:ir.model.fields.selection,name:account_financial_report.selection__vat_report_wizard__based_on__taxtags
|
|
1719
|
-
#, python-format
|
|
1720
1634
|
msgid "Tax Tags"
|
|
1721
1635
|
msgstr "Steuer-Stichw??rter"
|
|
1722
1636
|
|
|
@@ -1724,7 +1638,6 @@ msgstr "Steuer-Stichw??rter"
|
|
|
1724
1638
|
#. odoo-python
|
|
1725
1639
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1726
1640
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_ending_cumul
|
|
1727
|
-
#, python-format
|
|
1728
1641
|
msgid "Tax ending balance"
|
|
1729
1642
|
msgstr ""
|
|
1730
1643
|
|
|
@@ -1740,14 +1653,12 @@ msgstr ""
|
|
|
1740
1653
|
#: model:ir.model.fields.selection,name:account_financial_report.selection__general_ledger_report_wizard__grouped_by__taxes
|
|
1741
1654
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1742
1655
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1743
|
-
#, python-format
|
|
1744
1656
|
msgid "Taxes"
|
|
1745
1657
|
msgstr "Steuern"
|
|
1746
1658
|
|
|
1747
1659
|
#. module: account_financial_report
|
|
1748
1660
|
#. odoo-python
|
|
1749
1661
|
#: code:addons/account_financial_report/wizard/general_ledger_wizard.py:0
|
|
1750
|
-
#, python-format
|
|
1751
1662
|
msgid ""
|
|
1752
1663
|
"The Company in the General Ledger Report Wizard and in Date Range must be "
|
|
1753
1664
|
"the same."
|
|
@@ -1758,7 +1669,6 @@ msgstr ""
|
|
|
1758
1669
|
#. module: account_financial_report
|
|
1759
1670
|
#. odoo-python
|
|
1760
1671
|
#: code:addons/account_financial_report/wizard/trial_balance_wizard.py:0
|
|
1761
|
-
#, python-format
|
|
1762
1672
|
msgid ""
|
|
1763
1673
|
"The Company in the Trial Balance Report Wizard and in Date Range must be the "
|
|
1764
1674
|
"same."
|
|
@@ -1769,7 +1679,6 @@ msgstr ""
|
|
|
1769
1679
|
#. module: account_financial_report
|
|
1770
1680
|
#. odoo-python
|
|
1771
1681
|
#: code:addons/account_financial_report/wizard/vat_report_wizard.py:0
|
|
1772
|
-
#, python-format
|
|
1773
1682
|
msgid ""
|
|
1774
1683
|
"The Company in the Vat Report Wizard and in Date Range must be the same."
|
|
1775
1684
|
msgstr ""
|
|
@@ -1779,7 +1688,6 @@ msgstr ""
|
|
|
1779
1688
|
#. module: account_financial_report
|
|
1780
1689
|
#. odoo-python
|
|
1781
1690
|
#: code:addons/account_financial_report/wizard/trial_balance_wizard.py:0
|
|
1782
|
-
#, python-format
|
|
1783
1691
|
msgid "The hierarchy level to filter on must be greater than 0."
|
|
1784
1692
|
msgstr "Die ausgew??hlte Ebenenanzahl sollte >0 sein."
|
|
1785
1693
|
|
|
@@ -1803,7 +1711,6 @@ msgstr "Bis:"
|
|
|
1803
1711
|
#. odoo-python
|
|
1804
1712
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1805
1713
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_account_ending_cumul
|
|
1806
|
-
#, python-format
|
|
1807
1714
|
msgid "Total"
|
|
1808
1715
|
msgstr "Gesamt"
|
|
1809
1716
|
|
|
@@ -1814,7 +1721,6 @@ msgstr "Gesamt"
|
|
|
1814
1721
|
#: model:ir.actions.report,name:account_financial_report.action_report_trial_balance_html
|
|
1815
1722
|
#: model:ir.actions.report,name:account_financial_report.action_report_trial_balance_qweb
|
|
1816
1723
|
#: model:ir.ui.menu,name:account_financial_report.menu_trial_balance_wizard
|
|
1817
|
-
#, python-format
|
|
1818
1724
|
msgid "Trial Balance"
|
|
1819
1725
|
msgstr "Stichtagssaldo"
|
|
1820
1726
|
|
|
@@ -1907,7 +1813,7 @@ msgstr "Steuerbericht XLSX"
|
|
|
1907
1813
|
#. module: account_financial_report
|
|
1908
1814
|
#. odoo-python
|
|
1909
1815
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1910
|
-
#, fuzzy
|
|
1816
|
+
#, fuzzy
|
|
1911
1817
|
msgid "Vat Report"
|
|
1912
1818
|
msgstr "Steuerbericht"
|
|
1913
1819
|
|
|
@@ -1951,7 +1857,6 @@ msgstr "Mit Kontobezeichnung"
|
|
|
1951
1857
|
#. module: account_financial_report
|
|
1952
1858
|
#. odoo-python
|
|
1953
1859
|
#: code:addons/account_financial_report/report/trial_balance.py:0
|
|
1954
|
-
#, python-format
|
|
1955
1860
|
msgid "Without analytic account"
|
|
1956
1861
|
msgstr ""
|
|
1957
1862
|
|
|
@@ -1961,14 +1866,12 @@ msgstr ""
|
|
|
1961
1866
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1962
1867
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1963
1868
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1964
|
-
#, python-format
|
|
1965
1869
|
msgid "Yes"
|
|
1966
1870
|
msgstr "Ja"
|
|
1967
1871
|
|
|
1968
1872
|
#. module: account_financial_report
|
|
1969
1873
|
#. odoo-python
|
|
1970
1874
|
#: code:addons/account_financial_report/report/general_ledger.py:0
|
|
1971
|
-
#, python-format
|
|
1972
1875
|
msgid "future"
|
|
1973
1876
|
msgstr ""
|
|
1974
1877
|
|