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
|
@@ -56,13 +56,26 @@ msgstr "91 - 120 d."
|
|
|
56
56
|
msgid "<b>Taxes summary</b>"
|
|
57
57
|
msgstr "<b>Rezumat taxe</b>"
|
|
58
58
|
|
|
59
|
+
#. module: account_financial_report
|
|
60
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.trial_balance_wizard
|
|
61
|
+
msgid ""
|
|
62
|
+
"<i class=\"fa fa-exclamation-triangle mr-3\"/>\n"
|
|
63
|
+
" Duplicate amounts may be shown because more than one "
|
|
64
|
+
"analytical account may be defined in the journal items."
|
|
65
|
+
msgstr ""
|
|
66
|
+
|
|
67
|
+
#. module: account_financial_report
|
|
68
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
69
|
+
msgid "<span class=\"o_form_label\">Intervals configuration</span>"
|
|
70
|
+
msgstr ""
|
|
71
|
+
|
|
59
72
|
#. module: account_financial_report
|
|
60
73
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.aged_partner_balance_wizard
|
|
61
74
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
|
|
62
75
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.open_items_wizard
|
|
63
76
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.trial_balance_wizard
|
|
64
77
|
msgid "<span class=\"oe_inline\">To</span>"
|
|
65
|
-
msgstr "<span class=\"oe_inline\">
|
|
78
|
+
msgstr "<span class=\"oe_inline\">C??tre</span>"
|
|
66
79
|
|
|
67
80
|
#. module: account_financial_report
|
|
68
81
|
#: model:ir.model,name:account_financial_report.model_report_account_financial_report_abstract_report
|
|
@@ -81,6 +94,7 @@ msgid "Abstract XLSX Account Financial Report"
|
|
|
81
94
|
msgstr ""
|
|
82
95
|
|
|
83
96
|
#. module: account_financial_report
|
|
97
|
+
#. odoo-python
|
|
84
98
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
85
99
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
86
100
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
@@ -92,10 +106,14 @@ msgstr ""
|
|
|
92
106
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
93
107
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
94
108
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
95
|
-
#, python-format
|
|
96
109
|
msgid "Account"
|
|
97
110
|
msgstr "Cont"
|
|
98
111
|
|
|
112
|
+
#. module: account_financial_report
|
|
113
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__account_age_report_config_id
|
|
114
|
+
msgid "Account Age Report Config"
|
|
115
|
+
msgstr ""
|
|
116
|
+
|
|
99
117
|
#. module: account_financial_report
|
|
100
118
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__account_code_from
|
|
101
119
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__account_code_from
|
|
@@ -110,7 +128,7 @@ msgstr "Cod cont de la"
|
|
|
110
128
|
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__account_code_to
|
|
111
129
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__account_code_to
|
|
112
130
|
msgid "Account Code To"
|
|
113
|
-
msgstr "Cod cont
|
|
131
|
+
msgstr "Cod cont c??tre"
|
|
114
132
|
|
|
115
133
|
#. module: account_financial_report
|
|
116
134
|
#: model:ir.model,name:account_financial_report.model_account_group
|
|
@@ -118,24 +136,24 @@ msgid "Account Group"
|
|
|
118
136
|
msgstr "Grup conturi"
|
|
119
137
|
|
|
120
138
|
#. module: account_financial_report
|
|
139
|
+
#. odoo-python
|
|
121
140
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
122
|
-
#, python-format
|
|
123
141
|
msgid "Account Name"
|
|
124
142
|
msgstr "Nume Cont"
|
|
125
143
|
|
|
126
144
|
#. module: account_financial_report
|
|
145
|
+
#. odoo-python
|
|
127
146
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
128
147
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
129
|
-
#, python-format
|
|
130
148
|
msgid "Account at 0 filter"
|
|
131
149
|
msgstr "Filtru cont la 0"
|
|
132
150
|
|
|
133
151
|
#. module: account_financial_report
|
|
152
|
+
#. odoo-python
|
|
134
153
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
135
154
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
136
155
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
137
156
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
138
|
-
#, python-format
|
|
139
157
|
msgid "Account balance at 0 filter"
|
|
140
158
|
msgstr "Conturi cu sold zero filtrate"
|
|
141
159
|
|
|
@@ -152,75 +170,72 @@ msgstr "Activare centralizare"
|
|
|
152
170
|
#. module: account_financial_report
|
|
153
171
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
|
|
154
172
|
msgid "Additional Filtering"
|
|
155
|
-
msgstr "Filtrare
|
|
173
|
+
msgstr "Filtrare suplimentar??"
|
|
174
|
+
|
|
175
|
+
#. module: account_financial_report
|
|
176
|
+
#: model:ir.actions.act_window,name:account_financial_report.action_aged_partner_report_configuration
|
|
177
|
+
msgid "Age Partner Report Configuration"
|
|
178
|
+
msgstr ""
|
|
156
179
|
|
|
157
180
|
#. module: account_financial_report
|
|
158
181
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
159
182
|
msgid ""
|
|
160
183
|
"Age ≤ 120\n"
|
|
161
|
-
"
|
|
184
|
+
" d."
|
|
162
185
|
msgstr ""
|
|
163
|
-
"Vârstă ≤ 120\n"
|
|
164
|
-
" d."
|
|
165
186
|
|
|
166
187
|
#. module: account_financial_report
|
|
188
|
+
#. odoo-python
|
|
167
189
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
168
|
-
#, python-format
|
|
169
190
|
msgid "Age ≤ 120 d."
|
|
170
|
-
msgstr "
|
|
191
|
+
msgstr ""
|
|
171
192
|
|
|
172
193
|
#. module: account_financial_report
|
|
173
194
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
174
195
|
msgid ""
|
|
175
196
|
"Age ≤ 30\n"
|
|
176
|
-
"
|
|
197
|
+
" d."
|
|
177
198
|
msgstr ""
|
|
178
|
-
"Vârstă ≤ 30\n"
|
|
179
|
-
" d."
|
|
180
199
|
|
|
181
200
|
#. module: account_financial_report
|
|
201
|
+
#. odoo-python
|
|
182
202
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
183
|
-
#, python-format
|
|
184
203
|
msgid "Age ≤ 30 d."
|
|
185
|
-
msgstr "
|
|
204
|
+
msgstr ""
|
|
186
205
|
|
|
187
206
|
#. module: account_financial_report
|
|
188
207
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
189
208
|
msgid ""
|
|
190
209
|
"Age ≤ 60\n"
|
|
191
|
-
"
|
|
210
|
+
" d."
|
|
192
211
|
msgstr ""
|
|
193
|
-
"Vârstă ≤ 60\n"
|
|
194
|
-
" d."
|
|
195
212
|
|
|
196
213
|
#. module: account_financial_report
|
|
214
|
+
#. odoo-python
|
|
197
215
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
198
|
-
#, python-format
|
|
199
216
|
msgid "Age ≤ 60 d."
|
|
200
|
-
msgstr "
|
|
217
|
+
msgstr ""
|
|
201
218
|
|
|
202
219
|
#. module: account_financial_report
|
|
203
220
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
204
221
|
msgid ""
|
|
205
222
|
"Age ≤ 90\n"
|
|
206
|
-
"
|
|
223
|
+
" d."
|
|
207
224
|
msgstr ""
|
|
208
|
-
"Vârstă ≤ 90\n"
|
|
209
|
-
" d."
|
|
210
225
|
|
|
211
226
|
#. module: account_financial_report
|
|
227
|
+
#. odoo-python
|
|
212
228
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
213
|
-
#, python-format
|
|
214
229
|
msgid "Age ≤ 90 d."
|
|
215
|
-
msgstr "
|
|
230
|
+
msgstr ""
|
|
216
231
|
|
|
217
232
|
#. module: account_financial_report
|
|
233
|
+
#. odoo-python
|
|
218
234
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
219
235
|
#: model:ir.actions.act_window,name:account_financial_report.action_aged_partner_balance_wizard
|
|
220
236
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_aged_partner_balance_html
|
|
221
237
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_aged_partner_balance_qweb
|
|
222
238
|
#: model:ir.ui.menu,name:account_financial_report.menu_aged_partner_balance_wizard
|
|
223
|
-
#, python-format
|
|
224
239
|
msgid "Aged Partner Balance"
|
|
225
240
|
msgstr ""
|
|
226
241
|
|
|
@@ -250,8 +265,8 @@ msgid "Aged Partner Balance XLSX"
|
|
|
250
265
|
msgstr ""
|
|
251
266
|
|
|
252
267
|
#. module: account_financial_report
|
|
268
|
+
#. odoo-python
|
|
253
269
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
254
|
-
#, python-format
|
|
255
270
|
msgid "All"
|
|
256
271
|
msgstr "Tot"
|
|
257
272
|
|
|
@@ -262,7 +277,7 @@ msgstr "Tot"
|
|
|
262
277
|
#: model:ir.model.fields.selection,name:account_financial_report.selection__trial_balance_report_wizard__target_move__all
|
|
263
278
|
#: model:ir.model.fields.selection,name:account_financial_report.selection__vat_report_wizard__target_move__all
|
|
264
279
|
msgid "All Entries"
|
|
265
|
-
msgstr "Toate
|
|
280
|
+
msgstr "Toate ??nregistr??rile"
|
|
266
281
|
|
|
267
282
|
#. module: account_financial_report
|
|
268
283
|
#: model:ir.model.fields.selection,name:account_financial_report.selection__aged_partner_balance_report_wizard__target_move__posted
|
|
@@ -271,9 +286,10 @@ msgstr "Toate înregistrările"
|
|
|
271
286
|
#: model:ir.model.fields.selection,name:account_financial_report.selection__trial_balance_report_wizard__target_move__posted
|
|
272
287
|
#: model:ir.model.fields.selection,name:account_financial_report.selection__vat_report_wizard__target_move__posted
|
|
273
288
|
msgid "All Posted Entries"
|
|
274
|
-
msgstr "Toate
|
|
289
|
+
msgstr "Toate ??nregistr??rile postare"
|
|
275
290
|
|
|
276
291
|
#. module: account_financial_report
|
|
292
|
+
#. odoo-python
|
|
277
293
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
278
294
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
279
295
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
@@ -282,11 +298,11 @@ msgstr "Toate înregistrările postare"
|
|
|
282
298
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
283
299
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
284
300
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
285
|
-
#, python-format
|
|
286
301
|
msgid "All entries"
|
|
287
|
-
msgstr "Toate
|
|
302
|
+
msgstr "Toate ??nregistr??rile"
|
|
288
303
|
|
|
289
304
|
#. module: account_financial_report
|
|
305
|
+
#. odoo-python
|
|
290
306
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
291
307
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
292
308
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
@@ -295,9 +311,8 @@ msgstr "Toate înregistrările"
|
|
|
295
311
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
296
312
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
297
313
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
298
|
-
#, python-format
|
|
299
314
|
msgid "All posted entries"
|
|
300
|
-
msgstr "Toate
|
|
315
|
+
msgstr "Toate ??nregistr??rile postare"
|
|
301
316
|
|
|
302
317
|
#. module: account_financial_report
|
|
303
318
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
@@ -305,25 +320,31 @@ msgid "Amount Cur."
|
|
|
305
320
|
msgstr ""
|
|
306
321
|
|
|
307
322
|
#. module: account_financial_report
|
|
323
|
+
#. odoo-python
|
|
308
324
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
309
|
-
#, python-format
|
|
310
325
|
msgid "Amount Currency"
|
|
311
|
-
msgstr "
|
|
326
|
+
msgstr "Sum?? Valut??"
|
|
312
327
|
|
|
313
328
|
#. module: account_financial_report
|
|
329
|
+
#. odoo-python
|
|
314
330
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
315
331
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
316
|
-
#, python-format
|
|
317
332
|
msgid "Amount cur."
|
|
318
333
|
msgstr ""
|
|
319
334
|
|
|
320
335
|
#. module: account_financial_report
|
|
321
|
-
#:
|
|
322
|
-
#:
|
|
323
|
-
#, python-format
|
|
336
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_move_line__analytic_account_ids
|
|
337
|
+
#: model:ir.model.fields.selection,name:account_financial_report.selection__trial_balance_report_wizard__grouped_by__analytic_account
|
|
324
338
|
msgid "Analytic Account"
|
|
325
339
|
msgstr "Cont analitic"
|
|
326
340
|
|
|
341
|
+
#. module: account_financial_report
|
|
342
|
+
#. odoo-python
|
|
343
|
+
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
344
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
345
|
+
msgid "Analytic Distribution"
|
|
346
|
+
msgstr ""
|
|
347
|
+
|
|
327
348
|
#. module: account_financial_report
|
|
328
349
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
|
|
329
350
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
@@ -334,25 +355,25 @@ msgstr "Sold"
|
|
|
334
355
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
|
|
335
356
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
336
357
|
msgid "Base Amount"
|
|
337
|
-
msgstr "Valoare
|
|
358
|
+
msgstr "Valoare baz??"
|
|
338
359
|
|
|
339
360
|
#. module: account_financial_report
|
|
361
|
+
#. odoo-python
|
|
340
362
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
341
|
-
#, python-format
|
|
342
363
|
msgid "Base Balance"
|
|
343
|
-
msgstr "Sold
|
|
364
|
+
msgstr "Sold baz??"
|
|
344
365
|
|
|
345
366
|
#. module: account_financial_report
|
|
367
|
+
#. odoo-python
|
|
346
368
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
347
|
-
#, python-format
|
|
348
369
|
msgid "Base Credit"
|
|
349
|
-
msgstr "Credit
|
|
370
|
+
msgstr "Credit baz??"
|
|
350
371
|
|
|
351
372
|
#. module: account_financial_report
|
|
373
|
+
#. odoo-python
|
|
352
374
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
353
|
-
#, python-format
|
|
354
375
|
msgid "Base Debit"
|
|
355
|
-
msgstr "Debit
|
|
376
|
+
msgstr "Debit baz??"
|
|
356
377
|
|
|
357
378
|
#. module: account_financial_report
|
|
358
379
|
#: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__based_on
|
|
@@ -361,8 +382,8 @@ msgid "Based On"
|
|
|
361
382
|
msgstr "Bazat pe"
|
|
362
383
|
|
|
363
384
|
#. module: account_financial_report
|
|
385
|
+
#. odoo-python
|
|
364
386
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
365
|
-
#, python-format
|
|
366
387
|
msgid "Based on"
|
|
367
388
|
msgstr "Bazat pe"
|
|
368
389
|
|
|
@@ -377,38 +398,35 @@ msgid "Cancel"
|
|
|
377
398
|
msgstr "Anulare"
|
|
378
399
|
|
|
379
400
|
#. module: account_financial_report
|
|
401
|
+
#. odoo-python
|
|
380
402
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
381
403
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
382
|
-
#, python-format
|
|
383
404
|
msgid "Centralize filter"
|
|
384
|
-
msgstr "
|
|
405
|
+
msgstr "Centraliza??i filtrul"
|
|
385
406
|
|
|
386
407
|
#. module: account_financial_report
|
|
387
408
|
#: model:ir.model.fields,field_description:account_financial_report.field_account_account__centralized
|
|
388
409
|
msgid "Centralized"
|
|
389
410
|
msgstr "Centralizat"
|
|
390
411
|
|
|
391
|
-
#. module: account_financial_report
|
|
392
|
-
#: model:ir.model.fields.selection,name:account_financial_report.selection__trial_balance_report_wizard__hierarchy_on__relation
|
|
393
|
-
msgid "Child Accounts"
|
|
394
|
-
msgstr "Conturi subordonate"
|
|
395
|
-
|
|
396
412
|
#. module: account_financial_report
|
|
397
413
|
#: model:ir.model.fields,field_description:account_financial_report.field_account_group__group_child_ids
|
|
398
414
|
msgid "Child Groups"
|
|
399
415
|
msgstr "Grupuri subordonate"
|
|
400
416
|
|
|
401
417
|
#. module: account_financial_report
|
|
418
|
+
#. odoo-python
|
|
402
419
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
403
420
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
404
421
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
405
422
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
406
|
-
#, python-format
|
|
407
423
|
msgid "Code"
|
|
408
424
|
msgstr "Cod"
|
|
409
425
|
|
|
410
426
|
#. module: account_financial_report
|
|
427
|
+
#. odoo-python
|
|
411
428
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
429
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__company_id
|
|
412
430
|
#: model:ir.model.fields,field_description:account_financial_report.field_account_financial_report_abstract_wizard__company_id
|
|
413
431
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__company_id
|
|
414
432
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__company_id
|
|
@@ -416,7 +434,6 @@ msgstr "Cod"
|
|
|
416
434
|
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__company_id
|
|
417
435
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__company_id
|
|
418
436
|
#: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__company_id
|
|
419
|
-
#, python-format
|
|
420
437
|
msgid "Company"
|
|
421
438
|
msgstr "Companie"
|
|
422
439
|
|
|
@@ -426,24 +443,18 @@ msgid "Compute accounts"
|
|
|
426
443
|
msgstr "Conturi calculate"
|
|
427
444
|
|
|
428
445
|
#. module: account_financial_report
|
|
429
|
-
#: model:ir.model
|
|
430
|
-
msgid "
|
|
431
|
-
msgstr "
|
|
446
|
+
#: model:ir.model,name:account_financial_report.model_res_config_settings
|
|
447
|
+
msgid "Config Settings"
|
|
448
|
+
msgstr ""
|
|
432
449
|
|
|
433
450
|
#. module: account_financial_report
|
|
434
|
-
#:
|
|
435
|
-
msgid ""
|
|
436
|
-
"Computed Accounts: Use when the account group have codes\n"
|
|
437
|
-
" that represent prefixes of the actual accounts.\n"
|
|
438
|
-
"\n"
|
|
439
|
-
" Child Accounts: Use when your account groups are hierarchical.\n"
|
|
440
|
-
"\n"
|
|
441
|
-
" No hierarchy: Use to display just the accounts, without any "
|
|
442
|
-
"grouping.\n"
|
|
443
|
-
" "
|
|
451
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
452
|
+
msgid "Configurations"
|
|
444
453
|
msgstr ""
|
|
445
454
|
|
|
446
455
|
#. module: account_financial_report
|
|
456
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__create_uid
|
|
457
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__create_uid
|
|
447
458
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__create_uid
|
|
448
459
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__create_uid
|
|
449
460
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__create_uid
|
|
@@ -454,6 +465,8 @@ msgid "Created by"
|
|
|
454
465
|
msgstr "Creat de"
|
|
455
466
|
|
|
456
467
|
#. module: account_financial_report
|
|
468
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__create_date
|
|
469
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__create_date
|
|
457
470
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__create_date
|
|
458
471
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__create_date
|
|
459
472
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__create_date
|
|
@@ -464,6 +477,7 @@ msgid "Created on"
|
|
|
464
477
|
msgstr "Creat pe"
|
|
465
478
|
|
|
466
479
|
#. module: account_financial_report
|
|
480
|
+
#. odoo-python
|
|
467
481
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
468
482
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
469
483
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
@@ -472,57 +486,60 @@ msgstr "Creat pe"
|
|
|
472
486
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
473
487
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
474
488
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
475
|
-
#, python-format
|
|
476
489
|
msgid "Credit"
|
|
477
490
|
msgstr "Credit"
|
|
478
491
|
|
|
479
492
|
#. module: account_financial_report
|
|
493
|
+
#. odoo-python
|
|
480
494
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
481
495
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
482
|
-
|
|
483
|
-
msgid "Cumul. Bal."
|
|
496
|
+
msgid "Cumul cur."
|
|
484
497
|
msgstr ""
|
|
485
498
|
|
|
486
499
|
#. module: account_financial_report
|
|
500
|
+
#. odoo-python
|
|
487
501
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
488
|
-
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
489
|
-
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
490
502
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
503
|
+
msgid "Cumul. Bal."
|
|
504
|
+
msgstr ""
|
|
505
|
+
|
|
506
|
+
#. module: account_financial_report
|
|
507
|
+
#. odoo-python
|
|
508
|
+
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
491
509
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
492
510
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
493
|
-
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
494
|
-
#, python-format
|
|
495
511
|
msgid "Cur."
|
|
496
512
|
msgstr ""
|
|
497
513
|
|
|
498
514
|
#. module: account_financial_report
|
|
515
|
+
#. odoo-python
|
|
499
516
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
500
517
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
501
|
-
#, python-format
|
|
502
518
|
msgid "Cur. Original"
|
|
503
519
|
msgstr ""
|
|
504
520
|
|
|
505
521
|
#. module: account_financial_report
|
|
522
|
+
#. odoo-python
|
|
506
523
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
507
524
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
508
|
-
#, python-format
|
|
509
525
|
msgid "Cur. Residual"
|
|
510
526
|
msgstr ""
|
|
511
527
|
|
|
512
528
|
#. module: account_financial_report
|
|
529
|
+
#. odoo-python
|
|
513
530
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
514
|
-
#, python-format
|
|
515
531
|
msgid "Currency"
|
|
516
532
|
msgstr "Moneda"
|
|
517
533
|
|
|
518
534
|
#. module: account_financial_report
|
|
535
|
+
#. odoo-python
|
|
519
536
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
520
537
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
521
|
-
#, python-format
|
|
522
538
|
msgid "Current"
|
|
523
539
|
msgstr "Curent"
|
|
524
540
|
|
|
525
541
|
#. module: account_financial_report
|
|
542
|
+
#. odoo-python
|
|
526
543
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
527
544
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
528
545
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
@@ -532,7 +549,6 @@ msgstr "Curent"
|
|
|
532
549
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
533
550
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
534
551
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
535
|
-
#, python-format
|
|
536
552
|
msgid "Date"
|
|
537
553
|
msgstr "Data"
|
|
538
554
|
|
|
@@ -556,20 +572,20 @@ msgstr "De la"
|
|
|
556
572
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__date_to
|
|
557
573
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_filters
|
|
558
574
|
msgid "Date To"
|
|
559
|
-
msgstr "
|
|
575
|
+
msgstr "P??n?? la"
|
|
560
576
|
|
|
561
577
|
#. module: account_financial_report
|
|
578
|
+
#. odoo-python
|
|
562
579
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
563
580
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
564
581
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_filters
|
|
565
582
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
566
|
-
#, python-format
|
|
567
583
|
msgid "Date at filter"
|
|
568
584
|
msgstr ""
|
|
569
585
|
|
|
570
586
|
#. module: account_financial_report
|
|
587
|
+
#. odoo-python
|
|
571
588
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
572
|
-
#, python-format
|
|
573
589
|
msgid "Date from"
|
|
574
590
|
msgstr "De la"
|
|
575
591
|
|
|
@@ -582,22 +598,23 @@ msgid "Date range"
|
|
|
582
598
|
msgstr "Interval"
|
|
583
599
|
|
|
584
600
|
#. module: account_financial_report
|
|
601
|
+
#. odoo-python
|
|
585
602
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
586
603
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
587
604
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
588
605
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
589
606
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
590
|
-
#, python-format
|
|
591
607
|
msgid "Date range filter"
|
|
592
608
|
msgstr "Interval selectat"
|
|
593
609
|
|
|
594
610
|
#. module: account_financial_report
|
|
611
|
+
#. odoo-python
|
|
595
612
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
596
|
-
#, python-format
|
|
597
613
|
msgid "Date to"
|
|
598
|
-
msgstr "
|
|
614
|
+
msgstr "P??n?? la"
|
|
599
615
|
|
|
600
616
|
#. module: account_financial_report
|
|
617
|
+
#. odoo-python
|
|
601
618
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
602
619
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
603
620
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
@@ -606,15 +623,14 @@ msgstr "Până la"
|
|
|
606
623
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
607
624
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
608
625
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
609
|
-
#, python-format
|
|
610
626
|
msgid "Debit"
|
|
611
627
|
msgstr "Debit"
|
|
612
628
|
|
|
613
629
|
#. module: account_financial_report
|
|
630
|
+
#. odoo-python
|
|
614
631
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
615
632
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
|
|
616
633
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
617
|
-
#, python-format
|
|
618
634
|
msgid "Description"
|
|
619
635
|
msgstr "Descriere"
|
|
620
636
|
|
|
@@ -624,33 +640,16 @@ msgid "Detail Taxes"
|
|
|
624
640
|
msgstr "Detalii impozite"
|
|
625
641
|
|
|
626
642
|
#. module: account_financial_report
|
|
627
|
-
#: model:ir.model.fields,field_description:account_financial_report.
|
|
628
|
-
#: model:ir.model.fields,field_description:account_financial_report.
|
|
629
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_account_group__display_name
|
|
630
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_account_move_line__display_name
|
|
643
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__display_name
|
|
644
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__display_name
|
|
631
645
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__display_name
|
|
632
646
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__display_name
|
|
633
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_ir_actions_report__display_name
|
|
634
647
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__display_name
|
|
635
648
|
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__display_name
|
|
636
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_aged_partner_balance_xlsx__display_name
|
|
637
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_general_ledger_xlsx__display_name
|
|
638
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_journal_ledger_xlsx__display_name
|
|
639
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_open_items_xlsx__display_name
|
|
640
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_trial_balance_xlsx__display_name
|
|
641
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_vat_report_xlsx__display_name
|
|
642
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_abstract_report__display_name
|
|
643
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_abstract_report_xlsx__display_name
|
|
644
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_aged_partner_balance__display_name
|
|
645
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_general_ledger__display_name
|
|
646
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_journal_ledger__display_name
|
|
647
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_open_items__display_name
|
|
648
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_trial_balance__display_name
|
|
649
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_vat_report__display_name
|
|
650
649
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__display_name
|
|
651
650
|
#: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__display_name
|
|
652
651
|
msgid "Display Name"
|
|
653
|
-
msgstr "Nume
|
|
652
|
+
msgstr "Nume afi??at"
|
|
654
653
|
|
|
655
654
|
#. module: account_financial_report
|
|
656
655
|
#: model:ir.model.fields,help:account_financial_report.field_general_ledger_report_wizard__foreign_currency
|
|
@@ -661,9 +660,9 @@ msgid ""
|
|
|
661
660
|
"setup through chart of accounts will display initial and final balance in "
|
|
662
661
|
"that currency."
|
|
663
662
|
msgstr ""
|
|
664
|
-
"
|
|
665
|
-
"moneda contului nu este
|
|
666
|
-
"
|
|
663
|
+
"Afi??a??i moneda str??in?? pentru liniile de mutare, cu excep??ia cazului ??"
|
|
664
|
+
"n care moneda contului nu este configurat?? prin planul de conturi, va afi??"
|
|
665
|
+
"a soldul ini??ial ??i final ??n moneda respectiv??."
|
|
667
666
|
|
|
668
667
|
#. module: account_financial_report
|
|
669
668
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__hide_parent_hierarchy_level
|
|
@@ -675,7 +674,7 @@ msgstr ""
|
|
|
675
674
|
msgid ""
|
|
676
675
|
"Due\n"
|
|
677
676
|
" date"
|
|
678
|
-
msgstr "
|
|
677
|
+
msgstr "Dat?? scadent??"
|
|
679
678
|
|
|
680
679
|
#. module: account_financial_report
|
|
681
680
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
@@ -683,20 +682,20 @@ msgid ""
|
|
|
683
682
|
"Due\n"
|
|
684
683
|
" date"
|
|
685
684
|
msgstr ""
|
|
686
|
-
"
|
|
687
|
-
"
|
|
685
|
+
"Dat?? \n"
|
|
686
|
+
"scadent??"
|
|
688
687
|
|
|
689
688
|
#. module: account_financial_report
|
|
689
|
+
#. odoo-python
|
|
690
690
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
691
691
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
692
|
-
#, python-format
|
|
693
692
|
msgid "Due date"
|
|
694
|
-
msgstr "Data
|
|
693
|
+
msgstr "Data scadent??"
|
|
695
694
|
|
|
696
695
|
#. module: account_financial_report
|
|
697
696
|
#: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__date_to
|
|
698
697
|
msgid "End Date"
|
|
699
|
-
msgstr "
|
|
698
|
+
msgstr "Dat?? final"
|
|
700
699
|
|
|
701
700
|
#. module: account_financial_report
|
|
702
701
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__date_to
|
|
@@ -721,12 +720,12 @@ msgid "Ending account in a range"
|
|
|
721
720
|
msgstr ""
|
|
722
721
|
|
|
723
722
|
#. module: account_financial_report
|
|
723
|
+
#. odoo-python
|
|
724
724
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
725
725
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
726
726
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
727
727
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_ending_cumul
|
|
728
728
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
729
|
-
#, python-format
|
|
730
729
|
msgid "Ending balance"
|
|
731
730
|
msgstr "Sold final"
|
|
732
731
|
|
|
@@ -738,12 +737,13 @@ msgid ""
|
|
|
738
737
|
msgstr ""
|
|
739
738
|
|
|
740
739
|
#. module: account_financial_report
|
|
740
|
+
#. odoo-python
|
|
741
741
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
742
|
-
#, python-format
|
|
743
742
|
msgid "Entries sorted by"
|
|
744
|
-
msgstr "
|
|
743
|
+
msgstr "??nregistr??ri sortate dup??"
|
|
745
744
|
|
|
746
745
|
#. module: account_financial_report
|
|
746
|
+
#. odoo-python
|
|
747
747
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
748
748
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
749
749
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
@@ -752,20 +752,18 @@ msgstr "Înregistrări sortate după"
|
|
|
752
752
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
753
753
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
754
754
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
755
|
-
#, python-format
|
|
756
755
|
msgid "Entry"
|
|
757
|
-
msgstr "
|
|
756
|
+
msgstr "??nregistrare"
|
|
758
757
|
|
|
759
758
|
#. module: account_financial_report
|
|
759
|
+
#. odoo-python
|
|
760
760
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
761
|
-
#, python-format
|
|
762
761
|
msgid "Entry number"
|
|
763
|
-
msgstr "
|
|
762
|
+
msgstr "Num??r ??nregistrare"
|
|
764
763
|
|
|
765
764
|
#. module: account_financial_report
|
|
766
|
-
#.
|
|
765
|
+
#. odoo-javascript
|
|
767
766
|
#: code:addons/account_financial_report/static/src/xml/report.xml:0
|
|
768
|
-
#, python-format
|
|
769
767
|
msgid "Export"
|
|
770
768
|
msgstr ""
|
|
771
769
|
|
|
@@ -787,7 +785,7 @@ msgstr "Export PDF"
|
|
|
787
785
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.trial_balance_wizard
|
|
788
786
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.vat_report_wizard
|
|
789
787
|
msgid "Export XLSX"
|
|
790
|
-
msgstr "
|
|
788
|
+
msgstr "Exporta??i XLSX"
|
|
791
789
|
|
|
792
790
|
#. module: account_financial_report
|
|
793
791
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__account_ids
|
|
@@ -801,23 +799,17 @@ msgstr "Contrui filtrate"
|
|
|
801
799
|
#. module: account_financial_report
|
|
802
800
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
|
|
803
801
|
msgid "Filter analytic accounts"
|
|
804
|
-
msgstr "
|
|
805
|
-
|
|
806
|
-
#. module: account_financial_report
|
|
807
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__analytic_tag_ids
|
|
808
|
-
#: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
|
|
809
|
-
msgid "Filter analytic tags"
|
|
810
|
-
msgstr "Filtrează etichetele analitice"
|
|
802
|
+
msgstr "Filtra??i conturile analitice"
|
|
811
803
|
|
|
812
804
|
#. module: account_financial_report
|
|
813
805
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__cost_center_ids
|
|
814
806
|
msgid "Filter cost centers"
|
|
815
|
-
msgstr "
|
|
807
|
+
msgstr "Filtreaz?? centrele de cost"
|
|
816
808
|
|
|
817
809
|
#. module: account_financial_report
|
|
818
810
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__account_journal_ids
|
|
819
811
|
msgid "Filter journals"
|
|
820
|
-
msgstr "
|
|
812
|
+
msgstr "Filtreaz?? Jurnale"
|
|
821
813
|
|
|
822
814
|
#. module: account_financial_report
|
|
823
815
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__partner_ids
|
|
@@ -831,7 +823,12 @@ msgstr "Filtru partener"
|
|
|
831
823
|
#. module: account_financial_report
|
|
832
824
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__foreign_currency
|
|
833
825
|
msgid "Foreign Currency"
|
|
834
|
-
msgstr "
|
|
826
|
+
msgstr "Moned?? str??in??"
|
|
827
|
+
|
|
828
|
+
#. module: account_financial_report
|
|
829
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
|
|
830
|
+
msgid "Format"
|
|
831
|
+
msgstr ""
|
|
835
832
|
|
|
836
833
|
#. module: account_financial_report
|
|
837
834
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.aged_partner_balance_wizard
|
|
@@ -848,12 +845,12 @@ msgid "From:"
|
|
|
848
845
|
msgstr "De la:"
|
|
849
846
|
|
|
850
847
|
#. module: account_financial_report
|
|
848
|
+
#. odoo-python
|
|
851
849
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
852
850
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
853
851
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
msgstr "De la: %s la: %s"
|
|
852
|
+
msgid "From: %(date_from)s To: %(date_to)s"
|
|
853
|
+
msgstr ""
|
|
857
854
|
|
|
858
855
|
#. module: account_financial_report
|
|
859
856
|
#: model:ir.model.fields,field_description:account_financial_report.field_account_group__complete_code
|
|
@@ -872,13 +869,13 @@ msgid "Fy Start Date"
|
|
|
872
869
|
msgstr ""
|
|
873
870
|
|
|
874
871
|
#. module: account_financial_report
|
|
872
|
+
#. odoo-python
|
|
875
873
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
876
874
|
#: model:ir.actions.act_window,name:account_financial_report.act_action_general_ledger_wizard_partner_relation
|
|
877
875
|
#: model:ir.actions.act_window,name:account_financial_report.action_general_ledger_wizard
|
|
878
876
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_general_ledger_html
|
|
879
877
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_general_ledger_qweb
|
|
880
878
|
#: model:ir.ui.menu,name:account_financial_report.menu_general_ledger_wizard
|
|
881
|
-
#, python-format
|
|
882
879
|
msgid "General Ledger"
|
|
883
880
|
msgstr "Carte mare"
|
|
884
881
|
|
|
@@ -918,16 +915,29 @@ msgstr ""
|
|
|
918
915
|
#. module: account_financial_report
|
|
919
916
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__group_option
|
|
920
917
|
msgid "Group entries by"
|
|
921
|
-
msgstr "
|
|
918
|
+
msgstr "Intr??ri de grup dup??"
|
|
919
|
+
|
|
920
|
+
#. module: account_financial_report
|
|
921
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__grouped_by
|
|
922
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__grouped_by
|
|
923
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__grouped_by
|
|
924
|
+
msgid "Grouped By"
|
|
925
|
+
msgstr ""
|
|
922
926
|
|
|
923
927
|
#. module: account_financial_report
|
|
928
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
929
|
+
msgid ""
|
|
930
|
+
"Here you can set the intervals that will appear on the Aged Partner Balance."
|
|
931
|
+
msgstr ""
|
|
932
|
+
|
|
933
|
+
#. module: account_financial_report
|
|
934
|
+
#. odoo-python
|
|
924
935
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
925
936
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
926
937
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
927
938
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
928
939
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
929
940
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
930
|
-
#, python-format
|
|
931
941
|
msgid "Hide"
|
|
932
942
|
msgstr "Ascunde"
|
|
933
943
|
|
|
@@ -945,37 +955,15 @@ msgstr "Ascunde conturile cu zero"
|
|
|
945
955
|
#. module: account_financial_report
|
|
946
956
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__show_hierarchy_level
|
|
947
957
|
msgid "Hierarchy Levels to display"
|
|
948
|
-
msgstr "Niveluri Ierahie de
|
|
949
|
-
|
|
950
|
-
#. module: account_financial_report
|
|
951
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__hierarchy_on
|
|
952
|
-
msgid "Hierarchy On"
|
|
953
|
-
msgstr "Activare ierarhie"
|
|
958
|
+
msgstr "Niveluri Ierahie de afi??at"
|
|
954
959
|
|
|
955
960
|
#. module: account_financial_report
|
|
956
|
-
#: model:ir.model.fields,field_description:account_financial_report.
|
|
957
|
-
#: model:ir.model.fields,field_description:account_financial_report.
|
|
958
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_account_group__id
|
|
959
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_account_move_line__id
|
|
961
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__id
|
|
962
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__id
|
|
960
963
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__id
|
|
961
964
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__id
|
|
962
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_ir_actions_report__id
|
|
963
965
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__id
|
|
964
966
|
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__id
|
|
965
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_aged_partner_balance_xlsx__id
|
|
966
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_general_ledger_xlsx__id
|
|
967
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_journal_ledger_xlsx__id
|
|
968
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_open_items_xlsx__id
|
|
969
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_trial_balance_xlsx__id
|
|
970
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_vat_report_xlsx__id
|
|
971
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_abstract_report__id
|
|
972
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_abstract_report_xlsx__id
|
|
973
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_aged_partner_balance__id
|
|
974
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_general_ledger__id
|
|
975
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_journal_ledger__id
|
|
976
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_open_items__id
|
|
977
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_trial_balance__id
|
|
978
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_vat_report__id
|
|
979
967
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__id
|
|
980
968
|
#: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__id
|
|
981
969
|
msgid "ID"
|
|
@@ -988,13 +976,24 @@ msgid ""
|
|
|
988
976
|
"webkit one only), only centralized amounts per period."
|
|
989
977
|
msgstr ""
|
|
990
978
|
|
|
979
|
+
#. module: account_financial_report
|
|
980
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__inferior_limit
|
|
981
|
+
msgid "Inferior Limit"
|
|
982
|
+
msgstr ""
|
|
983
|
+
|
|
984
|
+
#. module: account_financial_report
|
|
985
|
+
#. odoo-python
|
|
986
|
+
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
987
|
+
msgid "Inferior Limit must be greather than zero"
|
|
988
|
+
msgstr ""
|
|
989
|
+
|
|
991
990
|
#. module: account_financial_report
|
|
992
991
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
993
992
|
#, fuzzy
|
|
994
993
|
msgid ""
|
|
995
994
|
"Initial\n"
|
|
996
995
|
" balance cur."
|
|
997
|
-
msgstr "Sold
|
|
996
|
+
msgstr "Sold ini??ial"
|
|
998
997
|
|
|
999
998
|
#. module: account_financial_report
|
|
1000
999
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
@@ -1003,17 +1002,24 @@ msgid ""
|
|
|
1003
1002
|
" balance"
|
|
1004
1003
|
msgstr ""
|
|
1005
1004
|
"Sold \n"
|
|
1006
|
-
"
|
|
1005
|
+
"ini??ial"
|
|
1007
1006
|
|
|
1008
1007
|
#. module: account_financial_report
|
|
1008
|
+
#. odoo-python
|
|
1009
1009
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1010
1010
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1011
1011
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1012
|
-
#, python-format
|
|
1013
1012
|
msgid "Initial balance"
|
|
1014
|
-
msgstr "Sold
|
|
1013
|
+
msgstr "Sold ini??ial"
|
|
1014
|
+
|
|
1015
|
+
#. module: account_financial_report
|
|
1016
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__age_partner_config_id
|
|
1017
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_res_config_settings__age_partner_config_id
|
|
1018
|
+
msgid "Intervals configuration"
|
|
1019
|
+
msgstr ""
|
|
1015
1020
|
|
|
1016
1021
|
#. module: account_financial_report
|
|
1022
|
+
#. odoo-python
|
|
1017
1023
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1018
1024
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1019
1025
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
@@ -1022,7 +1028,6 @@ msgstr "Sold inițial"
|
|
|
1022
1028
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
1023
1029
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1024
1030
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1025
|
-
#, python-format
|
|
1026
1031
|
msgid "Journal"
|
|
1027
1032
|
msgstr "Jurnal"
|
|
1028
1033
|
|
|
@@ -1037,11 +1042,12 @@ msgid "Journal Items Domain"
|
|
|
1037
1042
|
msgstr "Domeniul articolelor din jurnal"
|
|
1038
1043
|
|
|
1039
1044
|
#. module: account_financial_report
|
|
1045
|
+
#. odoo-python
|
|
1040
1046
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1041
1047
|
#: model:ir.actions.act_window,name:account_financial_report.action_journal_ledger_wizard
|
|
1042
1048
|
#: model:ir.actions.report,name:account_financial_report.action_print_journal_ledger_wizard_html
|
|
1043
1049
|
#: model:ir.ui.menu,name:account_financial_report.menu_journal_ledger_wizard
|
|
1044
|
-
#, fuzzy
|
|
1050
|
+
#, fuzzy
|
|
1045
1051
|
msgid "Journal Ledger"
|
|
1046
1052
|
msgstr "Jurnal"
|
|
1047
1053
|
|
|
@@ -1074,43 +1080,27 @@ msgid "Journal Ledger XLSX Report"
|
|
|
1074
1080
|
msgstr "Jurnal"
|
|
1075
1081
|
|
|
1076
1082
|
#. module: account_financial_report
|
|
1083
|
+
#. odoo-python
|
|
1077
1084
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1078
1085
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__journal_ids
|
|
1079
1086
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.journal_ledger_wizard
|
|
1080
|
-
#, python-format
|
|
1081
1087
|
msgid "Journals"
|
|
1082
1088
|
msgstr "Jurnale"
|
|
1083
1089
|
|
|
1084
1090
|
#. module: account_financial_report
|
|
1085
|
-
#: model:ir.model.fields,field_description:account_financial_report.
|
|
1086
|
-
#: model:ir.model.fields,field_description:account_financial_report.
|
|
1087
|
-
#: model:ir.model.fields,field_description:account_financial_report.
|
|
1088
|
-
#: model:ir.model.fields,field_description:account_financial_report.
|
|
1089
|
-
#: model:ir.model.fields,field_description:account_financial_report.
|
|
1090
|
-
#: model:ir.model.fields,field_description:account_financial_report.
|
|
1091
|
-
#: model:ir.model.fields,field_description:account_financial_report.
|
|
1092
|
-
|
|
1093
|
-
|
|
1094
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_aged_partner_balance_xlsx____last_update
|
|
1095
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_general_ledger_xlsx____last_update
|
|
1096
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_journal_ledger_xlsx____last_update
|
|
1097
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_open_items_xlsx____last_update
|
|
1098
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_trial_balance_xlsx____last_update
|
|
1099
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_vat_report_xlsx____last_update
|
|
1100
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_abstract_report____last_update
|
|
1101
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_abstract_report_xlsx____last_update
|
|
1102
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_aged_partner_balance____last_update
|
|
1103
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_general_ledger____last_update
|
|
1104
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_journal_ledger____last_update
|
|
1105
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_open_items____last_update
|
|
1106
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_trial_balance____last_update
|
|
1107
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_vat_report____last_update
|
|
1108
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard____last_update
|
|
1109
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard____last_update
|
|
1110
|
-
msgid "Last Modified on"
|
|
1111
|
-
msgstr "Ultima modificare pe"
|
|
1091
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_financial_report_abstract_wizard__label_text_limit
|
|
1092
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__label_text_limit
|
|
1093
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__label_text_limit
|
|
1094
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__label_text_limit
|
|
1095
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__label_text_limit
|
|
1096
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__label_text_limit
|
|
1097
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__label_text_limit
|
|
1098
|
+
msgid "Label Text Limit"
|
|
1099
|
+
msgstr ""
|
|
1112
1100
|
|
|
1113
1101
|
#. module: account_financial_report
|
|
1102
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__write_uid
|
|
1103
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__write_uid
|
|
1114
1104
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__write_uid
|
|
1115
1105
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__write_uid
|
|
1116
1106
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__write_uid
|
|
@@ -1118,9 +1108,11 @@ msgstr "Ultima modificare pe"
|
|
|
1118
1108
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__write_uid
|
|
1119
1109
|
#: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__write_uid
|
|
1120
1110
|
msgid "Last Updated by"
|
|
1121
|
-
msgstr "Ultima
|
|
1111
|
+
msgstr "Ultima dat?? actualizat de"
|
|
1122
1112
|
|
|
1123
1113
|
#. module: account_financial_report
|
|
1114
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__write_date
|
|
1115
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__write_date
|
|
1124
1116
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__write_date
|
|
1125
1117
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__write_date
|
|
1126
1118
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__write_date
|
|
@@ -1137,76 +1129,119 @@ msgid "Level"
|
|
|
1137
1129
|
msgstr "Nivel"
|
|
1138
1130
|
|
|
1139
1131
|
#. module: account_financial_report
|
|
1132
|
+
#. odoo-python
|
|
1140
1133
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1141
|
-
#, python-format
|
|
1142
1134
|
msgid "Level %s"
|
|
1143
1135
|
msgstr "Nivel %s"
|
|
1144
1136
|
|
|
1145
1137
|
#. module: account_financial_report
|
|
1138
|
+
#. odoo-python
|
|
1146
1139
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1147
1140
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__limit_hierarchy_level
|
|
1148
1141
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1149
|
-
#, python-format
|
|
1150
1142
|
msgid "Limit hierarchy levels"
|
|
1151
|
-
msgstr "
|
|
1143
|
+
msgstr "Limita??i nivelurile de ierarhie"
|
|
1144
|
+
|
|
1145
|
+
#. module: account_financial_report
|
|
1146
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__line_ids
|
|
1147
|
+
msgid "Line"
|
|
1148
|
+
msgstr "Linie"
|
|
1149
|
+
|
|
1150
|
+
#. module: account_financial_report
|
|
1151
|
+
#. odoo-python
|
|
1152
|
+
#: code:addons/account_financial_report/report/general_ledger.py:0
|
|
1153
|
+
#: code:addons/account_financial_report/report/open_items.py:0
|
|
1154
|
+
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1155
|
+
#: code:addons/account_financial_report/report/trial_balance.py:0
|
|
1156
|
+
msgid "Missing Partner"
|
|
1157
|
+
msgstr ""
|
|
1158
|
+
|
|
1159
|
+
#. module: account_financial_report
|
|
1160
|
+
#. odoo-python
|
|
1161
|
+
#: code:addons/account_financial_report/report/open_items.py:0
|
|
1162
|
+
msgid "Missing Salesperson"
|
|
1163
|
+
msgstr ""
|
|
1164
|
+
|
|
1165
|
+
#. module: account_financial_report
|
|
1166
|
+
#: model:ir.model,name:account_financial_report.model_account_age_report_configuration_line
|
|
1167
|
+
msgid "Model to set interval lines for Age partner balance report"
|
|
1168
|
+
msgstr ""
|
|
1169
|
+
|
|
1170
|
+
#. module: account_financial_report
|
|
1171
|
+
#: model:ir.model,name:account_financial_report.model_account_age_report_configuration
|
|
1172
|
+
msgid "Model to set intervals for Age partner balance report"
|
|
1173
|
+
msgstr ""
|
|
1152
1174
|
|
|
1153
1175
|
#. module: account_financial_report
|
|
1154
1176
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__move_target
|
|
1155
1177
|
msgid "Move Target"
|
|
1156
|
-
msgstr "
|
|
1178
|
+
msgstr "Mi??c??ri ??int??"
|
|
1157
1179
|
|
|
1158
1180
|
#. module: account_financial_report
|
|
1159
1181
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal
|
|
1160
1182
|
msgid "Moves"
|
|
1161
|
-
msgstr "
|
|
1183
|
+
msgstr "Mi??c??ri"
|
|
1184
|
+
|
|
1185
|
+
#. module: account_financial_report
|
|
1186
|
+
#. odoo-python
|
|
1187
|
+
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1188
|
+
msgid "Must complete Configuration Lines"
|
|
1189
|
+
msgstr ""
|
|
1162
1190
|
|
|
1163
1191
|
#. module: account_financial_report
|
|
1192
|
+
#. odoo-python
|
|
1164
1193
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1165
1194
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1195
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__name
|
|
1196
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__name
|
|
1166
1197
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
|
|
1167
1198
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
1168
1199
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
1169
|
-
#, python-format
|
|
1170
1200
|
msgid "Name"
|
|
1171
1201
|
msgstr "Nume"
|
|
1172
1202
|
|
|
1173
1203
|
#. module: account_financial_report
|
|
1204
|
+
#: model:ir.model.constraint,message:account_financial_report.constraint_account_age_report_configuration_line_unique_name_config_combination
|
|
1205
|
+
msgid "Name must be unique per report configuration"
|
|
1206
|
+
msgstr ""
|
|
1207
|
+
|
|
1208
|
+
#. module: account_financial_report
|
|
1209
|
+
#. odoo-python
|
|
1174
1210
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1175
1211
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
1176
|
-
#, python-format
|
|
1177
1212
|
msgid "Net"
|
|
1178
1213
|
msgstr "Brut"
|
|
1179
1214
|
|
|
1180
1215
|
#. module: account_financial_report
|
|
1216
|
+
#. odoo-python
|
|
1181
1217
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1182
1218
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1183
1219
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1184
1220
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1185
|
-
#, python-format
|
|
1186
1221
|
msgid "No"
|
|
1187
1222
|
msgstr "Nu"
|
|
1188
1223
|
|
|
1189
1224
|
#. module: account_financial_report
|
|
1225
|
+
#. odoo-python
|
|
1190
1226
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
1191
|
-
#, python-format
|
|
1192
1227
|
msgid "No group"
|
|
1193
1228
|
msgstr "Niciun grup"
|
|
1194
1229
|
|
|
1195
1230
|
#. module: account_financial_report
|
|
1196
|
-
|
|
1197
|
-
msgid "No hierarchy"
|
|
1198
|
-
msgstr "Fără ierahie"
|
|
1199
|
-
|
|
1200
|
-
#. module: account_financial_report
|
|
1231
|
+
#. odoo-python
|
|
1201
1232
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1202
1233
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1203
|
-
#, python-format
|
|
1204
1234
|
msgid "No limit"
|
|
1205
|
-
msgstr "Nicio
|
|
1235
|
+
msgstr "Nicio limit??"
|
|
1236
|
+
|
|
1237
|
+
#. module: account_financial_report
|
|
1238
|
+
#: model:ir.model.fields.selection,name:account_financial_report.selection__general_ledger_report_wizard__grouped_by__none
|
|
1239
|
+
msgid "None"
|
|
1240
|
+
msgstr ""
|
|
1206
1241
|
|
|
1207
1242
|
#. module: account_financial_report
|
|
1243
|
+
#. odoo-python
|
|
1208
1244
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
1209
|
-
#, python-format
|
|
1210
1245
|
msgid "Not Posted"
|
|
1211
1246
|
msgstr "Nepostat"
|
|
1212
1247
|
|
|
@@ -1216,10 +1251,9 @@ msgid "Not due"
|
|
|
1216
1251
|
msgstr "Nescadent"
|
|
1217
1252
|
|
|
1218
1253
|
#. module: account_financial_report
|
|
1219
|
-
#:
|
|
1220
|
-
|
|
1221
|
-
|
|
1222
|
-
msgstr "Nu numai un cont de câștiguri neafectat"
|
|
1254
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
1255
|
+
msgid "OCA Aged Report Configuration"
|
|
1256
|
+
msgstr ""
|
|
1223
1257
|
|
|
1224
1258
|
#. module: account_financial_report
|
|
1225
1259
|
#: model:ir.ui.menu,name:account_financial_report.menu_oca_reports
|
|
@@ -1227,36 +1261,42 @@ msgid "OCA accounting reports"
|
|
|
1227
1261
|
msgstr "Rapoarte contabilitate"
|
|
1228
1262
|
|
|
1229
1263
|
#. module: account_financial_report
|
|
1264
|
+
#. odoo-python
|
|
1230
1265
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1231
1266
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
1232
|
-
#, python-format
|
|
1233
1267
|
msgid "Older"
|
|
1234
1268
|
msgstr "Mai vechi"
|
|
1235
1269
|
|
|
1236
1270
|
#. module: account_financial_report
|
|
1271
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__only_one_unaffected_earnings_account
|
|
1272
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__only_one_unaffected_earnings_account
|
|
1273
|
+
msgid "Only One Unaffected Earnings Account"
|
|
1274
|
+
msgstr ""
|
|
1275
|
+
|
|
1276
|
+
#. module: account_financial_report
|
|
1277
|
+
#. odoo-python
|
|
1237
1278
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1238
1279
|
#: model:ir.actions.act_window,name:account_financial_report.action_open_items_wizard
|
|
1239
1280
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_open_items_html
|
|
1240
1281
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_open_items_qweb
|
|
1241
1282
|
#: model:ir.ui.menu,name:account_financial_report.menu_open_items_wizard
|
|
1242
|
-
#, python-format
|
|
1243
1283
|
msgid "Open Items"
|
|
1244
|
-
msgstr "
|
|
1284
|
+
msgstr "Pozi??ii deschise"
|
|
1245
1285
|
|
|
1246
1286
|
#. module: account_financial_report
|
|
1247
1287
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_base
|
|
1248
1288
|
msgid "Open Items -"
|
|
1249
|
-
msgstr "
|
|
1289
|
+
msgstr "Pozi??ii deschise -"
|
|
1250
1290
|
|
|
1251
1291
|
#. module: account_financial_report
|
|
1252
1292
|
#: model:ir.actions.act_window,name:account_financial_report.act_action_open_items_wizard_partner_relation
|
|
1253
1293
|
msgid "Open Items Partner"
|
|
1254
|
-
msgstr "
|
|
1294
|
+
msgstr "Pozi??ii deschise partener"
|
|
1255
1295
|
|
|
1256
1296
|
#. module: account_financial_report
|
|
1257
1297
|
#: model:ir.model,name:account_financial_report.model_report_account_financial_report_open_items
|
|
1258
1298
|
msgid "Open Items Report"
|
|
1259
|
-
msgstr "
|
|
1299
|
+
msgstr "Deschide??i raportul de articole"
|
|
1260
1300
|
|
|
1261
1301
|
#. module: account_financial_report
|
|
1262
1302
|
#: model:ir.model,name:account_financial_report.model_open_items_report_wizard
|
|
@@ -1271,21 +1311,22 @@ msgstr ""
|
|
|
1271
1311
|
#. module: account_financial_report
|
|
1272
1312
|
#: model:ir.model,name:account_financial_report.model_report_a_f_r_report_open_items_xlsx
|
|
1273
1313
|
msgid "Open Items XLSX Report"
|
|
1274
|
-
msgstr "
|
|
1314
|
+
msgstr "Deschide??i raprortul XLSX de articole"
|
|
1275
1315
|
|
|
1276
1316
|
#. module: account_financial_report
|
|
1277
1317
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.journal_ledger_wizard
|
|
1278
1318
|
msgid "Options"
|
|
1279
|
-
msgstr "
|
|
1319
|
+
msgstr "Op??iuni"
|
|
1280
1320
|
|
|
1281
1321
|
#. module: account_financial_report
|
|
1322
|
+
#. odoo-python
|
|
1282
1323
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1283
1324
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1284
|
-
#, python-format
|
|
1285
1325
|
msgid "Original"
|
|
1286
1326
|
msgstr "Original"
|
|
1287
1327
|
|
|
1288
1328
|
#. module: account_financial_report
|
|
1329
|
+
#. odoo-python
|
|
1289
1330
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1290
1331
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1291
1332
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
@@ -1297,7 +1338,6 @@ msgstr "Original"
|
|
|
1297
1338
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1298
1339
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1299
1340
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
1300
|
-
#, python-format
|
|
1301
1341
|
msgid "Partner"
|
|
1302
1342
|
msgstr "Partenr"
|
|
1303
1343
|
|
|
@@ -1309,33 +1349,49 @@ msgid ""
|
|
|
1309
1349
|
msgstr ""
|
|
1310
1350
|
|
|
1311
1351
|
#. module: account_financial_report
|
|
1352
|
+
#. odoo-python
|
|
1312
1353
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1313
|
-
#, python-format
|
|
1314
1354
|
msgid "Partner Initial balance"
|
|
1315
|
-
msgstr "Sold
|
|
1355
|
+
msgstr "Sold ini??ial partener"
|
|
1316
1356
|
|
|
1317
1357
|
#. module: account_financial_report
|
|
1358
|
+
#: model:ir.model.fields.selection,name:account_financial_report.selection__open_items_report_wizard__grouped_by__salesperson
|
|
1359
|
+
msgid "Partner Salesperson"
|
|
1360
|
+
msgstr ""
|
|
1361
|
+
|
|
1362
|
+
#. module: account_financial_report
|
|
1363
|
+
#. odoo-python
|
|
1318
1364
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1319
|
-
#, python-format
|
|
1320
1365
|
msgid "Partner cumul aged balance"
|
|
1321
1366
|
msgstr ""
|
|
1322
1367
|
|
|
1323
1368
|
#. module: account_financial_report
|
|
1369
|
+
#. odoo-python
|
|
1324
1370
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1325
1371
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1326
1372
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_ending_cumul
|
|
1327
1373
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_ending_cumul
|
|
1328
|
-
#, python-format
|
|
1329
1374
|
msgid "Partner ending balance"
|
|
1330
1375
|
msgstr "Sold final al partenerului"
|
|
1331
1376
|
|
|
1377
|
+
#. module: account_financial_report
|
|
1378
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1379
|
+
msgid "Partner initial balance"
|
|
1380
|
+
msgstr ""
|
|
1381
|
+
|
|
1382
|
+
#. module: account_financial_report
|
|
1383
|
+
#: model:ir.model.fields.selection,name:account_financial_report.selection__general_ledger_report_wizard__grouped_by__partners
|
|
1384
|
+
#: model:ir.model.fields.selection,name:account_financial_report.selection__open_items_report_wizard__grouped_by__partners
|
|
1385
|
+
msgid "Partners"
|
|
1386
|
+
msgstr ""
|
|
1387
|
+
|
|
1332
1388
|
#. module: account_financial_report
|
|
1333
1389
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__payable_accounts_only
|
|
1334
1390
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__payable_accounts_only
|
|
1335
1391
|
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__payable_accounts_only
|
|
1336
1392
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__payable_accounts_only
|
|
1337
1393
|
msgid "Payable Accounts Only"
|
|
1338
|
-
msgstr "Numai conturi de
|
|
1394
|
+
msgstr "Numai conturi de pl??tit"
|
|
1339
1395
|
|
|
1340
1396
|
#. module: account_financial_report
|
|
1341
1397
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_account_ending_cumul
|
|
@@ -1343,9 +1399,9 @@ msgid "Percents"
|
|
|
1343
1399
|
msgstr "Procente"
|
|
1344
1400
|
|
|
1345
1401
|
#. module: account_financial_report
|
|
1402
|
+
#. odoo-python
|
|
1346
1403
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1347
1404
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
1348
|
-
#, python-format
|
|
1349
1405
|
msgid "Period balance"
|
|
1350
1406
|
msgstr ""
|
|
1351
1407
|
|
|
@@ -1355,22 +1411,15 @@ msgid "Periods"
|
|
|
1355
1411
|
msgstr "Perioade"
|
|
1356
1412
|
|
|
1357
1413
|
#. module: account_financial_report
|
|
1414
|
+
#. odoo-python
|
|
1358
1415
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
1359
|
-
#, python-format
|
|
1360
1416
|
msgid "Posted"
|
|
1361
1417
|
msgstr "Postat"
|
|
1362
1418
|
|
|
1363
1419
|
#. module: account_financial_report
|
|
1364
|
-
#.
|
|
1365
|
-
#: code:addons/account_financial_report/static/src/xml/report.xml:0
|
|
1366
|
-
#, python-format
|
|
1367
|
-
msgid "Print"
|
|
1368
|
-
msgstr ""
|
|
1369
|
-
|
|
1370
|
-
#. module: account_financial_report
|
|
1420
|
+
#. odoo-python
|
|
1371
1421
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1372
1422
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1373
|
-
#, python-format
|
|
1374
1423
|
msgid "Rec."
|
|
1375
1424
|
msgstr ""
|
|
1376
1425
|
|
|
@@ -1380,7 +1429,7 @@ msgstr ""
|
|
|
1380
1429
|
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__receivable_accounts_only
|
|
1381
1430
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__receivable_accounts_only
|
|
1382
1431
|
msgid "Receivable Accounts Only"
|
|
1383
|
-
msgstr "Numai conturi de
|
|
1432
|
+
msgstr "Numai conturi de ??ncasat"
|
|
1384
1433
|
|
|
1385
1434
|
#. module: account_financial_report
|
|
1386
1435
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
@@ -1395,55 +1444,55 @@ msgstr ""
|
|
|
1395
1444
|
msgid ""
|
|
1396
1445
|
"Ref -\n"
|
|
1397
1446
|
" Label"
|
|
1398
|
-
msgstr "
|
|
1447
|
+
msgstr "Referin????"
|
|
1399
1448
|
|
|
1400
1449
|
#. module: account_financial_report
|
|
1450
|
+
#. odoo-python
|
|
1401
1451
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1402
1452
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1403
1453
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1404
1454
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1405
1455
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1406
|
-
#, python-format
|
|
1407
1456
|
msgid "Ref - Label"
|
|
1408
1457
|
msgstr ""
|
|
1409
1458
|
|
|
1410
1459
|
#. module: account_financial_report
|
|
1411
1460
|
#: model:ir.model,name:account_financial_report.model_ir_actions_report
|
|
1412
1461
|
msgid "Report Action"
|
|
1413
|
-
msgstr "
|
|
1462
|
+
msgstr "Raporta??i ac??iunea"
|
|
1414
1463
|
|
|
1415
1464
|
#. module: account_financial_report
|
|
1465
|
+
#. odoo-python
|
|
1416
1466
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1417
1467
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1418
1468
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_lines_header
|
|
1419
1469
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
1420
1470
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1421
|
-
#, python-format
|
|
1422
1471
|
msgid "Residual"
|
|
1423
1472
|
msgstr "Rezidual"
|
|
1424
1473
|
|
|
1425
1474
|
#. module: account_financial_report
|
|
1475
|
+
#. odoo-python
|
|
1426
1476
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1427
1477
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1428
|
-
#, python-format
|
|
1429
1478
|
msgid "Sequence"
|
|
1430
|
-
msgstr "
|
|
1479
|
+
msgstr "Secven????"
|
|
1431
1480
|
|
|
1432
1481
|
#. module: account_financial_report
|
|
1482
|
+
#. odoo-python
|
|
1433
1483
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1434
1484
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1435
1485
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1436
1486
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1437
1487
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
1438
1488
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1439
|
-
#, python-format
|
|
1440
1489
|
msgid "Show"
|
|
1441
|
-
msgstr "
|
|
1490
|
+
msgstr "Afi??are"
|
|
1442
1491
|
|
|
1443
1492
|
#. module: account_financial_report
|
|
1444
1493
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__show_cost_center
|
|
1445
1494
|
msgid "Show Analytic Account"
|
|
1446
|
-
msgstr "
|
|
1495
|
+
msgstr "Afi??a??i contul analitic"
|
|
1447
1496
|
|
|
1448
1497
|
#. module: account_financial_report
|
|
1449
1498
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__with_auto_sequence
|
|
@@ -1453,61 +1502,61 @@ msgstr ""
|
|
|
1453
1502
|
#. module: account_financial_report
|
|
1454
1503
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__show_move_line_details
|
|
1455
1504
|
msgid "Show Move Line Details"
|
|
1456
|
-
msgstr "
|
|
1505
|
+
msgstr "Afi??a??i detaliile liniei de mi??care"
|
|
1457
1506
|
|
|
1458
1507
|
#. module: account_financial_report
|
|
1459
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__show_partner_details
|
|
1460
1508
|
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__show_partner_details
|
|
1461
1509
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__show_partner_details
|
|
1462
1510
|
msgid "Show Partner Details"
|
|
1463
|
-
msgstr "
|
|
1464
|
-
|
|
1465
|
-
#. module: account_financial_report
|
|
1466
|
-
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1467
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__show_analytic_tags
|
|
1468
|
-
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1469
|
-
#, python-format
|
|
1470
|
-
msgid "Show analytic tags"
|
|
1471
|
-
msgstr "Afișați etichete analitice"
|
|
1511
|
+
msgstr "Afi??a??i detaliile partenerului"
|
|
1472
1512
|
|
|
1473
1513
|
#. module: account_financial_report
|
|
1514
|
+
#. odoo-python
|
|
1474
1515
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1475
1516
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1476
1517
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1477
1518
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__foreign_currency
|
|
1478
1519
|
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__foreign_currency
|
|
1479
1520
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__foreign_currency
|
|
1480
|
-
#, python-format
|
|
1481
1521
|
msgid "Show foreign currency"
|
|
1482
|
-
msgstr "
|
|
1522
|
+
msgstr "Afi??a??i moned?? str??in??"
|
|
1523
|
+
|
|
1524
|
+
#. module: account_financial_report
|
|
1525
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__show_hierarchy
|
|
1526
|
+
msgid "Show hierarchy"
|
|
1527
|
+
msgstr ""
|
|
1483
1528
|
|
|
1484
1529
|
#. module: account_financial_report
|
|
1485
1530
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__sort_option
|
|
1486
1531
|
msgid "Sort entries by"
|
|
1487
|
-
msgstr "
|
|
1532
|
+
msgstr "Sorta??i intr??rile dup??"
|
|
1488
1533
|
|
|
1489
1534
|
#. module: account_financial_report
|
|
1490
1535
|
#: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__date_from
|
|
1491
1536
|
msgid "Start Date"
|
|
1492
|
-
msgstr "
|
|
1537
|
+
msgstr "Dat?? start"
|
|
1493
1538
|
|
|
1494
1539
|
#. module: account_financial_report
|
|
1495
1540
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__date_from
|
|
1496
1541
|
msgid "Start date"
|
|
1497
|
-
msgstr "
|
|
1542
|
+
msgstr "Dat?? start"
|
|
1498
1543
|
|
|
1499
1544
|
#. module: account_financial_report
|
|
1500
1545
|
#: model:ir.model.fields,help:account_financial_report.field_aged_partner_balance_report_wizard__account_code_from
|
|
1501
1546
|
#: model:ir.model.fields,help:account_financial_report.field_general_ledger_report_wizard__account_code_from
|
|
1502
|
-
#: model:ir.model.fields,help:account_financial_report.field_open_items_report_wizard__account_code_from
|
|
1503
1547
|
#: model:ir.model.fields,help:account_financial_report.field_trial_balance_report_wizard__account_code_from
|
|
1504
1548
|
msgid "Starting account in a range"
|
|
1505
|
-
msgstr "Contul de pornire
|
|
1549
|
+
msgstr "Contul de pornire ??ntr-un interval"
|
|
1550
|
+
|
|
1551
|
+
#. module: account_financial_report
|
|
1552
|
+
#. odoo-python
|
|
1553
|
+
#: code:addons/account_financial_report/report/trial_balance.py:0
|
|
1554
|
+
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1555
|
+
msgid "TOTAL"
|
|
1556
|
+
msgstr ""
|
|
1506
1557
|
|
|
1507
1558
|
#. module: account_financial_report
|
|
1508
|
-
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1509
1559
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1510
|
-
#, python-format
|
|
1511
1560
|
msgid "Tags"
|
|
1512
1561
|
msgstr "Etichete"
|
|
1513
1562
|
|
|
@@ -1518,9 +1567,10 @@ msgstr "Etichete"
|
|
|
1518
1567
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__target_move
|
|
1519
1568
|
#: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__target_move
|
|
1520
1569
|
msgid "Target Moves"
|
|
1521
|
-
msgstr "
|
|
1570
|
+
msgstr "Mi??c??ri ??int??"
|
|
1522
1571
|
|
|
1523
1572
|
#. module: account_financial_report
|
|
1573
|
+
#. odoo-python
|
|
1524
1574
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1525
1575
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1526
1576
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
@@ -1530,92 +1580,118 @@ msgstr "Mișcări țintă"
|
|
|
1530
1580
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1531
1581
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
1532
1582
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1533
|
-
#, python-format
|
|
1534
1583
|
msgid "Target moves filter"
|
|
1535
1584
|
msgstr ""
|
|
1536
1585
|
|
|
1537
1586
|
#. module: account_financial_report
|
|
1587
|
+
#. odoo-python
|
|
1538
1588
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1539
1589
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
1540
|
-
#, python-format
|
|
1541
1590
|
msgid "Tax"
|
|
1542
|
-
msgstr "
|
|
1591
|
+
msgstr "Tax??"
|
|
1543
1592
|
|
|
1544
1593
|
#. module: account_financial_report
|
|
1545
1594
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
|
|
1546
1595
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
1547
1596
|
msgid "Tax Amount"
|
|
1548
|
-
msgstr "Valoare
|
|
1597
|
+
msgstr "Valoare tax??"
|
|
1549
1598
|
|
|
1550
1599
|
#. module: account_financial_report
|
|
1600
|
+
#. odoo-python
|
|
1551
1601
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1552
|
-
#, python-format
|
|
1553
1602
|
msgid "Tax Balance"
|
|
1554
1603
|
msgstr "Sold fiscal"
|
|
1555
1604
|
|
|
1556
1605
|
#. module: account_financial_report
|
|
1606
|
+
#. odoo-python
|
|
1557
1607
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1558
|
-
#, python-format
|
|
1559
1608
|
msgid "Tax Credit"
|
|
1560
1609
|
msgstr "Credit fiscal"
|
|
1561
1610
|
|
|
1562
1611
|
#. module: account_financial_report
|
|
1612
|
+
#. odoo-python
|
|
1563
1613
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1564
|
-
#, python-format
|
|
1565
1614
|
msgid "Tax Debit"
|
|
1566
1615
|
msgstr "Debit fiscal"
|
|
1567
1616
|
|
|
1568
1617
|
#. module: account_financial_report
|
|
1618
|
+
#. odoo-python
|
|
1569
1619
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1570
1620
|
#: model:ir.model.fields.selection,name:account_financial_report.selection__vat_report_wizard__based_on__taxgroups
|
|
1571
|
-
#, python-format
|
|
1572
1621
|
msgid "Tax Groups"
|
|
1573
1622
|
msgstr "Grupuri fiscale"
|
|
1574
1623
|
|
|
1575
1624
|
#. module: account_financial_report
|
|
1625
|
+
#. odoo-python
|
|
1626
|
+
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1627
|
+
msgid "Tax Initial balance"
|
|
1628
|
+
msgstr ""
|
|
1629
|
+
|
|
1630
|
+
#. module: account_financial_report
|
|
1631
|
+
#. odoo-python
|
|
1576
1632
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1577
1633
|
#: model:ir.model.fields.selection,name:account_financial_report.selection__vat_report_wizard__based_on__taxtags
|
|
1578
|
-
#, python-format
|
|
1579
1634
|
msgid "Tax Tags"
|
|
1580
1635
|
msgstr "Etichete fiscale"
|
|
1581
1636
|
|
|
1582
1637
|
#. module: account_financial_report
|
|
1638
|
+
#. odoo-python
|
|
1639
|
+
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1640
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_ending_cumul
|
|
1641
|
+
msgid "Tax ending balance"
|
|
1642
|
+
msgstr ""
|
|
1643
|
+
|
|
1644
|
+
#. module: account_financial_report
|
|
1645
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1646
|
+
msgid "Tax initial balance"
|
|
1647
|
+
msgstr ""
|
|
1648
|
+
|
|
1649
|
+
#. module: account_financial_report
|
|
1650
|
+
#. odoo-python
|
|
1583
1651
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1584
1652
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1653
|
+
#: model:ir.model.fields.selection,name:account_financial_report.selection__general_ledger_report_wizard__grouped_by__taxes
|
|
1585
1654
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1586
1655
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1587
|
-
#, python-format
|
|
1588
1656
|
msgid "Taxes"
|
|
1589
1657
|
msgstr "Taxe"
|
|
1590
1658
|
|
|
1591
1659
|
#. module: account_financial_report
|
|
1660
|
+
#. odoo-python
|
|
1592
1661
|
#: code:addons/account_financial_report/wizard/general_ledger_wizard.py:0
|
|
1593
|
-
#, python-format
|
|
1594
1662
|
msgid ""
|
|
1595
1663
|
"The Company in the General Ledger Report Wizard and in Date Range must be "
|
|
1596
1664
|
"the same."
|
|
1597
1665
|
msgstr ""
|
|
1598
1666
|
|
|
1599
1667
|
#. module: account_financial_report
|
|
1668
|
+
#. odoo-python
|
|
1600
1669
|
#: code:addons/account_financial_report/wizard/trial_balance_wizard.py:0
|
|
1601
|
-
#, python-format
|
|
1602
1670
|
msgid ""
|
|
1603
1671
|
"The Company in the Trial Balance Report Wizard and in Date Range must be the "
|
|
1604
1672
|
"same."
|
|
1605
1673
|
msgstr ""
|
|
1606
1674
|
|
|
1607
1675
|
#. module: account_financial_report
|
|
1676
|
+
#. odoo-python
|
|
1608
1677
|
#: code:addons/account_financial_report/wizard/vat_report_wizard.py:0
|
|
1609
|
-
#, python-format
|
|
1610
1678
|
msgid ""
|
|
1611
1679
|
"The Company in the Vat Report Wizard and in Date Range must be the same."
|
|
1612
1680
|
msgstr ""
|
|
1613
1681
|
|
|
1614
1682
|
#. module: account_financial_report
|
|
1683
|
+
#. odoo-python
|
|
1615
1684
|
#: code:addons/account_financial_report/wizard/trial_balance_wizard.py:0
|
|
1616
|
-
#, python-format
|
|
1617
1685
|
msgid "The hierarchy level to filter on must be greater than 0."
|
|
1618
|
-
msgstr "Nivelul de ierarhie de filtrat trebuie
|
|
1686
|
+
msgstr "Nivelul de ierarhie de filtrat trebuie s?? fie mai mare de 0."
|
|
1687
|
+
|
|
1688
|
+
#. module: account_financial_report
|
|
1689
|
+
#. odoo-python
|
|
1690
|
+
#: code:addons/account_financial_report/report/trial_balance.py:0
|
|
1691
|
+
msgid ""
|
|
1692
|
+
"There is a problem in the structure of the account groups. You may need to "
|
|
1693
|
+
"create some child group of %s."
|
|
1694
|
+
msgstr ""
|
|
1619
1695
|
|
|
1620
1696
|
#. module: account_financial_report
|
|
1621
1697
|
#: model:ir.model.fields,help:account_financial_report.field_general_ledger_report_wizard__domain
|
|
@@ -1635,29 +1711,31 @@ msgid "To:"
|
|
|
1635
1711
|
msgstr "La:"
|
|
1636
1712
|
|
|
1637
1713
|
#. module: account_financial_report
|
|
1714
|
+
#. odoo-python
|
|
1715
|
+
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1638
1716
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_account_ending_cumul
|
|
1639
1717
|
msgid "Total"
|
|
1640
1718
|
msgstr "Total"
|
|
1641
1719
|
|
|
1642
1720
|
#. module: account_financial_report
|
|
1721
|
+
#. odoo-python
|
|
1643
1722
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1644
1723
|
#: model:ir.actions.act_window,name:account_financial_report.action_trial_balance_wizard
|
|
1645
1724
|
#: model:ir.actions.report,name:account_financial_report.action_report_trial_balance_html
|
|
1646
1725
|
#: model:ir.actions.report,name:account_financial_report.action_report_trial_balance_qweb
|
|
1647
1726
|
#: model:ir.ui.menu,name:account_financial_report.menu_trial_balance_wizard
|
|
1648
|
-
#, python-format
|
|
1649
1727
|
msgid "Trial Balance"
|
|
1650
|
-
msgstr "
|
|
1728
|
+
msgstr "Balan???? verificare"
|
|
1651
1729
|
|
|
1652
1730
|
#. module: account_financial_report
|
|
1653
1731
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_base
|
|
1654
1732
|
msgid "Trial Balance -"
|
|
1655
|
-
msgstr "
|
|
1733
|
+
msgstr "Balan???? verificare"
|
|
1656
1734
|
|
|
1657
1735
|
#. module: account_financial_report
|
|
1658
1736
|
#: model:ir.model,name:account_financial_report.model_report_account_financial_report_trial_balance
|
|
1659
1737
|
msgid "Trial Balance Report"
|
|
1660
|
-
msgstr "Raport
|
|
1738
|
+
msgstr "Raport Balan???? verificare"
|
|
1661
1739
|
|
|
1662
1740
|
#. module: account_financial_report
|
|
1663
1741
|
#: model:ir.model,name:account_financial_report.model_trial_balance_report_wizard
|
|
@@ -1673,7 +1751,7 @@ msgstr ""
|
|
|
1673
1751
|
#: model:ir.model,name:account_financial_report.model_report_a_f_r_report_trial_balance_xlsx
|
|
1674
1752
|
#, fuzzy
|
|
1675
1753
|
msgid "Trial Balance XLSX Report"
|
|
1676
|
-
msgstr "
|
|
1754
|
+
msgstr "Balan???? verificare"
|
|
1677
1755
|
|
|
1678
1756
|
#. module: account_financial_report
|
|
1679
1757
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.trial_balance_wizard
|
|
@@ -1696,9 +1774,14 @@ msgid ""
|
|
|
1696
1774
|
"If partners are filtered, debits and credits totals will not match the trial "
|
|
1697
1775
|
"balance."
|
|
1698
1776
|
msgstr ""
|
|
1699
|
-
"
|
|
1700
|
-
"final la 0.
|
|
1701
|
-
"creditelor nu vor corespunde soldului de prob
|
|
1777
|
+
"Utiliza??i acest filtru pentru a ascunde un cont sau un partener cu un sold "
|
|
1778
|
+
"final la 0. Dac?? partenerii sunt filtra??i, totalele de debitelor ??i "
|
|
1779
|
+
"creditelor nu vor corespunde soldului de prob??."
|
|
1780
|
+
|
|
1781
|
+
#. module: account_financial_report
|
|
1782
|
+
#: model:ir.model.fields,help:account_financial_report.field_trial_balance_report_wizard__show_hierarchy
|
|
1783
|
+
msgid "Use when your account groups are hierarchical"
|
|
1784
|
+
msgstr ""
|
|
1702
1785
|
|
|
1703
1786
|
#. module: account_financial_report
|
|
1704
1787
|
#: model:ir.actions.act_window,name:account_financial_report.action_vat_report_wizard
|
|
@@ -1717,7 +1800,7 @@ msgstr "Raport TVA"
|
|
|
1717
1800
|
#. module: account_financial_report
|
|
1718
1801
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.vat_report_wizard
|
|
1719
1802
|
msgid "VAT Report Options"
|
|
1720
|
-
msgstr "
|
|
1803
|
+
msgstr "Op??iuni raport TVA"
|
|
1721
1804
|
|
|
1722
1805
|
#. module: account_financial_report
|
|
1723
1806
|
#: model:ir.model,name:account_financial_report.model_vat_report_wizard
|
|
@@ -1731,8 +1814,8 @@ msgid "VAT Report XLSX"
|
|
|
1731
1814
|
msgstr "Raport TVA XLSX"
|
|
1732
1815
|
|
|
1733
1816
|
#. module: account_financial_report
|
|
1817
|
+
#. odoo-python
|
|
1734
1818
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1735
|
-
#, python-format
|
|
1736
1819
|
msgid "Vat Report"
|
|
1737
1820
|
msgstr "Raport TVA"
|
|
1738
1821
|
|
|
@@ -1755,7 +1838,7 @@ msgstr "Raport TVA XLSX"
|
|
|
1755
1838
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.trial_balance_wizard
|
|
1756
1839
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.vat_report_wizard
|
|
1757
1840
|
msgid "View"
|
|
1758
|
-
msgstr "
|
|
1841
|
+
msgstr "Afi??are"
|
|
1759
1842
|
|
|
1760
1843
|
#. module: account_financial_report
|
|
1761
1844
|
#: model:ir.model.fields,help:account_financial_report.field_trial_balance_report_wizard__hide_account_at_0
|
|
@@ -1763,8 +1846,8 @@ msgid ""
|
|
|
1763
1846
|
"When this option is enabled, the trial balance will not display accounts "
|
|
1764
1847
|
"that have initial balance = debit = credit = end balance = 0"
|
|
1765
1848
|
msgstr ""
|
|
1766
|
-
"
|
|
1767
|
-
"au sold
|
|
1849
|
+
"C??nd aceast?? op??iune este activat??, soldul de prob?? nu va afi??a "
|
|
1850
|
+
"conturi care au sold ini??ial = debit = credit = sold final = 0"
|
|
1768
1851
|
|
|
1769
1852
|
#. module: account_financial_report
|
|
1770
1853
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__with_account_name
|
|
@@ -1772,22 +1855,27 @@ msgid "With Account Name"
|
|
|
1772
1855
|
msgstr "Cu numele contului"
|
|
1773
1856
|
|
|
1774
1857
|
#. module: account_financial_report
|
|
1858
|
+
#. odoo-python
|
|
1859
|
+
#: code:addons/account_financial_report/report/trial_balance.py:0
|
|
1860
|
+
msgid "Without analytic account"
|
|
1861
|
+
msgstr ""
|
|
1862
|
+
|
|
1863
|
+
#. module: account_financial_report
|
|
1864
|
+
#. odoo-python
|
|
1775
1865
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1776
1866
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1777
1867
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1778
1868
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1779
|
-
#, python-format
|
|
1780
1869
|
msgid "Yes"
|
|
1781
1870
|
msgstr "Da"
|
|
1782
1871
|
|
|
1783
1872
|
#. module: account_financial_report
|
|
1873
|
+
#. odoo-python
|
|
1784
1874
|
#: code:addons/account_financial_report/report/general_ledger.py:0
|
|
1785
|
-
#, python-format
|
|
1786
1875
|
msgid "future"
|
|
1787
1876
|
msgstr "viitor"
|
|
1788
1877
|
|
|
1789
1878
|
#. module: account_financial_report
|
|
1790
|
-
#: model_terms:ir.ui.view,arch_db:account_financial_report.aged_partner_balance_wizard
|
|
1791
1879
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
|
|
1792
1880
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.journal_ledger_wizard
|
|
1793
1881
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.open_items_wizard
|
|
@@ -1814,12 +1902,12 @@ msgstr ""
|
|
|
1814
1902
|
#. module: account_financial_report
|
|
1815
1903
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1816
1904
|
msgid "width: 23.24%;"
|
|
1817
|
-
msgstr "
|
|
1905
|
+
msgstr "l????ime: 23,24%;"
|
|
1818
1906
|
|
|
1819
1907
|
#. module: account_financial_report
|
|
1820
1908
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1821
1909
|
msgid "width: 23.78%;"
|
|
1822
|
-
msgstr "
|
|
1910
|
+
msgstr "l????ime: 23,78%;"
|
|
1823
1911
|
|
|
1824
1912
|
#. module: account_financial_report
|
|
1825
1913
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
@@ -1829,18 +1917,90 @@ msgstr ""
|
|
|
1829
1917
|
#. module: account_financial_report
|
|
1830
1918
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1831
1919
|
msgid "width: 38.92%;"
|
|
1832
|
-
msgstr "
|
|
1920
|
+
msgstr "l????ime: 38,92%;"
|
|
1833
1921
|
|
|
1834
1922
|
#. module: account_financial_report
|
|
1835
1923
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1836
1924
|
msgid "width: 8.11%;"
|
|
1837
|
-
msgstr "
|
|
1925
|
+
msgstr "l????ime: 8,11%;"
|
|
1926
|
+
|
|
1927
|
+
#~ msgid ""
|
|
1928
|
+
#~ "Age ??? 120\n"
|
|
1929
|
+
#~ " d."
|
|
1930
|
+
#~ msgstr ""
|
|
1931
|
+
#~ "V??rst?? ??? 120\n"
|
|
1932
|
+
#~ " d."
|
|
1933
|
+
|
|
1934
|
+
#, python-format
|
|
1935
|
+
#~ msgid "Age ??? 120 d."
|
|
1936
|
+
#~ msgstr "V??rst?? ??? 120 d."
|
|
1937
|
+
|
|
1938
|
+
#~ msgid ""
|
|
1939
|
+
#~ "Age ??? 30\n"
|
|
1940
|
+
#~ " d."
|
|
1941
|
+
#~ msgstr ""
|
|
1942
|
+
#~ "V??rst?? ??? 30\n"
|
|
1943
|
+
#~ " d."
|
|
1944
|
+
|
|
1945
|
+
#, python-format
|
|
1946
|
+
#~ msgid "Age ??? 30 d."
|
|
1947
|
+
#~ msgstr "V??rst?? ??? 30 d."
|
|
1948
|
+
|
|
1949
|
+
#~ msgid ""
|
|
1950
|
+
#~ "Age ??? 60\n"
|
|
1951
|
+
#~ " d."
|
|
1952
|
+
#~ msgstr ""
|
|
1953
|
+
#~ "V??rst?? ??? 60\n"
|
|
1954
|
+
#~ " d."
|
|
1955
|
+
|
|
1956
|
+
#, python-format
|
|
1957
|
+
#~ msgid "Age ??? 60 d."
|
|
1958
|
+
#~ msgstr "V??rst?? ??? 60 d."
|
|
1959
|
+
|
|
1960
|
+
#~ msgid ""
|
|
1961
|
+
#~ "Age ??? 90\n"
|
|
1962
|
+
#~ " d."
|
|
1963
|
+
#~ msgstr ""
|
|
1964
|
+
#~ "V??rst?? ??? 90\n"
|
|
1965
|
+
#~ " d."
|
|
1966
|
+
|
|
1967
|
+
#, python-format
|
|
1968
|
+
#~ msgid "Age ??? 90 d."
|
|
1969
|
+
#~ msgstr "V??rst?? ??? 90 d."
|
|
1970
|
+
|
|
1971
|
+
#~ msgid "Last Modified on"
|
|
1972
|
+
#~ msgstr "Ultima modificare pe"
|
|
1973
|
+
|
|
1974
|
+
#~ msgid "Filter analytic tags"
|
|
1975
|
+
#~ msgstr "Filtreaz?? etichetele analitice"
|
|
1976
|
+
|
|
1977
|
+
#, python-format
|
|
1978
|
+
#~ msgid "Show analytic tags"
|
|
1979
|
+
#~ msgstr "Afi??a??i etichete analitice"
|
|
1980
|
+
|
|
1981
|
+
#~ msgid "Child Accounts"
|
|
1982
|
+
#~ msgstr "Conturi subordonate"
|
|
1983
|
+
|
|
1984
|
+
#~ msgid "Computed Accounts"
|
|
1985
|
+
#~ msgstr "Conturi calculate"
|
|
1986
|
+
|
|
1987
|
+
#~ msgid "Hierarchy On"
|
|
1988
|
+
#~ msgstr "Activare ierarhie"
|
|
1989
|
+
|
|
1990
|
+
#~ msgid "No hierarchy"
|
|
1991
|
+
#~ msgstr "F??r?? ierahie"
|
|
1992
|
+
|
|
1993
|
+
#~ msgid "From: %s To: %s"
|
|
1994
|
+
#~ msgstr "De la: %s la: %s"
|
|
1995
|
+
|
|
1996
|
+
#~ msgid "Not only one unaffected earnings account"
|
|
1997
|
+
#~ msgstr "Nu numai un cont de c????tiguri neafectat"
|
|
1838
1998
|
|
|
1839
1999
|
#~ msgid "<span class=\"fa fa-download\"/> Export"
|
|
1840
|
-
#~ msgstr "<span class=\"fa fa-download\"/>
|
|
2000
|
+
#~ msgstr "<span class=\"fa fa-download\"/>Export??"
|
|
1841
2001
|
|
|
1842
2002
|
#~ msgid "<span class=\"fa fa-print\"/> Print"
|
|
1843
|
-
#~ msgstr "<span class=\"fa fa-print\"/>
|
|
2003
|
+
#~ msgstr "<span class=\"fa fa-print\"/>Tip??re??te"
|
|
1844
2004
|
|
|
1845
2005
|
#~ msgid ""
|
|
1846
2006
|
#~ "<span class=\"oe_inline\">\n"
|
|
@@ -1903,10 +2063,10 @@ msgstr "lățime: 8,11%;"
|
|
|
1903
2063
|
#~ msgstr "Sold cumulat"
|
|
1904
2064
|
|
|
1905
2065
|
#~ msgid "Currency Name"
|
|
1906
|
-
#~ msgstr "Nume
|
|
2066
|
+
#~ msgstr "Nume moned??"
|
|
1907
2067
|
|
|
1908
2068
|
#~ msgid "Date Due"
|
|
1909
|
-
#~ msgstr "Data
|
|
2069
|
+
#~ msgstr "Data scadent??"
|
|
1910
2070
|
|
|
1911
2071
|
#, fuzzy
|
|
1912
2072
|
#~ msgid "Filter Analytic Tag"
|
|
@@ -1932,45 +2092,42 @@ msgstr "lățime: 8,11%;"
|
|
|
1932
2092
|
#~ msgstr "Debit final"
|
|
1933
2093
|
|
|
1934
2094
|
#~ msgid "Group Option"
|
|
1935
|
-
#~ msgstr "
|
|
2095
|
+
#~ msgstr "Op??iuni grupare"
|
|
1936
2096
|
|
|
1937
2097
|
#~ msgid "Hide Account At 0"
|
|
1938
2098
|
#~ msgstr "Ascunde conturile cu zero"
|
|
1939
2099
|
|
|
1940
2100
|
#, fuzzy
|
|
1941
2101
|
#~ msgid "Hide Line"
|
|
1942
|
-
#~ msgstr "Linie
|
|
2102
|
+
#~ msgstr "Linie mi??care"
|
|
1943
2103
|
|
|
1944
2104
|
#~ msgid "Initial Balance"
|
|
1945
|
-
#~ msgstr "Sold
|
|
2105
|
+
#~ msgstr "Sold ini??ial"
|
|
1946
2106
|
|
|
1947
2107
|
#, fuzzy
|
|
1948
2108
|
#~ msgid "Initial Balance Foreign Currency"
|
|
1949
|
-
#~ msgstr "Sold
|
|
2109
|
+
#~ msgstr "Sold ini??ial"
|
|
1950
2110
|
|
|
1951
2111
|
#~ msgid "Initial Credit"
|
|
1952
|
-
#~ msgstr "Credit
|
|
2112
|
+
#~ msgstr "Credit ini??ial"
|
|
1953
2113
|
|
|
1954
2114
|
#~ msgid "Initial Debit"
|
|
1955
|
-
#~ msgstr "Debit
|
|
2115
|
+
#~ msgstr "Debit ini??ial"
|
|
1956
2116
|
|
|
1957
2117
|
#~ msgid "Label"
|
|
1958
|
-
#~ msgstr "
|
|
1959
|
-
|
|
1960
|
-
#~ msgid "Line"
|
|
1961
|
-
#~ msgstr "Linie"
|
|
2118
|
+
#~ msgstr "Etichet??"
|
|
1962
2119
|
|
|
1963
2120
|
#~ msgid "Move"
|
|
1964
|
-
#~ msgstr "
|
|
2121
|
+
#~ msgstr "Mi??care"
|
|
1965
2122
|
|
|
1966
2123
|
#~ msgid "Move Line"
|
|
1967
|
-
#~ msgstr "Linie
|
|
2124
|
+
#~ msgstr "Linie mi??care"
|
|
1968
2125
|
|
|
1969
2126
|
#~ msgid "Only Posted Moves"
|
|
1970
|
-
#~ msgstr "Numai
|
|
2127
|
+
#~ msgstr "Numai ??nregistr??ri postate"
|
|
1971
2128
|
|
|
1972
2129
|
#~ msgid "Parent"
|
|
1973
|
-
#~ msgstr "
|
|
2130
|
+
#~ msgstr "P??rinte"
|
|
1974
2131
|
|
|
1975
2132
|
#, fuzzy
|
|
1976
2133
|
#~| msgid "Partner"
|
|
@@ -1979,7 +2136,7 @@ msgstr "lățime: 8,11%;"
|
|
|
1979
2136
|
|
|
1980
2137
|
#, fuzzy
|
|
1981
2138
|
#~ msgid "Period Balance"
|
|
1982
|
-
#~ msgstr "Sold
|
|
2139
|
+
#~ msgstr "Sold ini??ial"
|
|
1983
2140
|
|
|
1984
2141
|
#~ msgid "Report"
|
|
1985
2142
|
#~ msgstr "Raport"
|
|
@@ -1988,17 +2145,17 @@ msgstr "lățime: 8,11%;"
|
|
|
1988
2145
|
#~ msgstr "Raport Taxe"
|
|
1989
2146
|
|
|
1990
2147
|
#~ msgid "Sort Option"
|
|
1991
|
-
#~ msgstr "
|
|
2148
|
+
#~ msgstr "Op??iuni sortare"
|
|
1992
2149
|
|
|
1993
2150
|
#~ msgid "Tax Code"
|
|
1994
|
-
#~ msgstr "Cod
|
|
2151
|
+
#~ msgstr "Cod tax??"
|
|
1995
2152
|
|
|
1996
2153
|
#, fuzzy
|
|
1997
2154
|
#~ msgid "Tax ID"
|
|
1998
2155
|
#~ msgstr "Debit"
|
|
1999
2156
|
|
|
2000
2157
|
#~ msgid "Tax Name"
|
|
2001
|
-
#~ msgstr "Nume
|
|
2158
|
+
#~ msgstr "Nume tax??"
|
|
2002
2159
|
|
|
2003
2160
|
#, fuzzy
|
|
2004
2161
|
#~ msgid "report_vat_report_taxtag"
|
|
@@ -2014,11 +2171,11 @@ msgstr "lățime: 8,11%;"
|
|
|
2014
2171
|
|
|
2015
2172
|
#, fuzzy
|
|
2016
2173
|
#~ msgid "Open Items - %s - %s"
|
|
2017
|
-
#~ msgstr "
|
|
2174
|
+
#~ msgstr "Pozi??ii deschise"
|
|
2018
2175
|
|
|
2019
2176
|
#, fuzzy
|
|
2020
2177
|
#~ msgid "Trial Balance - %s - %s"
|
|
2021
|
-
#~ msgstr "
|
|
2178
|
+
#~ msgstr "Balan???? verificare"
|
|
2022
2179
|
|
|
2023
2180
|
#, fuzzy
|
|
2024
2181
|
#~ msgid "VAT Report - %s - %s"
|