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
|
@@ -7,15 +7,15 @@ msgstr ""
|
|
|
7
7
|
"Project-Id-Version: Odoo Server 12.0\n"
|
|
8
8
|
"Report-Msgid-Bugs-To: \n"
|
|
9
9
|
"POT-Creation-Date: 2019-06-03 12:07+0000\n"
|
|
10
|
-
"PO-Revision-Date:
|
|
11
|
-
"Last-Translator:
|
|
10
|
+
"PO-Revision-Date: 2025-11-05 09:42+0000\n"
|
|
11
|
+
"Last-Translator: mymage <stefano.consolaro@mymage.it>\n"
|
|
12
12
|
"Language-Team: \n"
|
|
13
13
|
"Language: it\n"
|
|
14
14
|
"MIME-Version: 1.0\n"
|
|
15
15
|
"Content-Type: text/plain; charset=UTF-8\n"
|
|
16
16
|
"Content-Transfer-Encoding: 8bit\n"
|
|
17
17
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
|
18
|
-
"X-Generator: Weblate
|
|
18
|
+
"X-Generator: Weblate 5.10.4\n"
|
|
19
19
|
|
|
20
20
|
#. module: account_financial_report
|
|
21
21
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_lines_header
|
|
@@ -53,6 +53,23 @@ msgstr "91 - 120 g."
|
|
|
53
53
|
msgid "<b>Taxes summary</b>"
|
|
54
54
|
msgstr "<b>Riepilogo imposte</b>"
|
|
55
55
|
|
|
56
|
+
#. module: account_financial_report
|
|
57
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.trial_balance_wizard
|
|
58
|
+
msgid ""
|
|
59
|
+
"<i class=\"fa fa-exclamation-triangle mr-3\"/>\n"
|
|
60
|
+
" Duplicate amounts may be shown because more than one "
|
|
61
|
+
"analytical account may be defined in the journal items."
|
|
62
|
+
msgstr ""
|
|
63
|
+
"<i class=\"fa fa-exclamation-triangle mr-3\"/>\n"
|
|
64
|
+
" Si possono visualizzare valori duplicati perché può "
|
|
65
|
+
"essere stato definito più di un conto analitico nelle registrazioni "
|
|
66
|
+
"contabili."
|
|
67
|
+
|
|
68
|
+
#. module: account_financial_report
|
|
69
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
70
|
+
msgid "<span class=\"o_form_label\">Intervals configuration</span>"
|
|
71
|
+
msgstr "<span class=\"o_form_label\">Configurazione intervalli</span>"
|
|
72
|
+
|
|
56
73
|
#. module: account_financial_report
|
|
57
74
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.aged_partner_balance_wizard
|
|
58
75
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
|
|
@@ -68,16 +85,16 @@ msgstr "Report astratto"
|
|
|
68
85
|
|
|
69
86
|
#. module: account_financial_report
|
|
70
87
|
#: model:ir.model,name:account_financial_report.model_account_financial_report_abstract_wizard
|
|
71
|
-
#, fuzzy
|
|
72
88
|
msgid "Abstract Wizard"
|
|
73
|
-
msgstr "
|
|
89
|
+
msgstr "Procedura guidata sintesi"
|
|
74
90
|
|
|
75
91
|
#. module: account_financial_report
|
|
76
92
|
#: model:ir.model,name:account_financial_report.model_report_account_financial_report_abstract_report_xlsx
|
|
77
93
|
msgid "Abstract XLSX Account Financial Report"
|
|
78
|
-
msgstr ""
|
|
94
|
+
msgstr "Sintesi XLSX resoconto conto economico"
|
|
79
95
|
|
|
80
96
|
#. module: account_financial_report
|
|
97
|
+
#. odoo-python
|
|
81
98
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
82
99
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
83
100
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
@@ -89,27 +106,29 @@ msgstr ""
|
|
|
89
106
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
90
107
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
91
108
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
92
|
-
#, python-format
|
|
93
109
|
msgid "Account"
|
|
94
110
|
msgstr "Conto"
|
|
95
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 "Configurazione resoconto età conto"
|
|
116
|
+
|
|
96
117
|
#. module: account_financial_report
|
|
97
118
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__account_code_from
|
|
98
119
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__account_code_from
|
|
99
120
|
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__account_code_from
|
|
100
121
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__account_code_from
|
|
101
|
-
#, fuzzy
|
|
102
122
|
msgid "Account Code From"
|
|
103
|
-
msgstr "
|
|
123
|
+
msgstr "Da conto codice"
|
|
104
124
|
|
|
105
125
|
#. module: account_financial_report
|
|
106
126
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__account_code_to
|
|
107
127
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__account_code_to
|
|
108
128
|
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__account_code_to
|
|
109
129
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__account_code_to
|
|
110
|
-
#, fuzzy
|
|
111
130
|
msgid "Account Code To"
|
|
112
|
-
msgstr "
|
|
131
|
+
msgstr "A conto codice"
|
|
113
132
|
|
|
114
133
|
#. module: account_financial_report
|
|
115
134
|
#: model:ir.model,name:account_financial_report.model_account_group
|
|
@@ -117,24 +136,24 @@ msgid "Account Group"
|
|
|
117
136
|
msgstr "Gruppo contabile"
|
|
118
137
|
|
|
119
138
|
#. module: account_financial_report
|
|
139
|
+
#. odoo-python
|
|
120
140
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
121
|
-
#, python-format
|
|
122
141
|
msgid "Account Name"
|
|
123
142
|
msgstr "Nome conto"
|
|
124
143
|
|
|
125
144
|
#. module: account_financial_report
|
|
145
|
+
#. odoo-python
|
|
126
146
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
127
147
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
128
|
-
#, python-format
|
|
129
148
|
msgid "Account at 0 filter"
|
|
130
149
|
msgstr "Filtro conto a 0"
|
|
131
150
|
|
|
132
151
|
#. module: account_financial_report
|
|
152
|
+
#. odoo-python
|
|
133
153
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
134
154
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
135
155
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
136
156
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
137
|
-
#, python-format
|
|
138
157
|
msgid "Account balance at 0 filter"
|
|
139
158
|
msgstr "Filtro saldo conto a 0"
|
|
140
159
|
|
|
@@ -151,75 +170,80 @@ msgstr "Attivare centralizzazione"
|
|
|
151
170
|
#. module: account_financial_report
|
|
152
171
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
|
|
153
172
|
msgid "Additional Filtering"
|
|
154
|
-
msgstr ""
|
|
173
|
+
msgstr "Filtri aggiuntivi"
|
|
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 "Configurazione resoconto età partner"
|
|
155
179
|
|
|
156
180
|
#. module: account_financial_report
|
|
157
181
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
158
182
|
msgid ""
|
|
159
183
|
"Age ≤ 120\n"
|
|
160
|
-
"
|
|
184
|
+
" d."
|
|
161
185
|
msgstr ""
|
|
162
186
|
"Età ≤ 120\n"
|
|
163
|
-
"
|
|
187
|
+
" g."
|
|
164
188
|
|
|
165
189
|
#. module: account_financial_report
|
|
190
|
+
#. odoo-python
|
|
166
191
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
167
|
-
#, fuzzy, python-format
|
|
168
192
|
msgid "Age ≤ 120 d."
|
|
169
|
-
msgstr "Età
|
|
193
|
+
msgstr "Età ≤ 120 g."
|
|
170
194
|
|
|
171
195
|
#. module: account_financial_report
|
|
172
196
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
173
197
|
msgid ""
|
|
174
198
|
"Age ≤ 30\n"
|
|
175
|
-
"
|
|
199
|
+
" d."
|
|
176
200
|
msgstr ""
|
|
177
201
|
"Età ≤ 30\n"
|
|
178
|
-
"
|
|
202
|
+
" g."
|
|
179
203
|
|
|
180
204
|
#. module: account_financial_report
|
|
205
|
+
#. odoo-python
|
|
181
206
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
182
|
-
#, fuzzy, python-format
|
|
183
207
|
msgid "Age ≤ 30 d."
|
|
184
|
-
msgstr "Età
|
|
208
|
+
msgstr "Età ≤ 30 g."
|
|
185
209
|
|
|
186
210
|
#. module: account_financial_report
|
|
187
211
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
188
212
|
msgid ""
|
|
189
213
|
"Age ≤ 60\n"
|
|
190
|
-
"
|
|
214
|
+
" d."
|
|
191
215
|
msgstr ""
|
|
192
216
|
"Età ≤ 60\n"
|
|
193
|
-
"
|
|
217
|
+
" g."
|
|
194
218
|
|
|
195
219
|
#. module: account_financial_report
|
|
220
|
+
#. odoo-python
|
|
196
221
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
197
|
-
#, fuzzy, python-format
|
|
198
222
|
msgid "Age ≤ 60 d."
|
|
199
|
-
msgstr "Età
|
|
223
|
+
msgstr "Età ≤ 60 g."
|
|
200
224
|
|
|
201
225
|
#. module: account_financial_report
|
|
202
226
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
203
227
|
msgid ""
|
|
204
228
|
"Age ≤ 90\n"
|
|
205
|
-
"
|
|
229
|
+
" d."
|
|
206
230
|
msgstr ""
|
|
207
231
|
"Età ≤ 90\n"
|
|
208
|
-
"
|
|
232
|
+
" g."
|
|
209
233
|
|
|
210
234
|
#. module: account_financial_report
|
|
235
|
+
#. odoo-python
|
|
211
236
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
212
|
-
#, fuzzy, python-format
|
|
213
237
|
msgid "Age ≤ 90 d."
|
|
214
|
-
msgstr "Età
|
|
238
|
+
msgstr "Età ≤ 90 g."
|
|
215
239
|
|
|
216
240
|
#. module: account_financial_report
|
|
241
|
+
#. odoo-python
|
|
217
242
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
218
243
|
#: model:ir.actions.act_window,name:account_financial_report.action_aged_partner_balance_wizard
|
|
219
244
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_aged_partner_balance_html
|
|
220
245
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_aged_partner_balance_qweb
|
|
221
246
|
#: model:ir.ui.menu,name:account_financial_report.menu_aged_partner_balance_wizard
|
|
222
|
-
#, python-format
|
|
223
247
|
msgid "Aged Partner Balance"
|
|
224
248
|
msgstr "Scadenzario clienti/fornitori"
|
|
225
249
|
|
|
@@ -230,9 +254,8 @@ msgstr "Scadenzario clienti/fornitori -"
|
|
|
230
254
|
|
|
231
255
|
#. module: account_financial_report
|
|
232
256
|
#: model:ir.model,name:account_financial_report.model_report_account_financial_report_aged_partner_balance
|
|
233
|
-
#, fuzzy
|
|
234
257
|
msgid "Aged Partner Balance Report"
|
|
235
|
-
msgstr "
|
|
258
|
+
msgstr "Resoconto scadenzario partner"
|
|
236
259
|
|
|
237
260
|
#. module: account_financial_report
|
|
238
261
|
#: model:ir.model,name:account_financial_report.model_aged_partner_balance_report_wizard
|
|
@@ -241,9 +264,8 @@ msgstr "Procedura scadenzario clienti/fornitori"
|
|
|
241
264
|
|
|
242
265
|
#. module: account_financial_report
|
|
243
266
|
#: model:ir.model,name:account_financial_report.model_report_a_f_r_report_aged_partner_balance_xlsx
|
|
244
|
-
#, fuzzy
|
|
245
267
|
msgid "Aged Partner Balance XLSL Report"
|
|
246
|
-
msgstr "
|
|
268
|
+
msgstr "Resoconto XLSX scadenzario partner"
|
|
247
269
|
|
|
248
270
|
#. module: account_financial_report
|
|
249
271
|
#: model:ir.actions.report,name:account_financial_report.action_report_aged_partner_balance_xlsx
|
|
@@ -251,10 +273,10 @@ msgid "Aged Partner Balance XLSX"
|
|
|
251
273
|
msgstr "Scadenzario clienti/fornitori XLSX"
|
|
252
274
|
|
|
253
275
|
#. module: account_financial_report
|
|
276
|
+
#. odoo-python
|
|
254
277
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
255
|
-
#, python-format
|
|
256
278
|
msgid "All"
|
|
257
|
-
msgstr "Tutte
|
|
279
|
+
msgstr "Tutte"
|
|
258
280
|
|
|
259
281
|
#. module: account_financial_report
|
|
260
282
|
#: model:ir.model.fields.selection,name:account_financial_report.selection__aged_partner_balance_report_wizard__target_move__all
|
|
@@ -275,6 +297,7 @@ msgid "All Posted Entries"
|
|
|
275
297
|
msgstr "Tutte le registrazioni confermate"
|
|
276
298
|
|
|
277
299
|
#. module: account_financial_report
|
|
300
|
+
#. odoo-python
|
|
278
301
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
279
302
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
280
303
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
@@ -283,11 +306,11 @@ msgstr "Tutte le registrazioni confermate"
|
|
|
283
306
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
284
307
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
285
308
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
286
|
-
#, python-format
|
|
287
309
|
msgid "All entries"
|
|
288
310
|
msgstr "Tutte le registrazioni"
|
|
289
311
|
|
|
290
312
|
#. module: account_financial_report
|
|
313
|
+
#. odoo-python
|
|
291
314
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
292
315
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
293
316
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
@@ -296,7 +319,6 @@ msgstr "Tutte le registrazioni"
|
|
|
296
319
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
297
320
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
298
321
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
299
|
-
#, python-format
|
|
300
322
|
msgid "All posted entries"
|
|
301
323
|
msgstr "Tutte le registrazioni confermate"
|
|
302
324
|
|
|
@@ -306,24 +328,30 @@ msgid "Amount Cur."
|
|
|
306
328
|
msgstr "Importo Val."
|
|
307
329
|
|
|
308
330
|
#. module: account_financial_report
|
|
331
|
+
#. odoo-python
|
|
309
332
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
310
|
-
#, python-format
|
|
311
333
|
msgid "Amount Currency"
|
|
312
334
|
msgstr "Importo valuta"
|
|
313
335
|
|
|
314
336
|
#. module: account_financial_report
|
|
337
|
+
#. odoo-python
|
|
315
338
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
316
339
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
317
|
-
#, python-format
|
|
318
340
|
msgid "Amount cur."
|
|
319
341
|
msgstr "Importo val."
|
|
320
342
|
|
|
321
343
|
#. module: account_financial_report
|
|
344
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_move_line__analytic_account_ids
|
|
345
|
+
#: model:ir.model.fields.selection,name:account_financial_report.selection__trial_balance_report_wizard__grouped_by__analytic_account
|
|
346
|
+
msgid "Analytic Account"
|
|
347
|
+
msgstr "Conto analitico"
|
|
348
|
+
|
|
349
|
+
#. module: account_financial_report
|
|
350
|
+
#. odoo-python
|
|
322
351
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
323
352
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
msgstr "Filtro conto"
|
|
353
|
+
msgid "Analytic Distribution"
|
|
354
|
+
msgstr "Distribuzione analitica"
|
|
327
355
|
|
|
328
356
|
#. module: account_financial_report
|
|
329
357
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
|
|
@@ -338,20 +366,20 @@ msgid "Base Amount"
|
|
|
338
366
|
msgstr "Importo imponibile"
|
|
339
367
|
|
|
340
368
|
#. module: account_financial_report
|
|
369
|
+
#. odoo-python
|
|
341
370
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
342
|
-
#, python-format
|
|
343
371
|
msgid "Base Balance"
|
|
344
372
|
msgstr "Saldo imponibile"
|
|
345
373
|
|
|
346
374
|
#. module: account_financial_report
|
|
375
|
+
#. odoo-python
|
|
347
376
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
348
|
-
#, python-format
|
|
349
377
|
msgid "Base Credit"
|
|
350
378
|
msgstr "Imponibile avere"
|
|
351
379
|
|
|
352
380
|
#. module: account_financial_report
|
|
381
|
+
#. odoo-python
|
|
353
382
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
354
|
-
#, python-format
|
|
355
383
|
msgid "Base Debit"
|
|
356
384
|
msgstr "Imponibile dare"
|
|
357
385
|
|
|
@@ -362,8 +390,8 @@ msgid "Based On"
|
|
|
362
390
|
msgstr "Basato su"
|
|
363
391
|
|
|
364
392
|
#. module: account_financial_report
|
|
393
|
+
#. odoo-python
|
|
365
394
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
366
|
-
#, python-format
|
|
367
395
|
msgid "Based on"
|
|
368
396
|
msgstr "Basato su"
|
|
369
397
|
|
|
@@ -378,9 +406,9 @@ msgid "Cancel"
|
|
|
378
406
|
msgstr "Annulla"
|
|
379
407
|
|
|
380
408
|
#. module: account_financial_report
|
|
409
|
+
#. odoo-python
|
|
381
410
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
382
411
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
383
|
-
#, python-format
|
|
384
412
|
msgid "Centralize filter"
|
|
385
413
|
msgstr "Filtro centralizzazione"
|
|
386
414
|
|
|
@@ -389,27 +417,24 @@ msgstr "Filtro centralizzazione"
|
|
|
389
417
|
msgid "Centralized"
|
|
390
418
|
msgstr "Centralizzato"
|
|
391
419
|
|
|
392
|
-
#. module: account_financial_report
|
|
393
|
-
#: model:ir.model.fields.selection,name:account_financial_report.selection__trial_balance_report_wizard__hierarchy_on__relation
|
|
394
|
-
msgid "Child Accounts"
|
|
395
|
-
msgstr "Conti figli"
|
|
396
|
-
|
|
397
420
|
#. module: account_financial_report
|
|
398
421
|
#: model:ir.model.fields,field_description:account_financial_report.field_account_group__group_child_ids
|
|
399
422
|
msgid "Child Groups"
|
|
400
423
|
msgstr "Gruppi figli"
|
|
401
424
|
|
|
402
425
|
#. module: account_financial_report
|
|
426
|
+
#. odoo-python
|
|
403
427
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
404
428
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
405
429
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
406
430
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
407
|
-
#, python-format
|
|
408
431
|
msgid "Code"
|
|
409
432
|
msgstr "Codice"
|
|
410
433
|
|
|
411
434
|
#. module: account_financial_report
|
|
435
|
+
#. odoo-python
|
|
412
436
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
437
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__company_id
|
|
413
438
|
#: model:ir.model.fields,field_description:account_financial_report.field_account_financial_report_abstract_wizard__company_id
|
|
414
439
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__company_id
|
|
415
440
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__company_id
|
|
@@ -417,7 +442,6 @@ msgstr "Codice"
|
|
|
417
442
|
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__company_id
|
|
418
443
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__company_id
|
|
419
444
|
#: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__company_id
|
|
420
|
-
#, python-format
|
|
421
445
|
msgid "Company"
|
|
422
446
|
msgstr "Azienda"
|
|
423
447
|
|
|
@@ -427,32 +451,18 @@ msgid "Compute accounts"
|
|
|
427
451
|
msgstr "Calcolare conti"
|
|
428
452
|
|
|
429
453
|
#. module: account_financial_report
|
|
430
|
-
#: model:ir.model
|
|
431
|
-
msgid "
|
|
432
|
-
msgstr "
|
|
454
|
+
#: model:ir.model,name:account_financial_report.model_res_config_settings
|
|
455
|
+
msgid "Config Settings"
|
|
456
|
+
msgstr "Impostazioni configurazione"
|
|
433
457
|
|
|
434
458
|
#. module: account_financial_report
|
|
435
|
-
#:
|
|
436
|
-
msgid ""
|
|
437
|
-
|
|
438
|
-
" that represent prefixes of the actual accounts.\n"
|
|
439
|
-
"\n"
|
|
440
|
-
" Child Accounts: Use when your account groups are hierarchical.\n"
|
|
441
|
-
"\n"
|
|
442
|
-
" No hierarchy: Use to display just the accounts, without any "
|
|
443
|
-
"grouping.\n"
|
|
444
|
-
" "
|
|
445
|
-
msgstr ""
|
|
446
|
-
"Conti calcolati: utilizzato quando i gruppi di conti hanno codici\n"
|
|
447
|
-
" che rappresentano il prefisso dei conti effettivi.\n"
|
|
448
|
-
"\n"
|
|
449
|
-
" Conti figli: utilizzato quando i gruppi di conti sono gerarchici.\n"
|
|
450
|
-
"\n"
|
|
451
|
-
" Nessuna gerarchia: utilizzato per visualizzare solo i conti, senza "
|
|
452
|
-
"alcun raggruppo.\n"
|
|
453
|
-
" "
|
|
459
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
460
|
+
msgid "Configurations"
|
|
461
|
+
msgstr "Configurazioni"
|
|
454
462
|
|
|
455
463
|
#. module: account_financial_report
|
|
464
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__create_uid
|
|
465
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__create_uid
|
|
456
466
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__create_uid
|
|
457
467
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__create_uid
|
|
458
468
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__create_uid
|
|
@@ -463,6 +473,8 @@ msgid "Created by"
|
|
|
463
473
|
msgstr "Creato da"
|
|
464
474
|
|
|
465
475
|
#. module: account_financial_report
|
|
476
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__create_date
|
|
477
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__create_date
|
|
466
478
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__create_date
|
|
467
479
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__create_date
|
|
468
480
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__create_date
|
|
@@ -473,6 +485,7 @@ msgid "Created on"
|
|
|
473
485
|
msgstr "Creato il"
|
|
474
486
|
|
|
475
487
|
#. module: account_financial_report
|
|
488
|
+
#. odoo-python
|
|
476
489
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
477
490
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
478
491
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
@@ -481,57 +494,60 @@ msgstr "Creato il"
|
|
|
481
494
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
482
495
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
483
496
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
484
|
-
#, python-format
|
|
485
497
|
msgid "Credit"
|
|
486
498
|
msgstr "Avere"
|
|
487
499
|
|
|
488
500
|
#. module: account_financial_report
|
|
501
|
+
#. odoo-python
|
|
502
|
+
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
503
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
504
|
+
msgid "Cumul cur."
|
|
505
|
+
msgstr "Valuta acc."
|
|
506
|
+
|
|
507
|
+
#. module: account_financial_report
|
|
508
|
+
#. odoo-python
|
|
489
509
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
490
510
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
491
|
-
#, python-format
|
|
492
511
|
msgid "Cumul. Bal."
|
|
493
512
|
msgstr "Saldo progr."
|
|
494
513
|
|
|
495
514
|
#. module: account_financial_report
|
|
496
|
-
|
|
515
|
+
#. odoo-python
|
|
497
516
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
498
|
-
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
499
|
-
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
500
517
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
501
518
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
502
|
-
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
503
|
-
#, python-format
|
|
504
519
|
msgid "Cur."
|
|
505
520
|
msgstr "Val."
|
|
506
521
|
|
|
507
522
|
#. module: account_financial_report
|
|
523
|
+
#. odoo-python
|
|
508
524
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
509
525
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
510
|
-
#, python-format
|
|
511
526
|
msgid "Cur. Original"
|
|
512
|
-
msgstr "
|
|
527
|
+
msgstr "Valuta originale"
|
|
513
528
|
|
|
514
529
|
#. module: account_financial_report
|
|
530
|
+
#. odoo-python
|
|
515
531
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
516
532
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
517
|
-
#, python-format
|
|
518
533
|
msgid "Cur. Residual"
|
|
519
|
-
msgstr "Residuo
|
|
534
|
+
msgstr "Residuo valuta"
|
|
520
535
|
|
|
521
536
|
#. module: account_financial_report
|
|
537
|
+
#. odoo-python
|
|
522
538
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
523
|
-
#, python-format
|
|
524
539
|
msgid "Currency"
|
|
525
540
|
msgstr "Valuta"
|
|
526
541
|
|
|
527
542
|
#. module: account_financial_report
|
|
543
|
+
#. odoo-python
|
|
528
544
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
529
545
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
530
|
-
#, python-format
|
|
531
546
|
msgid "Current"
|
|
532
|
-
msgstr ""
|
|
547
|
+
msgstr "Attuale"
|
|
533
548
|
|
|
534
549
|
#. module: account_financial_report
|
|
550
|
+
#. odoo-python
|
|
535
551
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
536
552
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
537
553
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
@@ -541,7 +557,6 @@ msgstr ""
|
|
|
541
557
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
542
558
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
543
559
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
544
|
-
#, python-format
|
|
545
560
|
msgid "Date"
|
|
546
561
|
msgstr "Data"
|
|
547
562
|
|
|
@@ -568,17 +583,17 @@ msgid "Date To"
|
|
|
568
583
|
msgstr "Alla data"
|
|
569
584
|
|
|
570
585
|
#. module: account_financial_report
|
|
586
|
+
#. odoo-python
|
|
571
587
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
572
588
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
573
589
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_filters
|
|
574
590
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
575
|
-
#, python-format
|
|
576
591
|
msgid "Date at filter"
|
|
577
592
|
msgstr "Filtro alla data"
|
|
578
593
|
|
|
579
594
|
#. module: account_financial_report
|
|
595
|
+
#. odoo-python
|
|
580
596
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
581
|
-
#, python-format
|
|
582
597
|
msgid "Date from"
|
|
583
598
|
msgstr "Dalla data"
|
|
584
599
|
|
|
@@ -588,25 +603,26 @@ msgstr "Dalla data"
|
|
|
588
603
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__date_range_id
|
|
589
604
|
#: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__date_range_id
|
|
590
605
|
msgid "Date range"
|
|
591
|
-
msgstr "Intervallo
|
|
606
|
+
msgstr "Intervallo date"
|
|
592
607
|
|
|
593
608
|
#. module: account_financial_report
|
|
609
|
+
#. odoo-python
|
|
594
610
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
595
611
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
596
612
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
597
613
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
598
614
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
599
|
-
#, python-format
|
|
600
615
|
msgid "Date range filter"
|
|
601
616
|
msgstr "Filtro intervallo di date"
|
|
602
617
|
|
|
603
618
|
#. module: account_financial_report
|
|
619
|
+
#. odoo-python
|
|
604
620
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
605
|
-
#, python-format
|
|
606
621
|
msgid "Date to"
|
|
607
622
|
msgstr "Alla data"
|
|
608
623
|
|
|
609
624
|
#. module: account_financial_report
|
|
625
|
+
#. odoo-python
|
|
610
626
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
611
627
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
612
628
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
@@ -615,15 +631,14 @@ msgstr "Alla data"
|
|
|
615
631
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
616
632
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
617
633
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
618
|
-
#, python-format
|
|
619
634
|
msgid "Debit"
|
|
620
635
|
msgstr "Dare"
|
|
621
636
|
|
|
622
637
|
#. module: account_financial_report
|
|
638
|
+
#. odoo-python
|
|
623
639
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
624
640
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
|
|
625
641
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
626
|
-
#, python-format
|
|
627
642
|
msgid "Description"
|
|
628
643
|
msgstr "Descrizione"
|
|
629
644
|
|
|
@@ -633,29 +648,12 @@ msgid "Detail Taxes"
|
|
|
633
648
|
msgstr "Dettaglio imposte"
|
|
634
649
|
|
|
635
650
|
#. module: account_financial_report
|
|
636
|
-
#: model:ir.model.fields,field_description:account_financial_report.
|
|
637
|
-
#: model:ir.model.fields,field_description:account_financial_report.
|
|
638
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_account_group__display_name
|
|
639
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_account_move_line__display_name
|
|
651
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__display_name
|
|
652
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__display_name
|
|
640
653
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__display_name
|
|
641
654
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__display_name
|
|
642
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_ir_actions_report__display_name
|
|
643
655
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__display_name
|
|
644
656
|
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__display_name
|
|
645
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_aged_partner_balance_xlsx__display_name
|
|
646
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_general_ledger_xlsx__display_name
|
|
647
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_journal_ledger_xlsx__display_name
|
|
648
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_open_items_xlsx__display_name
|
|
649
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_trial_balance_xlsx__display_name
|
|
650
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_vat_report_xlsx__display_name
|
|
651
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_abstract_report__display_name
|
|
652
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_abstract_report_xlsx__display_name
|
|
653
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_aged_partner_balance__display_name
|
|
654
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_general_ledger__display_name
|
|
655
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_journal_ledger__display_name
|
|
656
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_open_items__display_name
|
|
657
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_trial_balance__display_name
|
|
658
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_vat_report__display_name
|
|
659
657
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__display_name
|
|
660
658
|
#: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__display_name
|
|
661
659
|
msgid "Display Name"
|
|
@@ -670,6 +668,9 @@ msgid ""
|
|
|
670
668
|
"setup through chart of accounts will display initial and final balance in "
|
|
671
669
|
"that currency."
|
|
672
670
|
msgstr ""
|
|
671
|
+
"Visualizza la valuta estera per le righe movimento, a meno che la valuta del "
|
|
672
|
+
"conto non sia impostata tramite il piano dei conti verrà visualizzato il "
|
|
673
|
+
"saldo iniziale e finale in quella valuta."
|
|
673
674
|
|
|
674
675
|
#. module: account_financial_report
|
|
675
676
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__hide_parent_hierarchy_level
|
|
@@ -687,7 +688,6 @@ msgstr ""
|
|
|
687
688
|
|
|
688
689
|
#. module: account_financial_report
|
|
689
690
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
690
|
-
#, fuzzy
|
|
691
691
|
msgid ""
|
|
692
692
|
"Due\n"
|
|
693
693
|
" date"
|
|
@@ -696,9 +696,9 @@ msgstr ""
|
|
|
696
696
|
" scadenza"
|
|
697
697
|
|
|
698
698
|
#. module: account_financial_report
|
|
699
|
+
#. odoo-python
|
|
699
700
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
700
701
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
701
|
-
#, python-format
|
|
702
702
|
msgid "Due date"
|
|
703
703
|
msgstr "Scadenza"
|
|
704
704
|
|
|
@@ -710,7 +710,7 @@ msgstr "Data fine"
|
|
|
710
710
|
#. module: account_financial_report
|
|
711
711
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__date_to
|
|
712
712
|
msgid "End date"
|
|
713
|
-
msgstr "Data
|
|
713
|
+
msgstr "Data fine"
|
|
714
714
|
|
|
715
715
|
#. module: account_financial_report
|
|
716
716
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_ending_cumul
|
|
@@ -727,35 +727,35 @@ msgstr ""
|
|
|
727
727
|
#: model:ir.model.fields,help:account_financial_report.field_open_items_report_wizard__account_code_to
|
|
728
728
|
#: model:ir.model.fields,help:account_financial_report.field_trial_balance_report_wizard__account_code_to
|
|
729
729
|
msgid "Ending account in a range"
|
|
730
|
-
msgstr ""
|
|
730
|
+
msgstr "Finale conto in un intervallo"
|
|
731
731
|
|
|
732
732
|
#. module: account_financial_report
|
|
733
|
+
#. odoo-python
|
|
733
734
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
734
735
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
735
736
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
736
737
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_ending_cumul
|
|
737
738
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
738
|
-
#, python-format
|
|
739
739
|
msgid "Ending balance"
|
|
740
740
|
msgstr "Saldo finale"
|
|
741
741
|
|
|
742
742
|
#. module: account_financial_report
|
|
743
743
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
744
|
-
#, fuzzy
|
|
745
744
|
msgid ""
|
|
746
745
|
"Ending balance\n"
|
|
747
746
|
" cur."
|
|
748
747
|
msgstr ""
|
|
749
|
-
"Saldo\n"
|
|
750
|
-
"
|
|
748
|
+
"Saldo finale\n"
|
|
749
|
+
" valuta"
|
|
751
750
|
|
|
752
751
|
#. module: account_financial_report
|
|
752
|
+
#. odoo-python
|
|
753
753
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
754
|
-
#, python-format
|
|
755
754
|
msgid "Entries sorted by"
|
|
756
|
-
msgstr ""
|
|
755
|
+
msgstr "Registrazioni ordinate per"
|
|
757
756
|
|
|
758
757
|
#. module: account_financial_report
|
|
758
|
+
#. odoo-python
|
|
759
759
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
760
760
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
761
761
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
@@ -764,22 +764,20 @@ msgstr ""
|
|
|
764
764
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
765
765
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
766
766
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
767
|
-
#, python-format
|
|
768
767
|
msgid "Entry"
|
|
769
768
|
msgstr "Registrazione"
|
|
770
769
|
|
|
771
770
|
#. module: account_financial_report
|
|
771
|
+
#. odoo-python
|
|
772
772
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
773
|
-
#, python-format
|
|
774
773
|
msgid "Entry number"
|
|
775
774
|
msgstr "Numero registrazione"
|
|
776
775
|
|
|
777
776
|
#. module: account_financial_report
|
|
778
|
-
#.
|
|
777
|
+
#. odoo-javascript
|
|
779
778
|
#: code:addons/account_financial_report/static/src/xml/report.xml:0
|
|
780
|
-
#, python-format
|
|
781
779
|
msgid "Export"
|
|
782
|
-
msgstr ""
|
|
780
|
+
msgstr "Esporta"
|
|
783
781
|
|
|
784
782
|
#. module: account_financial_report
|
|
785
783
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.aged_partner_balance_wizard
|
|
@@ -812,25 +810,18 @@ msgstr "Filtro conti"
|
|
|
812
810
|
|
|
813
811
|
#. module: account_financial_report
|
|
814
812
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
|
|
815
|
-
#, fuzzy
|
|
816
813
|
msgid "Filter analytic accounts"
|
|
817
|
-
msgstr "
|
|
818
|
-
|
|
819
|
-
#. module: account_financial_report
|
|
820
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__analytic_tag_ids
|
|
821
|
-
#: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
|
|
822
|
-
msgid "Filter analytic tags"
|
|
823
|
-
msgstr "Filtro tag analitici"
|
|
814
|
+
msgstr "Filtra conti analitici"
|
|
824
815
|
|
|
825
816
|
#. module: account_financial_report
|
|
826
817
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__cost_center_ids
|
|
827
818
|
msgid "Filter cost centers"
|
|
828
|
-
msgstr ""
|
|
819
|
+
msgstr "Filtra centri di costo"
|
|
829
820
|
|
|
830
821
|
#. module: account_financial_report
|
|
831
822
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__account_journal_ids
|
|
832
823
|
msgid "Filter journals"
|
|
833
|
-
msgstr ""
|
|
824
|
+
msgstr "Filtra registri"
|
|
834
825
|
|
|
835
826
|
#. module: account_financial_report
|
|
836
827
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__partner_ids
|
|
@@ -846,55 +837,57 @@ msgstr "Filtro partner"
|
|
|
846
837
|
msgid "Foreign Currency"
|
|
847
838
|
msgstr "Valuta estera"
|
|
848
839
|
|
|
840
|
+
#. module: account_financial_report
|
|
841
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
|
|
842
|
+
msgid "Format"
|
|
843
|
+
msgstr "Formato"
|
|
844
|
+
|
|
849
845
|
#. module: account_financial_report
|
|
850
846
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.aged_partner_balance_wizard
|
|
851
847
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
|
|
852
848
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.open_items_wizard
|
|
853
849
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.trial_balance_wizard
|
|
854
|
-
#, fuzzy
|
|
855
850
|
msgid "From Code"
|
|
856
|
-
msgstr "
|
|
851
|
+
msgstr "Da codice"
|
|
857
852
|
|
|
858
853
|
#. module: account_financial_report
|
|
859
854
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
860
855
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
861
856
|
msgid "From:"
|
|
862
|
-
msgstr ""
|
|
857
|
+
msgstr "Da:"
|
|
863
858
|
|
|
864
859
|
#. module: account_financial_report
|
|
860
|
+
#. odoo-python
|
|
865
861
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
866
862
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
867
863
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
msgstr "Da: %s A: %s"
|
|
864
|
+
msgid "From: %(date_from)s To: %(date_to)s"
|
|
865
|
+
msgstr "Dal: %(date_from)s Al: %(date_to)s"
|
|
871
866
|
|
|
872
867
|
#. module: account_financial_report
|
|
873
868
|
#: model:ir.model.fields,field_description:account_financial_report.field_account_group__complete_code
|
|
874
|
-
#, fuzzy
|
|
875
869
|
msgid "Full Code"
|
|
876
|
-
msgstr "Codice"
|
|
870
|
+
msgstr "Codice completo"
|
|
877
871
|
|
|
878
872
|
#. module: account_financial_report
|
|
879
873
|
#: model:ir.model.fields,field_description:account_financial_report.field_account_group__complete_name
|
|
880
|
-
#, fuzzy
|
|
881
874
|
msgid "Full Name"
|
|
882
|
-
msgstr "Nome"
|
|
875
|
+
msgstr "Nome completo"
|
|
883
876
|
|
|
884
877
|
#. module: account_financial_report
|
|
885
878
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__fy_start_date
|
|
886
879
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__fy_start_date
|
|
887
880
|
msgid "Fy Start Date"
|
|
888
|
-
msgstr ""
|
|
881
|
+
msgstr "Data inizio anno fiscale"
|
|
889
882
|
|
|
890
883
|
#. module: account_financial_report
|
|
884
|
+
#. odoo-python
|
|
891
885
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
892
886
|
#: model:ir.actions.act_window,name:account_financial_report.act_action_general_ledger_wizard_partner_relation
|
|
893
887
|
#: model:ir.actions.act_window,name:account_financial_report.action_general_ledger_wizard
|
|
894
888
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_general_ledger_html
|
|
895
889
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_general_ledger_qweb
|
|
896
890
|
#: model:ir.ui.menu,name:account_financial_report.menu_general_ledger_wizard
|
|
897
|
-
#, python-format
|
|
898
891
|
msgid "General Ledger"
|
|
899
892
|
msgstr "Mastrino"
|
|
900
893
|
|
|
@@ -905,9 +898,8 @@ msgstr "Mastrino -"
|
|
|
905
898
|
|
|
906
899
|
#. module: account_financial_report
|
|
907
900
|
#: model:ir.model,name:account_financial_report.model_report_account_financial_report_general_ledger
|
|
908
|
-
#, fuzzy
|
|
909
901
|
msgid "General Ledger Report"
|
|
910
|
-
msgstr "
|
|
902
|
+
msgstr "Resoconto mastrino"
|
|
911
903
|
|
|
912
904
|
#. module: account_financial_report
|
|
913
905
|
#: model:ir.model,name:account_financial_report.model_general_ledger_report_wizard
|
|
@@ -916,9 +908,8 @@ msgstr "Procedura rendiconto mastrino"
|
|
|
916
908
|
|
|
917
909
|
#. module: account_financial_report
|
|
918
910
|
#: model:ir.model,name:account_financial_report.model_report_a_f_r_report_general_ledger_xlsx
|
|
919
|
-
#, fuzzy
|
|
920
911
|
msgid "General Ledger XLSL Report"
|
|
921
|
-
msgstr "
|
|
912
|
+
msgstr "Resoconto XLSX mastrino"
|
|
922
913
|
|
|
923
914
|
#. module: account_financial_report
|
|
924
915
|
#: model:ir.actions.report,name:account_financial_report.action_report_general_ledger_xlsx
|
|
@@ -931,6 +922,8 @@ msgid ""
|
|
|
931
922
|
"General Ledger can be computed only if selected company have\n"
|
|
932
923
|
" only one unaffected earnings account."
|
|
933
924
|
msgstr ""
|
|
925
|
+
"Il libro mastro può essere elaborato solo se l'azienda selezionata ha\n"
|
|
926
|
+
" solo un conto ricavi inalterato."
|
|
934
927
|
|
|
935
928
|
#. module: account_financial_report
|
|
936
929
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__group_option
|
|
@@ -938,13 +931,28 @@ msgid "Group entries by"
|
|
|
938
931
|
msgstr "Raggruppa registrazioni per"
|
|
939
932
|
|
|
940
933
|
#. module: account_financial_report
|
|
934
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__grouped_by
|
|
935
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__grouped_by
|
|
936
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__grouped_by
|
|
937
|
+
msgid "Grouped By"
|
|
938
|
+
msgstr "Raggruppato per"
|
|
939
|
+
|
|
940
|
+
#. module: account_financial_report
|
|
941
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
942
|
+
msgid ""
|
|
943
|
+
"Here you can set the intervals that will appear on the Aged Partner Balance."
|
|
944
|
+
msgstr ""
|
|
945
|
+
"Qui si possono impostare gli intervalli che appariranno nel bilancio partner "
|
|
946
|
+
"storici."
|
|
947
|
+
|
|
948
|
+
#. module: account_financial_report
|
|
949
|
+
#. odoo-python
|
|
941
950
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
942
951
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
943
952
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
944
953
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
945
954
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
946
955
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
947
|
-
#, python-format
|
|
948
956
|
msgid "Hide"
|
|
949
957
|
msgstr "Nascondi"
|
|
950
958
|
|
|
@@ -965,38 +973,16 @@ msgid "Hierarchy Levels to display"
|
|
|
965
973
|
msgstr "Livelli da mostrare"
|
|
966
974
|
|
|
967
975
|
#. module: account_financial_report
|
|
968
|
-
#: model:ir.model.fields,field_description:account_financial_report.
|
|
969
|
-
|
|
970
|
-
msgstr "Gerarchia su"
|
|
971
|
-
|
|
972
|
-
#. module: account_financial_report
|
|
973
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_account_account__id
|
|
974
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_account_financial_report_abstract_wizard__id
|
|
975
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_account_group__id
|
|
976
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_account_move_line__id
|
|
976
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__id
|
|
977
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__id
|
|
977
978
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__id
|
|
978
979
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__id
|
|
979
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_ir_actions_report__id
|
|
980
980
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__id
|
|
981
981
|
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__id
|
|
982
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_aged_partner_balance_xlsx__id
|
|
983
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_general_ledger_xlsx__id
|
|
984
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_journal_ledger_xlsx__id
|
|
985
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_open_items_xlsx__id
|
|
986
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_trial_balance_xlsx__id
|
|
987
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_vat_report_xlsx__id
|
|
988
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_abstract_report__id
|
|
989
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_abstract_report_xlsx__id
|
|
990
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_aged_partner_balance__id
|
|
991
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_general_ledger__id
|
|
992
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_journal_ledger__id
|
|
993
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_open_items__id
|
|
994
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_trial_balance__id
|
|
995
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_vat_report__id
|
|
996
982
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__id
|
|
997
983
|
#: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__id
|
|
998
984
|
msgid "ID"
|
|
999
|
-
msgstr ""
|
|
985
|
+
msgstr "ID"
|
|
1000
986
|
|
|
1001
987
|
#. module: account_financial_report
|
|
1002
988
|
#: model:ir.model.fields,help:account_financial_report.field_account_account__centralized
|
|
@@ -1004,16 +990,28 @@ msgid ""
|
|
|
1004
990
|
"If flagged, no details will be displayed in the General Ledger report (the "
|
|
1005
991
|
"webkit one only), only centralized amounts per period."
|
|
1006
992
|
msgstr ""
|
|
993
|
+
"Se selezionata, nessun dettaglio verrà visualizzato nel resoconto libro "
|
|
994
|
+
"mastro (solo il webkit), solo conti centralizzati per periodo."
|
|
995
|
+
|
|
996
|
+
#. module: account_financial_report
|
|
997
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__inferior_limit
|
|
998
|
+
msgid "Inferior Limit"
|
|
999
|
+
msgstr "Limite inferiore"
|
|
1000
|
+
|
|
1001
|
+
#. module: account_financial_report
|
|
1002
|
+
#. odoo-python
|
|
1003
|
+
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1004
|
+
msgid "Inferior Limit must be greather than zero"
|
|
1005
|
+
msgstr "Il limite inferiore deve essere maggiore di zero"
|
|
1007
1006
|
|
|
1008
1007
|
#. module: account_financial_report
|
|
1009
1008
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
1010
|
-
#, fuzzy
|
|
1011
1009
|
msgid ""
|
|
1012
1010
|
"Initial\n"
|
|
1013
1011
|
" balance cur."
|
|
1014
1012
|
msgstr ""
|
|
1015
1013
|
"Saldo\n"
|
|
1016
|
-
"
|
|
1014
|
+
" iniziale valuta"
|
|
1017
1015
|
|
|
1018
1016
|
#. module: account_financial_report
|
|
1019
1017
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
@@ -1021,16 +1019,25 @@ msgid ""
|
|
|
1021
1019
|
"Initial\n"
|
|
1022
1020
|
" balance"
|
|
1023
1021
|
msgstr ""
|
|
1022
|
+
"Saldo\n"
|
|
1023
|
+
" iniziale"
|
|
1024
1024
|
|
|
1025
1025
|
#. module: account_financial_report
|
|
1026
|
+
#. odoo-python
|
|
1026
1027
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1027
1028
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1028
1029
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1029
|
-
#, python-format
|
|
1030
1030
|
msgid "Initial balance"
|
|
1031
1031
|
msgstr "Saldo iniziale"
|
|
1032
1032
|
|
|
1033
1033
|
#. module: account_financial_report
|
|
1034
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__age_partner_config_id
|
|
1035
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_res_config_settings__age_partner_config_id
|
|
1036
|
+
msgid "Intervals configuration"
|
|
1037
|
+
msgstr "Configurazione intervalli"
|
|
1038
|
+
|
|
1039
|
+
#. module: account_financial_report
|
|
1040
|
+
#. odoo-python
|
|
1034
1041
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1035
1042
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1036
1043
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
@@ -1039,9 +1046,8 @@ msgstr "Saldo iniziale"
|
|
|
1039
1046
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
1040
1047
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1041
1048
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1042
|
-
#, python-format
|
|
1043
1049
|
msgid "Journal"
|
|
1044
|
-
msgstr "
|
|
1050
|
+
msgstr "Registro"
|
|
1045
1051
|
|
|
1046
1052
|
#. module: account_financial_report
|
|
1047
1053
|
#: model:ir.model,name:account_financial_report.model_account_move_line
|
|
@@ -1051,14 +1057,14 @@ msgstr "Movimento contabile"
|
|
|
1051
1057
|
#. module: account_financial_report
|
|
1052
1058
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__domain
|
|
1053
1059
|
msgid "Journal Items Domain"
|
|
1054
|
-
msgstr ""
|
|
1060
|
+
msgstr "Dominio movimenti contabili"
|
|
1055
1061
|
|
|
1056
1062
|
#. module: account_financial_report
|
|
1063
|
+
#. odoo-python
|
|
1057
1064
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1058
1065
|
#: model:ir.actions.act_window,name:account_financial_report.action_journal_ledger_wizard
|
|
1059
1066
|
#: model:ir.actions.report,name:account_financial_report.action_print_journal_ledger_wizard_html
|
|
1060
1067
|
#: model:ir.ui.menu,name:account_financial_report.menu_journal_ledger_wizard
|
|
1061
|
-
#, python-format
|
|
1062
1068
|
msgid "Journal Ledger"
|
|
1063
1069
|
msgstr "Libro Mastro"
|
|
1064
1070
|
|
|
@@ -1069,14 +1075,13 @@ msgstr "Libro Mastro -"
|
|
|
1069
1075
|
|
|
1070
1076
|
#. module: account_financial_report
|
|
1071
1077
|
#: model:ir.model,name:account_financial_report.model_report_account_financial_report_journal_ledger
|
|
1072
|
-
#, fuzzy
|
|
1073
1078
|
msgid "Journal Ledger Report"
|
|
1074
|
-
msgstr "
|
|
1079
|
+
msgstr "Resoconto mastrino"
|
|
1075
1080
|
|
|
1076
1081
|
#. module: account_financial_report
|
|
1077
1082
|
#: model:ir.model,name:account_financial_report.model_journal_ledger_report_wizard
|
|
1078
1083
|
msgid "Journal Ledger Report Wizard"
|
|
1079
|
-
msgstr ""
|
|
1084
|
+
msgstr "Procedura guidata resoconto mastrino"
|
|
1080
1085
|
|
|
1081
1086
|
#. module: account_financial_report
|
|
1082
1087
|
#: model:ir.actions.report,name:account_financial_report.action_report_journal_ledger_xlsx
|
|
@@ -1085,48 +1090,31 @@ msgstr "Libro mastro XLSX"
|
|
|
1085
1090
|
|
|
1086
1091
|
#. module: account_financial_report
|
|
1087
1092
|
#: model:ir.model,name:account_financial_report.model_report_a_f_r_report_journal_ledger_xlsx
|
|
1088
|
-
#, fuzzy
|
|
1089
1093
|
msgid "Journal Ledger XLSX Report"
|
|
1090
|
-
msgstr "
|
|
1094
|
+
msgstr "Resoconto XLSX libro mastro"
|
|
1091
1095
|
|
|
1092
1096
|
#. module: account_financial_report
|
|
1097
|
+
#. odoo-python
|
|
1093
1098
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1094
1099
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__journal_ids
|
|
1095
1100
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.journal_ledger_wizard
|
|
1096
|
-
#, python-format
|
|
1097
1101
|
msgid "Journals"
|
|
1098
1102
|
msgstr "Sezionali"
|
|
1099
1103
|
|
|
1100
1104
|
#. module: account_financial_report
|
|
1101
|
-
#: model:ir.model.fields,field_description:account_financial_report.
|
|
1102
|
-
#: model:ir.model.fields,field_description:account_financial_report.
|
|
1103
|
-
#: model:ir.model.fields,field_description:account_financial_report.
|
|
1104
|
-
#: model:ir.model.fields,field_description:account_financial_report.
|
|
1105
|
-
#: model:ir.model.fields,field_description:account_financial_report.
|
|
1106
|
-
#: model:ir.model.fields,field_description:account_financial_report.
|
|
1107
|
-
#: model:ir.model.fields,field_description:account_financial_report.
|
|
1108
|
-
|
|
1109
|
-
|
|
1110
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_aged_partner_balance_xlsx____last_update
|
|
1111
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_general_ledger_xlsx____last_update
|
|
1112
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_journal_ledger_xlsx____last_update
|
|
1113
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_open_items_xlsx____last_update
|
|
1114
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_trial_balance_xlsx____last_update
|
|
1115
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_vat_report_xlsx____last_update
|
|
1116
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_abstract_report____last_update
|
|
1117
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_abstract_report_xlsx____last_update
|
|
1118
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_aged_partner_balance____last_update
|
|
1119
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_general_ledger____last_update
|
|
1120
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_journal_ledger____last_update
|
|
1121
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_open_items____last_update
|
|
1122
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_trial_balance____last_update
|
|
1123
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_vat_report____last_update
|
|
1124
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard____last_update
|
|
1125
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard____last_update
|
|
1126
|
-
msgid "Last Modified on"
|
|
1127
|
-
msgstr "Ultima modifica il"
|
|
1105
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_financial_report_abstract_wizard__label_text_limit
|
|
1106
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__label_text_limit
|
|
1107
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__label_text_limit
|
|
1108
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__label_text_limit
|
|
1109
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__label_text_limit
|
|
1110
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__label_text_limit
|
|
1111
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__label_text_limit
|
|
1112
|
+
msgid "Label Text Limit"
|
|
1113
|
+
msgstr "Limite testo etichetta"
|
|
1128
1114
|
|
|
1129
1115
|
#. module: account_financial_report
|
|
1116
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__write_uid
|
|
1117
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__write_uid
|
|
1130
1118
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__write_uid
|
|
1131
1119
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__write_uid
|
|
1132
1120
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__write_uid
|
|
@@ -1137,6 +1125,8 @@ msgid "Last Updated by"
|
|
|
1137
1125
|
msgstr "Ultimo aggiornamento di"
|
|
1138
1126
|
|
|
1139
1127
|
#. module: account_financial_report
|
|
1128
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__write_date
|
|
1129
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__write_date
|
|
1140
1130
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__write_date
|
|
1141
1131
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__write_date
|
|
1142
1132
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__write_date
|
|
@@ -1153,19 +1143,50 @@ msgid "Level"
|
|
|
1153
1143
|
msgstr "Livello"
|
|
1154
1144
|
|
|
1155
1145
|
#. module: account_financial_report
|
|
1146
|
+
#. odoo-python
|
|
1156
1147
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1157
|
-
#, python-format
|
|
1158
1148
|
msgid "Level %s"
|
|
1159
|
-
msgstr ""
|
|
1149
|
+
msgstr "Livello %s"
|
|
1160
1150
|
|
|
1161
1151
|
#. module: account_financial_report
|
|
1152
|
+
#. odoo-python
|
|
1162
1153
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1163
1154
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__limit_hierarchy_level
|
|
1164
1155
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1165
|
-
#, python-format
|
|
1166
1156
|
msgid "Limit hierarchy levels"
|
|
1167
1157
|
msgstr "Limitare i livelli della gerarchia"
|
|
1168
1158
|
|
|
1159
|
+
#. module: account_financial_report
|
|
1160
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__line_ids
|
|
1161
|
+
msgid "Line"
|
|
1162
|
+
msgstr "Riga"
|
|
1163
|
+
|
|
1164
|
+
#. module: account_financial_report
|
|
1165
|
+
#. odoo-python
|
|
1166
|
+
#: code:addons/account_financial_report/report/general_ledger.py:0
|
|
1167
|
+
#: code:addons/account_financial_report/report/open_items.py:0
|
|
1168
|
+
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1169
|
+
#: code:addons/account_financial_report/report/trial_balance.py:0
|
|
1170
|
+
msgid "Missing Partner"
|
|
1171
|
+
msgstr "Partner mancante"
|
|
1172
|
+
|
|
1173
|
+
#. module: account_financial_report
|
|
1174
|
+
#. odoo-python
|
|
1175
|
+
#: code:addons/account_financial_report/report/open_items.py:0
|
|
1176
|
+
msgid "Missing Salesperson"
|
|
1177
|
+
msgstr "Addetto vendite non trovato"
|
|
1178
|
+
|
|
1179
|
+
#. module: account_financial_report
|
|
1180
|
+
#: model:ir.model,name:account_financial_report.model_account_age_report_configuration_line
|
|
1181
|
+
msgid "Model to set interval lines for Age partner balance report"
|
|
1182
|
+
msgstr ""
|
|
1183
|
+
"Modello per impostare righe intervalli per il resoconto partner storici"
|
|
1184
|
+
|
|
1185
|
+
#. module: account_financial_report
|
|
1186
|
+
#: model:ir.model,name:account_financial_report.model_account_age_report_configuration
|
|
1187
|
+
msgid "Model to set intervals for Age partner balance report"
|
|
1188
|
+
msgstr "Modello per impostare gli intervalli per il resoconto partner storici"
|
|
1189
|
+
|
|
1169
1190
|
#. module: account_financial_report
|
|
1170
1191
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__move_target
|
|
1171
1192
|
msgid "Move Target"
|
|
@@ -1177,65 +1198,77 @@ msgid "Moves"
|
|
|
1177
1198
|
msgstr "Registrazioni"
|
|
1178
1199
|
|
|
1179
1200
|
#. module: account_financial_report
|
|
1201
|
+
#. odoo-python
|
|
1202
|
+
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1203
|
+
msgid "Must complete Configuration Lines"
|
|
1204
|
+
msgstr "Serve completare le righe di configurazione"
|
|
1205
|
+
|
|
1206
|
+
#. module: account_financial_report
|
|
1207
|
+
#. odoo-python
|
|
1180
1208
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1181
1209
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1210
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__name
|
|
1211
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__name
|
|
1182
1212
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
|
|
1183
1213
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
1184
1214
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
1185
|
-
#, python-format
|
|
1186
1215
|
msgid "Name"
|
|
1187
1216
|
msgstr "Nome"
|
|
1188
1217
|
|
|
1189
1218
|
#. module: account_financial_report
|
|
1219
|
+
#: model:ir.model.constraint,message:account_financial_report.constraint_account_age_report_configuration_line_unique_name_config_combination
|
|
1220
|
+
msgid "Name must be unique per report configuration"
|
|
1221
|
+
msgstr "Il nome deve essere univoco per configurazione resoconto"
|
|
1222
|
+
|
|
1223
|
+
#. module: account_financial_report
|
|
1224
|
+
#. odoo-python
|
|
1190
1225
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1191
1226
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
1192
|
-
#, python-format
|
|
1193
1227
|
msgid "Net"
|
|
1194
1228
|
msgstr "Netto"
|
|
1195
1229
|
|
|
1196
1230
|
#. module: account_financial_report
|
|
1231
|
+
#. odoo-python
|
|
1197
1232
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1198
1233
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1199
1234
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1200
1235
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1201
|
-
#, python-format
|
|
1202
1236
|
msgid "No"
|
|
1203
|
-
msgstr ""
|
|
1237
|
+
msgstr "No"
|
|
1204
1238
|
|
|
1205
1239
|
#. module: account_financial_report
|
|
1240
|
+
#. odoo-python
|
|
1206
1241
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
1207
|
-
#, python-format
|
|
1208
1242
|
msgid "No group"
|
|
1209
|
-
msgstr ""
|
|
1210
|
-
|
|
1211
|
-
#. module: account_financial_report
|
|
1212
|
-
#: model:ir.model.fields.selection,name:account_financial_report.selection__trial_balance_report_wizard__hierarchy_on__none
|
|
1213
|
-
msgid "No hierarchy"
|
|
1214
|
-
msgstr "Nessuna gerarchia"
|
|
1243
|
+
msgstr "Nessun gruppo"
|
|
1215
1244
|
|
|
1216
1245
|
#. module: account_financial_report
|
|
1246
|
+
#. odoo-python
|
|
1217
1247
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1218
1248
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1219
|
-
#, python-format
|
|
1220
1249
|
msgid "No limit"
|
|
1221
|
-
msgstr ""
|
|
1250
|
+
msgstr "Nessun limite"
|
|
1251
|
+
|
|
1252
|
+
#. module: account_financial_report
|
|
1253
|
+
#: model:ir.model.fields.selection,name:account_financial_report.selection__general_ledger_report_wizard__grouped_by__none
|
|
1254
|
+
msgid "None"
|
|
1255
|
+
msgstr "Nessuna"
|
|
1222
1256
|
|
|
1223
1257
|
#. module: account_financial_report
|
|
1258
|
+
#. odoo-python
|
|
1224
1259
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
1225
|
-
#, python-format
|
|
1226
1260
|
msgid "Not Posted"
|
|
1227
1261
|
msgstr "Non confermate"
|
|
1228
1262
|
|
|
1229
1263
|
#. module: account_financial_report
|
|
1230
1264
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_lines_header
|
|
1231
1265
|
msgid "Not due"
|
|
1232
|
-
msgstr ""
|
|
1266
|
+
msgstr "Non dovuto"
|
|
1233
1267
|
|
|
1234
1268
|
#. module: account_financial_report
|
|
1235
|
-
#:
|
|
1236
|
-
|
|
1237
|
-
|
|
1238
|
-
msgstr ""
|
|
1269
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
1270
|
+
msgid "OCA Aged Report Configuration"
|
|
1271
|
+
msgstr "Configurazione resoconto storico OCA"
|
|
1239
1272
|
|
|
1240
1273
|
#. module: account_financial_report
|
|
1241
1274
|
#: model:ir.ui.menu,name:account_financial_report.menu_oca_reports
|
|
@@ -1243,19 +1276,25 @@ msgid "OCA accounting reports"
|
|
|
1243
1276
|
msgstr "Rendiconti OCA"
|
|
1244
1277
|
|
|
1245
1278
|
#. module: account_financial_report
|
|
1279
|
+
#. odoo-python
|
|
1246
1280
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1247
1281
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
1248
|
-
#, python-format
|
|
1249
1282
|
msgid "Older"
|
|
1250
|
-
msgstr "Più
|
|
1283
|
+
msgstr "Più vecchio"
|
|
1251
1284
|
|
|
1252
1285
|
#. module: account_financial_report
|
|
1286
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__only_one_unaffected_earnings_account
|
|
1287
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__only_one_unaffected_earnings_account
|
|
1288
|
+
msgid "Only One Unaffected Earnings Account"
|
|
1289
|
+
msgstr "Solo un conto ricavi inalterato"
|
|
1290
|
+
|
|
1291
|
+
#. module: account_financial_report
|
|
1292
|
+
#. odoo-python
|
|
1253
1293
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1254
1294
|
#: model:ir.actions.act_window,name:account_financial_report.action_open_items_wizard
|
|
1255
1295
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_open_items_html
|
|
1256
1296
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_open_items_qweb
|
|
1257
1297
|
#: model:ir.ui.menu,name:account_financial_report.menu_open_items_wizard
|
|
1258
|
-
#, python-format
|
|
1259
1298
|
msgid "Open Items"
|
|
1260
1299
|
msgstr "Partite aperte"
|
|
1261
1300
|
|
|
@@ -1267,18 +1306,17 @@ msgstr "Partite aperte -"
|
|
|
1267
1306
|
#. module: account_financial_report
|
|
1268
1307
|
#: model:ir.actions.act_window,name:account_financial_report.act_action_open_items_wizard_partner_relation
|
|
1269
1308
|
msgid "Open Items Partner"
|
|
1270
|
-
msgstr ""
|
|
1309
|
+
msgstr "Partite aperte partner"
|
|
1271
1310
|
|
|
1272
1311
|
#. module: account_financial_report
|
|
1273
1312
|
#: model:ir.model,name:account_financial_report.model_report_account_financial_report_open_items
|
|
1274
|
-
#, fuzzy
|
|
1275
1313
|
msgid "Open Items Report"
|
|
1276
|
-
msgstr "
|
|
1314
|
+
msgstr "Resoconto partite aperte"
|
|
1277
1315
|
|
|
1278
1316
|
#. module: account_financial_report
|
|
1279
1317
|
#: model:ir.model,name:account_financial_report.model_open_items_report_wizard
|
|
1280
1318
|
msgid "Open Items Report Wizard"
|
|
1281
|
-
msgstr "Procedura
|
|
1319
|
+
msgstr "Procedura guidata resoconto partite aperte"
|
|
1282
1320
|
|
|
1283
1321
|
#. module: account_financial_report
|
|
1284
1322
|
#: model:ir.actions.report,name:account_financial_report.action_report_open_items_xlsx
|
|
@@ -1287,9 +1325,8 @@ msgstr "Partite aperte XLSX"
|
|
|
1287
1325
|
|
|
1288
1326
|
#. module: account_financial_report
|
|
1289
1327
|
#: model:ir.model,name:account_financial_report.model_report_a_f_r_report_open_items_xlsx
|
|
1290
|
-
#, fuzzy
|
|
1291
1328
|
msgid "Open Items XLSX Report"
|
|
1292
|
-
msgstr "
|
|
1329
|
+
msgstr "Resoconto XLSX partite aperte"
|
|
1293
1330
|
|
|
1294
1331
|
#. module: account_financial_report
|
|
1295
1332
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.journal_ledger_wizard
|
|
@@ -1297,13 +1334,14 @@ msgid "Options"
|
|
|
1297
1334
|
msgstr "Opzioni"
|
|
1298
1335
|
|
|
1299
1336
|
#. module: account_financial_report
|
|
1337
|
+
#. odoo-python
|
|
1300
1338
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1301
1339
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1302
|
-
#, python-format
|
|
1303
1340
|
msgid "Original"
|
|
1304
1341
|
msgstr "Originale"
|
|
1305
1342
|
|
|
1306
1343
|
#. module: account_financial_report
|
|
1344
|
+
#. odoo-python
|
|
1307
1345
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1308
1346
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1309
1347
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
@@ -1315,41 +1353,55 @@ msgstr "Originale"
|
|
|
1315
1353
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1316
1354
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1317
1355
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
1318
|
-
#, python-format
|
|
1319
1356
|
msgid "Partner"
|
|
1320
|
-
msgstr ""
|
|
1357
|
+
msgstr "Partner"
|
|
1321
1358
|
|
|
1322
1359
|
#. module: account_financial_report
|
|
1323
1360
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_partner_ending_cumul
|
|
1324
|
-
#, fuzzy
|
|
1325
1361
|
msgid ""
|
|
1326
1362
|
"Partner\n"
|
|
1327
1363
|
" cumul aged balance"
|
|
1328
1364
|
msgstr ""
|
|
1329
|
-
"
|
|
1330
|
-
"
|
|
1365
|
+
"Bilancio storico\n"
|
|
1366
|
+
" cumulato partner"
|
|
1331
1367
|
|
|
1332
1368
|
#. module: account_financial_report
|
|
1369
|
+
#. odoo-python
|
|
1333
1370
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1334
|
-
#, python-format
|
|
1335
1371
|
msgid "Partner Initial balance"
|
|
1336
1372
|
msgstr "Partner - Saldo iniziale"
|
|
1337
1373
|
|
|
1338
1374
|
#. module: account_financial_report
|
|
1375
|
+
#: model:ir.model.fields.selection,name:account_financial_report.selection__open_items_report_wizard__grouped_by__salesperson
|
|
1376
|
+
msgid "Partner Salesperson"
|
|
1377
|
+
msgstr "Addetto vendite partner"
|
|
1378
|
+
|
|
1379
|
+
#. module: account_financial_report
|
|
1380
|
+
#. odoo-python
|
|
1339
1381
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1340
|
-
#, python-format
|
|
1341
1382
|
msgid "Partner cumul aged balance"
|
|
1342
1383
|
msgstr "Partner - Saldo progressivo"
|
|
1343
1384
|
|
|
1344
1385
|
#. module: account_financial_report
|
|
1386
|
+
#. odoo-python
|
|
1345
1387
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1346
1388
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1347
1389
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_ending_cumul
|
|
1348
1390
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_ending_cumul
|
|
1349
|
-
#, python-format
|
|
1350
1391
|
msgid "Partner ending balance"
|
|
1351
1392
|
msgstr "Partner - Saldo finale"
|
|
1352
1393
|
|
|
1394
|
+
#. module: account_financial_report
|
|
1395
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1396
|
+
msgid "Partner initial balance"
|
|
1397
|
+
msgstr "Saldo iniziale partner"
|
|
1398
|
+
|
|
1399
|
+
#. module: account_financial_report
|
|
1400
|
+
#: model:ir.model.fields.selection,name:account_financial_report.selection__general_ledger_report_wizard__grouped_by__partners
|
|
1401
|
+
#: model:ir.model.fields.selection,name:account_financial_report.selection__open_items_report_wizard__grouped_by__partners
|
|
1402
|
+
msgid "Partners"
|
|
1403
|
+
msgstr "Partner"
|
|
1404
|
+
|
|
1353
1405
|
#. module: account_financial_report
|
|
1354
1406
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__payable_accounts_only
|
|
1355
1407
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__payable_accounts_only
|
|
@@ -1364,9 +1416,9 @@ msgid "Percents"
|
|
|
1364
1416
|
msgstr "Percentuali"
|
|
1365
1417
|
|
|
1366
1418
|
#. module: account_financial_report
|
|
1419
|
+
#. odoo-python
|
|
1367
1420
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1368
1421
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
1369
|
-
#, python-format
|
|
1370
1422
|
msgid "Period balance"
|
|
1371
1423
|
msgstr "Saldo periodo"
|
|
1372
1424
|
|
|
@@ -1376,22 +1428,15 @@ msgid "Periods"
|
|
|
1376
1428
|
msgstr "Periodi"
|
|
1377
1429
|
|
|
1378
1430
|
#. module: account_financial_report
|
|
1431
|
+
#. odoo-python
|
|
1379
1432
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
1380
|
-
#, python-format
|
|
1381
1433
|
msgid "Posted"
|
|
1382
1434
|
msgstr "Confermate"
|
|
1383
1435
|
|
|
1384
1436
|
#. module: account_financial_report
|
|
1385
|
-
#.
|
|
1386
|
-
#: code:addons/account_financial_report/static/src/xml/report.xml:0
|
|
1387
|
-
#, python-format
|
|
1388
|
-
msgid "Print"
|
|
1389
|
-
msgstr ""
|
|
1390
|
-
|
|
1391
|
-
#. module: account_financial_report
|
|
1437
|
+
#. odoo-python
|
|
1392
1438
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1393
1439
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1394
|
-
#, python-format
|
|
1395
1440
|
msgid "Rec."
|
|
1396
1441
|
msgstr "Ric."
|
|
1397
1442
|
|
|
@@ -1415,7 +1460,6 @@ msgstr ""
|
|
|
1415
1460
|
|
|
1416
1461
|
#. module: account_financial_report
|
|
1417
1462
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1418
|
-
#, fuzzy
|
|
1419
1463
|
msgid ""
|
|
1420
1464
|
"Ref -\n"
|
|
1421
1465
|
" Label"
|
|
@@ -1424,58 +1468,57 @@ msgstr ""
|
|
|
1424
1468
|
" Etichetta"
|
|
1425
1469
|
|
|
1426
1470
|
#. module: account_financial_report
|
|
1471
|
+
#. odoo-python
|
|
1427
1472
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1428
1473
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1429
1474
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1430
1475
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1431
1476
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1432
|
-
#, python-format
|
|
1433
1477
|
msgid "Ref - Label"
|
|
1434
1478
|
msgstr "Rif - Etichetta"
|
|
1435
1479
|
|
|
1436
1480
|
#. module: account_financial_report
|
|
1437
1481
|
#: model:ir.model,name:account_financial_report.model_ir_actions_report
|
|
1438
1482
|
msgid "Report Action"
|
|
1439
|
-
msgstr ""
|
|
1483
|
+
msgstr "Azione resoconto"
|
|
1440
1484
|
|
|
1441
1485
|
#. module: account_financial_report
|
|
1486
|
+
#. odoo-python
|
|
1442
1487
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1443
1488
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1444
1489
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_lines_header
|
|
1445
1490
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
1446
1491
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1447
|
-
#, python-format
|
|
1448
1492
|
msgid "Residual"
|
|
1449
1493
|
msgstr "Saldo"
|
|
1450
1494
|
|
|
1451
1495
|
#. module: account_financial_report
|
|
1496
|
+
#. odoo-python
|
|
1452
1497
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1453
1498
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1454
|
-
#, python-format
|
|
1455
1499
|
msgid "Sequence"
|
|
1456
1500
|
msgstr "Sequenza"
|
|
1457
1501
|
|
|
1458
1502
|
#. module: account_financial_report
|
|
1503
|
+
#. odoo-python
|
|
1459
1504
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1460
1505
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1461
1506
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1462
1507
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1463
1508
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
1464
1509
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1465
|
-
#, python-format
|
|
1466
1510
|
msgid "Show"
|
|
1467
1511
|
msgstr "Vedi"
|
|
1468
1512
|
|
|
1469
1513
|
#. module: account_financial_report
|
|
1470
1514
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__show_cost_center
|
|
1471
|
-
#, fuzzy
|
|
1472
1515
|
msgid "Show Analytic Account"
|
|
1473
|
-
msgstr "
|
|
1516
|
+
msgstr "Mostra conto analitico"
|
|
1474
1517
|
|
|
1475
1518
|
#. module: account_financial_report
|
|
1476
1519
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__with_auto_sequence
|
|
1477
1520
|
msgid "Show Auto Sequence"
|
|
1478
|
-
msgstr ""
|
|
1521
|
+
msgstr "Visualizza auto sequenza"
|
|
1479
1522
|
|
|
1480
1523
|
#. module: account_financial_report
|
|
1481
1524
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__show_move_line_details
|
|
@@ -1483,31 +1526,27 @@ msgid "Show Move Line Details"
|
|
|
1483
1526
|
msgstr "Mostrare dettagli riga contabile"
|
|
1484
1527
|
|
|
1485
1528
|
#. module: account_financial_report
|
|
1486
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__show_partner_details
|
|
1487
1529
|
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__show_partner_details
|
|
1488
1530
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__show_partner_details
|
|
1489
1531
|
msgid "Show Partner Details"
|
|
1490
1532
|
msgstr "Mostrare dettagli partner"
|
|
1491
1533
|
|
|
1492
1534
|
#. module: account_financial_report
|
|
1493
|
-
|
|
1494
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__show_analytic_tags
|
|
1495
|
-
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1496
|
-
#, python-format
|
|
1497
|
-
msgid "Show analytic tags"
|
|
1498
|
-
msgstr "Mostrare tag analitici"
|
|
1499
|
-
|
|
1500
|
-
#. module: account_financial_report
|
|
1535
|
+
#. odoo-python
|
|
1501
1536
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1502
1537
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1503
1538
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1504
1539
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__foreign_currency
|
|
1505
1540
|
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__foreign_currency
|
|
1506
1541
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__foreign_currency
|
|
1507
|
-
#, python-format
|
|
1508
1542
|
msgid "Show foreign currency"
|
|
1509
1543
|
msgstr "Mostrare valuta estera"
|
|
1510
1544
|
|
|
1545
|
+
#. module: account_financial_report
|
|
1546
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__show_hierarchy
|
|
1547
|
+
msgid "Show hierarchy"
|
|
1548
|
+
msgstr "Visualizza gerarchia"
|
|
1549
|
+
|
|
1511
1550
|
#. module: account_financial_report
|
|
1512
1551
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__sort_option
|
|
1513
1552
|
msgid "Sort entries by"
|
|
@@ -1521,20 +1560,24 @@ msgstr "Data inizio"
|
|
|
1521
1560
|
#. module: account_financial_report
|
|
1522
1561
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__date_from
|
|
1523
1562
|
msgid "Start date"
|
|
1524
|
-
msgstr "Data
|
|
1563
|
+
msgstr "Data inizio"
|
|
1525
1564
|
|
|
1526
1565
|
#. module: account_financial_report
|
|
1527
1566
|
#: model:ir.model.fields,help:account_financial_report.field_aged_partner_balance_report_wizard__account_code_from
|
|
1528
1567
|
#: model:ir.model.fields,help:account_financial_report.field_general_ledger_report_wizard__account_code_from
|
|
1529
|
-
#: model:ir.model.fields,help:account_financial_report.field_open_items_report_wizard__account_code_from
|
|
1530
1568
|
#: model:ir.model.fields,help:account_financial_report.field_trial_balance_report_wizard__account_code_from
|
|
1531
1569
|
msgid "Starting account in a range"
|
|
1532
|
-
msgstr ""
|
|
1570
|
+
msgstr "Inizio conto in un intervallo"
|
|
1571
|
+
|
|
1572
|
+
#. module: account_financial_report
|
|
1573
|
+
#. odoo-python
|
|
1574
|
+
#: code:addons/account_financial_report/report/trial_balance.py:0
|
|
1575
|
+
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1576
|
+
msgid "TOTAL"
|
|
1577
|
+
msgstr "TOTALE"
|
|
1533
1578
|
|
|
1534
1579
|
#. module: account_financial_report
|
|
1535
|
-
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1536
1580
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1537
|
-
#, python-format
|
|
1538
1581
|
msgid "Tags"
|
|
1539
1582
|
msgstr "Etichette"
|
|
1540
1583
|
|
|
@@ -1545,9 +1588,10 @@ msgstr "Etichette"
|
|
|
1545
1588
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__target_move
|
|
1546
1589
|
#: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__target_move
|
|
1547
1590
|
msgid "Target Moves"
|
|
1548
|
-
msgstr "
|
|
1591
|
+
msgstr "Movimenti obiettivo"
|
|
1549
1592
|
|
|
1550
1593
|
#. module: account_financial_report
|
|
1594
|
+
#. odoo-python
|
|
1551
1595
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1552
1596
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1553
1597
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
@@ -1557,14 +1601,13 @@ msgstr "Obiettivo"
|
|
|
1557
1601
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1558
1602
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
1559
1603
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1560
|
-
#, python-format
|
|
1561
1604
|
msgid "Target moves filter"
|
|
1562
|
-
msgstr "Filtro
|
|
1605
|
+
msgstr "Filtro movimenti obiettivo"
|
|
1563
1606
|
|
|
1564
1607
|
#. module: account_financial_report
|
|
1608
|
+
#. odoo-python
|
|
1565
1609
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1566
1610
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
1567
|
-
#, python-format
|
|
1568
1611
|
msgid "Tax"
|
|
1569
1612
|
msgstr "Imposta"
|
|
1570
1613
|
|
|
@@ -1575,120 +1618,158 @@ msgid "Tax Amount"
|
|
|
1575
1618
|
msgstr "Importo imposta"
|
|
1576
1619
|
|
|
1577
1620
|
#. module: account_financial_report
|
|
1621
|
+
#. odoo-python
|
|
1578
1622
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1579
|
-
#, python-format
|
|
1580
1623
|
msgid "Tax Balance"
|
|
1581
1624
|
msgstr "Saldo Imposta"
|
|
1582
1625
|
|
|
1583
1626
|
#. module: account_financial_report
|
|
1627
|
+
#. odoo-python
|
|
1584
1628
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1585
|
-
#, python-format
|
|
1586
1629
|
msgid "Tax Credit"
|
|
1587
1630
|
msgstr "Imposta Avere"
|
|
1588
1631
|
|
|
1589
1632
|
#. module: account_financial_report
|
|
1633
|
+
#. odoo-python
|
|
1590
1634
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1591
|
-
#, python-format
|
|
1592
1635
|
msgid "Tax Debit"
|
|
1593
1636
|
msgstr "Imposta Dare"
|
|
1594
1637
|
|
|
1595
1638
|
#. module: account_financial_report
|
|
1639
|
+
#. odoo-python
|
|
1596
1640
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1597
1641
|
#: model:ir.model.fields.selection,name:account_financial_report.selection__vat_report_wizard__based_on__taxgroups
|
|
1598
|
-
#, python-format
|
|
1599
1642
|
msgid "Tax Groups"
|
|
1600
1643
|
msgstr "Gruppi imposte"
|
|
1601
1644
|
|
|
1602
1645
|
#. module: account_financial_report
|
|
1646
|
+
#. odoo-python
|
|
1647
|
+
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1648
|
+
msgid "Tax Initial balance"
|
|
1649
|
+
msgstr "Saldo iniziale imposte"
|
|
1650
|
+
|
|
1651
|
+
#. module: account_financial_report
|
|
1652
|
+
#. odoo-python
|
|
1603
1653
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1604
1654
|
#: model:ir.model.fields.selection,name:account_financial_report.selection__vat_report_wizard__based_on__taxtags
|
|
1605
|
-
#, python-format
|
|
1606
1655
|
msgid "Tax Tags"
|
|
1607
1656
|
msgstr "Tag imposte"
|
|
1608
1657
|
|
|
1609
1658
|
#. module: account_financial_report
|
|
1659
|
+
#. odoo-python
|
|
1660
|
+
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1661
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_ending_cumul
|
|
1662
|
+
msgid "Tax ending balance"
|
|
1663
|
+
msgstr "Saldo finale imposte"
|
|
1664
|
+
|
|
1665
|
+
#. module: account_financial_report
|
|
1666
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1667
|
+
msgid "Tax initial balance"
|
|
1668
|
+
msgstr "Saldo iniziale imposte"
|
|
1669
|
+
|
|
1670
|
+
#. module: account_financial_report
|
|
1671
|
+
#. odoo-python
|
|
1610
1672
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1611
1673
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1674
|
+
#: model:ir.model.fields.selection,name:account_financial_report.selection__general_ledger_report_wizard__grouped_by__taxes
|
|
1612
1675
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1613
1676
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1614
|
-
#, python-format
|
|
1615
1677
|
msgid "Taxes"
|
|
1616
1678
|
msgstr "Imposte"
|
|
1617
1679
|
|
|
1618
1680
|
#. module: account_financial_report
|
|
1681
|
+
#. odoo-python
|
|
1619
1682
|
#: code:addons/account_financial_report/wizard/general_ledger_wizard.py:0
|
|
1620
|
-
#, python-format
|
|
1621
1683
|
msgid ""
|
|
1622
1684
|
"The Company in the General Ledger Report Wizard and in Date Range must be "
|
|
1623
1685
|
"the same."
|
|
1624
1686
|
msgstr ""
|
|
1687
|
+
"L'azienda nella procedura guidata del libro mastro e nell'intervallo date "
|
|
1688
|
+
"deve essere la stessa."
|
|
1625
1689
|
|
|
1626
1690
|
#. module: account_financial_report
|
|
1691
|
+
#. odoo-python
|
|
1627
1692
|
#: code:addons/account_financial_report/wizard/trial_balance_wizard.py:0
|
|
1628
|
-
#, python-format
|
|
1629
1693
|
msgid ""
|
|
1630
1694
|
"The Company in the Trial Balance Report Wizard and in Date Range must be the "
|
|
1631
1695
|
"same."
|
|
1632
1696
|
msgstr ""
|
|
1697
|
+
"L'azienda nella procedura guidata del bilancio di verifica e nell'intervallo "
|
|
1698
|
+
"date deve essere la stessa."
|
|
1633
1699
|
|
|
1634
1700
|
#. module: account_financial_report
|
|
1701
|
+
#. odoo-python
|
|
1635
1702
|
#: code:addons/account_financial_report/wizard/vat_report_wizard.py:0
|
|
1636
|
-
#, python-format
|
|
1637
1703
|
msgid ""
|
|
1638
1704
|
"The Company in the Vat Report Wizard and in Date Range must be the same."
|
|
1639
1705
|
msgstr ""
|
|
1706
|
+
"L'azienda nella procedura guidata del resoconto IVA e nell'intervallo date "
|
|
1707
|
+
"deve essere la stessa."
|
|
1640
1708
|
|
|
1641
1709
|
#. module: account_financial_report
|
|
1710
|
+
#. odoo-python
|
|
1642
1711
|
#: code:addons/account_financial_report/wizard/trial_balance_wizard.py:0
|
|
1643
|
-
#, python-format
|
|
1644
1712
|
msgid "The hierarchy level to filter on must be greater than 0."
|
|
1713
|
+
msgstr "Il livello gerarchico da filtrare deve essere maggiore di 0."
|
|
1714
|
+
|
|
1715
|
+
#. module: account_financial_report
|
|
1716
|
+
#. odoo-python
|
|
1717
|
+
#: code:addons/account_financial_report/report/trial_balance.py:0
|
|
1718
|
+
msgid ""
|
|
1719
|
+
"There is a problem in the structure of the account groups. You may need to "
|
|
1720
|
+
"create some child group of %s."
|
|
1645
1721
|
msgstr ""
|
|
1722
|
+
"C'è un problema nella struttura dei gruppi contabilità. Serve creare alcuni "
|
|
1723
|
+
"figli del gruppo %s."
|
|
1646
1724
|
|
|
1647
1725
|
#. module: account_financial_report
|
|
1648
1726
|
#: model:ir.model.fields,help:account_financial_report.field_general_ledger_report_wizard__domain
|
|
1649
1727
|
msgid "This domain will be used to select specific domain for Journal Items"
|
|
1650
1728
|
msgstr ""
|
|
1729
|
+
"Il dominio verrà utilizzato per selezionare il dominio per li movimenti "
|
|
1730
|
+
"contabili"
|
|
1651
1731
|
|
|
1652
1732
|
#. module: account_financial_report
|
|
1653
1733
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1654
1734
|
msgid "To"
|
|
1655
|
-
msgstr ""
|
|
1735
|
+
msgstr "A"
|
|
1656
1736
|
|
|
1657
1737
|
#. module: account_financial_report
|
|
1658
1738
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1659
1739
|
msgid "To:"
|
|
1660
|
-
msgstr ""
|
|
1740
|
+
msgstr "A:"
|
|
1661
1741
|
|
|
1662
1742
|
#. module: account_financial_report
|
|
1743
|
+
#. odoo-python
|
|
1744
|
+
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1663
1745
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_account_ending_cumul
|
|
1664
1746
|
msgid "Total"
|
|
1665
1747
|
msgstr "Totale"
|
|
1666
1748
|
|
|
1667
1749
|
#. module: account_financial_report
|
|
1750
|
+
#. odoo-python
|
|
1668
1751
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1669
1752
|
#: model:ir.actions.act_window,name:account_financial_report.action_trial_balance_wizard
|
|
1670
1753
|
#: model:ir.actions.report,name:account_financial_report.action_report_trial_balance_html
|
|
1671
1754
|
#: model:ir.actions.report,name:account_financial_report.action_report_trial_balance_qweb
|
|
1672
1755
|
#: model:ir.ui.menu,name:account_financial_report.menu_trial_balance_wizard
|
|
1673
|
-
#, python-format
|
|
1674
1756
|
msgid "Trial Balance"
|
|
1675
1757
|
msgstr "Bilancio di verifica"
|
|
1676
1758
|
|
|
1677
1759
|
#. module: account_financial_report
|
|
1678
1760
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_base
|
|
1679
1761
|
msgid "Trial Balance -"
|
|
1680
|
-
msgstr ""
|
|
1762
|
+
msgstr "Bilancio di verifica -"
|
|
1681
1763
|
|
|
1682
1764
|
#. module: account_financial_report
|
|
1683
1765
|
#: model:ir.model,name:account_financial_report.model_report_account_financial_report_trial_balance
|
|
1684
|
-
#, fuzzy
|
|
1685
1766
|
msgid "Trial Balance Report"
|
|
1686
|
-
msgstr "
|
|
1767
|
+
msgstr "Resoconto bilancio di verifica"
|
|
1687
1768
|
|
|
1688
1769
|
#. module: account_financial_report
|
|
1689
1770
|
#: model:ir.model,name:account_financial_report.model_trial_balance_report_wizard
|
|
1690
1771
|
msgid "Trial Balance Report Wizard"
|
|
1691
|
-
msgstr "
|
|
1772
|
+
msgstr "Procedura guidata bilancio di verifica"
|
|
1692
1773
|
|
|
1693
1774
|
#. module: account_financial_report
|
|
1694
1775
|
#: model:ir.actions.report,name:account_financial_report.action_report_trial_balance_xlsx
|
|
@@ -1697,9 +1778,8 @@ msgstr "Bilancio di verifica XLSX"
|
|
|
1697
1778
|
|
|
1698
1779
|
#. module: account_financial_report
|
|
1699
1780
|
#: model:ir.model,name:account_financial_report.model_report_a_f_r_report_trial_balance_xlsx
|
|
1700
|
-
#, fuzzy
|
|
1701
1781
|
msgid "Trial Balance XLSX Report"
|
|
1702
|
-
msgstr "
|
|
1782
|
+
msgstr "Resoconto XLSX bilancio di verifica"
|
|
1703
1783
|
|
|
1704
1784
|
#. module: account_financial_report
|
|
1705
1785
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.trial_balance_wizard
|
|
@@ -1707,12 +1787,15 @@ msgid ""
|
|
|
1707
1787
|
"Trial Balance can be computed only if selected company have only\n"
|
|
1708
1788
|
" one unaffected earnings account."
|
|
1709
1789
|
msgstr ""
|
|
1790
|
+
"Il bilancio di verifica può essere calcolato solo se l'azienda selezionata "
|
|
1791
|
+
"ha un solo\n"
|
|
1792
|
+
" conto ricavi anno corrente."
|
|
1710
1793
|
|
|
1711
1794
|
#. module: account_financial_report
|
|
1712
1795
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__unaffected_earnings_account
|
|
1713
1796
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__unaffected_earnings_account
|
|
1714
1797
|
msgid "Unaffected Earnings Account"
|
|
1715
|
-
msgstr ""
|
|
1798
|
+
msgstr "Conto ricavi inalterato"
|
|
1716
1799
|
|
|
1717
1800
|
#. module: account_financial_report
|
|
1718
1801
|
#: model:ir.model.fields,help:account_financial_report.field_general_ledger_report_wizard__hide_account_at_0
|
|
@@ -1722,6 +1805,14 @@ msgid ""
|
|
|
1722
1805
|
"If partners are filtered, debits and credits totals will not match the trial "
|
|
1723
1806
|
"balance."
|
|
1724
1807
|
msgstr ""
|
|
1808
|
+
"Usare questo filtro per nascondere un conto o un partner con un saldo finale "
|
|
1809
|
+
"a 0. Se i partner sono filtrati, i totali in dare e in avere non "
|
|
1810
|
+
"corrisponderanno al bilancio di verifica."
|
|
1811
|
+
|
|
1812
|
+
#. module: account_financial_report
|
|
1813
|
+
#: model:ir.model.fields,help:account_financial_report.field_trial_balance_report_wizard__show_hierarchy
|
|
1814
|
+
msgid "Use when your account groups are hierarchical"
|
|
1815
|
+
msgstr "Usare quando i gruppi conto sono gerarchici"
|
|
1725
1816
|
|
|
1726
1817
|
#. module: account_financial_report
|
|
1727
1818
|
#: model:ir.actions.act_window,name:account_financial_report.action_vat_report_wizard
|
|
@@ -1729,45 +1820,43 @@ msgstr ""
|
|
|
1729
1820
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_vat_report_qweb
|
|
1730
1821
|
#: model:ir.ui.menu,name:account_financial_report.menu_vat_report_wizard
|
|
1731
1822
|
msgid "VAT Report"
|
|
1732
|
-
msgstr "Rendiconto
|
|
1823
|
+
msgstr "Rendiconto IVA"
|
|
1733
1824
|
|
|
1734
1825
|
#. module: account_financial_report
|
|
1735
1826
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
1736
1827
|
msgid "VAT Report -"
|
|
1737
|
-
msgstr "Rendiconto
|
|
1828
|
+
msgstr "Rendiconto IVA -"
|
|
1738
1829
|
|
|
1739
1830
|
#. module: account_financial_report
|
|
1740
1831
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.vat_report_wizard
|
|
1741
1832
|
msgid "VAT Report Options"
|
|
1742
|
-
msgstr "Opzioni rendiconto
|
|
1833
|
+
msgstr "Opzioni rendiconto IVA"
|
|
1743
1834
|
|
|
1744
1835
|
#. module: account_financial_report
|
|
1745
1836
|
#: model:ir.model,name:account_financial_report.model_vat_report_wizard
|
|
1746
1837
|
msgid "VAT Report Wizard"
|
|
1747
|
-
msgstr ""
|
|
1838
|
+
msgstr "Procedura guidata resoconto IVA"
|
|
1748
1839
|
|
|
1749
1840
|
#. module: account_financial_report
|
|
1750
1841
|
#: model:ir.actions.report,name:account_financial_report.action_report_vat_report_xlsx
|
|
1751
1842
|
msgid "VAT Report XLSX"
|
|
1752
|
-
msgstr "Rendiconto
|
|
1843
|
+
msgstr "Rendiconto IVA in XLSX"
|
|
1753
1844
|
|
|
1754
1845
|
#. module: account_financial_report
|
|
1846
|
+
#. odoo-python
|
|
1755
1847
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1756
|
-
#, fuzzy, python-format
|
|
1757
1848
|
msgid "Vat Report"
|
|
1758
|
-
msgstr "
|
|
1849
|
+
msgstr "Resoconto IVA"
|
|
1759
1850
|
|
|
1760
1851
|
#. module: account_financial_report
|
|
1761
1852
|
#: model:ir.model,name:account_financial_report.model_report_account_financial_report_vat_report
|
|
1762
|
-
#, fuzzy
|
|
1763
1853
|
msgid "Vat Report Report"
|
|
1764
|
-
msgstr "
|
|
1854
|
+
msgstr "Resoconto resoconto IVA"
|
|
1765
1855
|
|
|
1766
1856
|
#. module: account_financial_report
|
|
1767
1857
|
#: model:ir.model,name:account_financial_report.model_report_a_f_r_report_vat_report_xlsx
|
|
1768
|
-
#, fuzzy
|
|
1769
1858
|
msgid "Vat Report XLSX Report"
|
|
1770
|
-
msgstr "
|
|
1859
|
+
msgstr "Resoconto XLSX resoconto IVA"
|
|
1771
1860
|
|
|
1772
1861
|
#. module: account_financial_report
|
|
1773
1862
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.aged_partner_balance_wizard
|
|
@@ -1785,29 +1874,36 @@ msgid ""
|
|
|
1785
1874
|
"When this option is enabled, the trial balance will not display accounts "
|
|
1786
1875
|
"that have initial balance = debit = credit = end balance = 0"
|
|
1787
1876
|
msgstr ""
|
|
1877
|
+
"Quando questa opzione è abilitata, il bilancio di verifica non visualizza "
|
|
1878
|
+
"conti che hanno un bilancio iniziale = debiti = crediti = bilancio finale = 0"
|
|
1788
1879
|
|
|
1789
1880
|
#. module: account_financial_report
|
|
1790
1881
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__with_account_name
|
|
1791
1882
|
msgid "With Account Name"
|
|
1792
|
-
msgstr ""
|
|
1883
|
+
msgstr "Con nome conto"
|
|
1793
1884
|
|
|
1794
1885
|
#. module: account_financial_report
|
|
1886
|
+
#. odoo-python
|
|
1887
|
+
#: code:addons/account_financial_report/report/trial_balance.py:0
|
|
1888
|
+
msgid "Without analytic account"
|
|
1889
|
+
msgstr "Senza conto analitico"
|
|
1890
|
+
|
|
1891
|
+
#. module: account_financial_report
|
|
1892
|
+
#. odoo-python
|
|
1795
1893
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1796
1894
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1797
1895
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1798
1896
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1799
|
-
#, python-format
|
|
1800
1897
|
msgid "Yes"
|
|
1801
|
-
msgstr ""
|
|
1898
|
+
msgstr "Sì"
|
|
1802
1899
|
|
|
1803
1900
|
#. module: account_financial_report
|
|
1901
|
+
#. odoo-python
|
|
1804
1902
|
#: code:addons/account_financial_report/report/general_ledger.py:0
|
|
1805
|
-
#, python-format
|
|
1806
1903
|
msgid "future"
|
|
1807
|
-
msgstr ""
|
|
1904
|
+
msgstr "futuro"
|
|
1808
1905
|
|
|
1809
1906
|
#. module: account_financial_report
|
|
1810
|
-
#: model_terms:ir.ui.view,arch_db:account_financial_report.aged_partner_balance_wizard
|
|
1811
1907
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
|
|
1812
1908
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.journal_ledger_wizard
|
|
1813
1909
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.open_items_wizard
|
|
@@ -1819,7 +1915,7 @@ msgstr "o"
|
|
|
1819
1915
|
#. module: account_financial_report
|
|
1820
1916
|
#: model:ir.actions.report,name:account_financial_report.action_print_journal_ledger_wizard_qweb
|
|
1821
1917
|
msgid "ournal Ledger"
|
|
1822
|
-
msgstr ""
|
|
1918
|
+
msgstr "Libro Mastro"
|
|
1823
1919
|
|
|
1824
1920
|
#. module: account_financial_report
|
|
1825
1921
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal
|
|
@@ -1829,32 +1925,121 @@ msgstr "a"
|
|
|
1829
1925
|
#. module: account_financial_report
|
|
1830
1926
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1831
1927
|
msgid "width: 16.21%;"
|
|
1832
|
-
msgstr ""
|
|
1928
|
+
msgstr "larghezza: 16.21%;"
|
|
1833
1929
|
|
|
1834
1930
|
#. module: account_financial_report
|
|
1835
1931
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1836
1932
|
msgid "width: 23.24%;"
|
|
1837
|
-
msgstr ""
|
|
1933
|
+
msgstr "larghezza: 23.24%;"
|
|
1838
1934
|
|
|
1839
1935
|
#. module: account_financial_report
|
|
1840
1936
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1841
1937
|
msgid "width: 23.78%;"
|
|
1842
|
-
msgstr ""
|
|
1938
|
+
msgstr "larghezza: 23,78%;"
|
|
1843
1939
|
|
|
1844
1940
|
#. module: account_financial_report
|
|
1845
1941
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1846
1942
|
msgid "width: 31.35%;"
|
|
1847
|
-
msgstr ""
|
|
1943
|
+
msgstr "larghezza: 31,35%;"
|
|
1848
1944
|
|
|
1849
1945
|
#. module: account_financial_report
|
|
1850
1946
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1851
1947
|
msgid "width: 38.92%;"
|
|
1852
|
-
msgstr ""
|
|
1948
|
+
msgstr "larghezza: 38,92%;"
|
|
1853
1949
|
|
|
1854
1950
|
#. module: account_financial_report
|
|
1855
1951
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1856
1952
|
msgid "width: 8.11%;"
|
|
1857
|
-
msgstr ""
|
|
1953
|
+
msgstr "larghezza: 8,11%;"
|
|
1954
|
+
|
|
1955
|
+
#~ msgid ""
|
|
1956
|
+
#~ "Age ??? 120\n"
|
|
1957
|
+
#~ " d."
|
|
1958
|
+
#~ msgstr ""
|
|
1959
|
+
#~ "Et?? ??? 120\n"
|
|
1960
|
+
#~ " g."
|
|
1961
|
+
|
|
1962
|
+
#, python-format
|
|
1963
|
+
#~ msgid "Age ??? 120 d."
|
|
1964
|
+
#~ msgstr "Età ??? 120 g."
|
|
1965
|
+
|
|
1966
|
+
#~ msgid ""
|
|
1967
|
+
#~ "Age ??? 30\n"
|
|
1968
|
+
#~ " d."
|
|
1969
|
+
#~ msgstr ""
|
|
1970
|
+
#~ "Et?? ??? 30\n"
|
|
1971
|
+
#~ " g."
|
|
1972
|
+
|
|
1973
|
+
#, python-format
|
|
1974
|
+
#~ msgid "Age ??? 30 d."
|
|
1975
|
+
#~ msgstr "Età ??? 30 g."
|
|
1976
|
+
|
|
1977
|
+
#~ msgid ""
|
|
1978
|
+
#~ "Age ??? 60\n"
|
|
1979
|
+
#~ " d."
|
|
1980
|
+
#~ msgstr ""
|
|
1981
|
+
#~ "Et?? ??? 60\n"
|
|
1982
|
+
#~ " g."
|
|
1983
|
+
|
|
1984
|
+
#, python-format
|
|
1985
|
+
#~ msgid "Age ??? 60 d."
|
|
1986
|
+
#~ msgstr "Età ??? 60 g."
|
|
1987
|
+
|
|
1988
|
+
#~ msgid ""
|
|
1989
|
+
#~ "Age ??? 90\n"
|
|
1990
|
+
#~ " d."
|
|
1991
|
+
#~ msgstr ""
|
|
1992
|
+
#~ "Et?? ??? 90\n"
|
|
1993
|
+
#~ " g."
|
|
1994
|
+
|
|
1995
|
+
#, python-format
|
|
1996
|
+
#~ msgid "Age ??? 90 d."
|
|
1997
|
+
#~ msgstr "Età ??? 90 g."
|
|
1998
|
+
|
|
1999
|
+
#~ msgid "Last Modified on"
|
|
2000
|
+
#~ msgstr "Ultima modifica il"
|
|
2001
|
+
|
|
2002
|
+
#~ msgid "Filter analytic tags"
|
|
2003
|
+
#~ msgstr "Filtro tag analitici"
|
|
2004
|
+
|
|
2005
|
+
#, python-format
|
|
2006
|
+
#~ msgid "Show analytic tags"
|
|
2007
|
+
#~ msgstr "Mostrare tag analitici"
|
|
2008
|
+
|
|
2009
|
+
#~ msgid "Child Accounts"
|
|
2010
|
+
#~ msgstr "Conti figli"
|
|
2011
|
+
|
|
2012
|
+
#~ msgid "Computed Accounts"
|
|
2013
|
+
#~ msgstr "Conti calcolati"
|
|
2014
|
+
|
|
2015
|
+
#~ msgid ""
|
|
2016
|
+
#~ "Computed Accounts: Use when the account group have codes\n"
|
|
2017
|
+
#~ " that represent prefixes of the actual accounts.\n"
|
|
2018
|
+
#~ "\n"
|
|
2019
|
+
#~ " Child Accounts: Use when your account groups are hierarchical.\n"
|
|
2020
|
+
#~ "\n"
|
|
2021
|
+
#~ " No hierarchy: Use to display just the accounts, without any "
|
|
2022
|
+
#~ "grouping.\n"
|
|
2023
|
+
#~ " "
|
|
2024
|
+
#~ msgstr ""
|
|
2025
|
+
#~ "Conti calcolati: utilizzato quando i gruppi di conti hanno codici\n"
|
|
2026
|
+
#~ " che rappresentano il prefisso dei conti effettivi.\n"
|
|
2027
|
+
#~ "\n"
|
|
2028
|
+
#~ " Conti figli: utilizzato quando i gruppi di conti sono "
|
|
2029
|
+
#~ "gerarchici.\n"
|
|
2030
|
+
#~ "\n"
|
|
2031
|
+
#~ " Nessuna gerarchia: utilizzato per visualizzare solo i conti, "
|
|
2032
|
+
#~ "senza alcun raggruppo.\n"
|
|
2033
|
+
#~ " "
|
|
2034
|
+
|
|
2035
|
+
#~ msgid "Hierarchy On"
|
|
2036
|
+
#~ msgstr "Gerarchia su"
|
|
2037
|
+
|
|
2038
|
+
#~ msgid "No hierarchy"
|
|
2039
|
+
#~ msgstr "Nessuna gerarchia"
|
|
2040
|
+
|
|
2041
|
+
#~ msgid "From: %s To: %s"
|
|
2042
|
+
#~ msgstr "Da: %s A: %s"
|
|
1858
2043
|
|
|
1859
2044
|
#~ msgid "<span class=\"fa fa-download\"/> Export"
|
|
1860
2045
|
#~ msgstr "<span class=\"fa fa-download\"/> Esporta"
|
|
@@ -1879,16 +2064,16 @@ msgstr ""
|
|
|
1879
2064
|
#~ msgstr "Tipo conto"
|
|
1880
2065
|
|
|
1881
2066
|
#~ msgid "Age 120 Days"
|
|
1882
|
-
#~ msgstr "
|
|
2067
|
+
#~ msgstr "Et?? 120 giorni"
|
|
1883
2068
|
|
|
1884
2069
|
#~ msgid "Age 30 Days"
|
|
1885
|
-
#~ msgstr "
|
|
2070
|
+
#~ msgstr "Et?? 30 giorni"
|
|
1886
2071
|
|
|
1887
2072
|
#~ msgid "Age 60 Days"
|
|
1888
|
-
#~ msgstr "
|
|
2073
|
+
#~ msgstr "Et?? 60 giorni"
|
|
1889
2074
|
|
|
1890
2075
|
#~ msgid "Age 90 Days"
|
|
1891
|
-
#~ msgstr "
|
|
2076
|
+
#~ msgstr "Et?? 90 giorni"
|
|
1892
2077
|
|
|
1893
2078
|
#~ msgid "Amount Residual"
|
|
1894
2079
|
#~ msgstr "Importo residuo"
|
|
@@ -1950,9 +2135,6 @@ msgstr ""
|
|
|
1950
2135
|
#~ msgid "Label"
|
|
1951
2136
|
#~ msgstr "Etichetta"
|
|
1952
2137
|
|
|
1953
|
-
#~ msgid "Line"
|
|
1954
|
-
#~ msgstr "Riga"
|
|
1955
|
-
|
|
1956
2138
|
#~ msgid "Matching Number"
|
|
1957
2139
|
#~ msgstr "Numero abbinamento"
|
|
1958
2140
|
|