odoo-addon-account-financial-report 15.0.1.1.0.1__py3-none-any.whl → 18.0.1.4.4.3__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- odoo/addons/account_financial_report/README.rst +131 -74
- odoo/addons/account_financial_report/__manifest__.py +6 -9
- odoo/addons/account_financial_report/i18n/account_financial_report.pot +313 -188
- odoo/addons/account_financial_report/i18n/ar.po +579 -433
- odoo/addons/account_financial_report/i18n/ca.po +474 -289
- odoo/addons/account_financial_report/i18n/{fr_FR.po → ca_AD.po} +539 -491
- odoo/addons/account_financial_report/i18n/ca_ES.po +1891 -0
- odoo/addons/account_financial_report/i18n/de.po +455 -295
- odoo/addons/account_financial_report/i18n/es.po +458 -394
- odoo/addons/account_financial_report/i18n/es_AR.po +464 -283
- odoo/addons/account_financial_report/i18n/es_MX.po +315 -220
- odoo/addons/account_financial_report/i18n/fr.po +620 -435
- odoo/addons/account_financial_report/i18n/fr_CH.po +616 -462
- odoo/addons/account_financial_report/i18n/hr.po +506 -355
- odoo/addons/account_financial_report/i18n/hr_HR.po +331 -232
- odoo/addons/account_financial_report/i18n/it.po +538 -356
- odoo/addons/account_financial_report/i18n/ja.po +339 -240
- odoo/addons/account_financial_report/i18n/nl.po +462 -324
- odoo/addons/account_financial_report/i18n/nl_NL.po +318 -220
- odoo/addons/account_financial_report/i18n/pt.po +429 -242
- odoo/addons/account_financial_report/i18n/pt_BR.po +588 -438
- odoo/addons/account_financial_report/i18n/ro.po +499 -342
- odoo/addons/account_financial_report/i18n/sl.po +1945 -0
- odoo/addons/account_financial_report/i18n/sv.po +1997 -0
- odoo/addons/account_financial_report/i18n/tr.po +1947 -0
- odoo/addons/account_financial_report/menuitems.xml +1 -1
- odoo/addons/account_financial_report/models/__init__.py +2 -0
- odoo/addons/account_financial_report/models/account_age_report_configuration.py +49 -0
- odoo/addons/account_financial_report/models/account_group.py +62 -23
- odoo/addons/account_financial_report/models/account_move_line.py +33 -3
- odoo/addons/account_financial_report/models/ir_actions_report.py +6 -4
- odoo/addons/account_financial_report/models/res_config_settings.py +36 -0
- odoo/addons/account_financial_report/readme/CONFIGURE.md +26 -0
- odoo/addons/account_financial_report/readme/CONTRIBUTORS.md +38 -0
- odoo/addons/account_financial_report/readme/CREDITS.md +1 -0
- odoo/addons/account_financial_report/readme/DESCRIPTION.md +21 -0
- odoo/addons/account_financial_report/readme/HISTORY.md +16 -0
- odoo/addons/account_financial_report/readme/ROADMAP.md +6 -0
- odoo/addons/account_financial_report/report/abstract_report.py +73 -23
- odoo/addons/account_financial_report/report/abstract_report_xlsx.py +28 -23
- odoo/addons/account_financial_report/report/aged_partner_balance.py +131 -30
- odoo/addons/account_financial_report/report/aged_partner_balance_xlsx.py +158 -118
- odoo/addons/account_financial_report/report/general_ledger.py +421 -340
- odoo/addons/account_financial_report/report/general_ledger_xlsx.py +127 -75
- odoo/addons/account_financial_report/report/journal_ledger.py +84 -68
- odoo/addons/account_financial_report/report/journal_ledger_xlsx.py +14 -8
- odoo/addons/account_financial_report/report/open_items.py +113 -70
- odoo/addons/account_financial_report/report/open_items_xlsx.py +152 -19
- odoo/addons/account_financial_report/report/templates/aged_partner_balance.xml +408 -311
- odoo/addons/account_financial_report/report/templates/general_ledger.xml +273 -213
- odoo/addons/account_financial_report/report/templates/journal_ledger.xml +70 -76
- odoo/addons/account_financial_report/report/templates/layouts.xml +12 -1
- odoo/addons/account_financial_report/report/templates/open_items.xml +181 -55
- odoo/addons/account_financial_report/report/templates/trial_balance.xml +304 -195
- odoo/addons/account_financial_report/report/templates/vat_report.xml +10 -10
- odoo/addons/account_financial_report/report/trial_balance.py +463 -211
- odoo/addons/account_financial_report/report/trial_balance_xlsx.py +37 -38
- odoo/addons/account_financial_report/report/vat_report.py +36 -25
- odoo/addons/account_financial_report/report/vat_report_xlsx.py +1 -1
- odoo/addons/account_financial_report/security/ir.model.access.csv +2 -0
- odoo/addons/account_financial_report/security/security.xml +8 -0
- odoo/addons/account_financial_report/static/description/index.html +106 -55
- odoo/addons/account_financial_report/static/src/css/report.css +77 -42
- odoo/addons/account_financial_report/static/src/css/report_html.css +10 -0
- odoo/addons/account_financial_report/static/src/js/report.esm.js +72 -0
- odoo/addons/account_financial_report/static/src/js/report_action.esm.js +39 -0
- odoo/addons/account_financial_report/static/src/xml/report.xml +10 -9
- odoo/addons/account_financial_report/tests/__init__.py +1 -0
- odoo/addons/account_financial_report/tests/test_age_report_configuration.py +42 -0
- odoo/addons/account_financial_report/tests/test_aged_partner_balance.py +99 -9
- odoo/addons/account_financial_report/tests/test_general_ledger.py +19 -9
- odoo/addons/account_financial_report/tests/test_journal_ledger.py +18 -9
- odoo/addons/account_financial_report/tests/test_open_items.py +42 -2
- odoo/addons/account_financial_report/tests/test_trial_balance.py +114 -223
- odoo/addons/account_financial_report/tests/test_vat_report.py +17 -9
- odoo/addons/account_financial_report/view/account_age_report_configuration_views.xml +41 -0
- odoo/addons/account_financial_report/view/res_config_settings_views.xml +51 -0
- odoo/addons/account_financial_report/wizard/abstract_wizard.py +23 -0
- odoo/addons/account_financial_report/wizard/aged_partner_balance_wizard.py +22 -8
- odoo/addons/account_financial_report/wizard/aged_partner_balance_wizard_view.xml +2 -3
- odoo/addons/account_financial_report/wizard/general_ledger_wizard.py +42 -36
- odoo/addons/account_financial_report/wizard/general_ledger_wizard_view.xml +26 -41
- odoo/addons/account_financial_report/wizard/journal_ledger_wizard.py +19 -7
- odoo/addons/account_financial_report/wizard/journal_ledger_wizard_view.xml +15 -14
- odoo/addons/account_financial_report/wizard/open_items_wizard.py +34 -8
- odoo/addons/account_financial_report/wizard/open_items_wizard_view.xml +16 -14
- odoo/addons/account_financial_report/wizard/trial_balance_wizard.py +68 -45
- odoo/addons/account_financial_report/wizard/trial_balance_wizard_view.xml +40 -39
- odoo/addons/account_financial_report/wizard/vat_report_wizard.py +9 -3
- odoo/addons/account_financial_report/wizard/vat_report_wizard_view.xml +14 -14
- odoo_addon_account_financial_report-18.0.1.4.4.3.dist-info/METADATA +234 -0
- odoo_addon_account_financial_report-18.0.1.4.4.3.dist-info/RECORD +107 -0
- {odoo_addon_account_financial_report-15.0.1.1.0.1.dist-info → odoo_addon_account_financial_report-18.0.1.4.4.3.dist-info}/WHEEL +1 -1
- odoo_addon_account_financial_report-18.0.1.4.4.3.dist-info/top_level.txt +1 -0
- odoo/addons/account_financial_report/readme/CONTRIBUTORS.rst +0 -35
- odoo/addons/account_financial_report/readme/DESCRIPTION.rst +0 -16
- odoo/addons/account_financial_report/readme/HISTORY.rst +0 -19
- odoo/addons/account_financial_report/readme/ROADMAP.rst +0 -7
- odoo/addons/account_financial_report/static/src/js/action_manager_report.js +0 -37
- odoo/addons/account_financial_report/static/src/js/client_action.js +0 -58
- odoo/addons/account_financial_report/static/src/js/report.js +0 -58
- odoo_addon_account_financial_report-15.0.1.1.0.1.dist-info/METADATA +0 -179
- odoo_addon_account_financial_report-15.0.1.1.0.1.dist-info/RECORD +0 -95
- odoo_addon_account_financial_report-15.0.1.1.0.1.dist-info/top_level.txt +0 -1
|
@@ -9,15 +9,15 @@ msgstr ""
|
|
|
9
9
|
"Project-Id-Version: Odoo Server 11.0\n"
|
|
10
10
|
"Report-Msgid-Bugs-To: \n"
|
|
11
11
|
"POT-Creation-Date: 2018-03-16 08:14+0000\n"
|
|
12
|
-
"PO-Revision-Date:
|
|
13
|
-
"Last-Translator:
|
|
12
|
+
"PO-Revision-Date: 2023-11-21 14:34+0000\n"
|
|
13
|
+
"Last-Translator: Yung-Wa <yw.ng@onestein.nl>\n"
|
|
14
14
|
"Language-Team: Dutch (https://www.transifex.com/oca/teams/23907/nl/)\n"
|
|
15
15
|
"Language: nl\n"
|
|
16
16
|
"MIME-Version: 1.0\n"
|
|
17
17
|
"Content-Type: text/plain; charset=UTF-8\n"
|
|
18
18
|
"Content-Transfer-Encoding: \n"
|
|
19
19
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
|
20
|
-
"X-Generator: Weblate 4.
|
|
20
|
+
"X-Generator: Weblate 4.17\n"
|
|
21
21
|
|
|
22
22
|
#. module: account_financial_report
|
|
23
23
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_lines_header
|
|
@@ -55,6 +55,19 @@ msgstr "91 - 120 d."
|
|
|
55
55
|
msgid "<b>Taxes summary</b>"
|
|
56
56
|
msgstr "<b>Belasting samenvatting</b>"
|
|
57
57
|
|
|
58
|
+
#. module: account_financial_report
|
|
59
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.trial_balance_wizard
|
|
60
|
+
msgid ""
|
|
61
|
+
"<i class=\"fa fa-exclamation-triangle mr-3\"/>\n"
|
|
62
|
+
" Duplicate amounts may be shown because more than one "
|
|
63
|
+
"analytical account may be defined in the journal items."
|
|
64
|
+
msgstr ""
|
|
65
|
+
|
|
66
|
+
#. module: account_financial_report
|
|
67
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
68
|
+
msgid "<span class=\"o_form_label\">Intervals configuration</span>"
|
|
69
|
+
msgstr ""
|
|
70
|
+
|
|
58
71
|
#. module: account_financial_report
|
|
59
72
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.aged_partner_balance_wizard
|
|
60
73
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
|
|
@@ -65,21 +78,21 @@ msgstr "<span class=\"oe_inline\">tot</span>"
|
|
|
65
78
|
|
|
66
79
|
#. module: account_financial_report
|
|
67
80
|
#: model:ir.model,name:account_financial_report.model_report_account_financial_report_abstract_report
|
|
68
|
-
#, fuzzy
|
|
69
81
|
msgid "Abstract Report"
|
|
70
|
-
msgstr "
|
|
82
|
+
msgstr "Abstract rapport"
|
|
71
83
|
|
|
72
84
|
#. module: account_financial_report
|
|
73
85
|
#: model:ir.model,name:account_financial_report.model_account_financial_report_abstract_wizard
|
|
74
86
|
msgid "Abstract Wizard"
|
|
75
|
-
msgstr ""
|
|
87
|
+
msgstr "Abstract Wizard"
|
|
76
88
|
|
|
77
89
|
#. module: account_financial_report
|
|
78
90
|
#: model:ir.model,name:account_financial_report.model_report_account_financial_report_abstract_report_xlsx
|
|
79
91
|
msgid "Abstract XLSX Account Financial Report"
|
|
80
|
-
msgstr ""
|
|
92
|
+
msgstr "Abstract XLSX Account Financial Report"
|
|
81
93
|
|
|
82
94
|
#. module: account_financial_report
|
|
95
|
+
#. odoo-python
|
|
83
96
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
84
97
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
85
98
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
@@ -91,27 +104,29 @@ msgstr ""
|
|
|
91
104
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
92
105
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
93
106
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
94
|
-
#, python-format
|
|
95
107
|
msgid "Account"
|
|
96
108
|
msgstr "Rekening"
|
|
97
109
|
|
|
110
|
+
#. module: account_financial_report
|
|
111
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__account_age_report_config_id
|
|
112
|
+
msgid "Account Age Report Config"
|
|
113
|
+
msgstr ""
|
|
114
|
+
|
|
98
115
|
#. module: account_financial_report
|
|
99
116
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__account_code_from
|
|
100
117
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__account_code_from
|
|
101
118
|
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__account_code_from
|
|
102
119
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__account_code_from
|
|
103
|
-
#, fuzzy
|
|
104
120
|
msgid "Account Code From"
|
|
105
|
-
msgstr "Rekening code"
|
|
121
|
+
msgstr "Rekening code vanaf"
|
|
106
122
|
|
|
107
123
|
#. module: account_financial_report
|
|
108
124
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__account_code_to
|
|
109
125
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__account_code_to
|
|
110
126
|
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__account_code_to
|
|
111
127
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__account_code_to
|
|
112
|
-
#, fuzzy
|
|
113
128
|
msgid "Account Code To"
|
|
114
|
-
msgstr "Rekening code"
|
|
129
|
+
msgstr "Rekening code tot"
|
|
115
130
|
|
|
116
131
|
#. module: account_financial_report
|
|
117
132
|
#: model:ir.model,name:account_financial_report.model_account_group
|
|
@@ -119,26 +134,26 @@ msgid "Account Group"
|
|
|
119
134
|
msgstr "Rekening groep"
|
|
120
135
|
|
|
121
136
|
#. module: account_financial_report
|
|
137
|
+
#. odoo-python
|
|
122
138
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
123
|
-
#, python-format
|
|
124
139
|
msgid "Account Name"
|
|
125
140
|
msgstr "Rekening naam"
|
|
126
141
|
|
|
127
142
|
#. module: account_financial_report
|
|
143
|
+
#. odoo-python
|
|
128
144
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
129
145
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
130
|
-
#, fuzzy, python-format
|
|
131
146
|
msgid "Account at 0 filter"
|
|
132
|
-
msgstr "Rekening balans met 0 filter
|
|
147
|
+
msgstr "Rekening balans met 0 filter"
|
|
133
148
|
|
|
134
149
|
#. module: account_financial_report
|
|
150
|
+
#. odoo-python
|
|
135
151
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
136
152
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
137
153
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
138
154
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
139
|
-
#, python-format
|
|
140
155
|
msgid "Account balance at 0 filter"
|
|
141
|
-
msgstr "Rekening balans met 0 filter
|
|
156
|
+
msgstr "Rekening balans met 0 filter"
|
|
142
157
|
|
|
143
158
|
#. module: account_financial_report
|
|
144
159
|
#: model:ir.model.fields,field_description:account_financial_report.field_account_group__account_ids
|
|
@@ -155,85 +170,80 @@ msgstr "Activeer centralisatie"
|
|
|
155
170
|
msgid "Additional Filtering"
|
|
156
171
|
msgstr "Aanvullende filters"
|
|
157
172
|
|
|
173
|
+
#. module: account_financial_report
|
|
174
|
+
#: model:ir.actions.act_window,name:account_financial_report.action_aged_partner_report_configuration
|
|
175
|
+
msgid "Age Partner Report Configuration"
|
|
176
|
+
msgstr ""
|
|
177
|
+
|
|
158
178
|
#. module: account_financial_report
|
|
159
179
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
160
180
|
msgid ""
|
|
161
181
|
"Age ≤ 120\n"
|
|
162
|
-
"
|
|
182
|
+
" d."
|
|
163
183
|
msgstr ""
|
|
164
|
-
"Leeftijd ≤ 120\n"
|
|
165
|
-
" d."
|
|
166
184
|
|
|
167
185
|
#. module: account_financial_report
|
|
186
|
+
#. odoo-python
|
|
168
187
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
169
|
-
#, python-format
|
|
170
188
|
msgid "Age ≤ 120 d."
|
|
171
|
-
msgstr "
|
|
189
|
+
msgstr ""
|
|
172
190
|
|
|
173
191
|
#. module: account_financial_report
|
|
174
192
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
175
193
|
msgid ""
|
|
176
194
|
"Age ≤ 30\n"
|
|
177
|
-
"
|
|
195
|
+
" d."
|
|
178
196
|
msgstr ""
|
|
179
|
-
"Leeftijd ≤ 30\n"
|
|
180
|
-
" d."
|
|
181
197
|
|
|
182
198
|
#. module: account_financial_report
|
|
199
|
+
#. odoo-python
|
|
183
200
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
184
|
-
#, python-format
|
|
185
201
|
msgid "Age ≤ 30 d."
|
|
186
|
-
msgstr "
|
|
202
|
+
msgstr ""
|
|
187
203
|
|
|
188
204
|
#. module: account_financial_report
|
|
189
205
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
190
206
|
msgid ""
|
|
191
207
|
"Age ≤ 60\n"
|
|
192
|
-
"
|
|
208
|
+
" d."
|
|
193
209
|
msgstr ""
|
|
194
|
-
"Leeftijd ≤ 60\n"
|
|
195
|
-
" d."
|
|
196
210
|
|
|
197
211
|
#. module: account_financial_report
|
|
212
|
+
#. odoo-python
|
|
198
213
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
199
|
-
#, python-format
|
|
200
214
|
msgid "Age ≤ 60 d."
|
|
201
|
-
msgstr "
|
|
215
|
+
msgstr ""
|
|
202
216
|
|
|
203
217
|
#. module: account_financial_report
|
|
204
218
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
205
219
|
msgid ""
|
|
206
220
|
"Age ≤ 90\n"
|
|
207
|
-
"
|
|
221
|
+
" d."
|
|
208
222
|
msgstr ""
|
|
209
|
-
"Leeftijd ≤ 90\n"
|
|
210
|
-
" d."
|
|
211
223
|
|
|
212
224
|
#. module: account_financial_report
|
|
225
|
+
#. odoo-python
|
|
213
226
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
214
|
-
#, python-format
|
|
215
227
|
msgid "Age ≤ 90 d."
|
|
216
|
-
msgstr "
|
|
228
|
+
msgstr ""
|
|
217
229
|
|
|
218
230
|
#. module: account_financial_report
|
|
231
|
+
#. odoo-python
|
|
219
232
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
220
233
|
#: model:ir.actions.act_window,name:account_financial_report.action_aged_partner_balance_wizard
|
|
221
234
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_aged_partner_balance_html
|
|
222
235
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_aged_partner_balance_qweb
|
|
223
236
|
#: model:ir.ui.menu,name:account_financial_report.menu_aged_partner_balance_wizard
|
|
224
|
-
#, python-format
|
|
225
237
|
msgid "Aged Partner Balance"
|
|
226
238
|
msgstr "Ouderdomsanalyse"
|
|
227
239
|
|
|
228
240
|
#. module: account_financial_report
|
|
229
241
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_base
|
|
230
|
-
#, fuzzy
|
|
231
242
|
msgid "Aged Partner Balance -"
|
|
232
|
-
msgstr "Ouderdomsanalyse"
|
|
243
|
+
msgstr "Ouderdomsanalyse -"
|
|
233
244
|
|
|
234
245
|
#. module: account_financial_report
|
|
235
246
|
#: model:ir.model,name:account_financial_report.model_report_account_financial_report_aged_partner_balance
|
|
236
|
-
#, fuzzy
|
|
237
247
|
msgid "Aged Partner Balance Report"
|
|
238
248
|
msgstr "Ouderdomsanalyse"
|
|
239
249
|
|
|
@@ -244,7 +254,6 @@ msgstr "Ouderdomsanalyse Wizard"
|
|
|
244
254
|
|
|
245
255
|
#. module: account_financial_report
|
|
246
256
|
#: model:ir.model,name:account_financial_report.model_report_a_f_r_report_aged_partner_balance_xlsx
|
|
247
|
-
#, fuzzy
|
|
248
257
|
msgid "Aged Partner Balance XLSL Report"
|
|
249
258
|
msgstr "Ouderdomsanalyse XLSX"
|
|
250
259
|
|
|
@@ -254,8 +263,8 @@ msgid "Aged Partner Balance XLSX"
|
|
|
254
263
|
msgstr "Ouderdomsanalyse XLSX"
|
|
255
264
|
|
|
256
265
|
#. module: account_financial_report
|
|
266
|
+
#. odoo-python
|
|
257
267
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
258
|
-
#, python-format
|
|
259
268
|
msgid "All"
|
|
260
269
|
msgstr "Alle"
|
|
261
270
|
|
|
@@ -278,6 +287,7 @@ msgid "All Posted Entries"
|
|
|
278
287
|
msgstr "Alle Geboekte Regels"
|
|
279
288
|
|
|
280
289
|
#. module: account_financial_report
|
|
290
|
+
#. odoo-python
|
|
281
291
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
282
292
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
283
293
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
@@ -286,11 +296,11 @@ msgstr "Alle Geboekte Regels"
|
|
|
286
296
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
287
297
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
288
298
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
289
|
-
#, python-format
|
|
290
299
|
msgid "All entries"
|
|
291
300
|
msgstr "Alle regels"
|
|
292
301
|
|
|
293
302
|
#. module: account_financial_report
|
|
303
|
+
#. odoo-python
|
|
294
304
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
295
305
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
296
306
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
@@ -299,7 +309,6 @@ msgstr "Alle regels"
|
|
|
299
309
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
300
310
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
301
311
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
302
|
-
#, python-format
|
|
303
312
|
msgid "All posted entries"
|
|
304
313
|
msgstr "Alle geboekte regels"
|
|
305
314
|
|
|
@@ -309,24 +318,30 @@ msgid "Amount Cur."
|
|
|
309
318
|
msgstr "Valutabedrag."
|
|
310
319
|
|
|
311
320
|
#. module: account_financial_report
|
|
321
|
+
#. odoo-python
|
|
312
322
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
313
|
-
#, python-format
|
|
314
323
|
msgid "Amount Currency"
|
|
315
324
|
msgstr "Valutabedrag"
|
|
316
325
|
|
|
317
326
|
#. module: account_financial_report
|
|
327
|
+
#. odoo-python
|
|
318
328
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
319
329
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
320
|
-
#, python-format
|
|
321
330
|
msgid "Amount cur."
|
|
322
331
|
msgstr "Valutabedrag."
|
|
323
332
|
|
|
324
333
|
#. module: account_financial_report
|
|
334
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_move_line__analytic_account_ids
|
|
335
|
+
#: model:ir.model.fields.selection,name:account_financial_report.selection__trial_balance_report_wizard__grouped_by__analytic_account
|
|
336
|
+
msgid "Analytic Account"
|
|
337
|
+
msgstr "Analytische Rekening"
|
|
338
|
+
|
|
339
|
+
#. module: account_financial_report
|
|
340
|
+
#. odoo-python
|
|
325
341
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
326
342
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
msgstr "Filter Rekening"
|
|
343
|
+
msgid "Analytic Distribution"
|
|
344
|
+
msgstr "Analytische verdeling"
|
|
330
345
|
|
|
331
346
|
#. module: account_financial_report
|
|
332
347
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
|
|
@@ -341,20 +356,20 @@ msgid "Base Amount"
|
|
|
341
356
|
msgstr "Basisbedrag"
|
|
342
357
|
|
|
343
358
|
#. module: account_financial_report
|
|
359
|
+
#. odoo-python
|
|
344
360
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
345
|
-
#, python-format
|
|
346
361
|
msgid "Base Balance"
|
|
347
362
|
msgstr "Balans"
|
|
348
363
|
|
|
349
364
|
#. module: account_financial_report
|
|
365
|
+
#. odoo-python
|
|
350
366
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
351
|
-
#, python-format
|
|
352
367
|
msgid "Base Credit"
|
|
353
368
|
msgstr "Balans Credit"
|
|
354
369
|
|
|
355
370
|
#. module: account_financial_report
|
|
371
|
+
#. odoo-python
|
|
356
372
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
357
|
-
#, python-format
|
|
358
373
|
msgid "Base Debit"
|
|
359
374
|
msgstr "Balans Debet"
|
|
360
375
|
|
|
@@ -365,8 +380,8 @@ msgid "Based On"
|
|
|
365
380
|
msgstr "Gebaseerd op"
|
|
366
381
|
|
|
367
382
|
#. module: account_financial_report
|
|
383
|
+
#. odoo-python
|
|
368
384
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
369
|
-
#, python-format
|
|
370
385
|
msgid "Based on"
|
|
371
386
|
msgstr "Gebaseerd op"
|
|
372
387
|
|
|
@@ -381,9 +396,9 @@ msgid "Cancel"
|
|
|
381
396
|
msgstr "Annuleren"
|
|
382
397
|
|
|
383
398
|
#. module: account_financial_report
|
|
399
|
+
#. odoo-python
|
|
384
400
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
385
401
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
386
|
-
#, python-format
|
|
387
402
|
msgid "Centralize filter"
|
|
388
403
|
msgstr "Centralisatie filter"
|
|
389
404
|
|
|
@@ -392,27 +407,24 @@ msgstr "Centralisatie filter"
|
|
|
392
407
|
msgid "Centralized"
|
|
393
408
|
msgstr "Gecentraliseerd"
|
|
394
409
|
|
|
395
|
-
#. module: account_financial_report
|
|
396
|
-
#: model:ir.model.fields.selection,name:account_financial_report.selection__trial_balance_report_wizard__hierarchy_on__relation
|
|
397
|
-
msgid "Child Accounts"
|
|
398
|
-
msgstr "Onderliggende rekeningen"
|
|
399
|
-
|
|
400
410
|
#. module: account_financial_report
|
|
401
411
|
#: model:ir.model.fields,field_description:account_financial_report.field_account_group__group_child_ids
|
|
402
412
|
msgid "Child Groups"
|
|
403
413
|
msgstr "Onderliggende groepen"
|
|
404
414
|
|
|
405
415
|
#. module: account_financial_report
|
|
416
|
+
#. odoo-python
|
|
406
417
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
407
418
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
408
419
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
409
420
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
410
|
-
#, python-format
|
|
411
421
|
msgid "Code"
|
|
412
422
|
msgstr "Code"
|
|
413
423
|
|
|
414
424
|
#. module: account_financial_report
|
|
425
|
+
#. odoo-python
|
|
415
426
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
427
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__company_id
|
|
416
428
|
#: model:ir.model.fields,field_description:account_financial_report.field_account_financial_report_abstract_wizard__company_id
|
|
417
429
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__company_id
|
|
418
430
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__company_id
|
|
@@ -420,35 +432,27 @@ msgstr "Code"
|
|
|
420
432
|
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__company_id
|
|
421
433
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__company_id
|
|
422
434
|
#: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__company_id
|
|
423
|
-
#, python-format
|
|
424
435
|
msgid "Company"
|
|
425
436
|
msgstr "Bedrijf"
|
|
426
437
|
|
|
427
438
|
#. module: account_financial_report
|
|
428
439
|
#: model:ir.model.fields,field_description:account_financial_report.field_account_group__compute_account_ids
|
|
429
|
-
#, fuzzy
|
|
430
440
|
msgid "Compute accounts"
|
|
431
|
-
msgstr "
|
|
441
|
+
msgstr "Bereken rekeningen"
|
|
432
442
|
|
|
433
443
|
#. module: account_financial_report
|
|
434
|
-
#: model:ir.model
|
|
435
|
-
msgid "
|
|
436
|
-
msgstr "
|
|
444
|
+
#: model:ir.model,name:account_financial_report.model_res_config_settings
|
|
445
|
+
msgid "Config Settings"
|
|
446
|
+
msgstr ""
|
|
437
447
|
|
|
438
448
|
#. module: account_financial_report
|
|
439
|
-
#:
|
|
440
|
-
msgid ""
|
|
441
|
-
"Computed Accounts: Use when the account group have codes\n"
|
|
442
|
-
" that represent prefixes of the actual accounts.\n"
|
|
443
|
-
"\n"
|
|
444
|
-
" Child Accounts: Use when your account groups are hierarchical.\n"
|
|
445
|
-
"\n"
|
|
446
|
-
" No hierarchy: Use to display just the accounts, without any "
|
|
447
|
-
"grouping.\n"
|
|
448
|
-
" "
|
|
449
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
450
|
+
msgid "Configurations"
|
|
449
451
|
msgstr ""
|
|
450
452
|
|
|
451
453
|
#. module: account_financial_report
|
|
454
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__create_uid
|
|
455
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__create_uid
|
|
452
456
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__create_uid
|
|
453
457
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__create_uid
|
|
454
458
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__create_uid
|
|
@@ -456,9 +460,11 @@ msgstr ""
|
|
|
456
460
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__create_uid
|
|
457
461
|
#: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__create_uid
|
|
458
462
|
msgid "Created by"
|
|
459
|
-
msgstr "
|
|
463
|
+
msgstr "Gecre??erd door"
|
|
460
464
|
|
|
461
465
|
#. module: account_financial_report
|
|
466
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__create_date
|
|
467
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__create_date
|
|
462
468
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__create_date
|
|
463
469
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__create_date
|
|
464
470
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__create_date
|
|
@@ -466,9 +472,10 @@ msgstr "Gecreëerd door"
|
|
|
466
472
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__create_date
|
|
467
473
|
#: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__create_date
|
|
468
474
|
msgid "Created on"
|
|
469
|
-
msgstr "
|
|
475
|
+
msgstr "Gecre??erd op"
|
|
470
476
|
|
|
471
477
|
#. module: account_financial_report
|
|
478
|
+
#. odoo-python
|
|
472
479
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
473
480
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
474
481
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
@@ -477,57 +484,61 @@ msgstr "Gecreëerd op"
|
|
|
477
484
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
478
485
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
479
486
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
480
|
-
#, python-format
|
|
481
487
|
msgid "Credit"
|
|
482
488
|
msgstr "Credit"
|
|
483
489
|
|
|
484
490
|
#. module: account_financial_report
|
|
491
|
+
#. odoo-python
|
|
492
|
+
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
493
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
494
|
+
#, fuzzy
|
|
495
|
+
msgid "Cumul cur."
|
|
496
|
+
msgstr "Cumul cur."
|
|
497
|
+
|
|
498
|
+
#. module: account_financial_report
|
|
499
|
+
#. odoo-python
|
|
485
500
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
486
501
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
487
|
-
#, python-format
|
|
488
502
|
msgid "Cumul. Bal."
|
|
489
503
|
msgstr "Cumulatief Bal."
|
|
490
504
|
|
|
491
505
|
#. module: account_financial_report
|
|
492
|
-
|
|
506
|
+
#. odoo-python
|
|
493
507
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
494
|
-
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
495
|
-
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
496
508
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
497
509
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
498
|
-
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
499
|
-
#, python-format
|
|
500
510
|
msgid "Cur."
|
|
501
511
|
msgstr "Huidig."
|
|
502
512
|
|
|
503
513
|
#. module: account_financial_report
|
|
514
|
+
#. odoo-python
|
|
504
515
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
505
516
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
506
|
-
#, python-format
|
|
507
517
|
msgid "Cur. Original"
|
|
508
518
|
msgstr "Huidig. Origineel"
|
|
509
519
|
|
|
510
520
|
#. module: account_financial_report
|
|
521
|
+
#. odoo-python
|
|
511
522
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
512
523
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
513
|
-
#, python-format
|
|
514
524
|
msgid "Cur. Residual"
|
|
515
525
|
msgstr "Huidig. Rest"
|
|
516
526
|
|
|
517
527
|
#. module: account_financial_report
|
|
528
|
+
#. odoo-python
|
|
518
529
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
519
|
-
#, python-format
|
|
520
530
|
msgid "Currency"
|
|
521
531
|
msgstr "Valuta"
|
|
522
532
|
|
|
523
533
|
#. module: account_financial_report
|
|
534
|
+
#. odoo-python
|
|
524
535
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
525
536
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
526
|
-
#, python-format
|
|
527
537
|
msgid "Current"
|
|
528
538
|
msgstr "Huidig"
|
|
529
539
|
|
|
530
540
|
#. module: account_financial_report
|
|
541
|
+
#. odoo-python
|
|
531
542
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
532
543
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
533
544
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
@@ -537,7 +548,6 @@ msgstr "Huidig"
|
|
|
537
548
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
538
549
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
539
550
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
540
|
-
#, python-format
|
|
541
551
|
msgid "Date"
|
|
542
552
|
msgstr "Datum"
|
|
543
553
|
|
|
@@ -564,17 +574,17 @@ msgid "Date To"
|
|
|
564
574
|
msgstr "Datum tot"
|
|
565
575
|
|
|
566
576
|
#. module: account_financial_report
|
|
577
|
+
#. odoo-python
|
|
567
578
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
568
579
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
569
580
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_filters
|
|
570
581
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
571
|
-
#, python-format
|
|
572
582
|
msgid "Date at filter"
|
|
573
583
|
msgstr "Datum van filter"
|
|
574
584
|
|
|
575
585
|
#. module: account_financial_report
|
|
586
|
+
#. odoo-python
|
|
576
587
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
577
|
-
#, python-format
|
|
578
588
|
msgid "Date from"
|
|
579
589
|
msgstr "Datum vanaf"
|
|
580
590
|
|
|
@@ -587,22 +597,23 @@ msgid "Date range"
|
|
|
587
597
|
msgstr "Datumreeks"
|
|
588
598
|
|
|
589
599
|
#. module: account_financial_report
|
|
600
|
+
#. odoo-python
|
|
590
601
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
591
602
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
592
603
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
593
604
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
594
605
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
595
|
-
#, python-format
|
|
596
606
|
msgid "Date range filter"
|
|
597
607
|
msgstr "Datumreeks filter"
|
|
598
608
|
|
|
599
609
|
#. module: account_financial_report
|
|
610
|
+
#. odoo-python
|
|
600
611
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
601
|
-
#, python-format
|
|
602
612
|
msgid "Date to"
|
|
603
613
|
msgstr "Datum vanaf"
|
|
604
614
|
|
|
605
615
|
#. module: account_financial_report
|
|
616
|
+
#. odoo-python
|
|
606
617
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
607
618
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
608
619
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
@@ -611,15 +622,14 @@ msgstr "Datum vanaf"
|
|
|
611
622
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
612
623
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
613
624
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
614
|
-
#, python-format
|
|
615
625
|
msgid "Debit"
|
|
616
626
|
msgstr "Debet"
|
|
617
627
|
|
|
618
628
|
#. module: account_financial_report
|
|
629
|
+
#. odoo-python
|
|
619
630
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
620
631
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
|
|
621
632
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
622
|
-
#, python-format
|
|
623
633
|
msgid "Description"
|
|
624
634
|
msgstr "Omschrijving"
|
|
625
635
|
|
|
@@ -629,29 +639,12 @@ msgid "Detail Taxes"
|
|
|
629
639
|
msgstr "Detail belastingen"
|
|
630
640
|
|
|
631
641
|
#. module: account_financial_report
|
|
632
|
-
#: model:ir.model.fields,field_description:account_financial_report.
|
|
633
|
-
#: model:ir.model.fields,field_description:account_financial_report.
|
|
634
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_account_group__display_name
|
|
635
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_account_move_line__display_name
|
|
642
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__display_name
|
|
643
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__display_name
|
|
636
644
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__display_name
|
|
637
645
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__display_name
|
|
638
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_ir_actions_report__display_name
|
|
639
646
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__display_name
|
|
640
647
|
#: 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_report_a_f_r_report_aged_partner_balance_xlsx__display_name
|
|
642
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_general_ledger_xlsx__display_name
|
|
643
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_journal_ledger_xlsx__display_name
|
|
644
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_open_items_xlsx__display_name
|
|
645
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_trial_balance_xlsx__display_name
|
|
646
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_vat_report_xlsx__display_name
|
|
647
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_abstract_report__display_name
|
|
648
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_abstract_report_xlsx__display_name
|
|
649
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_aged_partner_balance__display_name
|
|
650
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_general_ledger__display_name
|
|
651
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_journal_ledger__display_name
|
|
652
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_open_items__display_name
|
|
653
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_trial_balance__display_name
|
|
654
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_vat_report__display_name
|
|
655
648
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__display_name
|
|
656
649
|
#: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__display_name
|
|
657
650
|
msgid "Display Name"
|
|
@@ -686,7 +679,6 @@ msgstr ""
|
|
|
686
679
|
|
|
687
680
|
#. module: account_financial_report
|
|
688
681
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
689
|
-
#, fuzzy
|
|
690
682
|
msgid ""
|
|
691
683
|
"Due\n"
|
|
692
684
|
" date"
|
|
@@ -695,9 +687,9 @@ msgstr ""
|
|
|
695
687
|
" datum"
|
|
696
688
|
|
|
697
689
|
#. module: account_financial_report
|
|
690
|
+
#. odoo-python
|
|
698
691
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
699
692
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
700
|
-
#, python-format
|
|
701
693
|
msgid "Due date"
|
|
702
694
|
msgstr "Vervaldatum"
|
|
703
695
|
|
|
@@ -726,35 +718,35 @@ msgstr ""
|
|
|
726
718
|
#: model:ir.model.fields,help:account_financial_report.field_open_items_report_wizard__account_code_to
|
|
727
719
|
#: model:ir.model.fields,help:account_financial_report.field_trial_balance_report_wizard__account_code_to
|
|
728
720
|
msgid "Ending account in a range"
|
|
729
|
-
msgstr ""
|
|
721
|
+
msgstr "Laatste rekening in een bereik"
|
|
730
722
|
|
|
731
723
|
#. module: account_financial_report
|
|
724
|
+
#. odoo-python
|
|
732
725
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
733
726
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
734
727
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
735
728
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_ending_cumul
|
|
736
729
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
737
|
-
#, python-format
|
|
738
730
|
msgid "Ending balance"
|
|
739
731
|
msgstr "Eindbalans"
|
|
740
732
|
|
|
741
733
|
#. module: account_financial_report
|
|
742
734
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
743
|
-
#, fuzzy
|
|
744
735
|
msgid ""
|
|
745
736
|
"Ending balance\n"
|
|
746
737
|
" cur."
|
|
747
738
|
msgstr ""
|
|
748
739
|
"Eind\n"
|
|
749
|
-
" balans"
|
|
740
|
+
" balans."
|
|
750
741
|
|
|
751
742
|
#. module: account_financial_report
|
|
743
|
+
#. odoo-python
|
|
752
744
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
753
|
-
#, python-format
|
|
754
745
|
msgid "Entries sorted by"
|
|
755
746
|
msgstr "Regels gesorteerd op"
|
|
756
747
|
|
|
757
748
|
#. module: account_financial_report
|
|
749
|
+
#. odoo-python
|
|
758
750
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
759
751
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
760
752
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
@@ -763,20 +755,18 @@ msgstr "Regels gesorteerd op"
|
|
|
763
755
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
764
756
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
765
757
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
766
|
-
#, python-format
|
|
767
758
|
msgid "Entry"
|
|
768
759
|
msgstr "Boeking"
|
|
769
760
|
|
|
770
761
|
#. module: account_financial_report
|
|
762
|
+
#. odoo-python
|
|
771
763
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
772
|
-
#, python-format
|
|
773
764
|
msgid "Entry number"
|
|
774
765
|
msgstr "Boekingsnummer"
|
|
775
766
|
|
|
776
767
|
#. module: account_financial_report
|
|
777
|
-
#.
|
|
768
|
+
#. odoo-javascript
|
|
778
769
|
#: code:addons/account_financial_report/static/src/xml/report.xml:0
|
|
779
|
-
#, python-format
|
|
780
770
|
msgid "Export"
|
|
781
771
|
msgstr "Export"
|
|
782
772
|
|
|
@@ -814,13 +804,6 @@ msgstr "Filter rekeningen"
|
|
|
814
804
|
msgid "Filter analytic accounts"
|
|
815
805
|
msgstr "Filter kostenplaatsen"
|
|
816
806
|
|
|
817
|
-
#. module: account_financial_report
|
|
818
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__analytic_tag_ids
|
|
819
|
-
#: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
|
|
820
|
-
#, fuzzy
|
|
821
|
-
msgid "Filter analytic tags"
|
|
822
|
-
msgstr "Filter rekeningen"
|
|
823
|
-
|
|
824
807
|
#. module: account_financial_report
|
|
825
808
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__cost_center_ids
|
|
826
809
|
msgid "Filter cost centers"
|
|
@@ -845,14 +828,18 @@ msgstr "Relatieselectie"
|
|
|
845
828
|
msgid "Foreign Currency"
|
|
846
829
|
msgstr "Buitenlandse valuta"
|
|
847
830
|
|
|
831
|
+
#. module: account_financial_report
|
|
832
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
|
|
833
|
+
msgid "Format"
|
|
834
|
+
msgstr ""
|
|
835
|
+
|
|
848
836
|
#. module: account_financial_report
|
|
849
837
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.aged_partner_balance_wizard
|
|
850
838
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
|
|
851
839
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.open_items_wizard
|
|
852
840
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.trial_balance_wizard
|
|
853
|
-
#, fuzzy
|
|
854
841
|
msgid "From Code"
|
|
855
|
-
msgstr "Code"
|
|
842
|
+
msgstr "Code Vanaf"
|
|
856
843
|
|
|
857
844
|
#. module: account_financial_report
|
|
858
845
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
@@ -861,24 +848,22 @@ msgid "From:"
|
|
|
861
848
|
msgstr "Van:"
|
|
862
849
|
|
|
863
850
|
#. module: account_financial_report
|
|
851
|
+
#. odoo-python
|
|
864
852
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
865
853
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
866
854
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
msgstr "Van: %s Tot: %s"
|
|
855
|
+
msgid "From: %(date_from)s To: %(date_to)s"
|
|
856
|
+
msgstr "Van: %(date_from)s Tot: %(date_to)s"
|
|
870
857
|
|
|
871
858
|
#. module: account_financial_report
|
|
872
859
|
#: model:ir.model.fields,field_description:account_financial_report.field_account_group__complete_code
|
|
873
|
-
#, fuzzy
|
|
874
860
|
msgid "Full Code"
|
|
875
|
-
msgstr "Code"
|
|
861
|
+
msgstr "Volledige Code"
|
|
876
862
|
|
|
877
863
|
#. module: account_financial_report
|
|
878
864
|
#: model:ir.model.fields,field_description:account_financial_report.field_account_group__complete_name
|
|
879
|
-
#, fuzzy
|
|
880
865
|
msgid "Full Name"
|
|
881
|
-
msgstr "Naam"
|
|
866
|
+
msgstr "Volledige Naam"
|
|
882
867
|
|
|
883
868
|
#. module: account_financial_report
|
|
884
869
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__fy_start_date
|
|
@@ -887,27 +872,25 @@ msgid "Fy Start Date"
|
|
|
887
872
|
msgstr "Fj startdatum"
|
|
888
873
|
|
|
889
874
|
#. module: account_financial_report
|
|
875
|
+
#. odoo-python
|
|
890
876
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
891
877
|
#: model:ir.actions.act_window,name:account_financial_report.act_action_general_ledger_wizard_partner_relation
|
|
892
878
|
#: model:ir.actions.act_window,name:account_financial_report.action_general_ledger_wizard
|
|
893
879
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_general_ledger_html
|
|
894
880
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_general_ledger_qweb
|
|
895
881
|
#: model:ir.ui.menu,name:account_financial_report.menu_general_ledger_wizard
|
|
896
|
-
#, python-format
|
|
897
882
|
msgid "General Ledger"
|
|
898
883
|
msgstr "Grootboek"
|
|
899
884
|
|
|
900
885
|
#. module: account_financial_report
|
|
901
886
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_base
|
|
902
|
-
#, fuzzy
|
|
903
887
|
msgid "General Ledger -"
|
|
904
|
-
msgstr "Grootboek"
|
|
888
|
+
msgstr "Grootboek -"
|
|
905
889
|
|
|
906
890
|
#. module: account_financial_report
|
|
907
891
|
#: model:ir.model,name:account_financial_report.model_report_account_financial_report_general_ledger
|
|
908
|
-
#, fuzzy
|
|
909
892
|
msgid "General Ledger Report"
|
|
910
|
-
msgstr "Grootboekbalans
|
|
893
|
+
msgstr "Grootboekbalans Rapport"
|
|
911
894
|
|
|
912
895
|
#. module: account_financial_report
|
|
913
896
|
#: model:ir.model,name:account_financial_report.model_general_ledger_report_wizard
|
|
@@ -916,9 +899,8 @@ msgstr "Grootboekbalans rapport wizard"
|
|
|
916
899
|
|
|
917
900
|
#. module: account_financial_report
|
|
918
901
|
#: model:ir.model,name:account_financial_report.model_report_a_f_r_report_general_ledger_xlsx
|
|
919
|
-
#, fuzzy
|
|
920
902
|
msgid "General Ledger XLSL Report"
|
|
921
|
-
msgstr "
|
|
903
|
+
msgstr "Grootboekbalans XLSX"
|
|
922
904
|
|
|
923
905
|
#. module: account_financial_report
|
|
924
906
|
#: model:ir.actions.report,name:account_financial_report.action_report_general_ledger_xlsx
|
|
@@ -931,6 +913,8 @@ msgid ""
|
|
|
931
913
|
"General Ledger can be computed only if selected company have\n"
|
|
932
914
|
" only one unaffected earnings account."
|
|
933
915
|
msgstr ""
|
|
916
|
+
"Grootboek kan alleen worden berekend als het geselecteerde bedrijf\n"
|
|
917
|
+
" slechts ????n niet-be??nvloede winstrekening heeft."
|
|
934
918
|
|
|
935
919
|
#. module: account_financial_report
|
|
936
920
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__group_option
|
|
@@ -938,13 +922,26 @@ msgid "Group entries by"
|
|
|
938
922
|
msgstr "Groepeer boekingen per"
|
|
939
923
|
|
|
940
924
|
#. module: account_financial_report
|
|
925
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__grouped_by
|
|
926
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__grouped_by
|
|
927
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__grouped_by
|
|
928
|
+
msgid "Grouped By"
|
|
929
|
+
msgstr "Gegroepeerd op"
|
|
930
|
+
|
|
931
|
+
#. module: account_financial_report
|
|
932
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
933
|
+
msgid ""
|
|
934
|
+
"Here you can set the intervals that will appear on the Aged Partner Balance."
|
|
935
|
+
msgstr ""
|
|
936
|
+
|
|
937
|
+
#. module: account_financial_report
|
|
938
|
+
#. odoo-python
|
|
941
939
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
942
940
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
943
941
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
944
942
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
945
943
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
946
944
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
947
|
-
#, python-format
|
|
948
945
|
msgid "Hide"
|
|
949
946
|
msgstr "Verbergen"
|
|
950
947
|
|
|
@@ -956,9 +953,8 @@ msgstr "Verberg rekeningen eindigend met balans 0"
|
|
|
956
953
|
|
|
957
954
|
#. module: account_financial_report
|
|
958
955
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__hide_account_at_0
|
|
959
|
-
#, fuzzy
|
|
960
956
|
msgid "Hide accounts at 0"
|
|
961
|
-
msgstr "Verberg rekeningen met balans
|
|
957
|
+
msgstr "Verberg rekeningen met 0 balans"
|
|
962
958
|
|
|
963
959
|
#. module: account_financial_report
|
|
964
960
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__show_hierarchy_level
|
|
@@ -966,34 +962,12 @@ msgid "Hierarchy Levels to display"
|
|
|
966
962
|
msgstr "Hierarchie niveaus om weer te geven"
|
|
967
963
|
|
|
968
964
|
#. module: account_financial_report
|
|
969
|
-
#: model:ir.model.fields,field_description:account_financial_report.
|
|
970
|
-
|
|
971
|
-
msgstr "Hiërarchie aan"
|
|
972
|
-
|
|
973
|
-
#. module: account_financial_report
|
|
974
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_account_account__id
|
|
975
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_account_financial_report_abstract_wizard__id
|
|
976
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_account_group__id
|
|
977
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_account_move_line__id
|
|
965
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__id
|
|
966
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__id
|
|
978
967
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__id
|
|
979
968
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__id
|
|
980
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_ir_actions_report__id
|
|
981
969
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__id
|
|
982
970
|
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__id
|
|
983
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_aged_partner_balance_xlsx__id
|
|
984
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_general_ledger_xlsx__id
|
|
985
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_journal_ledger_xlsx__id
|
|
986
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_open_items_xlsx__id
|
|
987
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_trial_balance_xlsx__id
|
|
988
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_vat_report_xlsx__id
|
|
989
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_abstract_report__id
|
|
990
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_abstract_report_xlsx__id
|
|
991
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_aged_partner_balance__id
|
|
992
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_general_ledger__id
|
|
993
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_journal_ledger__id
|
|
994
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_open_items__id
|
|
995
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_trial_balance__id
|
|
996
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_vat_report__id
|
|
997
971
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__id
|
|
998
972
|
#: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__id
|
|
999
973
|
msgid "ID"
|
|
@@ -1008,15 +982,25 @@ msgstr ""
|
|
|
1008
982
|
"Als dit is geselecteerd, worden er geen details weergegeven in het Grootboek "
|
|
1009
983
|
"rapport (alleen de webkit), enkel gecentraliseerde bedragen per periode."
|
|
1010
984
|
|
|
985
|
+
#. module: account_financial_report
|
|
986
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__inferior_limit
|
|
987
|
+
msgid "Inferior Limit"
|
|
988
|
+
msgstr ""
|
|
989
|
+
|
|
990
|
+
#. module: account_financial_report
|
|
991
|
+
#. odoo-python
|
|
992
|
+
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
993
|
+
msgid "Inferior Limit must be greather than zero"
|
|
994
|
+
msgstr ""
|
|
995
|
+
|
|
1011
996
|
#. module: account_financial_report
|
|
1012
997
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
1013
|
-
#, fuzzy
|
|
1014
998
|
msgid ""
|
|
1015
999
|
"Initial\n"
|
|
1016
1000
|
" balance cur."
|
|
1017
1001
|
msgstr ""
|
|
1018
1002
|
"Begin\n"
|
|
1019
|
-
" balans"
|
|
1003
|
+
" balans."
|
|
1020
1004
|
|
|
1021
1005
|
#. module: account_financial_report
|
|
1022
1006
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
@@ -1028,14 +1012,21 @@ msgstr ""
|
|
|
1028
1012
|
" balans"
|
|
1029
1013
|
|
|
1030
1014
|
#. module: account_financial_report
|
|
1015
|
+
#. odoo-python
|
|
1031
1016
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1032
1017
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1033
1018
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1034
|
-
#, python-format
|
|
1035
1019
|
msgid "Initial balance"
|
|
1036
1020
|
msgstr "Beginbalans"
|
|
1037
1021
|
|
|
1038
1022
|
#. module: account_financial_report
|
|
1023
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__age_partner_config_id
|
|
1024
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_res_config_settings__age_partner_config_id
|
|
1025
|
+
msgid "Intervals configuration"
|
|
1026
|
+
msgstr ""
|
|
1027
|
+
|
|
1028
|
+
#. module: account_financial_report
|
|
1029
|
+
#. odoo-python
|
|
1039
1030
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1040
1031
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1041
1032
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
@@ -1044,41 +1035,37 @@ msgstr "Beginbalans"
|
|
|
1044
1035
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
1045
1036
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1046
1037
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1047
|
-
#, python-format
|
|
1048
1038
|
msgid "Journal"
|
|
1049
1039
|
msgstr "Dagboek"
|
|
1050
1040
|
|
|
1051
1041
|
#. module: account_financial_report
|
|
1052
1042
|
#: model:ir.model,name:account_financial_report.model_account_move_line
|
|
1053
|
-
#, fuzzy
|
|
1054
1043
|
msgid "Journal Item"
|
|
1055
|
-
msgstr "
|
|
1044
|
+
msgstr "Boekingsregel"
|
|
1056
1045
|
|
|
1057
1046
|
#. module: account_financial_report
|
|
1058
1047
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__domain
|
|
1059
1048
|
msgid "Journal Items Domain"
|
|
1060
|
-
msgstr ""
|
|
1049
|
+
msgstr "Boekingsregels Domein"
|
|
1061
1050
|
|
|
1062
1051
|
#. module: account_financial_report
|
|
1052
|
+
#. odoo-python
|
|
1063
1053
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1064
1054
|
#: model:ir.actions.act_window,name:account_financial_report.action_journal_ledger_wizard
|
|
1065
1055
|
#: model:ir.actions.report,name:account_financial_report.action_print_journal_ledger_wizard_html
|
|
1066
1056
|
#: model:ir.ui.menu,name:account_financial_report.menu_journal_ledger_wizard
|
|
1067
|
-
#, python-format
|
|
1068
1057
|
msgid "Journal Ledger"
|
|
1069
1058
|
msgstr "Grootboekbalans"
|
|
1070
1059
|
|
|
1071
1060
|
#. module: account_financial_report
|
|
1072
1061
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_base
|
|
1073
|
-
#, fuzzy
|
|
1074
1062
|
msgid "Journal Ledger -"
|
|
1075
|
-
msgstr "Grootboekbalans"
|
|
1063
|
+
msgstr "Grootboekbalans -"
|
|
1076
1064
|
|
|
1077
1065
|
#. module: account_financial_report
|
|
1078
1066
|
#: model:ir.model,name:account_financial_report.model_report_account_financial_report_journal_ledger
|
|
1079
|
-
#, fuzzy
|
|
1080
1067
|
msgid "Journal Ledger Report"
|
|
1081
|
-
msgstr "Grootboekbalans Rapport
|
|
1068
|
+
msgstr "Grootboekbalans Rapport"
|
|
1082
1069
|
|
|
1083
1070
|
#. module: account_financial_report
|
|
1084
1071
|
#: model:ir.model,name:account_financial_report.model_journal_ledger_report_wizard
|
|
@@ -1092,48 +1079,31 @@ msgstr "Grootboekbalans XLSX"
|
|
|
1092
1079
|
|
|
1093
1080
|
#. module: account_financial_report
|
|
1094
1081
|
#: model:ir.model,name:account_financial_report.model_report_a_f_r_report_journal_ledger_xlsx
|
|
1095
|
-
#, fuzzy
|
|
1096
1082
|
msgid "Journal Ledger XLSX Report"
|
|
1097
1083
|
msgstr "Grootboekbalans XLSX"
|
|
1098
1084
|
|
|
1099
1085
|
#. module: account_financial_report
|
|
1086
|
+
#. odoo-python
|
|
1100
1087
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1101
1088
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__journal_ids
|
|
1102
1089
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.journal_ledger_wizard
|
|
1103
|
-
#, python-format
|
|
1104
1090
|
msgid "Journals"
|
|
1105
1091
|
msgstr "Dagboeken"
|
|
1106
1092
|
|
|
1107
1093
|
#. module: account_financial_report
|
|
1108
|
-
#: model:ir.model.fields,field_description:account_financial_report.
|
|
1109
|
-
#: model:ir.model.fields,field_description:account_financial_report.
|
|
1110
|
-
#: model:ir.model.fields,field_description:account_financial_report.
|
|
1111
|
-
#: model:ir.model.fields,field_description:account_financial_report.
|
|
1112
|
-
#: model:ir.model.fields,field_description:account_financial_report.
|
|
1113
|
-
#: model:ir.model.fields,field_description:account_financial_report.
|
|
1114
|
-
#: model:ir.model.fields,field_description:account_financial_report.
|
|
1115
|
-
|
|
1116
|
-
|
|
1117
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_aged_partner_balance_xlsx____last_update
|
|
1118
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_general_ledger_xlsx____last_update
|
|
1119
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_journal_ledger_xlsx____last_update
|
|
1120
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_open_items_xlsx____last_update
|
|
1121
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_trial_balance_xlsx____last_update
|
|
1122
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_vat_report_xlsx____last_update
|
|
1123
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_abstract_report____last_update
|
|
1124
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_abstract_report_xlsx____last_update
|
|
1125
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_aged_partner_balance____last_update
|
|
1126
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_general_ledger____last_update
|
|
1127
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_journal_ledger____last_update
|
|
1128
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_open_items____last_update
|
|
1129
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_trial_balance____last_update
|
|
1130
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_vat_report____last_update
|
|
1131
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard____last_update
|
|
1132
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard____last_update
|
|
1133
|
-
msgid "Last Modified on"
|
|
1134
|
-
msgstr "Laatst Gewijzigd op"
|
|
1094
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_financial_report_abstract_wizard__label_text_limit
|
|
1095
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__label_text_limit
|
|
1096
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__label_text_limit
|
|
1097
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__label_text_limit
|
|
1098
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__label_text_limit
|
|
1099
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__label_text_limit
|
|
1100
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__label_text_limit
|
|
1101
|
+
msgid "Label Text Limit"
|
|
1102
|
+
msgstr ""
|
|
1135
1103
|
|
|
1136
1104
|
#. module: account_financial_report
|
|
1105
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__write_uid
|
|
1106
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__write_uid
|
|
1137
1107
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__write_uid
|
|
1138
1108
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__write_uid
|
|
1139
1109
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__write_uid
|
|
@@ -1144,6 +1114,8 @@ msgid "Last Updated by"
|
|
|
1144
1114
|
msgstr "Laatst bijgewerkt door"
|
|
1145
1115
|
|
|
1146
1116
|
#. module: account_financial_report
|
|
1117
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__write_date
|
|
1118
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__write_date
|
|
1147
1119
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__write_date
|
|
1148
1120
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__write_date
|
|
1149
1121
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__write_date
|
|
@@ -1160,19 +1132,49 @@ msgid "Level"
|
|
|
1160
1132
|
msgstr "Niveau"
|
|
1161
1133
|
|
|
1162
1134
|
#. module: account_financial_report
|
|
1135
|
+
#. odoo-python
|
|
1163
1136
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1164
|
-
#, python-format
|
|
1165
1137
|
msgid "Level %s"
|
|
1166
1138
|
msgstr "Niveau %s"
|
|
1167
1139
|
|
|
1168
1140
|
#. module: account_financial_report
|
|
1141
|
+
#. odoo-python
|
|
1169
1142
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1170
1143
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__limit_hierarchy_level
|
|
1171
1144
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1172
|
-
#, python-format
|
|
1173
1145
|
msgid "Limit hierarchy levels"
|
|
1174
1146
|
msgstr "beperk hirarchie niveaus"
|
|
1175
1147
|
|
|
1148
|
+
#. module: account_financial_report
|
|
1149
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__line_ids
|
|
1150
|
+
msgid "Line"
|
|
1151
|
+
msgstr "Regel"
|
|
1152
|
+
|
|
1153
|
+
#. module: account_financial_report
|
|
1154
|
+
#. odoo-python
|
|
1155
|
+
#: code:addons/account_financial_report/report/general_ledger.py:0
|
|
1156
|
+
#: code:addons/account_financial_report/report/open_items.py:0
|
|
1157
|
+
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1158
|
+
#: code:addons/account_financial_report/report/trial_balance.py:0
|
|
1159
|
+
msgid "Missing Partner"
|
|
1160
|
+
msgstr ""
|
|
1161
|
+
|
|
1162
|
+
#. module: account_financial_report
|
|
1163
|
+
#. odoo-python
|
|
1164
|
+
#: code:addons/account_financial_report/report/open_items.py:0
|
|
1165
|
+
msgid "Missing Salesperson"
|
|
1166
|
+
msgstr ""
|
|
1167
|
+
|
|
1168
|
+
#. module: account_financial_report
|
|
1169
|
+
#: model:ir.model,name:account_financial_report.model_account_age_report_configuration_line
|
|
1170
|
+
msgid "Model to set interval lines for Age partner balance report"
|
|
1171
|
+
msgstr ""
|
|
1172
|
+
|
|
1173
|
+
#. module: account_financial_report
|
|
1174
|
+
#: model:ir.model,name:account_financial_report.model_account_age_report_configuration
|
|
1175
|
+
msgid "Model to set intervals for Age partner balance report"
|
|
1176
|
+
msgstr ""
|
|
1177
|
+
|
|
1176
1178
|
#. module: account_financial_report
|
|
1177
1179
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__move_target
|
|
1178
1180
|
msgid "Move Target"
|
|
@@ -1184,52 +1186,65 @@ msgid "Moves"
|
|
|
1184
1186
|
msgstr "Boekingen"
|
|
1185
1187
|
|
|
1186
1188
|
#. module: account_financial_report
|
|
1189
|
+
#. odoo-python
|
|
1190
|
+
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1191
|
+
msgid "Must complete Configuration Lines"
|
|
1192
|
+
msgstr ""
|
|
1193
|
+
|
|
1194
|
+
#. module: account_financial_report
|
|
1195
|
+
#. odoo-python
|
|
1187
1196
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1188
1197
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1198
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__name
|
|
1199
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__name
|
|
1189
1200
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
|
|
1190
1201
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
1191
1202
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
1192
|
-
#, python-format
|
|
1193
1203
|
msgid "Name"
|
|
1194
1204
|
msgstr "Naam"
|
|
1195
1205
|
|
|
1196
1206
|
#. module: account_financial_report
|
|
1207
|
+
#: model:ir.model.constraint,message:account_financial_report.constraint_account_age_report_configuration_line_unique_name_config_combination
|
|
1208
|
+
msgid "Name must be unique per report configuration"
|
|
1209
|
+
msgstr ""
|
|
1210
|
+
|
|
1211
|
+
#. module: account_financial_report
|
|
1212
|
+
#. odoo-python
|
|
1197
1213
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1198
1214
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
1199
|
-
#, python-format
|
|
1200
1215
|
msgid "Net"
|
|
1201
1216
|
msgstr "Netto"
|
|
1202
1217
|
|
|
1203
1218
|
#. module: account_financial_report
|
|
1219
|
+
#. odoo-python
|
|
1204
1220
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1205
1221
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1206
1222
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1207
1223
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1208
|
-
#, python-format
|
|
1209
1224
|
msgid "No"
|
|
1210
1225
|
msgstr "Nee"
|
|
1211
1226
|
|
|
1212
1227
|
#. module: account_financial_report
|
|
1228
|
+
#. odoo-python
|
|
1213
1229
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
1214
|
-
#, python-format
|
|
1215
1230
|
msgid "No group"
|
|
1216
1231
|
msgstr "Geen groep"
|
|
1217
1232
|
|
|
1218
1233
|
#. module: account_financial_report
|
|
1219
|
-
|
|
1220
|
-
msgid "No hierarchy"
|
|
1221
|
-
msgstr "Geen Hiërarchie"
|
|
1222
|
-
|
|
1223
|
-
#. module: account_financial_report
|
|
1234
|
+
#. odoo-python
|
|
1224
1235
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1225
1236
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1226
|
-
#, python-format
|
|
1227
1237
|
msgid "No limit"
|
|
1228
1238
|
msgstr "geen limiet"
|
|
1229
1239
|
|
|
1230
1240
|
#. module: account_financial_report
|
|
1241
|
+
#: model:ir.model.fields.selection,name:account_financial_report.selection__general_ledger_report_wizard__grouped_by__none
|
|
1242
|
+
msgid "None"
|
|
1243
|
+
msgstr "Geen"
|
|
1244
|
+
|
|
1245
|
+
#. module: account_financial_report
|
|
1246
|
+
#. odoo-python
|
|
1231
1247
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
1232
|
-
#, python-format
|
|
1233
1248
|
msgid "Not Posted"
|
|
1234
1249
|
msgstr "Ongeboekt"
|
|
1235
1250
|
|
|
@@ -1239,10 +1254,9 @@ msgid "Not due"
|
|
|
1239
1254
|
msgstr "Niet vervallen"
|
|
1240
1255
|
|
|
1241
1256
|
#. module: account_financial_report
|
|
1242
|
-
#:
|
|
1243
|
-
|
|
1244
|
-
|
|
1245
|
-
msgstr "Meer dan één huidige jaarwinst rekening"
|
|
1257
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
1258
|
+
msgid "OCA Aged Report Configuration"
|
|
1259
|
+
msgstr ""
|
|
1246
1260
|
|
|
1247
1261
|
#. module: account_financial_report
|
|
1248
1262
|
#: model:ir.ui.menu,name:account_financial_report.menu_oca_reports
|
|
@@ -1250,39 +1264,42 @@ msgid "OCA accounting reports"
|
|
|
1250
1264
|
msgstr "OCA boekhoudkundige rapporten"
|
|
1251
1265
|
|
|
1252
1266
|
#. module: account_financial_report
|
|
1267
|
+
#. odoo-python
|
|
1253
1268
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1254
1269
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
1255
|
-
#, python-format
|
|
1256
1270
|
msgid "Older"
|
|
1257
1271
|
msgstr "Ouder"
|
|
1258
1272
|
|
|
1259
1273
|
#. module: account_financial_report
|
|
1274
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__only_one_unaffected_earnings_account
|
|
1275
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__only_one_unaffected_earnings_account
|
|
1276
|
+
msgid "Only One Unaffected Earnings Account"
|
|
1277
|
+
msgstr ""
|
|
1278
|
+
|
|
1279
|
+
#. module: account_financial_report
|
|
1280
|
+
#. odoo-python
|
|
1260
1281
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1261
1282
|
#: model:ir.actions.act_window,name:account_financial_report.action_open_items_wizard
|
|
1262
1283
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_open_items_html
|
|
1263
1284
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_open_items_qweb
|
|
1264
1285
|
#: model:ir.ui.menu,name:account_financial_report.menu_open_items_wizard
|
|
1265
|
-
#, python-format
|
|
1266
1286
|
msgid "Open Items"
|
|
1267
1287
|
msgstr "Openstaande posten"
|
|
1268
1288
|
|
|
1269
1289
|
#. module: account_financial_report
|
|
1270
1290
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_base
|
|
1271
|
-
#, fuzzy
|
|
1272
1291
|
msgid "Open Items -"
|
|
1273
|
-
msgstr "Openstaande posten"
|
|
1292
|
+
msgstr "Openstaande posten -"
|
|
1274
1293
|
|
|
1275
1294
|
#. module: account_financial_report
|
|
1276
1295
|
#: model:ir.actions.act_window,name:account_financial_report.act_action_open_items_wizard_partner_relation
|
|
1277
|
-
#, fuzzy
|
|
1278
1296
|
msgid "Open Items Partner"
|
|
1279
|
-
msgstr "Openstaande
|
|
1297
|
+
msgstr "Openstaande Posten Partner"
|
|
1280
1298
|
|
|
1281
1299
|
#. module: account_financial_report
|
|
1282
1300
|
#: model:ir.model,name:account_financial_report.model_report_account_financial_report_open_items
|
|
1283
|
-
#, fuzzy
|
|
1284
1301
|
msgid "Open Items Report"
|
|
1285
|
-
msgstr "Openstaande
|
|
1302
|
+
msgstr "Openstaande Posten Rapport"
|
|
1286
1303
|
|
|
1287
1304
|
#. module: account_financial_report
|
|
1288
1305
|
#: model:ir.model,name:account_financial_report.model_open_items_report_wizard
|
|
@@ -1296,7 +1313,6 @@ msgstr "Openstaande posten XLSX"
|
|
|
1296
1313
|
|
|
1297
1314
|
#. module: account_financial_report
|
|
1298
1315
|
#: model:ir.model,name:account_financial_report.model_report_a_f_r_report_open_items_xlsx
|
|
1299
|
-
#, fuzzy
|
|
1300
1316
|
msgid "Open Items XLSX Report"
|
|
1301
1317
|
msgstr "Openstaande posten XLSX"
|
|
1302
1318
|
|
|
@@ -1306,13 +1322,14 @@ msgid "Options"
|
|
|
1306
1322
|
msgstr "Opties"
|
|
1307
1323
|
|
|
1308
1324
|
#. module: account_financial_report
|
|
1325
|
+
#. odoo-python
|
|
1309
1326
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1310
1327
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1311
|
-
#, python-format
|
|
1312
1328
|
msgid "Original"
|
|
1313
1329
|
msgstr "Origineel"
|
|
1314
1330
|
|
|
1315
1331
|
#. module: account_financial_report
|
|
1332
|
+
#. odoo-python
|
|
1316
1333
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1317
1334
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1318
1335
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
@@ -1324,7 +1341,6 @@ msgstr "Origineel"
|
|
|
1324
1341
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1325
1342
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1326
1343
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
1327
|
-
#, python-format
|
|
1328
1344
|
msgid "Partner"
|
|
1329
1345
|
msgstr "Partner"
|
|
1330
1346
|
|
|
@@ -1338,26 +1354,42 @@ msgstr ""
|
|
|
1338
1354
|
" cumulatief ouderdomsanalyse"
|
|
1339
1355
|
|
|
1340
1356
|
#. module: account_financial_report
|
|
1357
|
+
#. odoo-python
|
|
1341
1358
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1342
|
-
#, python-format
|
|
1343
1359
|
msgid "Partner Initial balance"
|
|
1344
1360
|
msgstr "Relatiebeginsaldo"
|
|
1345
1361
|
|
|
1346
1362
|
#. module: account_financial_report
|
|
1363
|
+
#: model:ir.model.fields.selection,name:account_financial_report.selection__open_items_report_wizard__grouped_by__salesperson
|
|
1364
|
+
msgid "Partner Salesperson"
|
|
1365
|
+
msgstr ""
|
|
1366
|
+
|
|
1367
|
+
#. module: account_financial_report
|
|
1368
|
+
#. odoo-python
|
|
1347
1369
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1348
|
-
#, python-format
|
|
1349
1370
|
msgid "Partner cumul aged balance"
|
|
1350
1371
|
msgstr "Partner cumulatief ouderdomsanalyse"
|
|
1351
1372
|
|
|
1352
1373
|
#. module: account_financial_report
|
|
1374
|
+
#. odoo-python
|
|
1353
1375
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1354
1376
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1355
1377
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_ending_cumul
|
|
1356
1378
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_ending_cumul
|
|
1357
|
-
#, python-format
|
|
1358
1379
|
msgid "Partner ending balance"
|
|
1359
1380
|
msgstr "Partner eindbalans"
|
|
1360
1381
|
|
|
1382
|
+
#. module: account_financial_report
|
|
1383
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1384
|
+
msgid "Partner initial balance"
|
|
1385
|
+
msgstr "Beginbalans partner"
|
|
1386
|
+
|
|
1387
|
+
#. module: account_financial_report
|
|
1388
|
+
#: model:ir.model.fields.selection,name:account_financial_report.selection__general_ledger_report_wizard__grouped_by__partners
|
|
1389
|
+
#: model:ir.model.fields.selection,name:account_financial_report.selection__open_items_report_wizard__grouped_by__partners
|
|
1390
|
+
msgid "Partners"
|
|
1391
|
+
msgstr "Partners"
|
|
1392
|
+
|
|
1361
1393
|
#. module: account_financial_report
|
|
1362
1394
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__payable_accounts_only
|
|
1363
1395
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__payable_accounts_only
|
|
@@ -1372,11 +1404,11 @@ msgid "Percents"
|
|
|
1372
1404
|
msgstr "Percentage"
|
|
1373
1405
|
|
|
1374
1406
|
#. module: account_financial_report
|
|
1407
|
+
#. odoo-python
|
|
1375
1408
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1376
1409
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
1377
|
-
#, fuzzy, python-format
|
|
1378
1410
|
msgid "Period balance"
|
|
1379
|
-
msgstr "
|
|
1411
|
+
msgstr "Periode Balans"
|
|
1380
1412
|
|
|
1381
1413
|
#. module: account_financial_report
|
|
1382
1414
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.journal_ledger_wizard
|
|
@@ -1384,22 +1416,15 @@ msgid "Periods"
|
|
|
1384
1416
|
msgstr "Periodes"
|
|
1385
1417
|
|
|
1386
1418
|
#. module: account_financial_report
|
|
1419
|
+
#. odoo-python
|
|
1387
1420
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
1388
|
-
#, python-format
|
|
1389
1421
|
msgid "Posted"
|
|
1390
1422
|
msgstr "Geboekt"
|
|
1391
1423
|
|
|
1392
1424
|
#. module: account_financial_report
|
|
1393
|
-
#.
|
|
1394
|
-
#: code:addons/account_financial_report/static/src/xml/report.xml:0
|
|
1395
|
-
#, python-format
|
|
1396
|
-
msgid "Print"
|
|
1397
|
-
msgstr "Print"
|
|
1398
|
-
|
|
1399
|
-
#. module: account_financial_report
|
|
1425
|
+
#. odoo-python
|
|
1400
1426
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1401
1427
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1402
|
-
#, python-format
|
|
1403
1428
|
msgid "Rec."
|
|
1404
1429
|
msgstr "Deb."
|
|
1405
1430
|
|
|
@@ -1423,7 +1448,6 @@ msgstr ""
|
|
|
1423
1448
|
|
|
1424
1449
|
#. module: account_financial_report
|
|
1425
1450
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1426
|
-
#, fuzzy
|
|
1427
1451
|
msgid ""
|
|
1428
1452
|
"Ref -\n"
|
|
1429
1453
|
" Label"
|
|
@@ -1432,45 +1456,45 @@ msgstr ""
|
|
|
1432
1456
|
" Label"
|
|
1433
1457
|
|
|
1434
1458
|
#. module: account_financial_report
|
|
1459
|
+
#. odoo-python
|
|
1435
1460
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1436
1461
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1437
1462
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1438
1463
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1439
1464
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1440
|
-
#, python-format
|
|
1441
1465
|
msgid "Ref - Label"
|
|
1442
1466
|
msgstr "Ref - Label"
|
|
1443
1467
|
|
|
1444
1468
|
#. module: account_financial_report
|
|
1445
1469
|
#: model:ir.model,name:account_financial_report.model_ir_actions_report
|
|
1446
1470
|
msgid "Report Action"
|
|
1447
|
-
msgstr ""
|
|
1471
|
+
msgstr "Report Actie"
|
|
1448
1472
|
|
|
1449
1473
|
#. module: account_financial_report
|
|
1474
|
+
#. odoo-python
|
|
1450
1475
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1451
1476
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1452
1477
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_lines_header
|
|
1453
1478
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
1454
1479
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1455
|
-
#, python-format
|
|
1456
1480
|
msgid "Residual"
|
|
1457
1481
|
msgstr "Resterend"
|
|
1458
1482
|
|
|
1459
1483
|
#. module: account_financial_report
|
|
1484
|
+
#. odoo-python
|
|
1460
1485
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1461
1486
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1462
|
-
#, python-format
|
|
1463
1487
|
msgid "Sequence"
|
|
1464
1488
|
msgstr "Volgorde"
|
|
1465
1489
|
|
|
1466
1490
|
#. module: account_financial_report
|
|
1491
|
+
#. odoo-python
|
|
1467
1492
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1468
1493
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1469
1494
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1470
1495
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1471
1496
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
1472
1497
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1473
|
-
#, python-format
|
|
1474
1498
|
msgid "Show"
|
|
1475
1499
|
msgstr "Toon"
|
|
1476
1500
|
|
|
@@ -1482,7 +1506,7 @@ msgstr "Toon kostenplaats"
|
|
|
1482
1506
|
#. module: account_financial_report
|
|
1483
1507
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__with_auto_sequence
|
|
1484
1508
|
msgid "Show Auto Sequence"
|
|
1485
|
-
msgstr ""
|
|
1509
|
+
msgstr "Auto Sequentie Tonen"
|
|
1486
1510
|
|
|
1487
1511
|
#. module: account_financial_report
|
|
1488
1512
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__show_move_line_details
|
|
@@ -1490,31 +1514,27 @@ msgid "Show Move Line Details"
|
|
|
1490
1514
|
msgstr "Toon boekingsregel details"
|
|
1491
1515
|
|
|
1492
1516
|
#. module: account_financial_report
|
|
1493
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__show_partner_details
|
|
1494
1517
|
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__show_partner_details
|
|
1495
1518
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__show_partner_details
|
|
1496
1519
|
msgid "Show Partner Details"
|
|
1497
1520
|
msgstr "Toon partner details"
|
|
1498
1521
|
|
|
1499
1522
|
#. module: account_financial_report
|
|
1500
|
-
|
|
1501
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__show_analytic_tags
|
|
1502
|
-
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1503
|
-
#, python-format
|
|
1504
|
-
msgid "Show analytic tags"
|
|
1505
|
-
msgstr ""
|
|
1506
|
-
|
|
1507
|
-
#. module: account_financial_report
|
|
1523
|
+
#. odoo-python
|
|
1508
1524
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1509
1525
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1510
1526
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1511
1527
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__foreign_currency
|
|
1512
1528
|
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__foreign_currency
|
|
1513
1529
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__foreign_currency
|
|
1514
|
-
#, python-format
|
|
1515
1530
|
msgid "Show foreign currency"
|
|
1516
1531
|
msgstr "Toon buitenlandse valuta"
|
|
1517
1532
|
|
|
1533
|
+
#. module: account_financial_report
|
|
1534
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__show_hierarchy
|
|
1535
|
+
msgid "Show hierarchy"
|
|
1536
|
+
msgstr "Hi??rarchie tonen"
|
|
1537
|
+
|
|
1518
1538
|
#. module: account_financial_report
|
|
1519
1539
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__sort_option
|
|
1520
1540
|
msgid "Sort entries by"
|
|
@@ -1533,17 +1553,21 @@ msgstr "Startdatum"
|
|
|
1533
1553
|
#. module: account_financial_report
|
|
1534
1554
|
#: model:ir.model.fields,help:account_financial_report.field_aged_partner_balance_report_wizard__account_code_from
|
|
1535
1555
|
#: model:ir.model.fields,help:account_financial_report.field_general_ledger_report_wizard__account_code_from
|
|
1536
|
-
#: model:ir.model.fields,help:account_financial_report.field_open_items_report_wizard__account_code_from
|
|
1537
1556
|
#: model:ir.model.fields,help:account_financial_report.field_trial_balance_report_wizard__account_code_from
|
|
1538
1557
|
msgid "Starting account in a range"
|
|
1558
|
+
msgstr "Start rekening in een bereik"
|
|
1559
|
+
|
|
1560
|
+
#. module: account_financial_report
|
|
1561
|
+
#. odoo-python
|
|
1562
|
+
#: code:addons/account_financial_report/report/trial_balance.py:0
|
|
1563
|
+
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1564
|
+
msgid "TOTAL"
|
|
1539
1565
|
msgstr ""
|
|
1540
1566
|
|
|
1541
1567
|
#. module: account_financial_report
|
|
1542
|
-
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1543
1568
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1544
|
-
#, fuzzy, python-format
|
|
1545
1569
|
msgid "Tags"
|
|
1546
|
-
msgstr "
|
|
1570
|
+
msgstr "Labels"
|
|
1547
1571
|
|
|
1548
1572
|
#. module: account_financial_report
|
|
1549
1573
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__target_move
|
|
@@ -1555,6 +1579,7 @@ msgid "Target Moves"
|
|
|
1555
1579
|
msgstr "Doel boekingen"
|
|
1556
1580
|
|
|
1557
1581
|
#. module: account_financial_report
|
|
1582
|
+
#. odoo-python
|
|
1558
1583
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1559
1584
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1560
1585
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
@@ -1564,14 +1589,13 @@ msgstr "Doel boekingen"
|
|
|
1564
1589
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1565
1590
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
1566
1591
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1567
|
-
#, python-format
|
|
1568
1592
|
msgid "Target moves filter"
|
|
1569
1593
|
msgstr "Doel boekingen filter"
|
|
1570
1594
|
|
|
1571
1595
|
#. module: account_financial_report
|
|
1596
|
+
#. odoo-python
|
|
1572
1597
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1573
1598
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
1574
|
-
#, python-format
|
|
1575
1599
|
msgid "Tax"
|
|
1576
1600
|
msgstr "Belasting"
|
|
1577
1601
|
|
|
@@ -1582,85 +1606,119 @@ msgid "Tax Amount"
|
|
|
1582
1606
|
msgstr "Belastingbedrag"
|
|
1583
1607
|
|
|
1584
1608
|
#. module: account_financial_report
|
|
1609
|
+
#. odoo-python
|
|
1585
1610
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1586
|
-
#, python-format
|
|
1587
1611
|
msgid "Tax Balance"
|
|
1588
1612
|
msgstr "BTW-saldo"
|
|
1589
1613
|
|
|
1590
1614
|
#. module: account_financial_report
|
|
1615
|
+
#. odoo-python
|
|
1591
1616
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1592
|
-
#, python-format
|
|
1593
1617
|
msgid "Tax Credit"
|
|
1594
1618
|
msgstr "Belasting credit"
|
|
1595
1619
|
|
|
1596
1620
|
#. module: account_financial_report
|
|
1621
|
+
#. odoo-python
|
|
1597
1622
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1598
|
-
#, python-format
|
|
1599
1623
|
msgid "Tax Debit"
|
|
1600
1624
|
msgstr "Belasting debet"
|
|
1601
1625
|
|
|
1602
1626
|
#. module: account_financial_report
|
|
1627
|
+
#. odoo-python
|
|
1603
1628
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1604
1629
|
#: model:ir.model.fields.selection,name:account_financial_report.selection__vat_report_wizard__based_on__taxgroups
|
|
1605
|
-
#, python-format
|
|
1606
1630
|
msgid "Tax Groups"
|
|
1607
1631
|
msgstr "Belasting groep"
|
|
1608
1632
|
|
|
1609
1633
|
#. module: account_financial_report
|
|
1634
|
+
#. odoo-python
|
|
1635
|
+
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1636
|
+
msgid "Tax Initial balance"
|
|
1637
|
+
msgstr "Belasting beginsaldo"
|
|
1638
|
+
|
|
1639
|
+
#. module: account_financial_report
|
|
1640
|
+
#. odoo-python
|
|
1610
1641
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1611
1642
|
#: model:ir.model.fields.selection,name:account_financial_report.selection__vat_report_wizard__based_on__taxtags
|
|
1612
|
-
#, python-format
|
|
1613
1643
|
msgid "Tax Tags"
|
|
1614
1644
|
msgstr "Belasting label"
|
|
1615
1645
|
|
|
1616
1646
|
#. module: account_financial_report
|
|
1647
|
+
#. odoo-python
|
|
1648
|
+
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1649
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_ending_cumul
|
|
1650
|
+
msgid "Tax ending balance"
|
|
1651
|
+
msgstr "Belasting eindsaldo"
|
|
1652
|
+
|
|
1653
|
+
#. module: account_financial_report
|
|
1654
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1655
|
+
msgid "Tax initial balance"
|
|
1656
|
+
msgstr "Belasting beginsaldo"
|
|
1657
|
+
|
|
1658
|
+
#. module: account_financial_report
|
|
1659
|
+
#. odoo-python
|
|
1617
1660
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1618
1661
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1662
|
+
#: model:ir.model.fields.selection,name:account_financial_report.selection__general_ledger_report_wizard__grouped_by__taxes
|
|
1619
1663
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1620
1664
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1621
|
-
#, python-format
|
|
1622
1665
|
msgid "Taxes"
|
|
1623
1666
|
msgstr "Belastingen"
|
|
1624
1667
|
|
|
1625
1668
|
#. module: account_financial_report
|
|
1669
|
+
#. odoo-python
|
|
1626
1670
|
#: code:addons/account_financial_report/wizard/general_ledger_wizard.py:0
|
|
1627
|
-
#, python-format
|
|
1628
1671
|
msgid ""
|
|
1629
1672
|
"The Company in the General Ledger Report Wizard and in Date Range must be "
|
|
1630
1673
|
"the same."
|
|
1631
1674
|
msgstr ""
|
|
1675
|
+
"Het Bedrijf in de Wizard Grootboekrapport en in Datumbereik moeten hetzelfde "
|
|
1676
|
+
"zijn."
|
|
1632
1677
|
|
|
1633
1678
|
#. module: account_financial_report
|
|
1679
|
+
#. odoo-python
|
|
1634
1680
|
#: code:addons/account_financial_report/wizard/trial_balance_wizard.py:0
|
|
1635
|
-
#, python-format
|
|
1636
1681
|
msgid ""
|
|
1637
1682
|
"The Company in the Trial Balance Report Wizard and in Date Range must be the "
|
|
1638
1683
|
"same."
|
|
1639
1684
|
msgstr ""
|
|
1685
|
+
"Het bedrijf in de Proefbalans Rapport Wizard en in Datumbereik moeten "
|
|
1686
|
+
"hetzelfde zijn."
|
|
1640
1687
|
|
|
1641
1688
|
#. module: account_financial_report
|
|
1689
|
+
#. odoo-python
|
|
1642
1690
|
#: code:addons/account_financial_report/wizard/vat_report_wizard.py:0
|
|
1643
|
-
#, python-format
|
|
1644
1691
|
msgid ""
|
|
1645
1692
|
"The Company in the Vat Report Wizard and in Date Range must be the same."
|
|
1646
1693
|
msgstr ""
|
|
1694
|
+
"Het bedrijf in de BTW Rapport Wizard en in Datumbereik moeten hetzelfde zijn."
|
|
1647
1695
|
|
|
1648
1696
|
#. module: account_financial_report
|
|
1697
|
+
#. odoo-python
|
|
1649
1698
|
#: code:addons/account_financial_report/wizard/trial_balance_wizard.py:0
|
|
1650
|
-
#, python-format
|
|
1651
1699
|
msgid "The hierarchy level to filter on must be greater than 0."
|
|
1652
1700
|
msgstr ""
|
|
1701
|
+
"Het hi??rarchieniveau waarop gefilterd moet worden, moet groter zijn dan 0."
|
|
1702
|
+
|
|
1703
|
+
#. module: account_financial_report
|
|
1704
|
+
#. odoo-python
|
|
1705
|
+
#: code:addons/account_financial_report/report/trial_balance.py:0
|
|
1706
|
+
msgid ""
|
|
1707
|
+
"There is a problem in the structure of the account groups. You may need to "
|
|
1708
|
+
"create some child group of %s."
|
|
1709
|
+
msgstr ""
|
|
1653
1710
|
|
|
1654
1711
|
#. module: account_financial_report
|
|
1655
1712
|
#: model:ir.model.fields,help:account_financial_report.field_general_ledger_report_wizard__domain
|
|
1656
1713
|
msgid "This domain will be used to select specific domain for Journal Items"
|
|
1657
1714
|
msgstr ""
|
|
1715
|
+
"Dit domein wordt gebruikt om een specifiek domein te selecteren voor "
|
|
1716
|
+
"Boekingsregels"
|
|
1658
1717
|
|
|
1659
1718
|
#. module: account_financial_report
|
|
1660
1719
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1661
|
-
#, fuzzy
|
|
1662
1720
|
msgid "To"
|
|
1663
|
-
msgstr "Naar
|
|
1721
|
+
msgstr "Naar"
|
|
1664
1722
|
|
|
1665
1723
|
#. module: account_financial_report
|
|
1666
1724
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
@@ -1668,31 +1726,31 @@ msgid "To:"
|
|
|
1668
1726
|
msgstr "Naar:"
|
|
1669
1727
|
|
|
1670
1728
|
#. module: account_financial_report
|
|
1729
|
+
#. odoo-python
|
|
1730
|
+
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1671
1731
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_account_ending_cumul
|
|
1672
1732
|
msgid "Total"
|
|
1673
1733
|
msgstr "Totaal"
|
|
1674
1734
|
|
|
1675
1735
|
#. module: account_financial_report
|
|
1736
|
+
#. odoo-python
|
|
1676
1737
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1677
1738
|
#: model:ir.actions.act_window,name:account_financial_report.action_trial_balance_wizard
|
|
1678
1739
|
#: model:ir.actions.report,name:account_financial_report.action_report_trial_balance_html
|
|
1679
1740
|
#: model:ir.actions.report,name:account_financial_report.action_report_trial_balance_qweb
|
|
1680
1741
|
#: model:ir.ui.menu,name:account_financial_report.menu_trial_balance_wizard
|
|
1681
|
-
#, python-format
|
|
1682
1742
|
msgid "Trial Balance"
|
|
1683
1743
|
msgstr "Proefbalans"
|
|
1684
1744
|
|
|
1685
1745
|
#. module: account_financial_report
|
|
1686
1746
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_base
|
|
1687
|
-
#, fuzzy
|
|
1688
1747
|
msgid "Trial Balance -"
|
|
1689
|
-
msgstr "Proefbalans"
|
|
1748
|
+
msgstr "Proefbalans -"
|
|
1690
1749
|
|
|
1691
1750
|
#. module: account_financial_report
|
|
1692
1751
|
#: model:ir.model,name:account_financial_report.model_report_account_financial_report_trial_balance
|
|
1693
|
-
#, fuzzy
|
|
1694
1752
|
msgid "Trial Balance Report"
|
|
1695
|
-
msgstr "Proefbalans Rapport
|
|
1753
|
+
msgstr "Proefbalans Rapport"
|
|
1696
1754
|
|
|
1697
1755
|
#. module: account_financial_report
|
|
1698
1756
|
#: model:ir.model,name:account_financial_report.model_trial_balance_report_wizard
|
|
@@ -1706,7 +1764,6 @@ msgstr "Proefbalans XLSX"
|
|
|
1706
1764
|
|
|
1707
1765
|
#. module: account_financial_report
|
|
1708
1766
|
#: model:ir.model,name:account_financial_report.model_report_a_f_r_report_trial_balance_xlsx
|
|
1709
|
-
#, fuzzy
|
|
1710
1767
|
msgid "Trial Balance XLSX Report"
|
|
1711
1768
|
msgstr "Proefbalans XLSX"
|
|
1712
1769
|
|
|
@@ -1716,6 +1773,9 @@ msgid ""
|
|
|
1716
1773
|
"Trial Balance can be computed only if selected company have only\n"
|
|
1717
1774
|
" one unaffected earnings account."
|
|
1718
1775
|
msgstr ""
|
|
1776
|
+
"Proefbalans kan alleen worden berekend als het geselecteerde bedrijf "
|
|
1777
|
+
"slechts\n"
|
|
1778
|
+
" ????n winstrekening heeft."
|
|
1719
1779
|
|
|
1720
1780
|
#. module: account_financial_report
|
|
1721
1781
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__unaffected_earnings_account
|
|
@@ -1735,6 +1795,11 @@ msgstr ""
|
|
|
1735
1795
|
"verbergen. Als partners zijn gefilterd, komen de debet- en credit totalen "
|
|
1736
1796
|
"niet overeen met de proefbalans."
|
|
1737
1797
|
|
|
1798
|
+
#. module: account_financial_report
|
|
1799
|
+
#: model:ir.model.fields,help:account_financial_report.field_trial_balance_report_wizard__show_hierarchy
|
|
1800
|
+
msgid "Use when your account groups are hierarchical"
|
|
1801
|
+
msgstr "Gebruik dit als je rekeninggroepen hi??rarchisch zijn"
|
|
1802
|
+
|
|
1738
1803
|
#. module: account_financial_report
|
|
1739
1804
|
#: model:ir.actions.act_window,name:account_financial_report.action_vat_report_wizard
|
|
1740
1805
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_vat_report_html
|
|
@@ -1745,9 +1810,8 @@ msgstr "BTW rapport"
|
|
|
1745
1810
|
|
|
1746
1811
|
#. module: account_financial_report
|
|
1747
1812
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
1748
|
-
#, fuzzy
|
|
1749
1813
|
msgid "VAT Report -"
|
|
1750
|
-
msgstr "BTW rapport"
|
|
1814
|
+
msgstr "BTW rapport -"
|
|
1751
1815
|
|
|
1752
1816
|
#. module: account_financial_report
|
|
1753
1817
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.vat_report_wizard
|
|
@@ -1756,9 +1820,8 @@ msgstr "BTW rapport opties"
|
|
|
1756
1820
|
|
|
1757
1821
|
#. module: account_financial_report
|
|
1758
1822
|
#: model:ir.model,name:account_financial_report.model_vat_report_wizard
|
|
1759
|
-
#, fuzzy
|
|
1760
1823
|
msgid "VAT Report Wizard"
|
|
1761
|
-
msgstr "BTW rapport"
|
|
1824
|
+
msgstr "BTW rapport Wizard"
|
|
1762
1825
|
|
|
1763
1826
|
#. module: account_financial_report
|
|
1764
1827
|
#: model:ir.actions.report,name:account_financial_report.action_report_vat_report_xlsx
|
|
@@ -1766,20 +1829,18 @@ msgid "VAT Report XLSX"
|
|
|
1766
1829
|
msgstr "BTW rapport XLSX"
|
|
1767
1830
|
|
|
1768
1831
|
#. module: account_financial_report
|
|
1832
|
+
#. odoo-python
|
|
1769
1833
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1770
|
-
#, fuzzy, python-format
|
|
1771
1834
|
msgid "Vat Report"
|
|
1772
|
-
msgstr "BTW
|
|
1835
|
+
msgstr "BTW Rapport"
|
|
1773
1836
|
|
|
1774
1837
|
#. module: account_financial_report
|
|
1775
1838
|
#: model:ir.model,name:account_financial_report.model_report_account_financial_report_vat_report
|
|
1776
|
-
#, fuzzy
|
|
1777
1839
|
msgid "Vat Report Report"
|
|
1778
|
-
msgstr "BTW
|
|
1840
|
+
msgstr "BTW Rapport"
|
|
1779
1841
|
|
|
1780
1842
|
#. module: account_financial_report
|
|
1781
1843
|
#: model:ir.model,name:account_financial_report.model_report_a_f_r_report_vat_report_xlsx
|
|
1782
|
-
#, fuzzy
|
|
1783
1844
|
msgid "Vat Report XLSX Report"
|
|
1784
1845
|
msgstr "BTW rapport XLSX"
|
|
1785
1846
|
|
|
@@ -1799,6 +1860,8 @@ msgid ""
|
|
|
1799
1860
|
"When this option is enabled, the trial balance will not display accounts "
|
|
1800
1861
|
"that have initial balance = debit = credit = end balance = 0"
|
|
1801
1862
|
msgstr ""
|
|
1863
|
+
"Als deze optie is ingeschakeld, worden rekeningen met beginsaldo = "
|
|
1864
|
+
"debetsaldo = creditsaldo = eindsaldo = 0 niet weergegeven in de proefbalans."
|
|
1802
1865
|
|
|
1803
1866
|
#. module: account_financial_report
|
|
1804
1867
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__with_account_name
|
|
@@ -1806,22 +1869,27 @@ msgid "With Account Name"
|
|
|
1806
1869
|
msgstr "Met rekening naam"
|
|
1807
1870
|
|
|
1808
1871
|
#. module: account_financial_report
|
|
1872
|
+
#. odoo-python
|
|
1873
|
+
#: code:addons/account_financial_report/report/trial_balance.py:0
|
|
1874
|
+
msgid "Without analytic account"
|
|
1875
|
+
msgstr ""
|
|
1876
|
+
|
|
1877
|
+
#. module: account_financial_report
|
|
1878
|
+
#. odoo-python
|
|
1809
1879
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1810
1880
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1811
1881
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1812
1882
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1813
|
-
#, python-format
|
|
1814
1883
|
msgid "Yes"
|
|
1815
1884
|
msgstr "Ja"
|
|
1816
1885
|
|
|
1817
1886
|
#. module: account_financial_report
|
|
1887
|
+
#. odoo-python
|
|
1818
1888
|
#: code:addons/account_financial_report/report/general_ledger.py:0
|
|
1819
|
-
#, python-format
|
|
1820
1889
|
msgid "future"
|
|
1821
1890
|
msgstr "toekomstig"
|
|
1822
1891
|
|
|
1823
1892
|
#. module: account_financial_report
|
|
1824
|
-
#: model_terms:ir.ui.view,arch_db:account_financial_report.aged_partner_balance_wizard
|
|
1825
1893
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
|
|
1826
1894
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.journal_ledger_wizard
|
|
1827
1895
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.open_items_wizard
|
|
@@ -1833,7 +1901,7 @@ msgstr "of"
|
|
|
1833
1901
|
#. module: account_financial_report
|
|
1834
1902
|
#: model:ir.actions.report,name:account_financial_report.action_print_journal_ledger_wizard_qweb
|
|
1835
1903
|
msgid "ournal Ledger"
|
|
1836
|
-
msgstr ""
|
|
1904
|
+
msgstr "Grootboekbalans"
|
|
1837
1905
|
|
|
1838
1906
|
#. module: account_financial_report
|
|
1839
1907
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal
|
|
@@ -1843,7 +1911,7 @@ msgstr "tot"
|
|
|
1843
1911
|
#. module: account_financial_report
|
|
1844
1912
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1845
1913
|
msgid "width: 16.21%;"
|
|
1846
|
-
msgstr ""
|
|
1914
|
+
msgstr "breedte: 16,21%;"
|
|
1847
1915
|
|
|
1848
1916
|
#. module: account_financial_report
|
|
1849
1917
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
@@ -1852,27 +1920,100 @@ msgstr "breedte: 23.24%;"
|
|
|
1852
1920
|
|
|
1853
1921
|
#. module: account_financial_report
|
|
1854
1922
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1855
|
-
#, fuzzy
|
|
1856
1923
|
msgid "width: 23.78%;"
|
|
1857
1924
|
msgstr "breedte: 23.78%;"
|
|
1858
1925
|
|
|
1859
1926
|
#. module: account_financial_report
|
|
1860
1927
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1861
1928
|
msgid "width: 31.35%;"
|
|
1862
|
-
msgstr ""
|
|
1929
|
+
msgstr "breedte: 31,35%;"
|
|
1863
1930
|
|
|
1864
1931
|
#. module: account_financial_report
|
|
1865
1932
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1866
|
-
#, fuzzy
|
|
1867
1933
|
msgid "width: 38.92%;"
|
|
1868
1934
|
msgstr "breedte: 38.92%;"
|
|
1869
1935
|
|
|
1870
1936
|
#. module: account_financial_report
|
|
1871
1937
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1872
|
-
#, fuzzy
|
|
1873
1938
|
msgid "width: 8.11%;"
|
|
1874
1939
|
msgstr "breedte: 8.11%;"
|
|
1875
1940
|
|
|
1941
|
+
#~ msgid ""
|
|
1942
|
+
#~ "Age ??? 120\n"
|
|
1943
|
+
#~ " d."
|
|
1944
|
+
#~ msgstr ""
|
|
1945
|
+
#~ "Leeftijd ??? 120\n"
|
|
1946
|
+
#~ " d."
|
|
1947
|
+
|
|
1948
|
+
#, python-format
|
|
1949
|
+
#~ msgid "Age ??? 120 d."
|
|
1950
|
+
#~ msgstr "Vv. ??? 120 d."
|
|
1951
|
+
|
|
1952
|
+
#~ msgid ""
|
|
1953
|
+
#~ "Age ??? 30\n"
|
|
1954
|
+
#~ " d."
|
|
1955
|
+
#~ msgstr ""
|
|
1956
|
+
#~ "Leeftijd ??? 30\n"
|
|
1957
|
+
#~ " d."
|
|
1958
|
+
|
|
1959
|
+
#, python-format
|
|
1960
|
+
#~ msgid "Age ??? 30 d."
|
|
1961
|
+
#~ msgstr "Vv. ??? 30 d."
|
|
1962
|
+
|
|
1963
|
+
#~ msgid ""
|
|
1964
|
+
#~ "Age ??? 60\n"
|
|
1965
|
+
#~ " d."
|
|
1966
|
+
#~ msgstr ""
|
|
1967
|
+
#~ "Leeftijd ??? 60\n"
|
|
1968
|
+
#~ " d."
|
|
1969
|
+
|
|
1970
|
+
#, python-format
|
|
1971
|
+
#~ msgid "Age ??? 60 d."
|
|
1972
|
+
#~ msgstr "Vv. ??? 60 d."
|
|
1973
|
+
|
|
1974
|
+
#~ msgid ""
|
|
1975
|
+
#~ "Age ??? 90\n"
|
|
1976
|
+
#~ " d."
|
|
1977
|
+
#~ msgstr ""
|
|
1978
|
+
#~ "Leeftijd ??? 90\n"
|
|
1979
|
+
#~ " d."
|
|
1980
|
+
|
|
1981
|
+
#, python-format
|
|
1982
|
+
#~ msgid "Age ??? 90 d."
|
|
1983
|
+
#~ msgstr "Vv. ??? 90 d."
|
|
1984
|
+
|
|
1985
|
+
#~ msgid "Last Modified on"
|
|
1986
|
+
#~ msgstr "Laatst Gewijzigd op"
|
|
1987
|
+
|
|
1988
|
+
#~ msgid "Not Only One Unaffected Earnings Account"
|
|
1989
|
+
#~ msgstr "Niet slechts ????n winstrekening"
|
|
1990
|
+
|
|
1991
|
+
#, fuzzy
|
|
1992
|
+
#~ msgid "Filter analytic tags"
|
|
1993
|
+
#~ msgstr "Filter rekeningen"
|
|
1994
|
+
|
|
1995
|
+
#, python-format
|
|
1996
|
+
#~ msgid "Print"
|
|
1997
|
+
#~ msgstr "Print"
|
|
1998
|
+
|
|
1999
|
+
#~ msgid "Child Accounts"
|
|
2000
|
+
#~ msgstr "Onderliggende rekeningen"
|
|
2001
|
+
|
|
2002
|
+
#~ msgid "Computed Accounts"
|
|
2003
|
+
#~ msgstr "Berekende rekeningen"
|
|
2004
|
+
|
|
2005
|
+
#~ msgid "Hierarchy On"
|
|
2006
|
+
#~ msgstr "Hi??rarchie aan"
|
|
2007
|
+
|
|
2008
|
+
#~ msgid "No hierarchy"
|
|
2009
|
+
#~ msgstr "Geen Hi??rarchie"
|
|
2010
|
+
|
|
2011
|
+
#~ msgid "From: %s To: %s"
|
|
2012
|
+
#~ msgstr "Van: %s Tot: %s"
|
|
2013
|
+
|
|
2014
|
+
#~ msgid "Not only one unaffected earnings account"
|
|
2015
|
+
#~ msgstr "Meer dan ????n huidige jaarwinst rekening"
|
|
2016
|
+
|
|
1876
2017
|
#~ msgid "<span class=\"fa fa-download\"/> Export"
|
|
1877
2018
|
#~ msgstr "Exporteren"
|
|
1878
2019
|
|
|
@@ -1884,14 +2025,14 @@ msgstr "breedte: 8.11%;"
|
|
|
1884
2025
|
#~ "unaffected earnings account."
|
|
1885
2026
|
#~ msgstr ""
|
|
1886
2027
|
#~ "Grootboek kan alleen worden opgemaakt als het geselecteerde bedrijf "
|
|
1887
|
-
#~ "slechts
|
|
2028
|
+
#~ "slechts ????n huidige jaarwinst grootboekrekening heeft."
|
|
1888
2029
|
|
|
1889
2030
|
#~ msgid ""
|
|
1890
2031
|
#~ "Trial Balance can be computed only if selected company have only one "
|
|
1891
2032
|
#~ "unaffected earnings account."
|
|
1892
2033
|
#~ msgstr ""
|
|
1893
2034
|
#~ "Proefbalans kan alleen worden berekend als het geselecteerde bedrijf "
|
|
1894
|
-
#~ "slechts
|
|
2035
|
+
#~ "slechts ????n huidige jaarwinst rekening heeft."
|
|
1895
2036
|
|
|
1896
2037
|
#~ msgid ""
|
|
1897
2038
|
#~ "Cost\n"
|
|
@@ -2056,9 +2197,6 @@ msgstr "breedte: 8.11%;"
|
|
|
2056
2197
|
#~ msgid "Label"
|
|
2057
2198
|
#~ msgstr "Label"
|
|
2058
2199
|
|
|
2059
|
-
#~ msgid "Line"
|
|
2060
|
-
#~ msgstr "Regel"
|
|
2061
|
-
|
|
2062
2200
|
#~ msgid "Matching Number"
|
|
2063
2201
|
#~ msgstr "Overeenkomend nummer"
|
|
2064
2202
|
|