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.
Files changed (104) hide show
  1. odoo/addons/account_financial_report/README.rst +131 -74
  2. odoo/addons/account_financial_report/__manifest__.py +6 -9
  3. odoo/addons/account_financial_report/i18n/account_financial_report.pot +313 -188
  4. odoo/addons/account_financial_report/i18n/ar.po +579 -433
  5. odoo/addons/account_financial_report/i18n/ca.po +474 -289
  6. odoo/addons/account_financial_report/i18n/{fr_FR.po → ca_AD.po} +539 -491
  7. odoo/addons/account_financial_report/i18n/ca_ES.po +1891 -0
  8. odoo/addons/account_financial_report/i18n/de.po +455 -295
  9. odoo/addons/account_financial_report/i18n/es.po +458 -394
  10. odoo/addons/account_financial_report/i18n/es_AR.po +464 -283
  11. odoo/addons/account_financial_report/i18n/es_MX.po +315 -220
  12. odoo/addons/account_financial_report/i18n/fr.po +620 -435
  13. odoo/addons/account_financial_report/i18n/fr_CH.po +616 -462
  14. odoo/addons/account_financial_report/i18n/hr.po +506 -355
  15. odoo/addons/account_financial_report/i18n/hr_HR.po +331 -232
  16. odoo/addons/account_financial_report/i18n/it.po +538 -356
  17. odoo/addons/account_financial_report/i18n/ja.po +339 -240
  18. odoo/addons/account_financial_report/i18n/nl.po +462 -324
  19. odoo/addons/account_financial_report/i18n/nl_NL.po +318 -220
  20. odoo/addons/account_financial_report/i18n/pt.po +429 -242
  21. odoo/addons/account_financial_report/i18n/pt_BR.po +588 -438
  22. odoo/addons/account_financial_report/i18n/ro.po +499 -342
  23. odoo/addons/account_financial_report/i18n/sl.po +1945 -0
  24. odoo/addons/account_financial_report/i18n/sv.po +1997 -0
  25. odoo/addons/account_financial_report/i18n/tr.po +1947 -0
  26. odoo/addons/account_financial_report/menuitems.xml +1 -1
  27. odoo/addons/account_financial_report/models/__init__.py +2 -0
  28. odoo/addons/account_financial_report/models/account_age_report_configuration.py +49 -0
  29. odoo/addons/account_financial_report/models/account_group.py +62 -23
  30. odoo/addons/account_financial_report/models/account_move_line.py +33 -3
  31. odoo/addons/account_financial_report/models/ir_actions_report.py +6 -4
  32. odoo/addons/account_financial_report/models/res_config_settings.py +36 -0
  33. odoo/addons/account_financial_report/readme/CONFIGURE.md +26 -0
  34. odoo/addons/account_financial_report/readme/CONTRIBUTORS.md +38 -0
  35. odoo/addons/account_financial_report/readme/CREDITS.md +1 -0
  36. odoo/addons/account_financial_report/readme/DESCRIPTION.md +21 -0
  37. odoo/addons/account_financial_report/readme/HISTORY.md +16 -0
  38. odoo/addons/account_financial_report/readme/ROADMAP.md +6 -0
  39. odoo/addons/account_financial_report/report/abstract_report.py +73 -23
  40. odoo/addons/account_financial_report/report/abstract_report_xlsx.py +28 -23
  41. odoo/addons/account_financial_report/report/aged_partner_balance.py +131 -30
  42. odoo/addons/account_financial_report/report/aged_partner_balance_xlsx.py +158 -118
  43. odoo/addons/account_financial_report/report/general_ledger.py +421 -340
  44. odoo/addons/account_financial_report/report/general_ledger_xlsx.py +127 -75
  45. odoo/addons/account_financial_report/report/journal_ledger.py +84 -68
  46. odoo/addons/account_financial_report/report/journal_ledger_xlsx.py +14 -8
  47. odoo/addons/account_financial_report/report/open_items.py +113 -70
  48. odoo/addons/account_financial_report/report/open_items_xlsx.py +152 -19
  49. odoo/addons/account_financial_report/report/templates/aged_partner_balance.xml +408 -311
  50. odoo/addons/account_financial_report/report/templates/general_ledger.xml +273 -213
  51. odoo/addons/account_financial_report/report/templates/journal_ledger.xml +70 -76
  52. odoo/addons/account_financial_report/report/templates/layouts.xml +12 -1
  53. odoo/addons/account_financial_report/report/templates/open_items.xml +181 -55
  54. odoo/addons/account_financial_report/report/templates/trial_balance.xml +304 -195
  55. odoo/addons/account_financial_report/report/templates/vat_report.xml +10 -10
  56. odoo/addons/account_financial_report/report/trial_balance.py +463 -211
  57. odoo/addons/account_financial_report/report/trial_balance_xlsx.py +37 -38
  58. odoo/addons/account_financial_report/report/vat_report.py +36 -25
  59. odoo/addons/account_financial_report/report/vat_report_xlsx.py +1 -1
  60. odoo/addons/account_financial_report/security/ir.model.access.csv +2 -0
  61. odoo/addons/account_financial_report/security/security.xml +8 -0
  62. odoo/addons/account_financial_report/static/description/index.html +106 -55
  63. odoo/addons/account_financial_report/static/src/css/report.css +77 -42
  64. odoo/addons/account_financial_report/static/src/css/report_html.css +10 -0
  65. odoo/addons/account_financial_report/static/src/js/report.esm.js +72 -0
  66. odoo/addons/account_financial_report/static/src/js/report_action.esm.js +39 -0
  67. odoo/addons/account_financial_report/static/src/xml/report.xml +10 -9
  68. odoo/addons/account_financial_report/tests/__init__.py +1 -0
  69. odoo/addons/account_financial_report/tests/test_age_report_configuration.py +42 -0
  70. odoo/addons/account_financial_report/tests/test_aged_partner_balance.py +99 -9
  71. odoo/addons/account_financial_report/tests/test_general_ledger.py +19 -9
  72. odoo/addons/account_financial_report/tests/test_journal_ledger.py +18 -9
  73. odoo/addons/account_financial_report/tests/test_open_items.py +42 -2
  74. odoo/addons/account_financial_report/tests/test_trial_balance.py +114 -223
  75. odoo/addons/account_financial_report/tests/test_vat_report.py +17 -9
  76. odoo/addons/account_financial_report/view/account_age_report_configuration_views.xml +41 -0
  77. odoo/addons/account_financial_report/view/res_config_settings_views.xml +51 -0
  78. odoo/addons/account_financial_report/wizard/abstract_wizard.py +23 -0
  79. odoo/addons/account_financial_report/wizard/aged_partner_balance_wizard.py +22 -8
  80. odoo/addons/account_financial_report/wizard/aged_partner_balance_wizard_view.xml +2 -3
  81. odoo/addons/account_financial_report/wizard/general_ledger_wizard.py +42 -36
  82. odoo/addons/account_financial_report/wizard/general_ledger_wizard_view.xml +26 -41
  83. odoo/addons/account_financial_report/wizard/journal_ledger_wizard.py +19 -7
  84. odoo/addons/account_financial_report/wizard/journal_ledger_wizard_view.xml +15 -14
  85. odoo/addons/account_financial_report/wizard/open_items_wizard.py +34 -8
  86. odoo/addons/account_financial_report/wizard/open_items_wizard_view.xml +16 -14
  87. odoo/addons/account_financial_report/wizard/trial_balance_wizard.py +68 -45
  88. odoo/addons/account_financial_report/wizard/trial_balance_wizard_view.xml +40 -39
  89. odoo/addons/account_financial_report/wizard/vat_report_wizard.py +9 -3
  90. odoo/addons/account_financial_report/wizard/vat_report_wizard_view.xml +14 -14
  91. odoo_addon_account_financial_report-18.0.1.4.4.3.dist-info/METADATA +234 -0
  92. odoo_addon_account_financial_report-18.0.1.4.4.3.dist-info/RECORD +107 -0
  93. {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
  94. odoo_addon_account_financial_report-18.0.1.4.4.3.dist-info/top_level.txt +1 -0
  95. odoo/addons/account_financial_report/readme/CONTRIBUTORS.rst +0 -35
  96. odoo/addons/account_financial_report/readme/DESCRIPTION.rst +0 -16
  97. odoo/addons/account_financial_report/readme/HISTORY.rst +0 -19
  98. odoo/addons/account_financial_report/readme/ROADMAP.rst +0 -7
  99. odoo/addons/account_financial_report/static/src/js/action_manager_report.js +0 -37
  100. odoo/addons/account_financial_report/static/src/js/client_action.js +0 -58
  101. odoo/addons/account_financial_report/static/src/js/report.js +0 -58
  102. odoo_addon_account_financial_report-15.0.1.1.0.1.dist-info/METADATA +0 -179
  103. odoo_addon_account_financial_report-15.0.1.1.0.1.dist-info/RECORD +0 -95
  104. odoo_addon_account_financial_report-15.0.1.1.0.1.dist-info/top_level.txt +0 -1
@@ -5,7 +5,7 @@
5
5
  # Translators:
6
6
  # Rudolf Schnapka <rs@techno-flex.de>, 2017
7
7
  # Ricardo Gross <rwgross@gmail.com>, 2018
8
- # Daniel Göppner <daniel.goeppner@braintec-group.com>, 2018
8
+ # Daniel G??ppner <daniel.goeppner@braintec-group.com>, 2018
9
9
  msgid ""
10
10
  msgstr ""
11
11
  "Project-Id-Version: Odoo Server 11.0\n"
@@ -57,6 +57,19 @@ msgstr "91-120 T."
57
57
  msgid "<b>Taxes summary</b>"
58
58
  msgstr "<b>Steuerbuchungen Zusammenfassung</b>"
59
59
 
60
+ #. module: account_financial_report
61
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.trial_balance_wizard
62
+ msgid ""
63
+ "<i class=\"fa fa-exclamation-triangle mr-3\"/>\n"
64
+ " Duplicate amounts may be shown because more than one "
65
+ "analytical account may be defined in the journal items."
66
+ msgstr ""
67
+
68
+ #. module: account_financial_report
69
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
70
+ msgid "<span class=\"o_form_label\">Intervals configuration</span>"
71
+ msgstr ""
72
+
60
73
  #. module: account_financial_report
61
74
  #: model_terms:ir.ui.view,arch_db:account_financial_report.aged_partner_balance_wizard
62
75
  #: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
@@ -82,6 +95,7 @@ msgid "Abstract XLSX Account Financial Report"
82
95
  msgstr ""
83
96
 
84
97
  #. module: account_financial_report
98
+ #. odoo-python
85
99
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
86
100
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
87
101
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
@@ -93,10 +107,14 @@ msgstr ""
93
107
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
94
108
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
95
109
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
96
- #, python-format
97
110
  msgid "Account"
98
111
  msgstr "Konto"
99
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 ""
117
+
100
118
  #. module: account_financial_report
101
119
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__account_code_from
102
120
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__account_code_from
@@ -121,24 +139,24 @@ msgid "Account Group"
121
139
  msgstr "Kontengruppe"
122
140
 
123
141
  #. module: account_financial_report
142
+ #. odoo-python
124
143
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
125
- #, python-format
126
144
  msgid "Account Name"
127
145
  msgstr "Kontobezeichnung"
128
146
 
129
147
  #. module: account_financial_report
148
+ #. odoo-python
130
149
  #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
131
150
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
132
- #, python-format
133
151
  msgid "Account at 0 filter"
134
152
  msgstr "Ausgeglichene Salden Filter"
135
153
 
136
154
  #. module: account_financial_report
155
+ #. odoo-python
137
156
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
138
157
  #: code:addons/account_financial_report/report/open_items_xlsx.py:0
139
158
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
140
159
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
141
- #, python-format
142
160
  msgid "Account balance at 0 filter"
143
161
  msgstr "Ausgeglichene-Salden-Filter"
144
162
 
@@ -157,73 +175,70 @@ msgstr "Zusammenfassung aktivieren"
157
175
  msgid "Additional Filtering"
158
176
  msgstr ""
159
177
 
178
+ #. module: account_financial_report
179
+ #: model:ir.actions.act_window,name:account_financial_report.action_aged_partner_report_configuration
180
+ msgid "Age Partner Report Configuration"
181
+ msgstr ""
182
+
160
183
  #. module: account_financial_report
161
184
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
162
185
  msgid ""
163
186
  "Age ≤ 120\n"
164
- " d."
187
+ " d."
165
188
  msgstr ""
166
- "Alter ≤ 120\n"
167
- " T."
168
189
 
169
190
  #. module: account_financial_report
191
+ #. odoo-python
170
192
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
171
- #, fuzzy, python-format
172
193
  msgid "Age ≤ 120 d."
173
- msgstr "Alter bis 120 T."
194
+ msgstr ""
174
195
 
175
196
  #. module: account_financial_report
176
197
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
177
198
  msgid ""
178
199
  "Age ≤ 30\n"
179
- " d."
200
+ " d."
180
201
  msgstr ""
181
- "Alter ≤ 30\n"
182
- " T."
183
202
 
184
203
  #. module: account_financial_report
204
+ #. odoo-python
185
205
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
186
- #, fuzzy, python-format
187
206
  msgid "Age ≤ 30 d."
188
- msgstr "Alter bis 30 T."
207
+ msgstr ""
189
208
 
190
209
  #. module: account_financial_report
191
210
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
192
211
  msgid ""
193
212
  "Age ≤ 60\n"
194
- " d."
213
+ " d."
195
214
  msgstr ""
196
- "Alter ≤ 60\n"
197
- " T."
198
215
 
199
216
  #. module: account_financial_report
217
+ #. odoo-python
200
218
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
201
- #, fuzzy, python-format
202
219
  msgid "Age ≤ 60 d."
203
- msgstr "Alter bis 60 T."
220
+ msgstr ""
204
221
 
205
222
  #. module: account_financial_report
206
223
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
207
224
  msgid ""
208
225
  "Age ≤ 90\n"
209
- " d."
226
+ " d."
210
227
  msgstr ""
211
- "Alter ≤ 90\n"
212
- " T."
213
228
 
214
229
  #. module: account_financial_report
230
+ #. odoo-python
215
231
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
216
- #, fuzzy, python-format
217
232
  msgid "Age ≤ 90 d."
218
- msgstr "Alter bis 90 T."
233
+ msgstr ""
219
234
 
220
235
  #. module: account_financial_report
236
+ #. odoo-python
221
237
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
222
238
  #: model:ir.actions.act_window,name:account_financial_report.action_aged_partner_balance_wizard
223
239
  #: model:ir.actions.report,name:account_financial_report.action_print_report_aged_partner_balance_html
224
240
  #: model:ir.actions.report,name:account_financial_report.action_print_report_aged_partner_balance_qweb
225
241
  #: model:ir.ui.menu,name:account_financial_report.menu_aged_partner_balance_wizard
226
- #, python-format
227
242
  msgid "Aged Partner Balance"
228
243
  msgstr "Partnersalden nach Alter"
229
244
 
@@ -241,7 +256,7 @@ msgstr "Partnersalden nach Alter -"
241
256
  #. module: account_financial_report
242
257
  #: model:ir.model,name:account_financial_report.model_aged_partner_balance_report_wizard
243
258
  msgid "Aged Partner Balance Wizard"
244
- msgstr "Assistent für Partnersalden n. Alter"
259
+ msgstr "Assistent f??r Partnersalden n. Alter"
245
260
 
246
261
  #. module: account_financial_report
247
262
  #: model:ir.model,name:account_financial_report.model_report_a_f_r_report_aged_partner_balance_xlsx
@@ -255,8 +270,8 @@ msgid "Aged Partner Balance XLSX"
255
270
  msgstr "Partnersalden n. Alter XLSX"
256
271
 
257
272
  #. module: account_financial_report
273
+ #. odoo-python
258
274
  #: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
259
- #, python-format
260
275
  msgid "All"
261
276
  msgstr "Alle"
262
277
 
@@ -279,6 +294,7 @@ msgid "All Posted Entries"
279
294
  msgstr "Alle gebuchten Posten"
280
295
 
281
296
  #. module: account_financial_report
297
+ #. odoo-python
282
298
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
283
299
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
284
300
  #: code:addons/account_financial_report/report/open_items_xlsx.py:0
@@ -287,11 +303,11 @@ msgstr "Alle gebuchten Posten"
287
303
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
288
304
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
289
305
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
290
- #, python-format
291
306
  msgid "All entries"
292
307
  msgstr "Alle Posten"
293
308
 
294
309
  #. module: account_financial_report
310
+ #. odoo-python
295
311
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
296
312
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
297
313
  #: code:addons/account_financial_report/report/open_items_xlsx.py:0
@@ -300,7 +316,6 @@ msgstr "Alle Posten"
300
316
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
301
317
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
302
318
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
303
- #, python-format
304
319
  msgid "All posted entries"
305
320
  msgstr "Alle gebuchten Posten"
306
321
 
@@ -308,28 +323,35 @@ msgstr "Alle gebuchten Posten"
308
323
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
309
324
  #, fuzzy
310
325
  msgid "Amount Cur."
311
- msgstr "Betragwährung"
326
+ msgstr "Betragw??hrung"
312
327
 
313
328
  #. module: account_financial_report
329
+ #. odoo-python
314
330
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
315
- #, python-format
316
331
  msgid "Amount Currency"
317
- msgstr "Betragswährung"
332
+ msgstr "Betragsw??hrung"
318
333
 
319
334
  #. module: account_financial_report
335
+ #. odoo-python
320
336
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
321
337
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
322
- #, python-format
323
338
  msgid "Amount cur."
324
- msgstr "Betragwähr."
339
+ msgstr "Betragw??hr."
325
340
 
326
341
  #. module: account_financial_report
327
- #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
328
- #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
329
- #, fuzzy, python-format
342
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_move_line__analytic_account_ids
343
+ #: model:ir.model.fields.selection,name:account_financial_report.selection__trial_balance_report_wizard__grouped_by__analytic_account
344
+ #, fuzzy
330
345
  msgid "Analytic Account"
331
346
  msgstr "Konten filtern"
332
347
 
348
+ #. module: account_financial_report
349
+ #. odoo-python
350
+ #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
351
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
352
+ msgid "Analytic Distribution"
353
+ msgstr ""
354
+
333
355
  #. module: account_financial_report
334
356
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
335
357
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
@@ -344,20 +366,21 @@ msgid "Base Amount"
344
366
  msgstr "Bemessungsgrundlage"
345
367
 
346
368
  #. module: account_financial_report
369
+ #. odoo-python
347
370
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
348
- #, python-format
349
371
  msgid "Base Balance"
350
372
  msgstr "Bemessungsgrundlage Saldo"
351
373
 
352
374
  #. module: account_financial_report
375
+ #. odoo-python
353
376
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
354
- #, fuzzy, python-format
377
+ #, fuzzy
355
378
  msgid "Base Credit"
356
379
  msgstr "Haben"
357
380
 
358
381
  #. module: account_financial_report
382
+ #. odoo-python
359
383
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
360
- #, python-format
361
384
  msgid "Base Debit"
362
385
  msgstr "Soll"
363
386
 
@@ -368,8 +391,8 @@ msgid "Based On"
368
391
  msgstr "Basierend auf"
369
392
 
370
393
  #. module: account_financial_report
394
+ #. odoo-python
371
395
  #: code:addons/account_financial_report/report/vat_report_xlsx.py:0
372
- #, python-format
373
396
  msgid "Based on"
374
397
  msgstr "Basierend auf"
375
398
 
@@ -384,9 +407,9 @@ msgid "Cancel"
384
407
  msgstr "Abbrechen"
385
408
 
386
409
  #. module: account_financial_report
410
+ #. odoo-python
387
411
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
388
412
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
389
- #, python-format
390
413
  msgid "Centralize filter"
391
414
  msgstr "Zusammenfassung Filter"
392
415
 
@@ -395,27 +418,24 @@ msgstr "Zusammenfassung Filter"
395
418
  msgid "Centralized"
396
419
  msgstr "Zusammengefasst"
397
420
 
398
- #. module: account_financial_report
399
- #: model:ir.model.fields.selection,name:account_financial_report.selection__trial_balance_report_wizard__hierarchy_on__relation
400
- msgid "Child Accounts"
401
- msgstr "Unterkonto"
402
-
403
421
  #. module: account_financial_report
404
422
  #: model:ir.model.fields,field_description:account_financial_report.field_account_group__group_child_ids
405
423
  msgid "Child Groups"
406
424
  msgstr "Untergruppe"
407
425
 
408
426
  #. module: account_financial_report
427
+ #. odoo-python
409
428
  #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
410
429
  #: code:addons/account_financial_report/report/vat_report_xlsx.py:0
411
430
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
412
431
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
413
- #, python-format
414
432
  msgid "Code"
415
433
  msgstr "Nummer"
416
434
 
417
435
  #. module: account_financial_report
436
+ #. odoo-python
418
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
419
439
  #: model:ir.model.fields,field_description:account_financial_report.field_account_financial_report_abstract_wizard__company_id
420
440
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__company_id
421
441
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__company_id
@@ -423,7 +443,6 @@ msgstr "Nummer"
423
443
  #: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__company_id
424
444
  #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__company_id
425
445
  #: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__company_id
426
- #, python-format
427
446
  msgid "Company"
428
447
  msgstr "Unternehmen"
429
448
 
@@ -434,24 +453,18 @@ msgid "Compute accounts"
434
453
  msgstr "Berechnete Konten"
435
454
 
436
455
  #. module: account_financial_report
437
- #: model:ir.model.fields.selection,name:account_financial_report.selection__trial_balance_report_wizard__hierarchy_on__computed
438
- msgid "Computed Accounts"
439
- msgstr "Berechnete Konten"
456
+ #: model:ir.model,name:account_financial_report.model_res_config_settings
457
+ msgid "Config Settings"
458
+ msgstr ""
440
459
 
441
460
  #. module: account_financial_report
442
- #: model:ir.model.fields,help:account_financial_report.field_trial_balance_report_wizard__hierarchy_on
443
- msgid ""
444
- "Computed Accounts: Use when the account group have codes\n"
445
- " that represent prefixes of the actual accounts.\n"
446
- "\n"
447
- " Child Accounts: Use when your account groups are hierarchical.\n"
448
- "\n"
449
- " No hierarchy: Use to display just the accounts, without any "
450
- "grouping.\n"
451
- " "
461
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
462
+ msgid "Configurations"
452
463
  msgstr ""
453
464
 
454
465
  #. module: account_financial_report
466
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__create_uid
467
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__create_uid
455
468
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__create_uid
456
469
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__create_uid
457
470
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__create_uid
@@ -462,6 +475,8 @@ msgid "Created by"
462
475
  msgstr "Erstellt von"
463
476
 
464
477
  #. module: account_financial_report
478
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__create_date
479
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__create_date
465
480
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__create_date
466
481
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__create_date
467
482
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__create_date
@@ -472,6 +487,7 @@ msgid "Created on"
472
487
  msgstr "Erstellt am"
473
488
 
474
489
  #. module: account_financial_report
490
+ #. odoo-python
475
491
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
476
492
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
477
493
  #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
@@ -480,57 +496,60 @@ msgstr "Erstellt am"
480
496
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
481
497
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
482
498
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
483
- #, python-format
484
499
  msgid "Credit"
485
500
  msgstr "Haben"
486
501
 
487
502
  #. module: account_financial_report
503
+ #. odoo-python
504
+ #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
505
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
506
+ msgid "Cumul cur."
507
+ msgstr ""
508
+
509
+ #. module: account_financial_report
510
+ #. odoo-python
488
511
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
489
512
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
490
- #, python-format
491
513
  msgid "Cumul. Bal."
492
514
  msgstr "Kumul. Saldo"
493
515
 
494
516
  #. module: account_financial_report
495
- #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
517
+ #. odoo-python
496
518
  #: code:addons/account_financial_report/report/open_items_xlsx.py:0
497
- #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
498
- #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
499
519
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
500
520
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
501
- #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
502
- #, python-format
503
521
  msgid "Cur."
504
522
  msgstr "Whrg."
505
523
 
506
524
  #. module: account_financial_report
525
+ #. odoo-python
507
526
  #: code:addons/account_financial_report/report/open_items_xlsx.py:0
508
527
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
509
- #, python-format
510
528
  msgid "Cur. Original"
511
- msgstr "Urspr. Währung"
529
+ msgstr "Urspr. W??hrung"
512
530
 
513
531
  #. module: account_financial_report
532
+ #. odoo-python
514
533
  #: code:addons/account_financial_report/report/open_items_xlsx.py:0
515
534
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
516
- #, python-format
517
535
  msgid "Cur. Residual"
518
- msgstr "Währung Restbetrag"
536
+ msgstr "W??hrung Restbetrag"
519
537
 
520
538
  #. module: account_financial_report
539
+ #. odoo-python
521
540
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
522
- #, python-format
523
541
  msgid "Currency"
524
- msgstr "Währung"
542
+ msgstr "W??hrung"
525
543
 
526
544
  #. module: account_financial_report
545
+ #. odoo-python
527
546
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
528
547
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
529
- #, python-format
530
548
  msgid "Current"
531
549
  msgstr "Ist-Summe"
532
550
 
533
551
  #. module: account_financial_report
552
+ #. odoo-python
534
553
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
535
554
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
536
555
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
@@ -540,7 +559,6 @@ msgstr "Ist-Summe"
540
559
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
541
560
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
542
561
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
543
- #, python-format
544
562
  msgid "Date"
545
563
  msgstr "Datum"
546
564
 
@@ -567,17 +585,17 @@ msgid "Date To"
567
585
  msgstr "Datum bis"
568
586
 
569
587
  #. module: account_financial_report
588
+ #. odoo-python
570
589
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
571
590
  #: code:addons/account_financial_report/report/open_items_xlsx.py:0
572
591
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_filters
573
592
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
574
- #, python-format
575
593
  msgid "Date at filter"
576
594
  msgstr "Stichtagfilter"
577
595
 
578
596
  #. module: account_financial_report
597
+ #. odoo-python
579
598
  #: code:addons/account_financial_report/report/vat_report_xlsx.py:0
580
- #, python-format
581
599
  msgid "Date from"
582
600
  msgstr "Datum von"
583
601
 
@@ -590,22 +608,23 @@ msgid "Date range"
590
608
  msgstr "Zeitraum"
591
609
 
592
610
  #. module: account_financial_report
611
+ #. odoo-python
593
612
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
594
613
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
595
614
  #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
596
615
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
597
616
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
598
- #, python-format
599
617
  msgid "Date range filter"
600
618
  msgstr "Zeitraumfilter"
601
619
 
602
620
  #. module: account_financial_report
621
+ #. odoo-python
603
622
  #: code:addons/account_financial_report/report/vat_report_xlsx.py:0
604
- #, python-format
605
623
  msgid "Date to"
606
624
  msgstr "Datum bis"
607
625
 
608
626
  #. module: account_financial_report
627
+ #. odoo-python
609
628
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
610
629
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
611
630
  #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
@@ -614,15 +633,14 @@ msgstr "Datum bis"
614
633
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
615
634
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
616
635
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
617
- #, python-format
618
636
  msgid "Debit"
619
637
  msgstr "Soll"
620
638
 
621
639
  #. module: account_financial_report
640
+ #. odoo-python
622
641
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
623
642
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
624
643
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
625
- #, python-format
626
644
  msgid "Description"
627
645
  msgstr "Beschreibung"
628
646
 
@@ -632,29 +650,12 @@ msgid "Detail Taxes"
632
650
  msgstr "Details zu Steuern"
633
651
 
634
652
  #. module: account_financial_report
635
- #: model:ir.model.fields,field_description:account_financial_report.field_account_account__display_name
636
- #: model:ir.model.fields,field_description:account_financial_report.field_account_financial_report_abstract_wizard__display_name
637
- #: model:ir.model.fields,field_description:account_financial_report.field_account_group__display_name
638
- #: model:ir.model.fields,field_description:account_financial_report.field_account_move_line__display_name
653
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__display_name
654
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__display_name
639
655
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__display_name
640
656
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__display_name
641
- #: model:ir.model.fields,field_description:account_financial_report.field_ir_actions_report__display_name
642
657
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__display_name
643
658
  #: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__display_name
644
- #: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_aged_partner_balance_xlsx__display_name
645
- #: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_general_ledger_xlsx__display_name
646
- #: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_journal_ledger_xlsx__display_name
647
- #: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_open_items_xlsx__display_name
648
- #: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_trial_balance_xlsx__display_name
649
- #: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_vat_report_xlsx__display_name
650
- #: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_abstract_report__display_name
651
- #: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_abstract_report_xlsx__display_name
652
- #: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_aged_partner_balance__display_name
653
- #: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_general_ledger__display_name
654
- #: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_journal_ledger__display_name
655
- #: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_open_items__display_name
656
- #: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_trial_balance__display_name
657
- #: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_vat_report__display_name
658
659
  #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__display_name
659
660
  #: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__display_name
660
661
  msgid "Display Name"
@@ -669,9 +670,9 @@ msgid ""
669
670
  "setup through chart of accounts will display initial and final balance in "
670
671
  "that currency."
671
672
  msgstr ""
672
- "Zeige eine Fremdwährung für die Buchungen an. Solang noch keine eigene "
673
- "Währung über einen konfigurierten Kontenplan spezifiziert wurde, werden die "
674
- "Anfangs- und Endsalden in dieser Währung angezeigt."
673
+ "Zeige eine Fremdw??hrung f??r die Buchungen an. Solang noch keine eigene W??"
674
+ "hrung ??ber einen konfigurierten Kontenplan spezifiziert wurde, werden die "
675
+ "Anfangs- und Endsalden in dieser W??hrung angezeigt."
675
676
 
676
677
  #. module: account_financial_report
677
678
  #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__hide_parent_hierarchy_level
@@ -684,7 +685,7 @@ msgid ""
684
685
  "Due\n"
685
686
  " date"
686
687
  msgstr ""
687
- "Fälligkeits\n"
688
+ "F??lligkeits\n"
688
689
  "datum"
689
690
 
690
691
  #. module: account_financial_report
@@ -694,15 +695,15 @@ msgid ""
694
695
  "Due\n"
695
696
  " date"
696
697
  msgstr ""
697
- "Fälligkeits\n"
698
+ "F??lligkeits\n"
698
699
  "datum"
699
700
 
700
701
  #. module: account_financial_report
702
+ #. odoo-python
701
703
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
702
704
  #: code:addons/account_financial_report/report/open_items_xlsx.py:0
703
- #, python-format
704
705
  msgid "Due date"
705
- msgstr "Fälligkeit"
706
+ msgstr "F??lligkeit"
706
707
 
707
708
  #. module: account_financial_report
708
709
  #: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__date_to
@@ -730,12 +731,12 @@ msgid "Ending account in a range"
730
731
  msgstr ""
731
732
 
732
733
  #. module: account_financial_report
734
+ #. odoo-python
733
735
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
734
736
  #: code:addons/account_financial_report/report/open_items_xlsx.py:0
735
737
  #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
736
738
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_ending_cumul
737
739
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
738
- #, python-format
739
740
  msgid "Ending balance"
740
741
  msgstr "Endsaldo"
741
742
 
@@ -748,12 +749,13 @@ msgid ""
748
749
  msgstr "Endstand"
749
750
 
750
751
  #. module: account_financial_report
752
+ #. odoo-python
751
753
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
752
- #, python-format
753
754
  msgid "Entries sorted by"
754
755
  msgstr "Sortierung nach"
755
756
 
756
757
  #. module: account_financial_report
758
+ #. odoo-python
757
759
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
758
760
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
759
761
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
@@ -762,20 +764,18 @@ msgstr "Sortierung nach"
762
764
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
763
765
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
764
766
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
765
- #, python-format
766
767
  msgid "Entry"
767
768
  msgstr "Buchung"
768
769
 
769
770
  #. module: account_financial_report
771
+ #. odoo-python
770
772
  #: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
771
- #, python-format
772
773
  msgid "Entry number"
773
774
  msgstr "Buchungssatz Nummer"
774
775
 
775
776
  #. module: account_financial_report
776
- #. openerp-web
777
+ #. odoo-javascript
777
778
  #: code:addons/account_financial_report/static/src/xml/report.xml:0
778
- #, python-format
779
779
  msgid "Export"
780
780
  msgstr ""
781
781
 
@@ -812,13 +812,7 @@ msgstr "Konten filtern"
812
812
  #: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
813
813
  #, fuzzy
814
814
  msgid "Filter analytic accounts"
815
- msgstr "Kostenstellen-Stichwörter filtern"
816
-
817
- #. module: account_financial_report
818
- #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__analytic_tag_ids
819
- #: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
820
- msgid "Filter analytic tags"
821
- msgstr "Kostenstellen-Stichwörter filtern"
815
+ msgstr "Kostenstellen-Stichw??rter filtern"
822
816
 
823
817
  #. module: account_financial_report
824
818
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__cost_center_ids
@@ -843,7 +837,12 @@ msgstr "Partner filtern"
843
837
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__foreign_currency
844
838
  #, fuzzy
845
839
  msgid "Foreign Currency"
846
- msgstr "Betragswährung"
840
+ msgstr "Betragsw??hrung"
841
+
842
+ #. module: account_financial_report
843
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
844
+ msgid "Format"
845
+ msgstr ""
847
846
 
848
847
  #. module: account_financial_report
849
848
  #: model_terms:ir.ui.view,arch_db:account_financial_report.aged_partner_balance_wizard
@@ -861,12 +860,12 @@ msgid "From:"
861
860
  msgstr "Von:"
862
861
 
863
862
  #. module: account_financial_report
863
+ #. odoo-python
864
864
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
865
865
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
866
866
  #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
867
- #, python-format
868
- msgid "From: %s To: %s"
869
- msgstr "Von: %s Bis: %s"
867
+ msgid "From: %(date_from)s To: %(date_to)s"
868
+ msgstr ""
870
869
 
871
870
  #. module: account_financial_report
872
871
  #: model:ir.model.fields,field_description:account_financial_report.field_account_group__complete_code
@@ -887,13 +886,13 @@ msgid "Fy Start Date"
887
886
  msgstr "GJ Beginn"
888
887
 
889
888
  #. module: account_financial_report
889
+ #. odoo-python
890
890
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
891
891
  #: model:ir.actions.act_window,name:account_financial_report.act_action_general_ledger_wizard_partner_relation
892
892
  #: model:ir.actions.act_window,name:account_financial_report.action_general_ledger_wizard
893
893
  #: model:ir.actions.report,name:account_financial_report.action_print_report_general_ledger_html
894
894
  #: model:ir.actions.report,name:account_financial_report.action_print_report_general_ledger_qweb
895
895
  #: model:ir.ui.menu,name:account_financial_report.menu_general_ledger_wizard
896
- #, python-format
897
896
  msgid "General Ledger"
898
897
  msgstr "Hauptbuch"
899
898
 
@@ -937,13 +936,26 @@ msgid "Group entries by"
937
936
  msgstr "Gruppieren nach"
938
937
 
939
938
  #. module: account_financial_report
939
+ #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__grouped_by
940
+ #: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__grouped_by
941
+ #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__grouped_by
942
+ msgid "Grouped By"
943
+ msgstr ""
944
+
945
+ #. module: account_financial_report
946
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
947
+ msgid ""
948
+ "Here you can set the intervals that will appear on the Aged Partner Balance."
949
+ msgstr ""
950
+
951
+ #. module: account_financial_report
952
+ #. odoo-python
940
953
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
941
954
  #: code:addons/account_financial_report/report/open_items_xlsx.py:0
942
955
  #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
943
956
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
944
957
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
945
958
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
946
- #, python-format
947
959
  msgid "Hide"
948
960
  msgstr "Ausblenden"
949
961
 
@@ -964,34 +976,12 @@ msgid "Hierarchy Levels to display"
964
976
  msgstr "Anzuzeigende Ebenen"
965
977
 
966
978
  #. module: account_financial_report
967
- #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__hierarchy_on
968
- msgid "Hierarchy On"
969
- msgstr "Gruppieren über"
970
-
971
- #. module: account_financial_report
972
- #: model:ir.model.fields,field_description:account_financial_report.field_account_account__id
973
- #: model:ir.model.fields,field_description:account_financial_report.field_account_financial_report_abstract_wizard__id
974
- #: model:ir.model.fields,field_description:account_financial_report.field_account_group__id
975
- #: model:ir.model.fields,field_description:account_financial_report.field_account_move_line__id
979
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__id
980
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__id
976
981
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__id
977
982
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__id
978
- #: model:ir.model.fields,field_description:account_financial_report.field_ir_actions_report__id
979
983
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__id
980
984
  #: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__id
981
- #: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_aged_partner_balance_xlsx__id
982
- #: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_general_ledger_xlsx__id
983
- #: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_journal_ledger_xlsx__id
984
- #: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_open_items_xlsx__id
985
- #: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_trial_balance_xlsx__id
986
- #: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_vat_report_xlsx__id
987
- #: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_abstract_report__id
988
- #: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_abstract_report_xlsx__id
989
- #: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_aged_partner_balance__id
990
- #: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_general_ledger__id
991
- #: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_journal_ledger__id
992
- #: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_open_items__id
993
- #: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_trial_balance__id
994
- #: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_vat_report__id
995
985
  #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__id
996
986
  #: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__id
997
987
  msgid "ID"
@@ -1006,6 +996,17 @@ msgstr ""
1006
996
  "Wenn gekennzeichnet, werden im (Webkit) Hauptbuch-Bericht nur "
1007
997
  "zusammengefasste Abstimmsummen pro Periode ausgewiesen."
1008
998
 
999
+ #. module: account_financial_report
1000
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__inferior_limit
1001
+ msgid "Inferior Limit"
1002
+ msgstr ""
1003
+
1004
+ #. module: account_financial_report
1005
+ #. odoo-python
1006
+ #: code:addons/account_financial_report/models/account_age_report_configuration.py:0
1007
+ msgid "Inferior Limit must be greather than zero"
1008
+ msgstr ""
1009
+
1009
1010
  #. module: account_financial_report
1010
1011
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
1011
1012
  #, fuzzy
@@ -1022,14 +1023,21 @@ msgid ""
1022
1023
  msgstr "Anfangssaldo"
1023
1024
 
1024
1025
  #. module: account_financial_report
1026
+ #. odoo-python
1025
1027
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
1026
1028
  #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
1027
1029
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
1028
- #, python-format
1029
1030
  msgid "Initial balance"
1030
1031
  msgstr "Anfangssaldo"
1031
1032
 
1032
1033
  #. module: account_financial_report
1034
+ #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__age_partner_config_id
1035
+ #: model:ir.model.fields,field_description:account_financial_report.field_res_config_settings__age_partner_config_id
1036
+ msgid "Intervals configuration"
1037
+ msgstr ""
1038
+
1039
+ #. module: account_financial_report
1040
+ #. odoo-python
1033
1041
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
1034
1042
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
1035
1043
  #: code:addons/account_financial_report/report/open_items_xlsx.py:0
@@ -1038,7 +1046,6 @@ msgstr "Anfangssaldo"
1038
1046
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
1039
1047
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
1040
1048
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
1041
- #, python-format
1042
1049
  msgid "Journal"
1043
1050
  msgstr "Journal"
1044
1051
 
@@ -1053,11 +1060,11 @@ msgid "Journal Items Domain"
1053
1060
  msgstr ""
1054
1061
 
1055
1062
  #. module: account_financial_report
1063
+ #. odoo-python
1056
1064
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
1057
1065
  #: model:ir.actions.act_window,name:account_financial_report.action_journal_ledger_wizard
1058
1066
  #: model:ir.actions.report,name:account_financial_report.action_print_journal_ledger_wizard_html
1059
1067
  #: model:ir.ui.menu,name:account_financial_report.menu_journal_ledger_wizard
1060
- #, python-format
1061
1068
  msgid "Journal Ledger"
1062
1069
  msgstr "Buchungsjournal"
1063
1070
 
@@ -1089,43 +1096,27 @@ msgid "Journal Ledger XLSX Report"
1089
1096
  msgstr "Buchungsjournale XLSX"
1090
1097
 
1091
1098
  #. module: account_financial_report
1099
+ #. odoo-python
1092
1100
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
1093
1101
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__journal_ids
1094
1102
  #: model_terms:ir.ui.view,arch_db:account_financial_report.journal_ledger_wizard
1095
- #, python-format
1096
1103
  msgid "Journals"
1097
1104
  msgstr "Journale"
1098
1105
 
1099
1106
  #. module: account_financial_report
1100
- #: model:ir.model.fields,field_description:account_financial_report.field_account_account____last_update
1101
- #: model:ir.model.fields,field_description:account_financial_report.field_account_financial_report_abstract_wizard____last_update
1102
- #: model:ir.model.fields,field_description:account_financial_report.field_account_group____last_update
1103
- #: model:ir.model.fields,field_description:account_financial_report.field_account_move_line____last_update
1104
- #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard____last_update
1105
- #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard____last_update
1106
- #: model:ir.model.fields,field_description:account_financial_report.field_ir_actions_report____last_update
1107
- #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard____last_update
1108
- #: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard____last_update
1109
- #: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_aged_partner_balance_xlsx____last_update
1110
- #: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_general_ledger_xlsx____last_update
1111
- #: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_journal_ledger_xlsx____last_update
1112
- #: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_open_items_xlsx____last_update
1113
- #: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_trial_balance_xlsx____last_update
1114
- #: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_vat_report_xlsx____last_update
1115
- #: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_abstract_report____last_update
1116
- #: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_abstract_report_xlsx____last_update
1117
- #: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_aged_partner_balance____last_update
1118
- #: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_general_ledger____last_update
1119
- #: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_journal_ledger____last_update
1120
- #: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_open_items____last_update
1121
- #: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_trial_balance____last_update
1122
- #: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_vat_report____last_update
1123
- #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard____last_update
1124
- #: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard____last_update
1125
- msgid "Last Modified on"
1126
- msgstr "Geändert am"
1107
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_financial_report_abstract_wizard__label_text_limit
1108
+ #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__label_text_limit
1109
+ #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__label_text_limit
1110
+ #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__label_text_limit
1111
+ #: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__label_text_limit
1112
+ #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__label_text_limit
1113
+ #: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__label_text_limit
1114
+ msgid "Label Text Limit"
1115
+ msgstr ""
1127
1116
 
1128
1117
  #. module: account_financial_report
1118
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__write_uid
1119
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__write_uid
1129
1120
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__write_uid
1130
1121
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__write_uid
1131
1122
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__write_uid
@@ -1136,6 +1127,8 @@ msgid "Last Updated by"
1136
1127
  msgstr "Aktualisiert durch"
1137
1128
 
1138
1129
  #. module: account_financial_report
1130
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__write_date
1131
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__write_date
1139
1132
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__write_date
1140
1133
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__write_date
1141
1134
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__write_date
@@ -1152,19 +1145,49 @@ msgid "Level"
1152
1145
  msgstr "Ebene"
1153
1146
 
1154
1147
  #. module: account_financial_report
1148
+ #. odoo-python
1155
1149
  #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
1156
- #, python-format
1157
1150
  msgid "Level %s"
1158
1151
  msgstr "Ebene %s"
1159
1152
 
1160
1153
  #. module: account_financial_report
1154
+ #. odoo-python
1161
1155
  #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
1162
1156
  #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__limit_hierarchy_level
1163
1157
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
1164
- #, python-format
1165
1158
  msgid "Limit hierarchy levels"
1166
1159
  msgstr "Ebenen festlegen"
1167
1160
 
1161
+ #. module: account_financial_report
1162
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__line_ids
1163
+ msgid "Line"
1164
+ msgstr "Position"
1165
+
1166
+ #. module: account_financial_report
1167
+ #. odoo-python
1168
+ #: code:addons/account_financial_report/report/general_ledger.py:0
1169
+ #: code:addons/account_financial_report/report/open_items.py:0
1170
+ #: code:addons/account_financial_report/report/open_items_xlsx.py:0
1171
+ #: code:addons/account_financial_report/report/trial_balance.py:0
1172
+ msgid "Missing Partner"
1173
+ msgstr ""
1174
+
1175
+ #. module: account_financial_report
1176
+ #. odoo-python
1177
+ #: code:addons/account_financial_report/report/open_items.py:0
1178
+ msgid "Missing Salesperson"
1179
+ msgstr ""
1180
+
1181
+ #. module: account_financial_report
1182
+ #: model:ir.model,name:account_financial_report.model_account_age_report_configuration_line
1183
+ msgid "Model to set interval lines for Age partner balance report"
1184
+ msgstr ""
1185
+
1186
+ #. module: account_financial_report
1187
+ #: model:ir.model,name:account_financial_report.model_account_age_report_configuration
1188
+ msgid "Model to set intervals for Age partner balance report"
1189
+ msgstr ""
1190
+
1168
1191
  #. module: account_financial_report
1169
1192
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__move_target
1170
1193
  msgid "Move Target"
@@ -1176,65 +1199,77 @@ msgid "Moves"
1176
1199
  msgstr "Buchungen"
1177
1200
 
1178
1201
  #. module: account_financial_report
1202
+ #. odoo-python
1203
+ #: code:addons/account_financial_report/models/account_age_report_configuration.py:0
1204
+ msgid "Must complete Configuration Lines"
1205
+ msgstr ""
1206
+
1207
+ #. module: account_financial_report
1208
+ #. odoo-python
1179
1209
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
1180
1210
  #: code:addons/account_financial_report/report/vat_report_xlsx.py:0
1211
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__name
1212
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__name
1181
1213
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
1182
1214
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
1183
1215
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
1184
- #, python-format
1185
1216
  msgid "Name"
1186
1217
  msgstr "Bezeichnung"
1187
1218
 
1188
1219
  #. module: account_financial_report
1220
+ #: model:ir.model.constraint,message:account_financial_report.constraint_account_age_report_configuration_line_unique_name_config_combination
1221
+ msgid "Name must be unique per report configuration"
1222
+ msgstr ""
1223
+
1224
+ #. module: account_financial_report
1225
+ #. odoo-python
1189
1226
  #: code:addons/account_financial_report/report/vat_report_xlsx.py:0
1190
1227
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
1191
- #, python-format
1192
1228
  msgid "Net"
1193
1229
  msgstr "Netto"
1194
1230
 
1195
1231
  #. module: account_financial_report
1232
+ #. odoo-python
1196
1233
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
1197
1234
  #: code:addons/account_financial_report/report/open_items_xlsx.py:0
1198
1235
  #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
1199
1236
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
1200
- #, python-format
1201
1237
  msgid "No"
1202
1238
  msgstr "Nein"
1203
1239
 
1204
1240
  #. module: account_financial_report
1241
+ #. odoo-python
1205
1242
  #: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
1206
- #, python-format
1207
1243
  msgid "No group"
1208
1244
  msgstr "Keine Gruppierung"
1209
1245
 
1210
1246
  #. module: account_financial_report
1211
- #: model:ir.model.fields.selection,name:account_financial_report.selection__trial_balance_report_wizard__hierarchy_on__none
1212
- msgid "No hierarchy"
1213
- msgstr "Keine Ebenen"
1214
-
1215
- #. module: account_financial_report
1247
+ #. odoo-python
1216
1248
  #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
1217
1249
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
1218
- #, python-format
1219
1250
  msgid "No limit"
1220
- msgstr "Keine Einschränkung"
1251
+ msgstr "Keine Einschr??nkung"
1221
1252
 
1222
1253
  #. module: account_financial_report
1254
+ #: model:ir.model.fields.selection,name:account_financial_report.selection__general_ledger_report_wizard__grouped_by__none
1255
+ msgid "None"
1256
+ msgstr ""
1257
+
1258
+ #. module: account_financial_report
1259
+ #. odoo-python
1223
1260
  #: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
1224
- #, python-format
1225
1261
  msgid "Not Posted"
1226
1262
  msgstr "Nicht gebucht"
1227
1263
 
1228
1264
  #. module: account_financial_report
1229
1265
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_lines_header
1230
1266
  msgid "Not due"
1231
- msgstr "Nicht fällig"
1267
+ msgstr "Nicht f??llig"
1232
1268
 
1233
1269
  #. module: account_financial_report
1234
- #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__not_only_one_unaffected_earnings_account
1235
- #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__not_only_one_unaffected_earnings_account
1236
- msgid "Not only one unaffected earnings account"
1237
- msgstr "Mehr als ein unberührtes Überschußkonto"
1270
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
1271
+ msgid "OCA Aged Report Configuration"
1272
+ msgstr ""
1238
1273
 
1239
1274
  #. module: account_financial_report
1240
1275
  #: model:ir.ui.menu,name:account_financial_report.menu_oca_reports
@@ -1242,19 +1277,25 @@ msgid "OCA accounting reports"
1242
1277
  msgstr "OCA Finanzberichte"
1243
1278
 
1244
1279
  #. module: account_financial_report
1280
+ #. odoo-python
1245
1281
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
1246
1282
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
1247
- #, python-format
1248
1283
  msgid "Older"
1249
- msgstr "Älter"
1284
+ msgstr "??lter"
1250
1285
 
1251
1286
  #. module: account_financial_report
1287
+ #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__only_one_unaffected_earnings_account
1288
+ #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__only_one_unaffected_earnings_account
1289
+ msgid "Only One Unaffected Earnings Account"
1290
+ msgstr ""
1291
+
1292
+ #. module: account_financial_report
1293
+ #. odoo-python
1252
1294
  #: code:addons/account_financial_report/report/open_items_xlsx.py:0
1253
1295
  #: model:ir.actions.act_window,name:account_financial_report.action_open_items_wizard
1254
1296
  #: model:ir.actions.report,name:account_financial_report.action_print_report_open_items_html
1255
1297
  #: model:ir.actions.report,name:account_financial_report.action_print_report_open_items_qweb
1256
1298
  #: model:ir.ui.menu,name:account_financial_report.menu_open_items_wizard
1257
- #, python-format
1258
1299
  msgid "Open Items"
1259
1300
  msgstr "Offene Posten"
1260
1301
 
@@ -1297,13 +1338,14 @@ msgid "Options"
1297
1338
  msgstr "Optionen"
1298
1339
 
1299
1340
  #. module: account_financial_report
1341
+ #. odoo-python
1300
1342
  #: code:addons/account_financial_report/report/open_items_xlsx.py:0
1301
1343
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
1302
- #, python-format
1303
1344
  msgid "Original"
1304
- msgstr "Ursprünglich"
1345
+ msgstr "Urspr??nglich"
1305
1346
 
1306
1347
  #. module: account_financial_report
1348
+ #. odoo-python
1307
1349
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
1308
1350
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
1309
1351
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
@@ -1315,7 +1357,6 @@ msgstr "Ursprünglich"
1315
1357
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
1316
1358
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
1317
1359
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
1318
- #, python-format
1319
1360
  msgid "Partner"
1320
1361
  msgstr "Partner"
1321
1362
 
@@ -1329,26 +1370,42 @@ msgstr ""
1329
1370
  " kumm. Stichtagssalden"
1330
1371
 
1331
1372
  #. module: account_financial_report
1373
+ #. odoo-python
1332
1374
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
1333
- #, python-format
1334
1375
  msgid "Partner Initial balance"
1335
1376
  msgstr "Partner-Anfangssaldo"
1336
1377
 
1337
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 ""
1382
+
1383
+ #. module: account_financial_report
1384
+ #. odoo-python
1338
1385
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
1339
- #, python-format
1340
1386
  msgid "Partner cumul aged balance"
1341
1387
  msgstr "Partner-Salden nach Alter"
1342
1388
 
1343
1389
  #. module: account_financial_report
1390
+ #. odoo-python
1344
1391
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
1345
1392
  #: code:addons/account_financial_report/report/open_items_xlsx.py:0
1346
1393
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_ending_cumul
1347
1394
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_ending_cumul
1348
- #, python-format
1349
1395
  msgid "Partner ending balance"
1350
1396
  msgstr "Partner-Endsaldo"
1351
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 ""
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 ""
1408
+
1352
1409
  #. module: account_financial_report
1353
1410
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__payable_accounts_only
1354
1411
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__payable_accounts_only
@@ -1363,34 +1420,27 @@ msgid "Percents"
1363
1420
  msgstr "Prozente"
1364
1421
 
1365
1422
  #. module: account_financial_report
1423
+ #. odoo-python
1366
1424
  #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
1367
1425
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
1368
- #, python-format
1369
1426
  msgid "Period balance"
1370
1427
  msgstr "Endsaldo"
1371
1428
 
1372
1429
  #. module: account_financial_report
1373
1430
  #: model_terms:ir.ui.view,arch_db:account_financial_report.journal_ledger_wizard
1374
1431
  msgid "Periods"
1375
- msgstr "Zeiträume"
1432
+ msgstr "Zeitr??ume"
1376
1433
 
1377
1434
  #. module: account_financial_report
1435
+ #. odoo-python
1378
1436
  #: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
1379
- #, python-format
1380
1437
  msgid "Posted"
1381
1438
  msgstr "Gebucht"
1382
1439
 
1383
1440
  #. module: account_financial_report
1384
- #. openerp-web
1385
- #: code:addons/account_financial_report/static/src/xml/report.xml:0
1386
- #, python-format
1387
- msgid "Print"
1388
- msgstr ""
1389
-
1390
- #. module: account_financial_report
1441
+ #. odoo-python
1391
1442
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
1392
1443
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
1393
- #, python-format
1394
1444
  msgid "Rec."
1395
1445
  msgstr "Ford."
1396
1446
 
@@ -1423,12 +1473,12 @@ msgstr ""
1423
1473
  " Kennzeichen"
1424
1474
 
1425
1475
  #. module: account_financial_report
1476
+ #. odoo-python
1426
1477
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
1427
1478
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
1428
1479
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
1429
1480
  #: code:addons/account_financial_report/report/open_items_xlsx.py:0
1430
1481
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
1431
- #, python-format
1432
1482
  msgid "Ref - Label"
1433
1483
  msgstr "Ref - Titel"
1434
1484
 
@@ -1438,30 +1488,30 @@ msgid "Report Action"
1438
1488
  msgstr ""
1439
1489
 
1440
1490
  #. module: account_financial_report
1491
+ #. odoo-python
1441
1492
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
1442
1493
  #: code:addons/account_financial_report/report/open_items_xlsx.py:0
1443
1494
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_lines_header
1444
1495
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
1445
1496
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
1446
- #, python-format
1447
1497
  msgid "Residual"
1448
1498
  msgstr "Restbetrag"
1449
1499
 
1450
1500
  #. module: account_financial_report
1501
+ #. odoo-python
1451
1502
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
1452
1503
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
1453
- #, python-format
1454
1504
  msgid "Sequence"
1455
1505
  msgstr "Sequenz"
1456
1506
 
1457
1507
  #. module: account_financial_report
1508
+ #. odoo-python
1458
1509
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
1459
1510
  #: code:addons/account_financial_report/report/open_items_xlsx.py:0
1460
1511
  #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
1461
1512
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
1462
1513
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
1463
1514
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
1464
- #, python-format
1465
1515
  msgid "Show"
1466
1516
  msgstr "Anzeigen"
1467
1517
 
@@ -1469,7 +1519,7 @@ msgstr "Anzeigen"
1469
1519
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__show_cost_center
1470
1520
  #, fuzzy
1471
1521
  msgid "Show Analytic Account"
1472
- msgstr "Kosten-Stichwörter anzeigen"
1522
+ msgstr "Kosten-Stichw??rter anzeigen"
1473
1523
 
1474
1524
  #. module: account_financial_report
1475
1525
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__with_auto_sequence
@@ -1482,30 +1532,26 @@ msgid "Show Move Line Details"
1482
1532
  msgstr "Buchungsdetails anzeigen"
1483
1533
 
1484
1534
  #. module: account_financial_report
1485
- #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__show_partner_details
1486
1535
  #: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__show_partner_details
1487
1536
  #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__show_partner_details
1488
1537
  msgid "Show Partner Details"
1489
1538
  msgstr "Partnerdetails anzeigen"
1490
1539
 
1491
1540
  #. module: account_financial_report
1492
- #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
1493
- #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__show_analytic_tags
1494
- #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
1495
- #, python-format
1496
- msgid "Show analytic tags"
1497
- msgstr "Kostenstichwörter anzeigen"
1498
-
1499
- #. module: account_financial_report
1541
+ #. odoo-python
1500
1542
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
1501
1543
  #: code:addons/account_financial_report/report/open_items_xlsx.py:0
1502
1544
  #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
1503
1545
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__foreign_currency
1504
1546
  #: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__foreign_currency
1505
1547
  #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__foreign_currency
1506
- #, python-format
1507
1548
  msgid "Show foreign currency"
1508
- msgstr "Fremdwährung anzeigen"
1549
+ msgstr "Fremdw??hrung anzeigen"
1550
+
1551
+ #. module: account_financial_report
1552
+ #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__show_hierarchy
1553
+ msgid "Show hierarchy"
1554
+ msgstr ""
1509
1555
 
1510
1556
  #. module: account_financial_report
1511
1557
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__sort_option
@@ -1527,17 +1573,21 @@ msgstr "Anfangsdatum"
1527
1573
  #. module: account_financial_report
1528
1574
  #: model:ir.model.fields,help:account_financial_report.field_aged_partner_balance_report_wizard__account_code_from
1529
1575
  #: model:ir.model.fields,help:account_financial_report.field_general_ledger_report_wizard__account_code_from
1530
- #: model:ir.model.fields,help:account_financial_report.field_open_items_report_wizard__account_code_from
1531
1576
  #: model:ir.model.fields,help:account_financial_report.field_trial_balance_report_wizard__account_code_from
1532
1577
  msgid "Starting account in a range"
1533
1578
  msgstr ""
1534
1579
 
1535
1580
  #. module: account_financial_report
1536
- #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
1581
+ #. odoo-python
1582
+ #: code:addons/account_financial_report/report/trial_balance.py:0
1583
+ #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
1584
+ msgid "TOTAL"
1585
+ msgstr ""
1586
+
1587
+ #. module: account_financial_report
1537
1588
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
1538
- #, python-format
1539
1589
  msgid "Tags"
1540
- msgstr "Stichwörter"
1590
+ msgstr "Stichw??rter"
1541
1591
 
1542
1592
  #. module: account_financial_report
1543
1593
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__target_move
@@ -1549,6 +1599,7 @@ msgid "Target Moves"
1549
1599
  msgstr "Anzuzeigende Buchungen"
1550
1600
 
1551
1601
  #. module: account_financial_report
1602
+ #. odoo-python
1552
1603
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
1553
1604
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
1554
1605
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
@@ -1558,14 +1609,13 @@ msgstr "Anzuzeigende Buchungen"
1558
1609
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
1559
1610
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
1560
1611
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
1561
- #, python-format
1562
1612
  msgid "Target moves filter"
1563
1613
  msgstr "Anzuzeigende Buchungen filtern"
1564
1614
 
1565
1615
  #. module: account_financial_report
1616
+ #. odoo-python
1566
1617
  #: code:addons/account_financial_report/report/vat_report_xlsx.py:0
1567
1618
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
1568
- #, python-format
1569
1619
  msgid "Tax"
1570
1620
  msgstr "Steuer"
1571
1621
 
@@ -1576,49 +1626,69 @@ msgid "Tax Amount"
1576
1626
  msgstr "Steuer"
1577
1627
 
1578
1628
  #. module: account_financial_report
1629
+ #. odoo-python
1579
1630
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
1580
- #, python-format
1581
1631
  msgid "Tax Balance"
1582
1632
  msgstr "Steuersaldo"
1583
1633
 
1584
1634
  #. module: account_financial_report
1635
+ #. odoo-python
1585
1636
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
1586
- #, fuzzy, python-format
1637
+ #, fuzzy
1587
1638
  msgid "Tax Credit"
1588
1639
  msgstr "Haben"
1589
1640
 
1590
1641
  #. module: account_financial_report
1642
+ #. odoo-python
1591
1643
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
1592
- #, python-format
1593
1644
  msgid "Tax Debit"
1594
1645
  msgstr "Soll"
1595
1646
 
1596
1647
  #. module: account_financial_report
1648
+ #. odoo-python
1597
1649
  #: code:addons/account_financial_report/report/vat_report_xlsx.py:0
1598
1650
  #: model:ir.model.fields.selection,name:account_financial_report.selection__vat_report_wizard__based_on__taxgroups
1599
- #, python-format
1600
1651
  msgid "Tax Groups"
1601
1652
  msgstr "Steuergruppen"
1602
1653
 
1603
1654
  #. module: account_financial_report
1655
+ #. odoo-python
1656
+ #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
1657
+ msgid "Tax Initial balance"
1658
+ msgstr ""
1659
+
1660
+ #. module: account_financial_report
1661
+ #. odoo-python
1604
1662
  #: code:addons/account_financial_report/report/vat_report_xlsx.py:0
1605
1663
  #: model:ir.model.fields.selection,name:account_financial_report.selection__vat_report_wizard__based_on__taxtags
1606
- #, python-format
1607
1664
  msgid "Tax Tags"
1608
- msgstr "Steuer-Stichwörter"
1665
+ msgstr "Steuer-Stichw??rter"
1666
+
1667
+ #. module: account_financial_report
1668
+ #. odoo-python
1669
+ #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
1670
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_ending_cumul
1671
+ msgid "Tax ending balance"
1672
+ msgstr ""
1673
+
1674
+ #. module: account_financial_report
1675
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
1676
+ msgid "Tax initial balance"
1677
+ msgstr ""
1609
1678
 
1610
1679
  #. module: account_financial_report
1680
+ #. odoo-python
1611
1681
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
1612
1682
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
1683
+ #: model:ir.model.fields.selection,name:account_financial_report.selection__general_ledger_report_wizard__grouped_by__taxes
1613
1684
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
1614
1685
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
1615
- #, python-format
1616
1686
  msgid "Taxes"
1617
1687
  msgstr "Steuern"
1618
1688
 
1619
1689
  #. module: account_financial_report
1690
+ #. odoo-python
1620
1691
  #: code:addons/account_financial_report/wizard/general_ledger_wizard.py:0
1621
- #, python-format
1622
1692
  msgid ""
1623
1693
  "The Company in the General Ledger Report Wizard and in Date Range must be "
1624
1694
  "the same."
@@ -1627,29 +1697,37 @@ msgstr ""
1627
1697
  "identisch sein."
1628
1698
 
1629
1699
  #. module: account_financial_report
1700
+ #. odoo-python
1630
1701
  #: code:addons/account_financial_report/wizard/trial_balance_wizard.py:0
1631
- #, python-format
1632
1702
  msgid ""
1633
1703
  "The Company in the Trial Balance Report Wizard and in Date Range must be the "
1634
1704
  "same."
1635
1705
  msgstr ""
1636
- "Für den Stichtagsbilanz Berichtsassistenten und den Datumsbereich sollte das "
1637
- "Unternehmen identisch sein."
1706
+ "F??r den Stichtagsbilanz Berichtsassistenten und den Datumsbereich sollte "
1707
+ "das Unternehmen identisch sein."
1638
1708
 
1639
1709
  #. module: account_financial_report
1710
+ #. odoo-python
1640
1711
  #: code:addons/account_financial_report/wizard/vat_report_wizard.py:0
1641
- #, python-format
1642
1712
  msgid ""
1643
1713
  "The Company in the Vat Report Wizard and in Date Range must be the same."
1644
1714
  msgstr ""
1645
- "Für den Umsatzsteuer-Berichtsassistenten und den Datumsbereich sollte das "
1715
+ "F??r den Umsatzsteuer-Berichtsassistenten und den Datumsbereich sollte das "
1646
1716
  "Unternehmen identisch sein."
1647
1717
 
1648
1718
  #. module: account_financial_report
1719
+ #. odoo-python
1649
1720
  #: code:addons/account_financial_report/wizard/trial_balance_wizard.py:0
1650
- #, python-format
1651
1721
  msgid "The hierarchy level to filter on must be greater than 0."
1652
- msgstr "Die ausgewählte Ebenenanzahl sollte >0 sein."
1722
+ msgstr "Die ausgew??hlte Ebenenanzahl sollte >0 sein."
1723
+
1724
+ #. module: account_financial_report
1725
+ #. odoo-python
1726
+ #: code:addons/account_financial_report/report/trial_balance.py:0
1727
+ msgid ""
1728
+ "There is a problem in the structure of the account groups. You may need to "
1729
+ "create some child group of %s."
1730
+ msgstr ""
1653
1731
 
1654
1732
  #. module: account_financial_report
1655
1733
  #: model:ir.model.fields,help:account_financial_report.field_general_ledger_report_wizard__domain
@@ -1668,17 +1746,19 @@ msgid "To:"
1668
1746
  msgstr "Bis:"
1669
1747
 
1670
1748
  #. module: account_financial_report
1749
+ #. odoo-python
1750
+ #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
1671
1751
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_account_ending_cumul
1672
1752
  msgid "Total"
1673
1753
  msgstr "Gesamt"
1674
1754
 
1675
1755
  #. module: account_financial_report
1756
+ #. odoo-python
1676
1757
  #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
1677
1758
  #: model:ir.actions.act_window,name:account_financial_report.action_trial_balance_wizard
1678
1759
  #: model:ir.actions.report,name:account_financial_report.action_report_trial_balance_html
1679
1760
  #: model:ir.actions.report,name:account_financial_report.action_report_trial_balance_qweb
1680
1761
  #: model:ir.ui.menu,name:account_financial_report.menu_trial_balance_wizard
1681
- #, python-format
1682
1762
  msgid "Trial Balance"
1683
1763
  msgstr "Stichtagssaldo"
1684
1764
 
@@ -1720,7 +1800,7 @@ msgstr ""
1720
1800
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__unaffected_earnings_account
1721
1801
  #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__unaffected_earnings_account
1722
1802
  msgid "Unaffected Earnings Account"
1723
- msgstr "Unberührtes Überschusskonto"
1803
+ msgstr "Unber??hrtes ??berschusskonto"
1724
1804
 
1725
1805
  #. module: account_financial_report
1726
1806
  #: model:ir.model.fields,help:account_financial_report.field_general_ledger_report_wizard__hide_account_at_0
@@ -1734,6 +1814,11 @@ msgstr ""
1734
1814
  "verbergen. Sind Partner ausgeblendet, werden Soll- und Habensummen nicht dem "
1735
1815
  "Stichtagssaldo entsprechen."
1736
1816
 
1817
+ #. module: account_financial_report
1818
+ #: model:ir.model.fields,help:account_financial_report.field_trial_balance_report_wizard__show_hierarchy
1819
+ msgid "Use when your account groups are hierarchical"
1820
+ msgstr ""
1821
+
1737
1822
  #. module: account_financial_report
1738
1823
  #: model:ir.actions.act_window,name:account_financial_report.action_vat_report_wizard
1739
1824
  #: model:ir.actions.report,name:account_financial_report.action_print_report_vat_report_html
@@ -1764,8 +1849,9 @@ msgid "VAT Report XLSX"
1764
1849
  msgstr "Steuerbericht XLSX"
1765
1850
 
1766
1851
  #. module: account_financial_report
1852
+ #. odoo-python
1767
1853
  #: code:addons/account_financial_report/report/vat_report_xlsx.py:0
1768
- #, fuzzy, python-format
1854
+ #, fuzzy
1769
1855
  msgid "Vat Report"
1770
1856
  msgstr "Steuerbericht"
1771
1857
 
@@ -1797,7 +1883,7 @@ msgid ""
1797
1883
  "When this option is enabled, the trial balance will not display accounts "
1798
1884
  "that have initial balance = debit = credit = end balance = 0"
1799
1885
  msgstr ""
1800
- "Durch Auswahl dieser Option, werden keine Konten angezeigt, für die gilt: "
1886
+ "Durch Auswahl dieser Option, werden keine Konten angezeigt, f??r die gilt: "
1801
1887
  "Anfangssaldo = Soll = Haben = Endsaldo = 0"
1802
1888
 
1803
1889
  #. module: account_financial_report
@@ -1807,22 +1893,27 @@ msgid "With Account Name"
1807
1893
  msgstr "Mit Kontobezeichnung"
1808
1894
 
1809
1895
  #. module: account_financial_report
1896
+ #. odoo-python
1897
+ #: code:addons/account_financial_report/report/trial_balance.py:0
1898
+ msgid "Without analytic account"
1899
+ msgstr ""
1900
+
1901
+ #. module: account_financial_report
1902
+ #. odoo-python
1810
1903
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
1811
1904
  #: code:addons/account_financial_report/report/open_items_xlsx.py:0
1812
1905
  #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
1813
1906
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
1814
- #, python-format
1815
1907
  msgid "Yes"
1816
1908
  msgstr "Ja"
1817
1909
 
1818
1910
  #. module: account_financial_report
1911
+ #. odoo-python
1819
1912
  #: code:addons/account_financial_report/report/general_ledger.py:0
1820
- #, python-format
1821
1913
  msgid "future"
1822
1914
  msgstr ""
1823
1915
 
1824
1916
  #. module: account_financial_report
1825
- #: model_terms:ir.ui.view,arch_db:account_financial_report.aged_partner_balance_wizard
1826
1917
  #: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
1827
1918
  #: model_terms:ir.ui.view,arch_db:account_financial_report.journal_ledger_wizard
1828
1919
  #: model_terms:ir.ui.view,arch_db:account_financial_report.open_items_wizard
@@ -1871,6 +1962,78 @@ msgstr "Breite: 38.92%;"
1871
1962
  msgid "width: 8.11%;"
1872
1963
  msgstr "Breite: 8,11%;"
1873
1964
 
1965
+ #~ msgid ""
1966
+ #~ "Age ??? 120\n"
1967
+ #~ " d."
1968
+ #~ msgstr ""
1969
+ #~ "Alter ??? 120\n"
1970
+ #~ " T."
1971
+
1972
+ #, fuzzy, python-format
1973
+ #~ msgid "Age ??? 120 d."
1974
+ #~ msgstr "Alter bis 120 T."
1975
+
1976
+ #~ msgid ""
1977
+ #~ "Age ??? 30\n"
1978
+ #~ " d."
1979
+ #~ msgstr ""
1980
+ #~ "Alter ??? 30\n"
1981
+ #~ " T."
1982
+
1983
+ #, fuzzy, python-format
1984
+ #~ msgid "Age ??? 30 d."
1985
+ #~ msgstr "Alter bis 30 T."
1986
+
1987
+ #~ msgid ""
1988
+ #~ "Age ??? 60\n"
1989
+ #~ " d."
1990
+ #~ msgstr ""
1991
+ #~ "Alter ??? 60\n"
1992
+ #~ " T."
1993
+
1994
+ #, fuzzy, python-format
1995
+ #~ msgid "Age ??? 60 d."
1996
+ #~ msgstr "Alter bis 60 T."
1997
+
1998
+ #~ msgid ""
1999
+ #~ "Age ??? 90\n"
2000
+ #~ " d."
2001
+ #~ msgstr ""
2002
+ #~ "Alter ??? 90\n"
2003
+ #~ " T."
2004
+
2005
+ #, fuzzy, python-format
2006
+ #~ msgid "Age ??? 90 d."
2007
+ #~ msgstr "Alter bis 90 T."
2008
+
2009
+ #~ msgid "Last Modified on"
2010
+ #~ msgstr "Ge??ndert am"
2011
+
2012
+ #~ msgid "Filter analytic tags"
2013
+ #~ msgstr "Kostenstellen-Stichw??rter filtern"
2014
+
2015
+ #, python-format
2016
+ #~ msgid "Show analytic tags"
2017
+ #~ msgstr "Kostenstichw??rter anzeigen"
2018
+
2019
+ #~ msgid "Child Accounts"
2020
+ #~ msgstr "Unterkonto"
2021
+
2022
+ #~ msgid "Computed Accounts"
2023
+ #~ msgstr "Berechnete Konten"
2024
+
2025
+ #~ msgid "Hierarchy On"
2026
+ #~ msgstr "Gruppieren ??ber"
2027
+
2028
+ #~ msgid "No hierarchy"
2029
+ #~ msgstr "Keine Ebenen"
2030
+
2031
+ #~ msgid "From: %s To: %s"
2032
+ #~ msgstr "Von: %s Bis: %s"
2033
+
2034
+ #~ msgid "Not only one unaffected earnings account"
2035
+ #~ msgstr "Mehr als ein unber??hrtes ??berschu??konto"
2036
+
1874
2037
  #~ msgid "<span class=\"fa fa-download\"/> Export"
1875
2038
  #~ msgstr "<span class=\"fa fa-download\"/> Export"
1876
2039
 
@@ -1881,15 +2044,15 @@ msgstr "Breite: 8,11%;"
1881
2044
  #~ "General Ledger can be computed only if selected company have only one "
1882
2045
  #~ "unaffected earnings account."
1883
2046
  #~ msgstr ""
1884
- #~ "Das Hauptbuch für gewähltes Unternehmen kann nur korrekt kalkuliert "
1885
- #~ "werden, wenn nur ein unangetastetes Überschusskonto besteht."
2047
+ #~ "Das Hauptbuch f??r gew??hltes Unternehmen kann nur korrekt kalkuliert "
2048
+ #~ "werden, wenn nur ein unangetastetes ??berschusskonto besteht."
1886
2049
 
1887
2050
  #~ msgid ""
1888
2051
  #~ "Trial Balance can be computed only if selected company have only one "
1889
2052
  #~ "unaffected earnings account."
1890
2053
  #~ msgstr ""
1891
- #~ "Der Stichtagssaldo kann nur korrekt ermittelt werden, wenn für das "
1892
- #~ "gewählte Unternehmen nur ein unberührtes Überschusskonto existiert."
2054
+ #~ "Der Stichtagssaldo kann nur korrekt ermittelt werden, wenn f??r das gew??"
2055
+ #~ "hlte Unternehmen nur ein unber??hrtes ??berschusskonto existiert."
1893
2056
 
1894
2057
  #~ msgid ""
1895
2058
  #~ "Cost\n"
@@ -1925,13 +2088,13 @@ msgstr "Breite: 8,11%;"
1925
2088
  #~ msgstr "Restbetrag"
1926
2089
 
1927
2090
  #~ msgid "Amount Residual Currency"
1928
- #~ msgstr "Restbetragswährung"
2091
+ #~ msgstr "Restbetragsw??hrung"
1929
2092
 
1930
2093
  #~ msgid "Amount Total Due"
1931
- #~ msgstr "Fälliger Gesamtbetrag"
2094
+ #~ msgstr "F??lliger Gesamtbetrag"
1932
2095
 
1933
2096
  #~ msgid "Amount Total Due Currency"
1934
- #~ msgstr "Währung des fälligen Gesamtbetrags"
2097
+ #~ msgstr "W??hrung des f??lligen Gesamtbetrags"
1935
2098
 
1936
2099
  #~ msgid "Centralize"
1937
2100
  #~ msgstr "Zusammenfassen"
@@ -1946,7 +2109,7 @@ msgstr "Breite: 8,11%;"
1946
2109
 
1947
2110
  #, fuzzy
1948
2111
  #~ msgid "Company Currency"
1949
- #~ msgstr "Betragswährung"
2112
+ #~ msgstr "Betragsw??hrung"
1950
2113
 
1951
2114
  #~ msgid "Cost Center"
1952
2115
  #~ msgstr "Kostenstelle"
@@ -1973,19 +2136,19 @@ msgstr "Breite: 8,11%;"
1973
2136
  #~ msgstr "Kumul. Ist-Summe"
1974
2137
 
1975
2138
  #~ msgid "Cumul Older"
1976
- #~ msgstr "Kumul. älter"
2139
+ #~ msgstr "Kumul. ??lter"
1977
2140
 
1978
2141
  #~ msgid "Currency Name"
1979
- #~ msgstr "Währung"
2142
+ #~ msgstr "W??hrung"
1980
2143
 
1981
2144
  #~ msgid "Date Due"
1982
- #~ msgstr "Fälligkeit"
2145
+ #~ msgstr "F??lligkeit"
1983
2146
 
1984
2147
  #~ msgid "Ending blance cur."
1985
2148
  #~ msgstr "Endsaldo"
1986
2149
 
1987
2150
  #~ msgid "Filter Analytic Tag"
1988
- #~ msgstr "Kostenstellen-Stichwörter filtern"
2151
+ #~ msgstr "Kostenstellen-Stichw??rter filtern"
1989
2152
 
1990
2153
  #~ msgid "Filter Cost Center"
1991
2154
  #~ msgstr "Kostenstellen filtern"
@@ -1997,31 +2160,31 @@ msgstr "Breite: 8,11%;"
1997
2160
  #~ msgstr "Partner filtern"
1998
2161
 
1999
2162
  #~ msgid "Final Amount Residual"
2000
- #~ msgstr "Abschließender Restbetrag"
2163
+ #~ msgstr "Abschlie??ender Restbetrag"
2001
2164
 
2002
2165
  #, fuzzy
2003
2166
  #~ msgid "Final Amount Residual Currency"
2004
- #~ msgstr "Restbetragswährung"
2167
+ #~ msgstr "Restbetragsw??hrung"
2005
2168
 
2006
2169
  #, fuzzy
2007
2170
  #~ msgid "Final Amount Total Due"
2008
- #~ msgstr "Fälliger Gesamtbetrag"
2171
+ #~ msgstr "F??lliger Gesamtbetrag"
2009
2172
 
2010
2173
  #, fuzzy
2011
2174
  #~ msgid "Final Amount Total Due Currency"
2012
- #~ msgstr "Währung des fälligen Gesamtbetrags"
2175
+ #~ msgstr "W??hrung des f??lligen Gesamtbetrags"
2013
2176
 
2014
2177
  #~ msgid "Final Balance"
2015
- #~ msgstr "Abschließender Saldo"
2178
+ #~ msgstr "Abschlie??ender Saldo"
2016
2179
 
2017
2180
  #~ msgid "Final Balance Foreign Currency"
2018
- #~ msgstr "Abschließender Saldo Fremdwhrg."
2181
+ #~ msgstr "Abschlie??ender Saldo Fremdwhrg."
2019
2182
 
2020
2183
  #~ msgid "Final Credit"
2021
- #~ msgstr "Abschließendes Haben"
2184
+ #~ msgstr "Abschlie??endes Haben"
2022
2185
 
2023
2186
  #~ msgid "Final Debit"
2024
- #~ msgstr "Abschließendes Soll"
2187
+ #~ msgstr "Abschlie??endes Soll"
2025
2188
 
2026
2189
  #~ msgid "Group Option"
2027
2190
  #~ msgstr "Gruppierungsoption"
@@ -2036,7 +2199,7 @@ msgstr "Breite: 8,11%;"
2036
2199
  #~ msgstr "Anfangssaldo"
2037
2200
 
2038
2201
  #~ msgid "Initial Balance Foreign Currency"
2039
- #~ msgstr "Anfangssaldo Fremdwährung"
2202
+ #~ msgstr "Anfangssaldo Fremdw??hrung"
2040
2203
 
2041
2204
  #~ msgid "Initial Credit"
2042
2205
  #~ msgstr "Anfangshaben"
@@ -2053,9 +2216,6 @@ msgstr "Breite: 8,11%;"
2053
2216
  #~ msgid "Label"
2054
2217
  #~ msgstr "Betitelung"
2055
2218
 
2056
- #~ msgid "Line"
2057
- #~ msgstr "Position"
2058
-
2059
2219
  #~ msgid "Matching Number"
2060
2220
  #~ msgstr "Ausgleich Nummer"
2061
2221
 
@@ -2072,7 +2232,7 @@ msgstr "Breite: 8,11%;"
2072
2232
  #~ msgstr "Nur gebuchte Posten"
2073
2233
 
2074
2234
  #~ msgid "Parent"
2075
- #~ msgstr "Übergeordnet"
2235
+ #~ msgstr "??bergeordnet"
2076
2236
 
2077
2237
  #, fuzzy
2078
2238
  #~| msgid "Partner"
@@ -2095,7 +2255,7 @@ msgstr "Breite: 8,11%;"
2095
2255
  #~ msgstr "Prozent Ist-Summe"
2096
2256
 
2097
2257
  #~ msgid "Percent Older"
2098
- #~ msgstr "Prozent älter"
2258
+ #~ msgstr "Prozent ??lter"
2099
2259
 
2100
2260
  #, fuzzy
2101
2261
  #~ msgid "Period Balance"
@@ -2159,7 +2319,7 @@ msgstr "Breite: 8,11%;"
2159
2319
  #~ msgstr "Steuer-Stichwort"
2160
2320
 
2161
2321
  #~ msgid "Taxtags"
2162
- #~ msgstr "Steuer-Stichwörter"
2322
+ #~ msgstr "Steuer-Stichw??rter"
2163
2323
 
2164
2324
  #, fuzzy
2165
2325
  #~ msgid "Aged Partner Balance - %s - %s"
@@ -2189,4 +2349,4 @@ msgstr "Breite: 8,11%;"
2189
2349
  #~ msgstr "Verberge Konten mit 0-Saldo"
2190
2350
 
2191
2351
  #~ msgid "Has Second Currency"
2192
- #~ msgstr "Hat Zweitwährung"
2352
+ #~ msgstr "Hat Zweitw??hrung"