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
@@ -0,0 +1,1891 @@
1
+ # Translation of Odoo Server.
2
+ # This file contains the translation of the following modules:
3
+ # * account_financial_report
4
+ #
5
+ msgid ""
6
+ msgstr ""
7
+ "Project-Id-Version: Odoo Server 18.0\n"
8
+ "Report-Msgid-Bugs-To: \n"
9
+ "Last-Translator: Automatically generated\n"
10
+ "Language-Team: none\n"
11
+ "Language: ca_ES\n"
12
+ "MIME-Version: 1.0\n"
13
+ "Content-Type: text/plain; charset=UTF-8\n"
14
+ "Content-Transfer-Encoding: \n"
15
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
16
+
17
+ #. module: account_financial_report
18
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_lines_header
19
+ msgid "> 120 d."
20
+ msgstr ""
21
+
22
+ #. module: account_financial_report
23
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_lines_header
24
+ msgid "1 - 30 d."
25
+ msgstr ""
26
+
27
+ #. module: account_financial_report
28
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
29
+ msgid "10"
30
+ msgstr ""
31
+
32
+ #. module: account_financial_report
33
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_lines_header
34
+ msgid "31 - 60 d."
35
+ msgstr ""
36
+
37
+ #. module: account_financial_report
38
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_lines_header
39
+ msgid "61 - 90 d."
40
+ msgstr ""
41
+
42
+ #. module: account_financial_report
43
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_lines_header
44
+ msgid "91 - 120 d."
45
+ msgstr ""
46
+
47
+ #. module: account_financial_report
48
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
49
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
50
+ msgid "<b>Taxes summary</b>"
51
+ msgstr ""
52
+
53
+ #. module: account_financial_report
54
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.trial_balance_wizard
55
+ msgid ""
56
+ "<i class=\"fa fa-exclamation-triangle mr-3\"/>\n"
57
+ " Duplicate amounts may be shown because more than one analytical account may be defined in the journal items."
58
+ msgstr ""
59
+
60
+ #. module: account_financial_report
61
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
62
+ msgid "<span class=\"o_form_label\">Intervals configuration</span>"
63
+ msgstr ""
64
+
65
+ #. module: account_financial_report
66
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.aged_partner_balance_wizard
67
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
68
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.open_items_wizard
69
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.trial_balance_wizard
70
+ msgid "<span class=\"oe_inline\">To</span>"
71
+ msgstr ""
72
+
73
+ #. module: account_financial_report
74
+ #: model:ir.model,name:account_financial_report.model_report_account_financial_report_abstract_report
75
+ msgid "Abstract Report"
76
+ msgstr ""
77
+
78
+ #. module: account_financial_report
79
+ #: model:ir.model,name:account_financial_report.model_account_financial_report_abstract_wizard
80
+ msgid "Abstract Wizard"
81
+ msgstr ""
82
+
83
+ #. module: account_financial_report
84
+ #: model:ir.model,name:account_financial_report.model_report_account_financial_report_abstract_report_xlsx
85
+ msgid "Abstract XLSX Account Financial Report"
86
+ msgstr ""
87
+
88
+ #. module: account_financial_report
89
+ #. odoo-python
90
+ #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
91
+ #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
92
+ #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
93
+ #: code:addons/account_financial_report/report/open_items_xlsx.py:0
94
+ #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
95
+ #: model:ir.model,name:account_financial_report.model_account_account
96
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
97
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
98
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
99
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
100
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
101
+ msgid "Account"
102
+ msgstr ""
103
+
104
+ #. module: account_financial_report
105
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__account_age_report_config_id
106
+ msgid "Account Age Report Config"
107
+ msgstr ""
108
+
109
+ #. module: account_financial_report
110
+ #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__account_code_from
111
+ #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__account_code_from
112
+ #: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__account_code_from
113
+ #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__account_code_from
114
+ msgid "Account Code From"
115
+ msgstr ""
116
+
117
+ #. module: account_financial_report
118
+ #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__account_code_to
119
+ #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__account_code_to
120
+ #: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__account_code_to
121
+ #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__account_code_to
122
+ msgid "Account Code To"
123
+ msgstr ""
124
+
125
+ #. module: account_financial_report
126
+ #: model:ir.model,name:account_financial_report.model_account_group
127
+ msgid "Account Group"
128
+ msgstr ""
129
+
130
+ #. module: account_financial_report
131
+ #. odoo-python
132
+ #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
133
+ msgid "Account Name"
134
+ msgstr ""
135
+
136
+ #. module: account_financial_report
137
+ #. odoo-python
138
+ #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
139
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
140
+ msgid "Account at 0 filter"
141
+ msgstr ""
142
+
143
+ #. module: account_financial_report
144
+ #. odoo-python
145
+ #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
146
+ #: code:addons/account_financial_report/report/open_items_xlsx.py:0
147
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
148
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
149
+ msgid "Account balance at 0 filter"
150
+ msgstr ""
151
+
152
+ #. module: account_financial_report
153
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_group__account_ids
154
+ msgid "Accounts"
155
+ msgstr ""
156
+
157
+ #. module: account_financial_report
158
+ #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__centralize
159
+ msgid "Activate centralization"
160
+ msgstr ""
161
+
162
+ #. module: account_financial_report
163
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
164
+ msgid "Additional Filtering"
165
+ msgstr ""
166
+
167
+ #. module: account_financial_report
168
+ #: model:ir.actions.act_window,name:account_financial_report.action_aged_partner_report_configuration
169
+ msgid "Age Partner Report Configuration"
170
+ msgstr ""
171
+
172
+ #. module: account_financial_report
173
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
174
+ msgid ""
175
+ "Age ≤ 120\n"
176
+ " d."
177
+ msgstr ""
178
+
179
+ #. module: account_financial_report
180
+ #. odoo-python
181
+ #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
182
+ msgid "Age ≤ 120 d."
183
+ msgstr ""
184
+
185
+ #. module: account_financial_report
186
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
187
+ msgid ""
188
+ "Age ≤ 30\n"
189
+ " d."
190
+ msgstr ""
191
+
192
+ #. module: account_financial_report
193
+ #. odoo-python
194
+ #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
195
+ msgid "Age ≤ 30 d."
196
+ msgstr ""
197
+
198
+ #. module: account_financial_report
199
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
200
+ msgid ""
201
+ "Age ≤ 60\n"
202
+ " d."
203
+ msgstr ""
204
+
205
+ #. module: account_financial_report
206
+ #. odoo-python
207
+ #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
208
+ msgid "Age ≤ 60 d."
209
+ msgstr ""
210
+
211
+ #. module: account_financial_report
212
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
213
+ msgid ""
214
+ "Age ≤ 90\n"
215
+ " d."
216
+ msgstr ""
217
+
218
+ #. module: account_financial_report
219
+ #. odoo-python
220
+ #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
221
+ msgid "Age ≤ 90 d."
222
+ msgstr ""
223
+
224
+ #. module: account_financial_report
225
+ #. odoo-python
226
+ #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
227
+ #: model:ir.actions.act_window,name:account_financial_report.action_aged_partner_balance_wizard
228
+ #: model:ir.actions.report,name:account_financial_report.action_print_report_aged_partner_balance_html
229
+ #: model:ir.actions.report,name:account_financial_report.action_print_report_aged_partner_balance_qweb
230
+ #: model:ir.ui.menu,name:account_financial_report.menu_aged_partner_balance_wizard
231
+ msgid "Aged Partner Balance"
232
+ msgstr ""
233
+
234
+ #. module: account_financial_report
235
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_base
236
+ msgid "Aged Partner Balance -"
237
+ msgstr ""
238
+
239
+ #. module: account_financial_report
240
+ #: model:ir.model,name:account_financial_report.model_report_account_financial_report_aged_partner_balance
241
+ msgid "Aged Partner Balance Report"
242
+ msgstr ""
243
+
244
+ #. module: account_financial_report
245
+ #: model:ir.model,name:account_financial_report.model_aged_partner_balance_report_wizard
246
+ msgid "Aged Partner Balance Wizard"
247
+ msgstr ""
248
+
249
+ #. module: account_financial_report
250
+ #: model:ir.model,name:account_financial_report.model_report_a_f_r_report_aged_partner_balance_xlsx
251
+ msgid "Aged Partner Balance XLSL Report"
252
+ msgstr ""
253
+
254
+ #. module: account_financial_report
255
+ #: model:ir.actions.report,name:account_financial_report.action_report_aged_partner_balance_xlsx
256
+ msgid "Aged Partner Balance XLSX"
257
+ msgstr ""
258
+
259
+ #. module: account_financial_report
260
+ #. odoo-python
261
+ #: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
262
+ msgid "All"
263
+ msgstr ""
264
+
265
+ #. module: account_financial_report
266
+ #: model:ir.model.fields.selection,name:account_financial_report.selection__aged_partner_balance_report_wizard__target_move__all
267
+ #: model:ir.model.fields.selection,name:account_financial_report.selection__general_ledger_report_wizard__target_move__all
268
+ #: model:ir.model.fields.selection,name:account_financial_report.selection__open_items_report_wizard__target_move__all
269
+ #: model:ir.model.fields.selection,name:account_financial_report.selection__trial_balance_report_wizard__target_move__all
270
+ #: model:ir.model.fields.selection,name:account_financial_report.selection__vat_report_wizard__target_move__all
271
+ msgid "All Entries"
272
+ msgstr ""
273
+
274
+ #. module: account_financial_report
275
+ #: model:ir.model.fields.selection,name:account_financial_report.selection__aged_partner_balance_report_wizard__target_move__posted
276
+ #: model:ir.model.fields.selection,name:account_financial_report.selection__general_ledger_report_wizard__target_move__posted
277
+ #: model:ir.model.fields.selection,name:account_financial_report.selection__open_items_report_wizard__target_move__posted
278
+ #: model:ir.model.fields.selection,name:account_financial_report.selection__trial_balance_report_wizard__target_move__posted
279
+ #: model:ir.model.fields.selection,name:account_financial_report.selection__vat_report_wizard__target_move__posted
280
+ msgid "All Posted Entries"
281
+ msgstr ""
282
+
283
+ #. module: account_financial_report
284
+ #. odoo-python
285
+ #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
286
+ #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
287
+ #: code:addons/account_financial_report/report/open_items_xlsx.py:0
288
+ #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
289
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_filters
290
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
291
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
292
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
293
+ msgid "All entries"
294
+ msgstr ""
295
+
296
+ #. module: account_financial_report
297
+ #. odoo-python
298
+ #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
299
+ #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
300
+ #: code:addons/account_financial_report/report/open_items_xlsx.py:0
301
+ #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
302
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_filters
303
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
304
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
305
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
306
+ msgid "All posted entries"
307
+ msgstr ""
308
+
309
+ #. module: account_financial_report
310
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
311
+ msgid "Amount Cur."
312
+ msgstr ""
313
+
314
+ #. module: account_financial_report
315
+ #. odoo-python
316
+ #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
317
+ msgid "Amount Currency"
318
+ msgstr ""
319
+
320
+ #. module: account_financial_report
321
+ #. odoo-python
322
+ #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
323
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
324
+ msgid "Amount cur."
325
+ msgstr ""
326
+
327
+ #. module: account_financial_report
328
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_move_line__analytic_account_ids
329
+ #: model:ir.model.fields.selection,name:account_financial_report.selection__trial_balance_report_wizard__grouped_by__analytic_account
330
+ msgid "Analytic Account"
331
+ msgstr ""
332
+
333
+ #. module: account_financial_report
334
+ #. odoo-python
335
+ #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
336
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
337
+ msgid "Analytic Distribution"
338
+ msgstr ""
339
+
340
+ #. module: account_financial_report
341
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
342
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
343
+ msgid "Balance"
344
+ msgstr ""
345
+
346
+ #. module: account_financial_report
347
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
348
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
349
+ msgid "Base Amount"
350
+ msgstr ""
351
+
352
+ #. module: account_financial_report
353
+ #. odoo-python
354
+ #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
355
+ msgid "Base Balance"
356
+ msgstr ""
357
+
358
+ #. module: account_financial_report
359
+ #. odoo-python
360
+ #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
361
+ msgid "Base Credit"
362
+ msgstr ""
363
+
364
+ #. module: account_financial_report
365
+ #. odoo-python
366
+ #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
367
+ msgid "Base Debit"
368
+ msgstr ""
369
+
370
+ #. module: account_financial_report
371
+ #: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__based_on
372
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_filters
373
+ msgid "Based On"
374
+ msgstr ""
375
+
376
+ #. module: account_financial_report
377
+ #. odoo-python
378
+ #: code:addons/account_financial_report/report/vat_report_xlsx.py:0
379
+ msgid "Based on"
380
+ msgstr ""
381
+
382
+ #. module: account_financial_report
383
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.aged_partner_balance_wizard
384
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
385
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.journal_ledger_wizard
386
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.open_items_wizard
387
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.trial_balance_wizard
388
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.vat_report_wizard
389
+ msgid "Cancel"
390
+ msgstr ""
391
+
392
+ #. module: account_financial_report
393
+ #. odoo-python
394
+ #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
395
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
396
+ msgid "Centralize filter"
397
+ msgstr ""
398
+
399
+ #. module: account_financial_report
400
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_account__centralized
401
+ msgid "Centralized"
402
+ msgstr ""
403
+
404
+ #. module: account_financial_report
405
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_group__group_child_ids
406
+ msgid "Child Groups"
407
+ msgstr ""
408
+
409
+ #. module: account_financial_report
410
+ #. odoo-python
411
+ #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
412
+ #: code:addons/account_financial_report/report/vat_report_xlsx.py:0
413
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
414
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
415
+ msgid "Code"
416
+ msgstr ""
417
+
418
+ #. module: account_financial_report
419
+ #. odoo-python
420
+ #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
421
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__company_id
422
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_financial_report_abstract_wizard__company_id
423
+ #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__company_id
424
+ #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__company_id
425
+ #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__company_id
426
+ #: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__company_id
427
+ #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__company_id
428
+ #: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__company_id
429
+ msgid "Company"
430
+ msgstr ""
431
+
432
+ #. module: account_financial_report
433
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_group__compute_account_ids
434
+ msgid "Compute accounts"
435
+ msgstr ""
436
+
437
+ #. module: account_financial_report
438
+ #: model:ir.model,name:account_financial_report.model_res_config_settings
439
+ msgid "Config Settings"
440
+ msgstr ""
441
+
442
+ #. module: account_financial_report
443
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
444
+ msgid "Configurations"
445
+ msgstr ""
446
+
447
+ #. module: account_financial_report
448
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__create_uid
449
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__create_uid
450
+ #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__create_uid
451
+ #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__create_uid
452
+ #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__create_uid
453
+ #: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__create_uid
454
+ #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__create_uid
455
+ #: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__create_uid
456
+ msgid "Created by"
457
+ msgstr ""
458
+
459
+ #. module: account_financial_report
460
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__create_date
461
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__create_date
462
+ #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__create_date
463
+ #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__create_date
464
+ #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__create_date
465
+ #: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__create_date
466
+ #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__create_date
467
+ #: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__create_date
468
+ msgid "Created on"
469
+ msgstr ""
470
+
471
+ #. module: account_financial_report
472
+ #. odoo-python
473
+ #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
474
+ #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
475
+ #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
476
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
477
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
478
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
479
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
480
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
481
+ msgid "Credit"
482
+ msgstr ""
483
+
484
+ #. module: account_financial_report
485
+ #. odoo-python
486
+ #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
487
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
488
+ msgid "Cumul cur."
489
+ msgstr ""
490
+
491
+ #. module: account_financial_report
492
+ #. odoo-python
493
+ #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
494
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
495
+ msgid "Cumul. Bal."
496
+ msgstr ""
497
+
498
+ #. module: account_financial_report
499
+ #. odoo-python
500
+ #: code:addons/account_financial_report/report/open_items_xlsx.py:0
501
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
502
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
503
+ msgid "Cur."
504
+ msgstr ""
505
+
506
+ #. module: account_financial_report
507
+ #. odoo-python
508
+ #: code:addons/account_financial_report/report/open_items_xlsx.py:0
509
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
510
+ msgid "Cur. Original"
511
+ msgstr ""
512
+
513
+ #. module: account_financial_report
514
+ #. odoo-python
515
+ #: code:addons/account_financial_report/report/open_items_xlsx.py:0
516
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
517
+ msgid "Cur. Residual"
518
+ msgstr ""
519
+
520
+ #. module: account_financial_report
521
+ #. odoo-python
522
+ #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
523
+ msgid "Currency"
524
+ msgstr ""
525
+
526
+ #. module: account_financial_report
527
+ #. odoo-python
528
+ #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
529
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
530
+ msgid "Current"
531
+ msgstr ""
532
+
533
+ #. module: account_financial_report
534
+ #. odoo-python
535
+ #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
536
+ #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
537
+ #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
538
+ #: code:addons/account_financial_report/report/open_items_xlsx.py:0
539
+ #: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
540
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
541
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
542
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
543
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
544
+ msgid "Date"
545
+ msgstr ""
546
+
547
+ #. module: account_financial_report
548
+ #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__date_at
549
+ #: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__date_at
550
+ msgid "Date At"
551
+ msgstr ""
552
+
553
+ #. module: account_financial_report
554
+ #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__date_from
555
+ #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__date_from
556
+ #: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__date_from
557
+ #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__date_from
558
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_filters
559
+ msgid "Date From"
560
+ msgstr ""
561
+
562
+ #. module: account_financial_report
563
+ #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__date_to
564
+ #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__date_to
565
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_filters
566
+ msgid "Date To"
567
+ msgstr ""
568
+
569
+ #. module: account_financial_report
570
+ #. odoo-python
571
+ #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
572
+ #: code:addons/account_financial_report/report/open_items_xlsx.py:0
573
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_filters
574
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
575
+ msgid "Date at filter"
576
+ msgstr ""
577
+
578
+ #. module: account_financial_report
579
+ #. odoo-python
580
+ #: code:addons/account_financial_report/report/vat_report_xlsx.py:0
581
+ msgid "Date from"
582
+ msgstr ""
583
+
584
+ #. module: account_financial_report
585
+ #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__date_range_id
586
+ #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__date_range_id
587
+ #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__date_range_id
588
+ #: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__date_range_id
589
+ msgid "Date range"
590
+ msgstr ""
591
+
592
+ #. module: account_financial_report
593
+ #. odoo-python
594
+ #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
595
+ #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
596
+ #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
597
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
598
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
599
+ msgid "Date range filter"
600
+ msgstr ""
601
+
602
+ #. module: account_financial_report
603
+ #. odoo-python
604
+ #: code:addons/account_financial_report/report/vat_report_xlsx.py:0
605
+ msgid "Date to"
606
+ msgstr ""
607
+
608
+ #. module: account_financial_report
609
+ #. odoo-python
610
+ #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
611
+ #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
612
+ #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
613
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
614
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
615
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
616
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
617
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
618
+ msgid "Debit"
619
+ msgstr ""
620
+
621
+ #. module: account_financial_report
622
+ #. odoo-python
623
+ #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
624
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
625
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
626
+ msgid "Description"
627
+ msgstr ""
628
+
629
+ #. module: account_financial_report
630
+ #: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__tax_detail
631
+ msgid "Detail Taxes"
632
+ msgstr ""
633
+
634
+ #. module: account_financial_report
635
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__display_name
636
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__display_name
637
+ #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__display_name
638
+ #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__display_name
639
+ #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__display_name
640
+ #: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__display_name
641
+ #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__display_name
642
+ #: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__display_name
643
+ msgid "Display Name"
644
+ msgstr ""
645
+
646
+ #. module: account_financial_report
647
+ #: model:ir.model.fields,help:account_financial_report.field_general_ledger_report_wizard__foreign_currency
648
+ #: model:ir.model.fields,help:account_financial_report.field_open_items_report_wizard__foreign_currency
649
+ #: model:ir.model.fields,help:account_financial_report.field_trial_balance_report_wizard__foreign_currency
650
+ msgid ""
651
+ "Display foreign currency for move lines, unless account currency is not "
652
+ "setup through chart of accounts will display initial and final balance in "
653
+ "that currency."
654
+ msgstr ""
655
+
656
+ #. module: account_financial_report
657
+ #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__hide_parent_hierarchy_level
658
+ msgid "Do not display parent levels"
659
+ msgstr ""
660
+
661
+ #. module: account_financial_report
662
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
663
+ msgid ""
664
+ "Due\n"
665
+ " date"
666
+ msgstr ""
667
+
668
+ #. module: account_financial_report
669
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
670
+ msgid ""
671
+ "Due\n"
672
+ " date"
673
+ msgstr ""
674
+
675
+ #. module: account_financial_report
676
+ #. odoo-python
677
+ #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
678
+ #: code:addons/account_financial_report/report/open_items_xlsx.py:0
679
+ msgid "Due date"
680
+ msgstr ""
681
+
682
+ #. module: account_financial_report
683
+ #: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__date_to
684
+ msgid "End Date"
685
+ msgstr ""
686
+
687
+ #. module: account_financial_report
688
+ #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__date_to
689
+ msgid "End date"
690
+ msgstr ""
691
+
692
+ #. module: account_financial_report
693
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_ending_cumul
694
+ msgid ""
695
+ "Ending\n"
696
+ " balance"
697
+ msgstr ""
698
+
699
+ #. module: account_financial_report
700
+ #: model:ir.model.fields,help:account_financial_report.field_aged_partner_balance_report_wizard__account_code_to
701
+ #: model:ir.model.fields,help:account_financial_report.field_general_ledger_report_wizard__account_code_to
702
+ #: model:ir.model.fields,help:account_financial_report.field_open_items_report_wizard__account_code_to
703
+ #: model:ir.model.fields,help:account_financial_report.field_trial_balance_report_wizard__account_code_to
704
+ msgid "Ending account in a range"
705
+ msgstr ""
706
+
707
+ #. module: account_financial_report
708
+ #. odoo-python
709
+ #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
710
+ #: code:addons/account_financial_report/report/open_items_xlsx.py:0
711
+ #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
712
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_ending_cumul
713
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
714
+ msgid "Ending balance"
715
+ msgstr ""
716
+
717
+ #. module: account_financial_report
718
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
719
+ msgid ""
720
+ "Ending balance\n"
721
+ " cur."
722
+ msgstr ""
723
+
724
+ #. module: account_financial_report
725
+ #. odoo-python
726
+ #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
727
+ msgid "Entries sorted by"
728
+ msgstr ""
729
+
730
+ #. module: account_financial_report
731
+ #. odoo-python
732
+ #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
733
+ #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
734
+ #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
735
+ #: code:addons/account_financial_report/report/open_items_xlsx.py:0
736
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
737
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
738
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
739
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
740
+ msgid "Entry"
741
+ msgstr ""
742
+
743
+ #. module: account_financial_report
744
+ #. odoo-python
745
+ #: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
746
+ msgid "Entry number"
747
+ msgstr ""
748
+
749
+ #. module: account_financial_report
750
+ #. odoo-javascript
751
+ #: code:addons/account_financial_report/static/src/xml/report.xml:0
752
+ msgid "Export"
753
+ msgstr ""
754
+
755
+ #. module: account_financial_report
756
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.aged_partner_balance_wizard
757
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
758
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.journal_ledger_wizard
759
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.open_items_wizard
760
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.trial_balance_wizard
761
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.vat_report_wizard
762
+ msgid "Export PDF"
763
+ msgstr ""
764
+
765
+ #. module: account_financial_report
766
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.aged_partner_balance_wizard
767
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
768
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.journal_ledger_wizard
769
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.open_items_wizard
770
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.trial_balance_wizard
771
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.vat_report_wizard
772
+ msgid "Export XLSX"
773
+ msgstr ""
774
+
775
+ #. module: account_financial_report
776
+ #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__account_ids
777
+ #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__account_ids
778
+ #: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__account_ids
779
+ #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__account_ids
780
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
781
+ msgid "Filter accounts"
782
+ msgstr ""
783
+
784
+ #. module: account_financial_report
785
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
786
+ msgid "Filter analytic accounts"
787
+ msgstr ""
788
+
789
+ #. module: account_financial_report
790
+ #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__cost_center_ids
791
+ msgid "Filter cost centers"
792
+ msgstr ""
793
+
794
+ #. module: account_financial_report
795
+ #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__account_journal_ids
796
+ msgid "Filter journals"
797
+ msgstr ""
798
+
799
+ #. module: account_financial_report
800
+ #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__partner_ids
801
+ #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__partner_ids
802
+ #: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__partner_ids
803
+ #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__partner_ids
804
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
805
+ msgid "Filter partners"
806
+ msgstr ""
807
+
808
+ #. module: account_financial_report
809
+ #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__foreign_currency
810
+ msgid "Foreign Currency"
811
+ msgstr ""
812
+
813
+ #. module: account_financial_report
814
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
815
+ msgid "Format"
816
+ msgstr ""
817
+
818
+ #. module: account_financial_report
819
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.aged_partner_balance_wizard
820
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
821
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.open_items_wizard
822
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.trial_balance_wizard
823
+ msgid "From Code"
824
+ msgstr ""
825
+
826
+ #. module: account_financial_report
827
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
828
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
829
+ msgid "From:"
830
+ msgstr ""
831
+
832
+ #. module: account_financial_report
833
+ #. odoo-python
834
+ #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
835
+ #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
836
+ #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
837
+ msgid "From: %(date_from)s To: %(date_to)s"
838
+ msgstr ""
839
+
840
+ #. module: account_financial_report
841
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_group__complete_code
842
+ msgid "Full Code"
843
+ msgstr ""
844
+
845
+ #. module: account_financial_report
846
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_group__complete_name
847
+ msgid "Full Name"
848
+ msgstr ""
849
+
850
+ #. module: account_financial_report
851
+ #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__fy_start_date
852
+ #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__fy_start_date
853
+ msgid "Fy Start Date"
854
+ msgstr ""
855
+
856
+ #. module: account_financial_report
857
+ #. odoo-python
858
+ #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
859
+ #: model:ir.actions.act_window,name:account_financial_report.act_action_general_ledger_wizard_partner_relation
860
+ #: model:ir.actions.act_window,name:account_financial_report.action_general_ledger_wizard
861
+ #: model:ir.actions.report,name:account_financial_report.action_print_report_general_ledger_html
862
+ #: model:ir.actions.report,name:account_financial_report.action_print_report_general_ledger_qweb
863
+ #: model:ir.ui.menu,name:account_financial_report.menu_general_ledger_wizard
864
+ msgid "General Ledger"
865
+ msgstr ""
866
+
867
+ #. module: account_financial_report
868
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_base
869
+ msgid "General Ledger -"
870
+ msgstr ""
871
+
872
+ #. module: account_financial_report
873
+ #: model:ir.model,name:account_financial_report.model_report_account_financial_report_general_ledger
874
+ msgid "General Ledger Report"
875
+ msgstr ""
876
+
877
+ #. module: account_financial_report
878
+ #: model:ir.model,name:account_financial_report.model_general_ledger_report_wizard
879
+ msgid "General Ledger Report Wizard"
880
+ msgstr ""
881
+
882
+ #. module: account_financial_report
883
+ #: model:ir.model,name:account_financial_report.model_report_a_f_r_report_general_ledger_xlsx
884
+ msgid "General Ledger XLSL Report"
885
+ msgstr ""
886
+
887
+ #. module: account_financial_report
888
+ #: model:ir.actions.report,name:account_financial_report.action_report_general_ledger_xlsx
889
+ msgid "General Ledger XLSX"
890
+ msgstr ""
891
+
892
+ #. module: account_financial_report
893
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
894
+ msgid ""
895
+ "General Ledger can be computed only if selected company have\n"
896
+ " only one unaffected earnings account."
897
+ msgstr ""
898
+
899
+ #. module: account_financial_report
900
+ #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__group_option
901
+ msgid "Group entries by"
902
+ msgstr ""
903
+
904
+ #. module: account_financial_report
905
+ #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__grouped_by
906
+ #: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__grouped_by
907
+ #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__grouped_by
908
+ msgid "Grouped By"
909
+ msgstr ""
910
+
911
+ #. module: account_financial_report
912
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
913
+ msgid ""
914
+ "Here you can set the intervals that will appear on the Aged Partner Balance."
915
+ msgstr ""
916
+
917
+ #. module: account_financial_report
918
+ #. odoo-python
919
+ #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
920
+ #: code:addons/account_financial_report/report/open_items_xlsx.py:0
921
+ #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
922
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
923
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
924
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
925
+ msgid "Hide"
926
+ msgstr ""
927
+
928
+ #. module: account_financial_report
929
+ #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__hide_account_at_0
930
+ #: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__hide_account_at_0
931
+ msgid "Hide account ending balance at 0"
932
+ msgstr ""
933
+
934
+ #. module: account_financial_report
935
+ #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__hide_account_at_0
936
+ msgid "Hide accounts at 0"
937
+ msgstr ""
938
+
939
+ #. module: account_financial_report
940
+ #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__show_hierarchy_level
941
+ msgid "Hierarchy Levels to display"
942
+ msgstr ""
943
+
944
+ #. module: account_financial_report
945
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__id
946
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__id
947
+ #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__id
948
+ #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__id
949
+ #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__id
950
+ #: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__id
951
+ #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__id
952
+ #: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__id
953
+ msgid "ID"
954
+ msgstr ""
955
+
956
+ #. module: account_financial_report
957
+ #: model:ir.model.fields,help:account_financial_report.field_account_account__centralized
958
+ msgid ""
959
+ "If flagged, no details will be displayed in the General Ledger report (the "
960
+ "webkit one only), only centralized amounts per period."
961
+ msgstr ""
962
+
963
+ #. module: account_financial_report
964
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__inferior_limit
965
+ msgid "Inferior Limit"
966
+ msgstr ""
967
+
968
+ #. module: account_financial_report
969
+ #. odoo-python
970
+ #: code:addons/account_financial_report/models/account_age_report_configuration.py:0
971
+ msgid "Inferior Limit must be greather than zero"
972
+ msgstr ""
973
+
974
+ #. module: account_financial_report
975
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
976
+ msgid ""
977
+ "Initial\n"
978
+ " balance cur."
979
+ msgstr ""
980
+
981
+ #. module: account_financial_report
982
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
983
+ msgid ""
984
+ "Initial\n"
985
+ " balance"
986
+ msgstr ""
987
+
988
+ #. module: account_financial_report
989
+ #. odoo-python
990
+ #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
991
+ #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
992
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
993
+ msgid "Initial balance"
994
+ msgstr ""
995
+
996
+ #. module: account_financial_report
997
+ #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__age_partner_config_id
998
+ #: model:ir.model.fields,field_description:account_financial_report.field_res_config_settings__age_partner_config_id
999
+ msgid "Intervals configuration"
1000
+ msgstr ""
1001
+
1002
+ #. module: account_financial_report
1003
+ #. odoo-python
1004
+ #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
1005
+ #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
1006
+ #: code:addons/account_financial_report/report/open_items_xlsx.py:0
1007
+ #: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
1008
+ #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__journal_ids
1009
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
1010
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
1011
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
1012
+ msgid "Journal"
1013
+ msgstr ""
1014
+
1015
+ #. module: account_financial_report
1016
+ #: model:ir.model,name:account_financial_report.model_account_move_line
1017
+ msgid "Journal Item"
1018
+ msgstr ""
1019
+
1020
+ #. module: account_financial_report
1021
+ #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__domain
1022
+ msgid "Journal Items Domain"
1023
+ msgstr ""
1024
+
1025
+ #. module: account_financial_report
1026
+ #. odoo-python
1027
+ #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
1028
+ #: model:ir.actions.act_window,name:account_financial_report.action_journal_ledger_wizard
1029
+ #: model:ir.actions.report,name:account_financial_report.action_print_journal_ledger_wizard_html
1030
+ #: model:ir.ui.menu,name:account_financial_report.menu_journal_ledger_wizard
1031
+ msgid "Journal Ledger"
1032
+ msgstr ""
1033
+
1034
+ #. module: account_financial_report
1035
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_base
1036
+ msgid "Journal Ledger -"
1037
+ msgstr ""
1038
+
1039
+ #. module: account_financial_report
1040
+ #: model:ir.model,name:account_financial_report.model_report_account_financial_report_journal_ledger
1041
+ msgid "Journal Ledger Report"
1042
+ msgstr ""
1043
+
1044
+ #. module: account_financial_report
1045
+ #: model:ir.model,name:account_financial_report.model_journal_ledger_report_wizard
1046
+ msgid "Journal Ledger Report Wizard"
1047
+ msgstr ""
1048
+
1049
+ #. module: account_financial_report
1050
+ #: model:ir.actions.report,name:account_financial_report.action_report_journal_ledger_xlsx
1051
+ msgid "Journal Ledger XLSX"
1052
+ msgstr ""
1053
+
1054
+ #. module: account_financial_report
1055
+ #: model:ir.model,name:account_financial_report.model_report_a_f_r_report_journal_ledger_xlsx
1056
+ msgid "Journal Ledger XLSX Report"
1057
+ msgstr ""
1058
+
1059
+ #. module: account_financial_report
1060
+ #. odoo-python
1061
+ #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
1062
+ #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__journal_ids
1063
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.journal_ledger_wizard
1064
+ msgid "Journals"
1065
+ msgstr ""
1066
+
1067
+ #. module: account_financial_report
1068
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_financial_report_abstract_wizard__label_text_limit
1069
+ #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__label_text_limit
1070
+ #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__label_text_limit
1071
+ #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__label_text_limit
1072
+ #: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__label_text_limit
1073
+ #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__label_text_limit
1074
+ #: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__label_text_limit
1075
+ msgid "Label Text Limit"
1076
+ msgstr ""
1077
+
1078
+ #. module: account_financial_report
1079
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__write_uid
1080
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__write_uid
1081
+ #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__write_uid
1082
+ #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__write_uid
1083
+ #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__write_uid
1084
+ #: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__write_uid
1085
+ #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__write_uid
1086
+ #: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__write_uid
1087
+ msgid "Last Updated by"
1088
+ msgstr ""
1089
+
1090
+ #. module: account_financial_report
1091
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__write_date
1092
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__write_date
1093
+ #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__write_date
1094
+ #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__write_date
1095
+ #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__write_date
1096
+ #: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__write_date
1097
+ #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__write_date
1098
+ #: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__write_date
1099
+ msgid "Last Updated on"
1100
+ msgstr ""
1101
+
1102
+ #. module: account_financial_report
1103
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_group__level
1104
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
1105
+ msgid "Level"
1106
+ msgstr ""
1107
+
1108
+ #. module: account_financial_report
1109
+ #. odoo-python
1110
+ #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
1111
+ msgid "Level %s"
1112
+ msgstr ""
1113
+
1114
+ #. module: account_financial_report
1115
+ #. odoo-python
1116
+ #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
1117
+ #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__limit_hierarchy_level
1118
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
1119
+ msgid "Limit hierarchy levels"
1120
+ msgstr ""
1121
+
1122
+ #. module: account_financial_report
1123
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__line_ids
1124
+ msgid "Line"
1125
+ msgstr ""
1126
+
1127
+ #. module: account_financial_report
1128
+ #. odoo-python
1129
+ #: code:addons/account_financial_report/report/general_ledger.py:0
1130
+ #: code:addons/account_financial_report/report/open_items.py:0
1131
+ #: code:addons/account_financial_report/report/open_items_xlsx.py:0
1132
+ #: code:addons/account_financial_report/report/trial_balance.py:0
1133
+ msgid "Missing Partner"
1134
+ msgstr ""
1135
+
1136
+ #. module: account_financial_report
1137
+ #. odoo-python
1138
+ #: code:addons/account_financial_report/report/open_items.py:0
1139
+ msgid "Missing Salesperson"
1140
+ msgstr ""
1141
+
1142
+ #. module: account_financial_report
1143
+ #: model:ir.model,name:account_financial_report.model_account_age_report_configuration_line
1144
+ msgid "Model to set interval lines for Age partner balance report"
1145
+ msgstr ""
1146
+
1147
+ #. module: account_financial_report
1148
+ #: model:ir.model,name:account_financial_report.model_account_age_report_configuration
1149
+ msgid "Model to set intervals for Age partner balance report"
1150
+ msgstr ""
1151
+
1152
+ #. module: account_financial_report
1153
+ #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__move_target
1154
+ msgid "Move Target"
1155
+ msgstr ""
1156
+
1157
+ #. module: account_financial_report
1158
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal
1159
+ msgid "Moves"
1160
+ msgstr ""
1161
+
1162
+ #. module: account_financial_report
1163
+ #. odoo-python
1164
+ #: code:addons/account_financial_report/models/account_age_report_configuration.py:0
1165
+ msgid "Must complete Configuration Lines"
1166
+ msgstr ""
1167
+
1168
+ #. module: account_financial_report
1169
+ #. odoo-python
1170
+ #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
1171
+ #: code:addons/account_financial_report/report/vat_report_xlsx.py:0
1172
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__name
1173
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__name
1174
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
1175
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
1176
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
1177
+ msgid "Name"
1178
+ msgstr ""
1179
+
1180
+ #. module: account_financial_report
1181
+ #: model:ir.model.constraint,message:account_financial_report.constraint_account_age_report_configuration_line_unique_name_config_combination
1182
+ msgid "Name must be unique per report configuration"
1183
+ msgstr ""
1184
+
1185
+ #. module: account_financial_report
1186
+ #. odoo-python
1187
+ #: code:addons/account_financial_report/report/vat_report_xlsx.py:0
1188
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
1189
+ msgid "Net"
1190
+ msgstr ""
1191
+
1192
+ #. module: account_financial_report
1193
+ #. odoo-python
1194
+ #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
1195
+ #: code:addons/account_financial_report/report/open_items_xlsx.py:0
1196
+ #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
1197
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
1198
+ msgid "No"
1199
+ msgstr ""
1200
+
1201
+ #. module: account_financial_report
1202
+ #. odoo-python
1203
+ #: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
1204
+ msgid "No group"
1205
+ msgstr ""
1206
+
1207
+ #. module: account_financial_report
1208
+ #. odoo-python
1209
+ #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
1210
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
1211
+ msgid "No limit"
1212
+ msgstr ""
1213
+
1214
+ #. module: account_financial_report
1215
+ #: model:ir.model.fields.selection,name:account_financial_report.selection__general_ledger_report_wizard__grouped_by__none
1216
+ msgid "None"
1217
+ msgstr ""
1218
+
1219
+ #. module: account_financial_report
1220
+ #. odoo-python
1221
+ #: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
1222
+ msgid "Not Posted"
1223
+ msgstr ""
1224
+
1225
+ #. module: account_financial_report
1226
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_lines_header
1227
+ msgid "Not due"
1228
+ msgstr ""
1229
+
1230
+ #. module: account_financial_report
1231
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
1232
+ msgid "OCA Aged Report Configuration"
1233
+ msgstr ""
1234
+
1235
+ #. module: account_financial_report
1236
+ #: model:ir.ui.menu,name:account_financial_report.menu_oca_reports
1237
+ msgid "OCA accounting reports"
1238
+ msgstr ""
1239
+
1240
+ #. module: account_financial_report
1241
+ #. odoo-python
1242
+ #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
1243
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
1244
+ msgid "Older"
1245
+ msgstr ""
1246
+
1247
+ #. module: account_financial_report
1248
+ #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__only_one_unaffected_earnings_account
1249
+ #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__only_one_unaffected_earnings_account
1250
+ msgid "Only One Unaffected Earnings Account"
1251
+ msgstr ""
1252
+
1253
+ #. module: account_financial_report
1254
+ #. odoo-python
1255
+ #: code:addons/account_financial_report/report/open_items_xlsx.py:0
1256
+ #: model:ir.actions.act_window,name:account_financial_report.action_open_items_wizard
1257
+ #: model:ir.actions.report,name:account_financial_report.action_print_report_open_items_html
1258
+ #: model:ir.actions.report,name:account_financial_report.action_print_report_open_items_qweb
1259
+ #: model:ir.ui.menu,name:account_financial_report.menu_open_items_wizard
1260
+ msgid "Open Items"
1261
+ msgstr ""
1262
+
1263
+ #. module: account_financial_report
1264
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_base
1265
+ msgid "Open Items -"
1266
+ msgstr ""
1267
+
1268
+ #. module: account_financial_report
1269
+ #: model:ir.actions.act_window,name:account_financial_report.act_action_open_items_wizard_partner_relation
1270
+ msgid "Open Items Partner"
1271
+ msgstr ""
1272
+
1273
+ #. module: account_financial_report
1274
+ #: model:ir.model,name:account_financial_report.model_report_account_financial_report_open_items
1275
+ msgid "Open Items Report"
1276
+ msgstr ""
1277
+
1278
+ #. module: account_financial_report
1279
+ #: model:ir.model,name:account_financial_report.model_open_items_report_wizard
1280
+ msgid "Open Items Report Wizard"
1281
+ msgstr ""
1282
+
1283
+ #. module: account_financial_report
1284
+ #: model:ir.actions.report,name:account_financial_report.action_report_open_items_xlsx
1285
+ msgid "Open Items XLSX"
1286
+ msgstr ""
1287
+
1288
+ #. module: account_financial_report
1289
+ #: model:ir.model,name:account_financial_report.model_report_a_f_r_report_open_items_xlsx
1290
+ msgid "Open Items XLSX Report"
1291
+ msgstr ""
1292
+
1293
+ #. module: account_financial_report
1294
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.journal_ledger_wizard
1295
+ msgid "Options"
1296
+ msgstr ""
1297
+
1298
+ #. module: account_financial_report
1299
+ #. odoo-python
1300
+ #: code:addons/account_financial_report/report/open_items_xlsx.py:0
1301
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
1302
+ msgid "Original"
1303
+ msgstr ""
1304
+
1305
+ #. module: account_financial_report
1306
+ #. odoo-python
1307
+ #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
1308
+ #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
1309
+ #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
1310
+ #: code:addons/account_financial_report/report/open_items_xlsx.py:0
1311
+ #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
1312
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_lines_header
1313
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
1314
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
1315
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
1316
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
1317
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
1318
+ msgid "Partner"
1319
+ msgstr ""
1320
+
1321
+ #. module: account_financial_report
1322
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_partner_ending_cumul
1323
+ msgid ""
1324
+ "Partner\n"
1325
+ " cumul aged balance"
1326
+ msgstr ""
1327
+
1328
+ #. module: account_financial_report
1329
+ #. odoo-python
1330
+ #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
1331
+ msgid "Partner Initial balance"
1332
+ msgstr ""
1333
+
1334
+ #. module: account_financial_report
1335
+ #: model:ir.model.fields.selection,name:account_financial_report.selection__open_items_report_wizard__grouped_by__salesperson
1336
+ msgid "Partner Salesperson"
1337
+ msgstr ""
1338
+
1339
+ #. module: account_financial_report
1340
+ #. odoo-python
1341
+ #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
1342
+ msgid "Partner cumul aged balance"
1343
+ msgstr ""
1344
+
1345
+ #. module: account_financial_report
1346
+ #. odoo-python
1347
+ #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
1348
+ #: code:addons/account_financial_report/report/open_items_xlsx.py:0
1349
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_ending_cumul
1350
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_ending_cumul
1351
+ msgid "Partner ending balance"
1352
+ msgstr ""
1353
+
1354
+ #. module: account_financial_report
1355
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
1356
+ msgid "Partner initial balance"
1357
+ msgstr ""
1358
+
1359
+ #. module: account_financial_report
1360
+ #: model:ir.model.fields.selection,name:account_financial_report.selection__general_ledger_report_wizard__grouped_by__partners
1361
+ #: model:ir.model.fields.selection,name:account_financial_report.selection__open_items_report_wizard__grouped_by__partners
1362
+ msgid "Partners"
1363
+ msgstr ""
1364
+
1365
+ #. module: account_financial_report
1366
+ #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__payable_accounts_only
1367
+ #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__payable_accounts_only
1368
+ #: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__payable_accounts_only
1369
+ #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__payable_accounts_only
1370
+ msgid "Payable Accounts Only"
1371
+ msgstr ""
1372
+
1373
+ #. module: account_financial_report
1374
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_account_ending_cumul
1375
+ msgid "Percents"
1376
+ msgstr ""
1377
+
1378
+ #. module: account_financial_report
1379
+ #. odoo-python
1380
+ #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
1381
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
1382
+ msgid "Period balance"
1383
+ msgstr ""
1384
+
1385
+ #. module: account_financial_report
1386
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.journal_ledger_wizard
1387
+ msgid "Periods"
1388
+ msgstr ""
1389
+
1390
+ #. module: account_financial_report
1391
+ #. odoo-python
1392
+ #: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
1393
+ msgid "Posted"
1394
+ msgstr ""
1395
+
1396
+ #. module: account_financial_report
1397
+ #. odoo-python
1398
+ #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
1399
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
1400
+ msgid "Rec."
1401
+ msgstr ""
1402
+
1403
+ #. module: account_financial_report
1404
+ #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__receivable_accounts_only
1405
+ #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__receivable_accounts_only
1406
+ #: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__receivable_accounts_only
1407
+ #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__receivable_accounts_only
1408
+ msgid "Receivable Accounts Only"
1409
+ msgstr ""
1410
+
1411
+ #. module: account_financial_report
1412
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
1413
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
1414
+ msgid ""
1415
+ "Ref -\n"
1416
+ " Label"
1417
+ msgstr ""
1418
+
1419
+ #. module: account_financial_report
1420
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
1421
+ msgid ""
1422
+ "Ref -\n"
1423
+ " Label"
1424
+ msgstr ""
1425
+
1426
+ #. module: account_financial_report
1427
+ #. odoo-python
1428
+ #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
1429
+ #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
1430
+ #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
1431
+ #: code:addons/account_financial_report/report/open_items_xlsx.py:0
1432
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
1433
+ msgid "Ref - Label"
1434
+ msgstr ""
1435
+
1436
+ #. module: account_financial_report
1437
+ #: model:ir.model,name:account_financial_report.model_ir_actions_report
1438
+ msgid "Report Action"
1439
+ msgstr ""
1440
+
1441
+ #. module: account_financial_report
1442
+ #. odoo-python
1443
+ #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
1444
+ #: code:addons/account_financial_report/report/open_items_xlsx.py:0
1445
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_lines_header
1446
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
1447
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
1448
+ msgid "Residual"
1449
+ msgstr ""
1450
+
1451
+ #. module: account_financial_report
1452
+ #. odoo-python
1453
+ #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
1454
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
1455
+ msgid "Sequence"
1456
+ msgstr ""
1457
+
1458
+ #. module: account_financial_report
1459
+ #. odoo-python
1460
+ #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
1461
+ #: code:addons/account_financial_report/report/open_items_xlsx.py:0
1462
+ #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
1463
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
1464
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
1465
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
1466
+ msgid "Show"
1467
+ msgstr ""
1468
+
1469
+ #. module: account_financial_report
1470
+ #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__show_cost_center
1471
+ msgid "Show Analytic Account"
1472
+ msgstr ""
1473
+
1474
+ #. module: account_financial_report
1475
+ #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__with_auto_sequence
1476
+ msgid "Show Auto Sequence"
1477
+ msgstr ""
1478
+
1479
+ #. module: account_financial_report
1480
+ #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__show_move_line_details
1481
+ msgid "Show Move Line Details"
1482
+ msgstr ""
1483
+
1484
+ #. module: account_financial_report
1485
+ #: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__show_partner_details
1486
+ #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__show_partner_details
1487
+ msgid "Show Partner Details"
1488
+ msgstr ""
1489
+
1490
+ #. module: account_financial_report
1491
+ #. odoo-python
1492
+ #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
1493
+ #: code:addons/account_financial_report/report/open_items_xlsx.py:0
1494
+ #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
1495
+ #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__foreign_currency
1496
+ #: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__foreign_currency
1497
+ #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__foreign_currency
1498
+ msgid "Show foreign currency"
1499
+ msgstr ""
1500
+
1501
+ #. module: account_financial_report
1502
+ #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__show_hierarchy
1503
+ msgid "Show hierarchy"
1504
+ msgstr ""
1505
+
1506
+ #. module: account_financial_report
1507
+ #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__sort_option
1508
+ msgid "Sort entries by"
1509
+ msgstr ""
1510
+
1511
+ #. module: account_financial_report
1512
+ #: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__date_from
1513
+ msgid "Start Date"
1514
+ msgstr ""
1515
+
1516
+ #. module: account_financial_report
1517
+ #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__date_from
1518
+ msgid "Start date"
1519
+ msgstr ""
1520
+
1521
+ #. module: account_financial_report
1522
+ #: model:ir.model.fields,help:account_financial_report.field_aged_partner_balance_report_wizard__account_code_from
1523
+ #: model:ir.model.fields,help:account_financial_report.field_general_ledger_report_wizard__account_code_from
1524
+ #: model:ir.model.fields,help:account_financial_report.field_trial_balance_report_wizard__account_code_from
1525
+ msgid "Starting account in a range"
1526
+ msgstr ""
1527
+
1528
+ #. module: account_financial_report
1529
+ #. odoo-python
1530
+ #: code:addons/account_financial_report/report/trial_balance.py:0
1531
+ #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
1532
+ msgid "TOTAL"
1533
+ msgstr ""
1534
+
1535
+ #. module: account_financial_report
1536
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
1537
+ msgid "Tags"
1538
+ msgstr ""
1539
+
1540
+ #. module: account_financial_report
1541
+ #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__target_move
1542
+ #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__target_move
1543
+ #: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__target_move
1544
+ #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__target_move
1545
+ #: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__target_move
1546
+ msgid "Target Moves"
1547
+ msgstr ""
1548
+
1549
+ #. module: account_financial_report
1550
+ #. odoo-python
1551
+ #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
1552
+ #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
1553
+ #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
1554
+ #: code:addons/account_financial_report/report/open_items_xlsx.py:0
1555
+ #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
1556
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_filters
1557
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
1558
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
1559
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
1560
+ msgid "Target moves filter"
1561
+ msgstr ""
1562
+
1563
+ #. module: account_financial_report
1564
+ #. odoo-python
1565
+ #: code:addons/account_financial_report/report/vat_report_xlsx.py:0
1566
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
1567
+ msgid "Tax"
1568
+ msgstr ""
1569
+
1570
+ #. module: account_financial_report
1571
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
1572
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
1573
+ msgid "Tax Amount"
1574
+ msgstr ""
1575
+
1576
+ #. module: account_financial_report
1577
+ #. odoo-python
1578
+ #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
1579
+ msgid "Tax Balance"
1580
+ msgstr ""
1581
+
1582
+ #. module: account_financial_report
1583
+ #. odoo-python
1584
+ #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
1585
+ msgid "Tax Credit"
1586
+ msgstr ""
1587
+
1588
+ #. module: account_financial_report
1589
+ #. odoo-python
1590
+ #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
1591
+ msgid "Tax Debit"
1592
+ msgstr ""
1593
+
1594
+ #. module: account_financial_report
1595
+ #. odoo-python
1596
+ #: code:addons/account_financial_report/report/vat_report_xlsx.py:0
1597
+ #: model:ir.model.fields.selection,name:account_financial_report.selection__vat_report_wizard__based_on__taxgroups
1598
+ msgid "Tax Groups"
1599
+ msgstr ""
1600
+
1601
+ #. module: account_financial_report
1602
+ #. odoo-python
1603
+ #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
1604
+ msgid "Tax Initial balance"
1605
+ msgstr ""
1606
+
1607
+ #. module: account_financial_report
1608
+ #. odoo-python
1609
+ #: code:addons/account_financial_report/report/vat_report_xlsx.py:0
1610
+ #: model:ir.model.fields.selection,name:account_financial_report.selection__vat_report_wizard__based_on__taxtags
1611
+ msgid "Tax Tags"
1612
+ msgstr ""
1613
+
1614
+ #. module: account_financial_report
1615
+ #. odoo-python
1616
+ #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
1617
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_ending_cumul
1618
+ msgid "Tax ending balance"
1619
+ msgstr ""
1620
+
1621
+ #. module: account_financial_report
1622
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
1623
+ msgid "Tax initial balance"
1624
+ msgstr ""
1625
+
1626
+ #. module: account_financial_report
1627
+ #. odoo-python
1628
+ #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
1629
+ #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
1630
+ #: model:ir.model.fields.selection,name:account_financial_report.selection__general_ledger_report_wizard__grouped_by__taxes
1631
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
1632
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
1633
+ msgid "Taxes"
1634
+ msgstr ""
1635
+
1636
+ #. module: account_financial_report
1637
+ #. odoo-python
1638
+ #: code:addons/account_financial_report/wizard/general_ledger_wizard.py:0
1639
+ msgid ""
1640
+ "The Company in the General Ledger Report Wizard and in Date Range must be "
1641
+ "the same."
1642
+ msgstr ""
1643
+
1644
+ #. module: account_financial_report
1645
+ #. odoo-python
1646
+ #: code:addons/account_financial_report/wizard/trial_balance_wizard.py:0
1647
+ msgid ""
1648
+ "The Company in the Trial Balance Report Wizard and in Date Range must be the"
1649
+ " same."
1650
+ msgstr ""
1651
+
1652
+ #. module: account_financial_report
1653
+ #. odoo-python
1654
+ #: code:addons/account_financial_report/wizard/vat_report_wizard.py:0
1655
+ msgid ""
1656
+ "The Company in the Vat Report Wizard and in Date Range must be the same."
1657
+ msgstr ""
1658
+
1659
+ #. module: account_financial_report
1660
+ #. odoo-python
1661
+ #: code:addons/account_financial_report/wizard/trial_balance_wizard.py:0
1662
+ msgid "The hierarchy level to filter on must be greater than 0."
1663
+ msgstr ""
1664
+
1665
+ #. module: account_financial_report
1666
+ #. odoo-python
1667
+ #: code:addons/account_financial_report/report/trial_balance.py:0
1668
+ msgid ""
1669
+ "There is a problem in the structure of the account groups. You may need to "
1670
+ "create some child group of %s."
1671
+ msgstr ""
1672
+
1673
+ #. module: account_financial_report
1674
+ #: model:ir.model.fields,help:account_financial_report.field_general_ledger_report_wizard__domain
1675
+ msgid "This domain will be used to select specific domain for Journal Items"
1676
+ msgstr ""
1677
+
1678
+ #. module: account_financial_report
1679
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
1680
+ msgid "To"
1681
+ msgstr ""
1682
+
1683
+ #. module: account_financial_report
1684
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
1685
+ msgid "To:"
1686
+ msgstr ""
1687
+
1688
+ #. module: account_financial_report
1689
+ #. odoo-python
1690
+ #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
1691
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_account_ending_cumul
1692
+ msgid "Total"
1693
+ msgstr ""
1694
+
1695
+ #. module: account_financial_report
1696
+ #. odoo-python
1697
+ #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
1698
+ #: model:ir.actions.act_window,name:account_financial_report.action_trial_balance_wizard
1699
+ #: model:ir.actions.report,name:account_financial_report.action_report_trial_balance_html
1700
+ #: model:ir.actions.report,name:account_financial_report.action_report_trial_balance_qweb
1701
+ #: model:ir.ui.menu,name:account_financial_report.menu_trial_balance_wizard
1702
+ msgid "Trial Balance"
1703
+ msgstr ""
1704
+
1705
+ #. module: account_financial_report
1706
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_base
1707
+ msgid "Trial Balance -"
1708
+ msgstr ""
1709
+
1710
+ #. module: account_financial_report
1711
+ #: model:ir.model,name:account_financial_report.model_report_account_financial_report_trial_balance
1712
+ msgid "Trial Balance Report"
1713
+ msgstr ""
1714
+
1715
+ #. module: account_financial_report
1716
+ #: model:ir.model,name:account_financial_report.model_trial_balance_report_wizard
1717
+ msgid "Trial Balance Report Wizard"
1718
+ msgstr ""
1719
+
1720
+ #. module: account_financial_report
1721
+ #: model:ir.actions.report,name:account_financial_report.action_report_trial_balance_xlsx
1722
+ msgid "Trial Balance XLSX"
1723
+ msgstr ""
1724
+
1725
+ #. module: account_financial_report
1726
+ #: model:ir.model,name:account_financial_report.model_report_a_f_r_report_trial_balance_xlsx
1727
+ msgid "Trial Balance XLSX Report"
1728
+ msgstr ""
1729
+
1730
+ #. module: account_financial_report
1731
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.trial_balance_wizard
1732
+ msgid ""
1733
+ "Trial Balance can be computed only if selected company have only\n"
1734
+ " one unaffected earnings account."
1735
+ msgstr ""
1736
+
1737
+ #. module: account_financial_report
1738
+ #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__unaffected_earnings_account
1739
+ #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__unaffected_earnings_account
1740
+ msgid "Unaffected Earnings Account"
1741
+ msgstr ""
1742
+
1743
+ #. module: account_financial_report
1744
+ #: model:ir.model.fields,help:account_financial_report.field_general_ledger_report_wizard__hide_account_at_0
1745
+ #: model:ir.model.fields,help:account_financial_report.field_open_items_report_wizard__hide_account_at_0
1746
+ msgid ""
1747
+ "Use this filter to hide an account or a partner with an ending balance at 0."
1748
+ " If partners are filtered, debits and credits totals will not match the "
1749
+ "trial balance."
1750
+ msgstr ""
1751
+
1752
+ #. module: account_financial_report
1753
+ #: model:ir.model.fields,help:account_financial_report.field_trial_balance_report_wizard__show_hierarchy
1754
+ msgid "Use when your account groups are hierarchical"
1755
+ msgstr ""
1756
+
1757
+ #. module: account_financial_report
1758
+ #: model:ir.actions.act_window,name:account_financial_report.action_vat_report_wizard
1759
+ #: model:ir.actions.report,name:account_financial_report.action_print_report_vat_report_html
1760
+ #: model:ir.actions.report,name:account_financial_report.action_print_report_vat_report_qweb
1761
+ #: model:ir.ui.menu,name:account_financial_report.menu_vat_report_wizard
1762
+ msgid "VAT Report"
1763
+ msgstr ""
1764
+
1765
+ #. module: account_financial_report
1766
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
1767
+ msgid "VAT Report -"
1768
+ msgstr ""
1769
+
1770
+ #. module: account_financial_report
1771
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.vat_report_wizard
1772
+ msgid "VAT Report Options"
1773
+ msgstr ""
1774
+
1775
+ #. module: account_financial_report
1776
+ #: model:ir.model,name:account_financial_report.model_vat_report_wizard
1777
+ msgid "VAT Report Wizard"
1778
+ msgstr ""
1779
+
1780
+ #. module: account_financial_report
1781
+ #: model:ir.actions.report,name:account_financial_report.action_report_vat_report_xlsx
1782
+ msgid "VAT Report XLSX"
1783
+ msgstr ""
1784
+
1785
+ #. module: account_financial_report
1786
+ #. odoo-python
1787
+ #: code:addons/account_financial_report/report/vat_report_xlsx.py:0
1788
+ msgid "Vat Report"
1789
+ msgstr ""
1790
+
1791
+ #. module: account_financial_report
1792
+ #: model:ir.model,name:account_financial_report.model_report_account_financial_report_vat_report
1793
+ msgid "Vat Report Report"
1794
+ msgstr ""
1795
+
1796
+ #. module: account_financial_report
1797
+ #: model:ir.model,name:account_financial_report.model_report_a_f_r_report_vat_report_xlsx
1798
+ msgid "Vat Report XLSX Report"
1799
+ msgstr ""
1800
+
1801
+ #. module: account_financial_report
1802
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.aged_partner_balance_wizard
1803
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
1804
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.journal_ledger_wizard
1805
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.open_items_wizard
1806
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.trial_balance_wizard
1807
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.vat_report_wizard
1808
+ msgid "View"
1809
+ msgstr ""
1810
+
1811
+ #. module: account_financial_report
1812
+ #: model:ir.model.fields,help:account_financial_report.field_trial_balance_report_wizard__hide_account_at_0
1813
+ msgid ""
1814
+ "When this option is enabled, the trial balance will not display accounts "
1815
+ "that have initial balance = debit = credit = end balance = 0"
1816
+ msgstr ""
1817
+
1818
+ #. module: account_financial_report
1819
+ #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__with_account_name
1820
+ msgid "With Account Name"
1821
+ msgstr ""
1822
+
1823
+ #. module: account_financial_report
1824
+ #. odoo-python
1825
+ #: code:addons/account_financial_report/report/trial_balance.py:0
1826
+ msgid "Without analytic account"
1827
+ msgstr ""
1828
+
1829
+ #. module: account_financial_report
1830
+ #. odoo-python
1831
+ #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
1832
+ #: code:addons/account_financial_report/report/open_items_xlsx.py:0
1833
+ #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
1834
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
1835
+ msgid "Yes"
1836
+ msgstr ""
1837
+
1838
+ #. module: account_financial_report
1839
+ #. odoo-python
1840
+ #: code:addons/account_financial_report/report/general_ledger.py:0
1841
+ msgid "future"
1842
+ msgstr ""
1843
+
1844
+ #. module: account_financial_report
1845
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
1846
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.journal_ledger_wizard
1847
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.open_items_wizard
1848
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.trial_balance_wizard
1849
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.vat_report_wizard
1850
+ msgid "or"
1851
+ msgstr ""
1852
+
1853
+ #. module: account_financial_report
1854
+ #: model:ir.actions.report,name:account_financial_report.action_print_journal_ledger_wizard_qweb
1855
+ msgid "ournal Ledger"
1856
+ msgstr ""
1857
+
1858
+ #. module: account_financial_report
1859
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal
1860
+ msgid "to"
1861
+ msgstr ""
1862
+
1863
+ #. module: account_financial_report
1864
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
1865
+ msgid "width: 16.21%;"
1866
+ msgstr ""
1867
+
1868
+ #. module: account_financial_report
1869
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
1870
+ msgid "width: 23.24%;"
1871
+ msgstr ""
1872
+
1873
+ #. module: account_financial_report
1874
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
1875
+ msgid "width: 23.78%;"
1876
+ msgstr ""
1877
+
1878
+ #. module: account_financial_report
1879
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
1880
+ msgid "width: 31.35%;"
1881
+ msgstr ""
1882
+
1883
+ #. module: account_financial_report
1884
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
1885
+ msgid "width: 38.92%;"
1886
+ msgstr ""
1887
+
1888
+ #. module: account_financial_report
1889
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
1890
+ msgid "width: 8.11%;"
1891
+ msgstr ""