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
|
@@ -6,16 +6,16 @@ msgid ""
|
|
|
6
6
|
msgstr ""
|
|
7
7
|
"Project-Id-Version: Odoo Server 12.0+e\n"
|
|
8
8
|
"Report-Msgid-Bugs-To: \n"
|
|
9
|
-
"POT-Creation-Date:
|
|
10
|
-
"PO-Revision-Date:
|
|
11
|
-
"Last-Translator: Pedro M. Baeza <pedro.baeza@
|
|
9
|
+
"POT-Creation-Date: 2022-09-21 15:05+0000\n"
|
|
10
|
+
"PO-Revision-Date: 2025-08-11 18:36+0000\n"
|
|
11
|
+
"Last-Translator: \"Pedro M. Baeza\" <pedro.baeza@tecnativa.com>\n"
|
|
12
12
|
"Language-Team: \n"
|
|
13
13
|
"Language: es\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,22 @@ msgstr "91 - 120 d."
|
|
|
53
53
|
msgid "<b>Taxes summary</b>"
|
|
54
54
|
msgstr "<b>Resumen de Impuestos</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
|
+
" Puede que se muestren importes duplicados porque estén "
|
|
65
|
+
"definidas más de una cuenta en los apuntes contables."
|
|
66
|
+
|
|
67
|
+
#. module: account_financial_report
|
|
68
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
69
|
+
msgid "<span class=\"o_form_label\">Intervals configuration</span>"
|
|
70
|
+
msgstr "<span class=\"o_form_label\">Configuración de intervalos</span>"
|
|
71
|
+
|
|
56
72
|
#. module: account_financial_report
|
|
57
73
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.aged_partner_balance_wizard
|
|
58
74
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
|
|
@@ -77,6 +93,7 @@ msgid "Abstract XLSX Account Financial Report"
|
|
|
77
93
|
msgstr "Extracto XLSX Account Financial Report"
|
|
78
94
|
|
|
79
95
|
#. module: account_financial_report
|
|
96
|
+
#. odoo-python
|
|
80
97
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
81
98
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
82
99
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
@@ -88,10 +105,14 @@ msgstr "Extracto XLSX Account Financial Report"
|
|
|
88
105
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
89
106
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
90
107
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
91
|
-
#, python-format
|
|
92
108
|
msgid "Account"
|
|
93
109
|
msgstr "Cuenta"
|
|
94
110
|
|
|
111
|
+
#. module: account_financial_report
|
|
112
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__account_age_report_config_id
|
|
113
|
+
msgid "Account Age Report Config"
|
|
114
|
+
msgstr "Configuración del informe de calidad de deuda"
|
|
115
|
+
|
|
95
116
|
#. module: account_financial_report
|
|
96
117
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__account_code_from
|
|
97
118
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__account_code_from
|
|
@@ -114,24 +135,24 @@ msgid "Account Group"
|
|
|
114
135
|
msgstr "Grupo de cuenta"
|
|
115
136
|
|
|
116
137
|
#. module: account_financial_report
|
|
138
|
+
#. odoo-python
|
|
117
139
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
118
|
-
#, python-format
|
|
119
140
|
msgid "Account Name"
|
|
120
141
|
msgstr "Cuenta"
|
|
121
142
|
|
|
122
143
|
#. module: account_financial_report
|
|
144
|
+
#. odoo-python
|
|
123
145
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
124
146
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
125
|
-
#, python-format
|
|
126
147
|
msgid "Account at 0 filter"
|
|
127
148
|
msgstr "Filtrar por Cuenta a 0"
|
|
128
149
|
|
|
129
150
|
#. module: account_financial_report
|
|
151
|
+
#. odoo-python
|
|
130
152
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
131
153
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
132
154
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
133
155
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
134
|
-
#, python-format
|
|
135
156
|
msgid "Account balance at 0 filter"
|
|
136
157
|
msgstr "Balance de Cuenta en filtro 0"
|
|
137
158
|
|
|
@@ -150,73 +171,78 @@ msgstr "Activar centralización"
|
|
|
150
171
|
msgid "Additional Filtering"
|
|
151
172
|
msgstr "Filtrado adicional"
|
|
152
173
|
|
|
174
|
+
#. module: account_financial_report
|
|
175
|
+
#: model:ir.actions.act_window,name:account_financial_report.action_aged_partner_report_configuration
|
|
176
|
+
msgid "Age Partner Report Configuration"
|
|
177
|
+
msgstr "Configuración del Informe de Edad del Socio"
|
|
178
|
+
|
|
153
179
|
#. module: account_financial_report
|
|
154
180
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
155
181
|
msgid ""
|
|
156
182
|
"Age ≤ 120\n"
|
|
157
|
-
"
|
|
183
|
+
" d."
|
|
158
184
|
msgstr ""
|
|
159
|
-
"
|
|
160
|
-
"
|
|
185
|
+
"Edad ≤ 120\n"
|
|
186
|
+
" d."
|
|
161
187
|
|
|
162
188
|
#. module: account_financial_report
|
|
189
|
+
#. odoo-python
|
|
163
190
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
164
|
-
#, python-format
|
|
165
191
|
msgid "Age ≤ 120 d."
|
|
166
|
-
msgstr "
|
|
192
|
+
msgstr "Edad ≤ 120 d."
|
|
167
193
|
|
|
168
194
|
#. module: account_financial_report
|
|
169
195
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
170
196
|
msgid ""
|
|
171
197
|
"Age ≤ 30\n"
|
|
172
|
-
"
|
|
198
|
+
" d."
|
|
173
199
|
msgstr ""
|
|
174
|
-
"
|
|
175
|
-
"
|
|
200
|
+
"Edad ≤ 30\n"
|
|
201
|
+
" d."
|
|
176
202
|
|
|
177
203
|
#. module: account_financial_report
|
|
204
|
+
#. odoo-python
|
|
178
205
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
179
|
-
#, python-format
|
|
180
206
|
msgid "Age ≤ 30 d."
|
|
181
|
-
msgstr "
|
|
207
|
+
msgstr "Edad ≤ 30 d."
|
|
182
208
|
|
|
183
209
|
#. module: account_financial_report
|
|
184
210
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
185
211
|
msgid ""
|
|
186
212
|
"Age ≤ 60\n"
|
|
187
|
-
"
|
|
213
|
+
" d."
|
|
188
214
|
msgstr ""
|
|
189
|
-
"
|
|
190
|
-
"
|
|
215
|
+
"Edad ≤ 60\n"
|
|
216
|
+
" d."
|
|
191
217
|
|
|
192
218
|
#. module: account_financial_report
|
|
219
|
+
#. odoo-python
|
|
193
220
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
194
|
-
#, python-format
|
|
195
221
|
msgid "Age ≤ 60 d."
|
|
196
|
-
msgstr "
|
|
222
|
+
msgstr "Edad <= 60 d."
|
|
197
223
|
|
|
198
224
|
#. module: account_financial_report
|
|
199
225
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
200
226
|
msgid ""
|
|
201
227
|
"Age ≤ 90\n"
|
|
202
|
-
"
|
|
228
|
+
" d."
|
|
203
229
|
msgstr ""
|
|
204
|
-
"
|
|
205
|
-
"
|
|
230
|
+
"Edad ≤ 90\n"
|
|
231
|
+
" d."
|
|
206
232
|
|
|
207
233
|
#. module: account_financial_report
|
|
234
|
+
#. odoo-python
|
|
208
235
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
209
|
-
#, python-format
|
|
210
236
|
msgid "Age ≤ 90 d."
|
|
211
|
-
msgstr "
|
|
237
|
+
msgstr "Edad <= 90 d."
|
|
212
238
|
|
|
213
239
|
#. module: account_financial_report
|
|
240
|
+
#. odoo-python
|
|
214
241
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
215
242
|
#: model:ir.actions.act_window,name:account_financial_report.action_aged_partner_balance_wizard
|
|
216
243
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_aged_partner_balance_html
|
|
217
244
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_aged_partner_balance_qweb
|
|
218
245
|
#: model:ir.ui.menu,name:account_financial_report.menu_aged_partner_balance_wizard
|
|
219
|
-
#, python-format
|
|
220
246
|
msgid "Aged Partner Balance"
|
|
221
247
|
msgstr "Calidad de la deuda"
|
|
222
248
|
|
|
@@ -246,8 +272,8 @@ msgid "Aged Partner Balance XLSX"
|
|
|
246
272
|
msgstr "Calidad de la deuda XLSX"
|
|
247
273
|
|
|
248
274
|
#. module: account_financial_report
|
|
275
|
+
#. odoo-python
|
|
249
276
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
250
|
-
#, python-format
|
|
251
277
|
msgid "All"
|
|
252
278
|
msgstr "Todos"
|
|
253
279
|
|
|
@@ -270,6 +296,7 @@ msgid "All Posted Entries"
|
|
|
270
296
|
msgstr "Todos los asientos publicados"
|
|
271
297
|
|
|
272
298
|
#. module: account_financial_report
|
|
299
|
+
#. odoo-python
|
|
273
300
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
274
301
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
275
302
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
@@ -278,11 +305,11 @@ msgstr "Todos los asientos publicados"
|
|
|
278
305
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
279
306
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
280
307
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
281
|
-
#, python-format
|
|
282
308
|
msgid "All entries"
|
|
283
309
|
msgstr "Todos los asientos"
|
|
284
310
|
|
|
285
311
|
#. module: account_financial_report
|
|
312
|
+
#. odoo-python
|
|
286
313
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
287
314
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
288
315
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
@@ -291,35 +318,40 @@ msgstr "Todos los asientos"
|
|
|
291
318
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
292
319
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
293
320
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
294
|
-
#, python-format
|
|
295
321
|
msgid "All posted entries"
|
|
296
322
|
msgstr "Todos los asientos asentados"
|
|
297
323
|
|
|
298
324
|
#. module: account_financial_report
|
|
299
325
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
300
326
|
msgid "Amount Cur."
|
|
301
|
-
msgstr "Importe moneda"
|
|
327
|
+
msgstr "Importe moneda."
|
|
302
328
|
|
|
303
329
|
#. module: account_financial_report
|
|
330
|
+
#. odoo-python
|
|
304
331
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
305
|
-
#, python-format
|
|
306
332
|
msgid "Amount Currency"
|
|
307
333
|
msgstr "Importe moneda"
|
|
308
334
|
|
|
309
335
|
#. module: account_financial_report
|
|
336
|
+
#. odoo-python
|
|
310
337
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
311
338
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
312
|
-
#, python-format
|
|
313
339
|
msgid "Amount cur."
|
|
314
|
-
msgstr "Importe moneda"
|
|
340
|
+
msgstr "Importe moneda."
|
|
315
341
|
|
|
316
342
|
#. module: account_financial_report
|
|
317
|
-
#:
|
|
318
|
-
#:
|
|
319
|
-
#, python-format
|
|
343
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_move_line__analytic_account_ids
|
|
344
|
+
#: model:ir.model.fields.selection,name:account_financial_report.selection__trial_balance_report_wizard__grouped_by__analytic_account
|
|
320
345
|
msgid "Analytic Account"
|
|
321
346
|
msgstr "Cuenta Analítica"
|
|
322
347
|
|
|
348
|
+
#. module: account_financial_report
|
|
349
|
+
#. odoo-python
|
|
350
|
+
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
351
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
352
|
+
msgid "Analytic Distribution"
|
|
353
|
+
msgstr "Distribución analítica"
|
|
354
|
+
|
|
323
355
|
#. module: account_financial_report
|
|
324
356
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
|
|
325
357
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
@@ -333,20 +365,20 @@ msgid "Base Amount"
|
|
|
333
365
|
msgstr "Basados en"
|
|
334
366
|
|
|
335
367
|
#. module: account_financial_report
|
|
368
|
+
#. odoo-python
|
|
336
369
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
337
|
-
#, python-format
|
|
338
370
|
msgid "Base Balance"
|
|
339
371
|
msgstr "Total Saldo"
|
|
340
372
|
|
|
341
373
|
#. module: account_financial_report
|
|
374
|
+
#. odoo-python
|
|
342
375
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
343
|
-
#, python-format
|
|
344
376
|
msgid "Base Credit"
|
|
345
377
|
msgstr "Haber"
|
|
346
378
|
|
|
347
379
|
#. module: account_financial_report
|
|
380
|
+
#. odoo-python
|
|
348
381
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
349
|
-
#, python-format
|
|
350
382
|
msgid "Base Debit"
|
|
351
383
|
msgstr "Total Debe"
|
|
352
384
|
|
|
@@ -357,8 +389,8 @@ msgid "Based On"
|
|
|
357
389
|
msgstr "Basados en"
|
|
358
390
|
|
|
359
391
|
#. module: account_financial_report
|
|
392
|
+
#. odoo-python
|
|
360
393
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
361
|
-
#, python-format
|
|
362
394
|
msgid "Based on"
|
|
363
395
|
msgstr "Basados en"
|
|
364
396
|
|
|
@@ -373,9 +405,9 @@ msgid "Cancel"
|
|
|
373
405
|
msgstr "Cancelar"
|
|
374
406
|
|
|
375
407
|
#. module: account_financial_report
|
|
408
|
+
#. odoo-python
|
|
376
409
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
377
410
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
378
|
-
#, python-format
|
|
379
411
|
msgid "Centralize filter"
|
|
380
412
|
msgstr "Centralizar el filtro"
|
|
381
413
|
|
|
@@ -384,27 +416,24 @@ msgstr "Centralizar el filtro"
|
|
|
384
416
|
msgid "Centralized"
|
|
385
417
|
msgstr "Centralizado"
|
|
386
418
|
|
|
387
|
-
#. module: account_financial_report
|
|
388
|
-
#: model:ir.model.fields.selection,name:account_financial_report.selection__trial_balance_report_wizard__hierarchy_on__relation
|
|
389
|
-
msgid "Child Accounts"
|
|
390
|
-
msgstr "Cuentas Hijas"
|
|
391
|
-
|
|
392
419
|
#. module: account_financial_report
|
|
393
420
|
#: model:ir.model.fields,field_description:account_financial_report.field_account_group__group_child_ids
|
|
394
421
|
msgid "Child Groups"
|
|
395
422
|
msgstr "Grupos Hijos"
|
|
396
423
|
|
|
397
424
|
#. module: account_financial_report
|
|
425
|
+
#. odoo-python
|
|
398
426
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
399
427
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
400
428
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
401
429
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
402
|
-
#, python-format
|
|
403
430
|
msgid "Code"
|
|
404
431
|
msgstr "Código"
|
|
405
432
|
|
|
406
433
|
#. module: account_financial_report
|
|
434
|
+
#. odoo-python
|
|
407
435
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
436
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__company_id
|
|
408
437
|
#: model:ir.model.fields,field_description:account_financial_report.field_account_financial_report_abstract_wizard__company_id
|
|
409
438
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__company_id
|
|
410
439
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__company_id
|
|
@@ -412,7 +441,6 @@ msgstr "Código"
|
|
|
412
441
|
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__company_id
|
|
413
442
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__company_id
|
|
414
443
|
#: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__company_id
|
|
415
|
-
#, python-format
|
|
416
444
|
msgid "Company"
|
|
417
445
|
msgstr "Compañía"
|
|
418
446
|
|
|
@@ -422,32 +450,18 @@ msgid "Compute accounts"
|
|
|
422
450
|
msgstr "Cuentas calculadas"
|
|
423
451
|
|
|
424
452
|
#. module: account_financial_report
|
|
425
|
-
#: model:ir.model
|
|
426
|
-
msgid "
|
|
427
|
-
msgstr "
|
|
453
|
+
#: model:ir.model,name:account_financial_report.model_res_config_settings
|
|
454
|
+
msgid "Config Settings"
|
|
455
|
+
msgstr "Ajustes de configuración"
|
|
428
456
|
|
|
429
457
|
#. module: account_financial_report
|
|
430
|
-
#:
|
|
431
|
-
msgid ""
|
|
432
|
-
|
|
433
|
-
" that represent prefixes of the actual accounts.\n"
|
|
434
|
-
"\n"
|
|
435
|
-
" Child Accounts: Use when your account groups are hierarchical.\n"
|
|
436
|
-
"\n"
|
|
437
|
-
" No hierarchy: Use to display just the accounts, without any "
|
|
438
|
-
"grouping.\n"
|
|
439
|
-
" "
|
|
440
|
-
msgstr ""
|
|
441
|
-
"Cuentas Calculadas: Usar cuando el grupo de cuentas tiene códigos \n"
|
|
442
|
-
" que representan prefijos de las cuentas reales.\n"
|
|
443
|
-
"\n"
|
|
444
|
-
" Cuentas Hijas: Usar cuando los grupos de cuentas son jerárquicos.\n"
|
|
445
|
-
"\n"
|
|
446
|
-
" Sin jerarquía: Usar para mostrar sólo las cuentas, sin ninguna "
|
|
447
|
-
"agrupación.\n"
|
|
448
|
-
" "
|
|
458
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
459
|
+
msgid "Configurations"
|
|
460
|
+
msgstr "Configuraciones"
|
|
449
461
|
|
|
450
462
|
#. module: account_financial_report
|
|
463
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__create_uid
|
|
464
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__create_uid
|
|
451
465
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__create_uid
|
|
452
466
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__create_uid
|
|
453
467
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__create_uid
|
|
@@ -458,6 +472,8 @@ msgid "Created by"
|
|
|
458
472
|
msgstr "Creado por"
|
|
459
473
|
|
|
460
474
|
#. module: account_financial_report
|
|
475
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__create_date
|
|
476
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__create_date
|
|
461
477
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__create_date
|
|
462
478
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__create_date
|
|
463
479
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__create_date
|
|
@@ -468,6 +484,7 @@ msgid "Created on"
|
|
|
468
484
|
msgstr "Creado el"
|
|
469
485
|
|
|
470
486
|
#. module: account_financial_report
|
|
487
|
+
#. odoo-python
|
|
471
488
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
472
489
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
473
490
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
@@ -476,57 +493,60 @@ msgstr "Creado el"
|
|
|
476
493
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
477
494
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
478
495
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
479
|
-
#, python-format
|
|
480
496
|
msgid "Credit"
|
|
481
497
|
msgstr "Haber"
|
|
482
498
|
|
|
483
499
|
#. module: account_financial_report
|
|
500
|
+
#. odoo-python
|
|
501
|
+
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
502
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
503
|
+
msgid "Cumul cur."
|
|
504
|
+
msgstr "Acumulado moneda."
|
|
505
|
+
|
|
506
|
+
#. module: account_financial_report
|
|
507
|
+
#. odoo-python
|
|
484
508
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
485
509
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
486
|
-
#, python-format
|
|
487
510
|
msgid "Cumul. Bal."
|
|
488
511
|
msgstr "Saldo Acumu."
|
|
489
512
|
|
|
490
513
|
#. module: account_financial_report
|
|
491
|
-
|
|
514
|
+
#. odoo-python
|
|
492
515
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
493
|
-
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
494
|
-
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
495
516
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
496
517
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
497
|
-
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
498
|
-
#, python-format
|
|
499
518
|
msgid "Cur."
|
|
500
519
|
msgstr "Actual."
|
|
501
520
|
|
|
502
521
|
#. module: account_financial_report
|
|
522
|
+
#. odoo-python
|
|
503
523
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
504
524
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
505
|
-
#, python-format
|
|
506
525
|
msgid "Cur. Original"
|
|
507
|
-
msgstr "
|
|
526
|
+
msgstr "Importe moneda"
|
|
508
527
|
|
|
509
528
|
#. module: account_financial_report
|
|
529
|
+
#. odoo-python
|
|
510
530
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
511
531
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
512
|
-
#, python-format
|
|
513
532
|
msgid "Cur. Residual"
|
|
514
|
-
msgstr "
|
|
533
|
+
msgstr "Pdte. moneda"
|
|
515
534
|
|
|
516
535
|
#. module: account_financial_report
|
|
536
|
+
#. odoo-python
|
|
517
537
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
518
|
-
#, python-format
|
|
519
538
|
msgid "Currency"
|
|
520
539
|
msgstr "Moneda"
|
|
521
540
|
|
|
522
541
|
#. module: account_financial_report
|
|
542
|
+
#. odoo-python
|
|
523
543
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
524
544
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
525
|
-
#, python-format
|
|
526
545
|
msgid "Current"
|
|
527
546
|
msgstr "Actual"
|
|
528
547
|
|
|
529
548
|
#. module: account_financial_report
|
|
549
|
+
#. odoo-python
|
|
530
550
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
531
551
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
532
552
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
@@ -536,7 +556,6 @@ msgstr "Actual"
|
|
|
536
556
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
537
557
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
538
558
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
539
|
-
#, python-format
|
|
540
559
|
msgid "Date"
|
|
541
560
|
msgstr "Fecha"
|
|
542
561
|
|
|
@@ -563,17 +582,17 @@ msgid "Date To"
|
|
|
563
582
|
msgstr "Fecha final"
|
|
564
583
|
|
|
565
584
|
#. module: account_financial_report
|
|
585
|
+
#. odoo-python
|
|
566
586
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
567
587
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
568
588
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_filters
|
|
569
589
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
570
|
-
#, python-format
|
|
571
590
|
msgid "Date at filter"
|
|
572
591
|
msgstr "Filtro Fecha"
|
|
573
592
|
|
|
574
593
|
#. module: account_financial_report
|
|
594
|
+
#. odoo-python
|
|
575
595
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
576
|
-
#, python-format
|
|
577
596
|
msgid "Date from"
|
|
578
597
|
msgstr "Desde"
|
|
579
598
|
|
|
@@ -583,25 +602,26 @@ msgstr "Desde"
|
|
|
583
602
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__date_range_id
|
|
584
603
|
#: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__date_range_id
|
|
585
604
|
msgid "Date range"
|
|
586
|
-
msgstr "
|
|
605
|
+
msgstr "Período"
|
|
587
606
|
|
|
588
607
|
#. module: account_financial_report
|
|
608
|
+
#. odoo-python
|
|
589
609
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
590
610
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
591
611
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
592
612
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
593
613
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
594
|
-
#, python-format
|
|
595
614
|
msgid "Date range filter"
|
|
596
|
-
msgstr "Filtro
|
|
615
|
+
msgstr "Filtro período"
|
|
597
616
|
|
|
598
617
|
#. module: account_financial_report
|
|
618
|
+
#. odoo-python
|
|
599
619
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
600
|
-
#, python-format
|
|
601
620
|
msgid "Date to"
|
|
602
621
|
msgstr "Hasta"
|
|
603
622
|
|
|
604
623
|
#. module: account_financial_report
|
|
624
|
+
#. odoo-python
|
|
605
625
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
606
626
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
607
627
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
@@ -610,15 +630,14 @@ msgstr "Hasta"
|
|
|
610
630
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
611
631
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
612
632
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
613
|
-
#, python-format
|
|
614
633
|
msgid "Debit"
|
|
615
634
|
msgstr "Debe"
|
|
616
635
|
|
|
617
636
|
#. module: account_financial_report
|
|
637
|
+
#. odoo-python
|
|
618
638
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
619
639
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
|
|
620
640
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
621
|
-
#, python-format
|
|
622
641
|
msgid "Description"
|
|
623
642
|
msgstr "Descripción"
|
|
624
643
|
|
|
@@ -628,29 +647,12 @@ msgid "Detail Taxes"
|
|
|
628
647
|
msgstr "Detalle de impuestos"
|
|
629
648
|
|
|
630
649
|
#. module: account_financial_report
|
|
631
|
-
#: model:ir.model.fields,field_description:account_financial_report.
|
|
632
|
-
#: model:ir.model.fields,field_description:account_financial_report.
|
|
633
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_account_group__display_name
|
|
634
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_account_move_line__display_name
|
|
650
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__display_name
|
|
651
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__display_name
|
|
635
652
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__display_name
|
|
636
653
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__display_name
|
|
637
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_ir_actions_report__display_name
|
|
638
654
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__display_name
|
|
639
655
|
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__display_name
|
|
640
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_aged_partner_balance_xlsx__display_name
|
|
641
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_general_ledger_xlsx__display_name
|
|
642
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_journal_ledger_xlsx__display_name
|
|
643
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_open_items_xlsx__display_name
|
|
644
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_trial_balance_xlsx__display_name
|
|
645
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_vat_report_xlsx__display_name
|
|
646
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_abstract_report__display_name
|
|
647
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_abstract_report_xlsx__display_name
|
|
648
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_aged_partner_balance__display_name
|
|
649
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_general_ledger__display_name
|
|
650
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_journal_ledger__display_name
|
|
651
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_open_items__display_name
|
|
652
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_trial_balance__display_name
|
|
653
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_vat_report__display_name
|
|
654
656
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__display_name
|
|
655
657
|
#: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__display_name
|
|
656
658
|
msgid "Display Name"
|
|
@@ -693,9 +695,9 @@ msgstr ""
|
|
|
693
695
|
" vencimiento"
|
|
694
696
|
|
|
695
697
|
#. module: account_financial_report
|
|
698
|
+
#. odoo-python
|
|
696
699
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
697
700
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
698
|
-
#, python-format
|
|
699
701
|
msgid "Due date"
|
|
700
702
|
msgstr "Fecha vencimiento"
|
|
701
703
|
|
|
@@ -727,12 +729,12 @@ msgid "Ending account in a range"
|
|
|
727
729
|
msgstr "Cuenta final en un rango"
|
|
728
730
|
|
|
729
731
|
#. module: account_financial_report
|
|
732
|
+
#. odoo-python
|
|
730
733
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
731
734
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
732
735
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
733
736
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_ending_cumul
|
|
734
737
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
735
|
-
#, python-format
|
|
736
738
|
msgid "Ending balance"
|
|
737
739
|
msgstr "Saldo final"
|
|
738
740
|
|
|
@@ -743,15 +745,16 @@ msgid ""
|
|
|
743
745
|
" cur."
|
|
744
746
|
msgstr ""
|
|
745
747
|
"Balance Final\n"
|
|
746
|
-
" moneda"
|
|
748
|
+
" moneda."
|
|
747
749
|
|
|
748
750
|
#. module: account_financial_report
|
|
751
|
+
#. odoo-python
|
|
749
752
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
750
|
-
#, python-format
|
|
751
753
|
msgid "Entries sorted by"
|
|
752
754
|
msgstr "Asientos ordenados por"
|
|
753
755
|
|
|
754
756
|
#. module: account_financial_report
|
|
757
|
+
#. odoo-python
|
|
755
758
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
756
759
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
757
760
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
@@ -760,22 +763,20 @@ msgstr "Asientos ordenados por"
|
|
|
760
763
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
761
764
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
762
765
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
763
|
-
#, python-format
|
|
764
766
|
msgid "Entry"
|
|
765
767
|
msgstr "Asiento"
|
|
766
768
|
|
|
767
769
|
#. module: account_financial_report
|
|
770
|
+
#. odoo-python
|
|
768
771
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
769
|
-
#, python-format
|
|
770
772
|
msgid "Entry number"
|
|
771
773
|
msgstr "Número de asiento"
|
|
772
774
|
|
|
773
775
|
#. module: account_financial_report
|
|
774
|
-
#.
|
|
776
|
+
#. odoo-javascript
|
|
775
777
|
#: code:addons/account_financial_report/static/src/xml/report.xml:0
|
|
776
|
-
#, python-format
|
|
777
778
|
msgid "Export"
|
|
778
|
-
msgstr ""
|
|
779
|
+
msgstr "Exportar"
|
|
779
780
|
|
|
780
781
|
#. module: account_financial_report
|
|
781
782
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.aged_partner_balance_wizard
|
|
@@ -811,12 +812,6 @@ msgstr "Filtro Cuentas"
|
|
|
811
812
|
msgid "Filter analytic accounts"
|
|
812
813
|
msgstr "Filtrar por cuentas analíticas"
|
|
813
814
|
|
|
814
|
-
#. module: account_financial_report
|
|
815
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__analytic_tag_ids
|
|
816
|
-
#: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
|
|
817
|
-
msgid "Filter analytic tags"
|
|
818
|
-
msgstr "Filtrar por etiquetas analíticas"
|
|
819
|
-
|
|
820
815
|
#. module: account_financial_report
|
|
821
816
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__cost_center_ids
|
|
822
817
|
msgid "Filter cost centers"
|
|
@@ -841,6 +836,11 @@ msgstr "Filtrar empresa"
|
|
|
841
836
|
msgid "Foreign Currency"
|
|
842
837
|
msgstr "Moneda Extranjera"
|
|
843
838
|
|
|
839
|
+
#. module: account_financial_report
|
|
840
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
|
|
841
|
+
msgid "Format"
|
|
842
|
+
msgstr ""
|
|
843
|
+
|
|
844
844
|
#. module: account_financial_report
|
|
845
845
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.aged_partner_balance_wizard
|
|
846
846
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
|
|
@@ -856,12 +856,12 @@ msgid "From:"
|
|
|
856
856
|
msgstr "Desde:"
|
|
857
857
|
|
|
858
858
|
#. module: account_financial_report
|
|
859
|
+
#. odoo-python
|
|
859
860
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
860
861
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
861
862
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
msgstr "Desde: %s A: %s"
|
|
863
|
+
msgid "From: %(date_from)s To: %(date_to)s"
|
|
864
|
+
msgstr "Desde: %(date_from)s Hasta: %(date_to)s"
|
|
865
865
|
|
|
866
866
|
#. module: account_financial_report
|
|
867
867
|
#: model:ir.model.fields,field_description:account_financial_report.field_account_group__complete_code
|
|
@@ -880,13 +880,13 @@ msgid "Fy Start Date"
|
|
|
880
880
|
msgstr "Fecha Inicio"
|
|
881
881
|
|
|
882
882
|
#. module: account_financial_report
|
|
883
|
+
#. odoo-python
|
|
883
884
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
884
885
|
#: model:ir.actions.act_window,name:account_financial_report.act_action_general_ledger_wizard_partner_relation
|
|
885
886
|
#: model:ir.actions.act_window,name:account_financial_report.action_general_ledger_wizard
|
|
886
887
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_general_ledger_html
|
|
887
888
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_general_ledger_qweb
|
|
888
889
|
#: model:ir.ui.menu,name:account_financial_report.menu_general_ledger_wizard
|
|
889
|
-
#, python-format
|
|
890
890
|
msgid "General Ledger"
|
|
891
891
|
msgstr "Libro mayor"
|
|
892
892
|
|
|
@@ -907,7 +907,6 @@ msgstr "Asistente de informe de Libro Mayor"
|
|
|
907
907
|
|
|
908
908
|
#. module: account_financial_report
|
|
909
909
|
#: model:ir.model,name:account_financial_report.model_report_a_f_r_report_general_ledger_xlsx
|
|
910
|
-
#, fuzzy
|
|
911
910
|
msgid "General Ledger XLSL Report"
|
|
912
911
|
msgstr "Libro mayor XLSX"
|
|
913
912
|
|
|
@@ -922,6 +921,9 @@ msgid ""
|
|
|
922
921
|
"General Ledger can be computed only if selected company have\n"
|
|
923
922
|
" only one unaffected earnings account."
|
|
924
923
|
msgstr ""
|
|
924
|
+
"El Libro mayor solo se puede calcular si la empresa seleccionada tiene \n"
|
|
925
|
+
" solo una cuenta "
|
|
926
|
+
"de resultados no afectados."
|
|
925
927
|
|
|
926
928
|
#. module: account_financial_report
|
|
927
929
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__group_option
|
|
@@ -929,13 +931,28 @@ msgid "Group entries by"
|
|
|
929
931
|
msgstr "Agrupar por"
|
|
930
932
|
|
|
931
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 "Agrupado por"
|
|
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
|
+
"Aquí puede configurar los intervalos que aparecerán en el informe de Calidad "
|
|
946
|
+
"de la deuda."
|
|
947
|
+
|
|
948
|
+
#. module: account_financial_report
|
|
949
|
+
#. odoo-python
|
|
932
950
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
933
951
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
934
952
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
935
953
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
936
954
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
937
955
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
938
|
-
#, python-format
|
|
939
956
|
msgid "Hide"
|
|
940
957
|
msgstr "Ocultar"
|
|
941
958
|
|
|
@@ -943,12 +960,12 @@ msgstr "Ocultar"
|
|
|
943
960
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__hide_account_at_0
|
|
944
961
|
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__hide_account_at_0
|
|
945
962
|
msgid "Hide account ending balance at 0"
|
|
946
|
-
msgstr "Ocultar
|
|
963
|
+
msgstr "Ocultar registros sin actividad"
|
|
947
964
|
|
|
948
965
|
#. module: account_financial_report
|
|
949
966
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__hide_account_at_0
|
|
950
967
|
msgid "Hide accounts at 0"
|
|
951
|
-
msgstr "Ocultar cuentas
|
|
968
|
+
msgstr "Ocultar cuentas sin actividad"
|
|
952
969
|
|
|
953
970
|
#. module: account_financial_report
|
|
954
971
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__show_hierarchy_level
|
|
@@ -956,34 +973,12 @@ msgid "Hierarchy Levels to display"
|
|
|
956
973
|
msgstr "Niveles de Jerarquía a mostrar"
|
|
957
974
|
|
|
958
975
|
#. module: account_financial_report
|
|
959
|
-
#: model:ir.model.fields,field_description:account_financial_report.
|
|
960
|
-
|
|
961
|
-
msgstr "Jerarquía en"
|
|
962
|
-
|
|
963
|
-
#. module: account_financial_report
|
|
964
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_account_account__id
|
|
965
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_account_financial_report_abstract_wizard__id
|
|
966
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_account_group__id
|
|
967
|
-
#: 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
|
|
968
978
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__id
|
|
969
979
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__id
|
|
970
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_ir_actions_report__id
|
|
971
980
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__id
|
|
972
981
|
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__id
|
|
973
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_aged_partner_balance_xlsx__id
|
|
974
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_general_ledger_xlsx__id
|
|
975
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_journal_ledger_xlsx__id
|
|
976
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_open_items_xlsx__id
|
|
977
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_trial_balance_xlsx__id
|
|
978
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_vat_report_xlsx__id
|
|
979
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_abstract_report__id
|
|
980
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_abstract_report_xlsx__id
|
|
981
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_aged_partner_balance__id
|
|
982
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_general_ledger__id
|
|
983
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_journal_ledger__id
|
|
984
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_open_items__id
|
|
985
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_trial_balance__id
|
|
986
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_vat_report__id
|
|
987
982
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__id
|
|
988
983
|
#: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__id
|
|
989
984
|
msgid "ID"
|
|
@@ -998,6 +993,17 @@ msgstr ""
|
|
|
998
993
|
"Si se marca, no se mostrarán detalles en el informe del libro mayor (solo el "
|
|
999
994
|
"webkit), solo importes centralizados por período."
|
|
1000
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 "Límite inferior"
|
|
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 "El límite inferior debe ser mayor que cero"
|
|
1006
|
+
|
|
1001
1007
|
#. module: account_financial_report
|
|
1002
1008
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
1003
1009
|
msgid ""
|
|
@@ -1005,27 +1011,33 @@ msgid ""
|
|
|
1005
1011
|
" balance cur."
|
|
1006
1012
|
msgstr ""
|
|
1007
1013
|
"Balance\n"
|
|
1008
|
-
" inicial moneda"
|
|
1014
|
+
" inicial moneda."
|
|
1009
1015
|
|
|
1010
1016
|
#. module: account_financial_report
|
|
1011
1017
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
1012
|
-
#, fuzzy
|
|
1013
1018
|
msgid ""
|
|
1014
1019
|
"Initial\n"
|
|
1015
1020
|
" balance"
|
|
1016
1021
|
msgstr ""
|
|
1017
1022
|
"Balance\n"
|
|
1018
|
-
" inicial
|
|
1023
|
+
" inicial"
|
|
1019
1024
|
|
|
1020
1025
|
#. module: account_financial_report
|
|
1026
|
+
#. odoo-python
|
|
1021
1027
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1022
1028
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1023
1029
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1024
|
-
#, python-format
|
|
1025
1030
|
msgid "Initial balance"
|
|
1026
1031
|
msgstr "Saldo inicial"
|
|
1027
1032
|
|
|
1028
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 "Configuración de intervalos"
|
|
1038
|
+
|
|
1039
|
+
#. module: account_financial_report
|
|
1040
|
+
#. odoo-python
|
|
1029
1041
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1030
1042
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1031
1043
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
@@ -1034,7 +1046,6 @@ msgstr "Saldo inicial"
|
|
|
1034
1046
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
1035
1047
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1036
1048
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1037
|
-
#, python-format
|
|
1038
1049
|
msgid "Journal"
|
|
1039
1050
|
msgstr "Diario"
|
|
1040
1051
|
|
|
@@ -1046,14 +1057,14 @@ msgstr "Apunte contable"
|
|
|
1046
1057
|
#. module: account_financial_report
|
|
1047
1058
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__domain
|
|
1048
1059
|
msgid "Journal Items Domain"
|
|
1049
|
-
msgstr ""
|
|
1060
|
+
msgstr "Dominio Apuntes Contables"
|
|
1050
1061
|
|
|
1051
1062
|
#. module: account_financial_report
|
|
1063
|
+
#. odoo-python
|
|
1052
1064
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1053
1065
|
#: model:ir.actions.act_window,name:account_financial_report.action_journal_ledger_wizard
|
|
1054
1066
|
#: model:ir.actions.report,name:account_financial_report.action_print_journal_ledger_wizard_html
|
|
1055
1067
|
#: model:ir.ui.menu,name:account_financial_report.menu_journal_ledger_wizard
|
|
1056
|
-
#, python-format
|
|
1057
1068
|
msgid "Journal Ledger"
|
|
1058
1069
|
msgstr "Libro diario"
|
|
1059
1070
|
|
|
@@ -1079,48 +1090,31 @@ msgstr "Libro diario XLSX"
|
|
|
1079
1090
|
|
|
1080
1091
|
#. module: account_financial_report
|
|
1081
1092
|
#: model:ir.model,name:account_financial_report.model_report_a_f_r_report_journal_ledger_xlsx
|
|
1082
|
-
#, fuzzy
|
|
1083
1093
|
msgid "Journal Ledger XLSX Report"
|
|
1084
|
-
msgstr "Informe
|
|
1094
|
+
msgstr "Informe Libro de diario XLSX"
|
|
1085
1095
|
|
|
1086
1096
|
#. module: account_financial_report
|
|
1097
|
+
#. odoo-python
|
|
1087
1098
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1088
1099
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__journal_ids
|
|
1089
1100
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.journal_ledger_wizard
|
|
1090
|
-
#, python-format
|
|
1091
1101
|
msgid "Journals"
|
|
1092
1102
|
msgstr "Diarios"
|
|
1093
1103
|
|
|
1094
1104
|
#. module: account_financial_report
|
|
1095
|
-
#: model:ir.model.fields,field_description:account_financial_report.
|
|
1096
|
-
#: model:ir.model.fields,field_description:account_financial_report.
|
|
1097
|
-
#: model:ir.model.fields,field_description:account_financial_report.
|
|
1098
|
-
#: model:ir.model.fields,field_description:account_financial_report.
|
|
1099
|
-
#: model:ir.model.fields,field_description:account_financial_report.
|
|
1100
|
-
#: model:ir.model.fields,field_description:account_financial_report.
|
|
1101
|
-
#: model:ir.model.fields,field_description:account_financial_report.
|
|
1102
|
-
|
|
1103
|
-
|
|
1104
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_aged_partner_balance_xlsx____last_update
|
|
1105
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_general_ledger_xlsx____last_update
|
|
1106
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_journal_ledger_xlsx____last_update
|
|
1107
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_open_items_xlsx____last_update
|
|
1108
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_trial_balance_xlsx____last_update
|
|
1109
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_vat_report_xlsx____last_update
|
|
1110
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_abstract_report____last_update
|
|
1111
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_abstract_report_xlsx____last_update
|
|
1112
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_aged_partner_balance____last_update
|
|
1113
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_general_ledger____last_update
|
|
1114
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_journal_ledger____last_update
|
|
1115
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_open_items____last_update
|
|
1116
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_trial_balance____last_update
|
|
1117
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_vat_report____last_update
|
|
1118
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard____last_update
|
|
1119
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard____last_update
|
|
1120
|
-
msgid "Last Modified on"
|
|
1121
|
-
msgstr "Última modificación en"
|
|
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 ""
|
|
1122
1114
|
|
|
1123
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
|
|
1124
1118
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__write_uid
|
|
1125
1119
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__write_uid
|
|
1126
1120
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__write_uid
|
|
@@ -1131,6 +1125,8 @@ msgid "Last Updated by"
|
|
|
1131
1125
|
msgstr "Última actualización por"
|
|
1132
1126
|
|
|
1133
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
|
|
1134
1130
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__write_date
|
|
1135
1131
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__write_date
|
|
1136
1132
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__write_date
|
|
@@ -1147,19 +1143,51 @@ msgid "Level"
|
|
|
1147
1143
|
msgstr "Nivel"
|
|
1148
1144
|
|
|
1149
1145
|
#. module: account_financial_report
|
|
1146
|
+
#. odoo-python
|
|
1150
1147
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1151
|
-
#, python-format
|
|
1152
1148
|
msgid "Level %s"
|
|
1153
1149
|
msgstr "Nivel %s"
|
|
1154
1150
|
|
|
1155
1151
|
#. module: account_financial_report
|
|
1152
|
+
#. odoo-python
|
|
1156
1153
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1157
1154
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__limit_hierarchy_level
|
|
1158
1155
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1159
|
-
#, python-format
|
|
1160
1156
|
msgid "Limit hierarchy levels"
|
|
1161
1157
|
msgstr "Limitar niveles de jerarquía"
|
|
1162
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 "Línea"
|
|
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 "Falta la empresa"
|
|
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 "Sin comercial"
|
|
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
|
+
"Modelo para establecer líneas de intervalo para el informe de Calidad de "
|
|
1184
|
+
"deuda"
|
|
1185
|
+
|
|
1186
|
+
#. module: account_financial_report
|
|
1187
|
+
#: model:ir.model,name:account_financial_report.model_account_age_report_configuration
|
|
1188
|
+
msgid "Model to set intervals for Age partner balance report"
|
|
1189
|
+
msgstr "Modelo para establecer intervalos en el informe de Calidad de deuda"
|
|
1190
|
+
|
|
1163
1191
|
#. module: account_financial_report
|
|
1164
1192
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__move_target
|
|
1165
1193
|
msgid "Move Target"
|
|
@@ -1171,52 +1199,65 @@ msgid "Moves"
|
|
|
1171
1199
|
msgstr "Asientos"
|
|
1172
1200
|
|
|
1173
1201
|
#. module: account_financial_report
|
|
1202
|
+
#. odoo-python
|
|
1203
|
+
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1204
|
+
msgid "Must complete Configuration Lines"
|
|
1205
|
+
msgstr "Debe completar las líneas de configuración"
|
|
1206
|
+
|
|
1207
|
+
#. module: account_financial_report
|
|
1208
|
+
#. odoo-python
|
|
1174
1209
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1175
1210
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1211
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__name
|
|
1212
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__name
|
|
1176
1213
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
|
|
1177
1214
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
1178
1215
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
1179
|
-
#, python-format
|
|
1180
1216
|
msgid "Name"
|
|
1181
1217
|
msgstr "Nombre"
|
|
1182
1218
|
|
|
1183
1219
|
#. module: account_financial_report
|
|
1220
|
+
#: model:ir.model.constraint,message:account_financial_report.constraint_account_age_report_configuration_line_unique_name_config_combination
|
|
1221
|
+
msgid "Name must be unique per report configuration"
|
|
1222
|
+
msgstr "El nombre debe ser único por cada configuración del informe"
|
|
1223
|
+
|
|
1224
|
+
#. module: account_financial_report
|
|
1225
|
+
#. odoo-python
|
|
1184
1226
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1185
1227
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
1186
|
-
#, python-format
|
|
1187
1228
|
msgid "Net"
|
|
1188
1229
|
msgstr "Neto"
|
|
1189
1230
|
|
|
1190
1231
|
#. module: account_financial_report
|
|
1232
|
+
#. odoo-python
|
|
1191
1233
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1192
1234
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1193
1235
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1194
1236
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1195
|
-
#, python-format
|
|
1196
1237
|
msgid "No"
|
|
1197
1238
|
msgstr "No"
|
|
1198
1239
|
|
|
1199
1240
|
#. module: account_financial_report
|
|
1241
|
+
#. odoo-python
|
|
1200
1242
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
1201
|
-
#, python-format
|
|
1202
1243
|
msgid "No group"
|
|
1203
1244
|
msgstr "Sin grupo"
|
|
1204
1245
|
|
|
1205
1246
|
#. module: account_financial_report
|
|
1206
|
-
|
|
1207
|
-
msgid "No hierarchy"
|
|
1208
|
-
msgstr "Sin jerarquía"
|
|
1209
|
-
|
|
1210
|
-
#. module: account_financial_report
|
|
1247
|
+
#. odoo-python
|
|
1211
1248
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1212
1249
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1213
|
-
#, python-format
|
|
1214
1250
|
msgid "No limit"
|
|
1215
1251
|
msgstr "Sin límite"
|
|
1216
1252
|
|
|
1217
1253
|
#. module: account_financial_report
|
|
1254
|
+
#: model:ir.model.fields.selection,name:account_financial_report.selection__general_ledger_report_wizard__grouped_by__none
|
|
1255
|
+
msgid "None"
|
|
1256
|
+
msgstr "Ninguna"
|
|
1257
|
+
|
|
1258
|
+
#. module: account_financial_report
|
|
1259
|
+
#. odoo-python
|
|
1218
1260
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
1219
|
-
#, python-format
|
|
1220
1261
|
msgid "Not Posted"
|
|
1221
1262
|
msgstr "Sin Postear"
|
|
1222
1263
|
|
|
@@ -1226,10 +1267,9 @@ msgid "Not due"
|
|
|
1226
1267
|
msgstr "Deuda"
|
|
1227
1268
|
|
|
1228
1269
|
#. module: account_financial_report
|
|
1229
|
-
#:
|
|
1230
|
-
|
|
1231
|
-
|
|
1232
|
-
msgstr "No solo una cuenta de ganancias no afectadas"
|
|
1270
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
1271
|
+
msgid "OCA Aged Report Configuration"
|
|
1272
|
+
msgstr "Configuración del informe Calidad de deuda OCA"
|
|
1233
1273
|
|
|
1234
1274
|
#. module: account_financial_report
|
|
1235
1275
|
#: model:ir.ui.menu,name:account_financial_report.menu_oca_reports
|
|
@@ -1237,19 +1277,25 @@ msgid "OCA accounting reports"
|
|
|
1237
1277
|
msgstr "Informes de contabilidad OCA"
|
|
1238
1278
|
|
|
1239
1279
|
#. module: account_financial_report
|
|
1280
|
+
#. odoo-python
|
|
1240
1281
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1241
1282
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
1242
|
-
#, python-format
|
|
1243
1283
|
msgid "Older"
|
|
1244
1284
|
msgstr "Mayor"
|
|
1245
1285
|
|
|
1246
1286
|
#. module: account_financial_report
|
|
1287
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__only_one_unaffected_earnings_account
|
|
1288
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__only_one_unaffected_earnings_account
|
|
1289
|
+
msgid "Only One Unaffected Earnings Account"
|
|
1290
|
+
msgstr "Sólo Una Cuenta de Ganancias No Afectada"
|
|
1291
|
+
|
|
1292
|
+
#. module: account_financial_report
|
|
1293
|
+
#. odoo-python
|
|
1247
1294
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1248
1295
|
#: model:ir.actions.act_window,name:account_financial_report.action_open_items_wizard
|
|
1249
1296
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_open_items_html
|
|
1250
1297
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_open_items_qweb
|
|
1251
1298
|
#: model:ir.ui.menu,name:account_financial_report.menu_open_items_wizard
|
|
1252
|
-
#, python-format
|
|
1253
1299
|
msgid "Open Items"
|
|
1254
1300
|
msgstr "Partidas abiertas"
|
|
1255
1301
|
|
|
@@ -1280,9 +1326,8 @@ msgstr "Partidas abiertas XLSX"
|
|
|
1280
1326
|
|
|
1281
1327
|
#. module: account_financial_report
|
|
1282
1328
|
#: model:ir.model,name:account_financial_report.model_report_a_f_r_report_open_items_xlsx
|
|
1283
|
-
#, fuzzy
|
|
1284
1329
|
msgid "Open Items XLSX Report"
|
|
1285
|
-
msgstr "Partidas abiertas XLSX"
|
|
1330
|
+
msgstr "Informe Partidas abiertas XLSX"
|
|
1286
1331
|
|
|
1287
1332
|
#. module: account_financial_report
|
|
1288
1333
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.journal_ledger_wizard
|
|
@@ -1290,13 +1335,14 @@ msgid "Options"
|
|
|
1290
1335
|
msgstr "Opciones"
|
|
1291
1336
|
|
|
1292
1337
|
#. module: account_financial_report
|
|
1338
|
+
#. odoo-python
|
|
1293
1339
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1294
1340
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1295
|
-
#, python-format
|
|
1296
1341
|
msgid "Original"
|
|
1297
1342
|
msgstr "Inicial"
|
|
1298
1343
|
|
|
1299
1344
|
#. module: account_financial_report
|
|
1345
|
+
#. odoo-python
|
|
1300
1346
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1301
1347
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1302
1348
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
@@ -1308,7 +1354,6 @@ msgstr "Inicial"
|
|
|
1308
1354
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1309
1355
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1310
1356
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
1311
|
-
#, python-format
|
|
1312
1357
|
msgid "Partner"
|
|
1313
1358
|
msgstr "Empresa"
|
|
1314
1359
|
|
|
@@ -1317,29 +1362,47 @@ msgstr "Empresa"
|
|
|
1317
1362
|
msgid ""
|
|
1318
1363
|
"Partner\n"
|
|
1319
1364
|
" cumul aged balance"
|
|
1320
|
-
msgstr "
|
|
1365
|
+
msgstr ""
|
|
1366
|
+
"Saldo \n"
|
|
1367
|
+
" Acumulado de Empresa"
|
|
1321
1368
|
|
|
1322
1369
|
#. module: account_financial_report
|
|
1370
|
+
#. odoo-python
|
|
1323
1371
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1324
|
-
#, python-format
|
|
1325
1372
|
msgid "Partner Initial balance"
|
|
1326
1373
|
msgstr "Saldo Inicial de empresa"
|
|
1327
1374
|
|
|
1328
1375
|
#. module: account_financial_report
|
|
1376
|
+
#: model:ir.model.fields.selection,name:account_financial_report.selection__open_items_report_wizard__grouped_by__salesperson
|
|
1377
|
+
msgid "Partner Salesperson"
|
|
1378
|
+
msgstr "Comercial de la empresa"
|
|
1379
|
+
|
|
1380
|
+
#. module: account_financial_report
|
|
1381
|
+
#. odoo-python
|
|
1329
1382
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1330
|
-
#, python-format
|
|
1331
1383
|
msgid "Partner cumul aged balance"
|
|
1332
1384
|
msgstr "Saldo Acumulado de Empresa"
|
|
1333
1385
|
|
|
1334
1386
|
#. module: account_financial_report
|
|
1387
|
+
#. odoo-python
|
|
1335
1388
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1336
1389
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1337
1390
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_ending_cumul
|
|
1338
1391
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_ending_cumul
|
|
1339
|
-
#, python-format
|
|
1340
1392
|
msgid "Partner ending balance"
|
|
1341
1393
|
msgstr "Saldo final de empresa"
|
|
1342
1394
|
|
|
1395
|
+
#. module: account_financial_report
|
|
1396
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1397
|
+
msgid "Partner initial balance"
|
|
1398
|
+
msgstr "Saldo inicial de empresa"
|
|
1399
|
+
|
|
1400
|
+
#. module: account_financial_report
|
|
1401
|
+
#: model:ir.model.fields.selection,name:account_financial_report.selection__general_ledger_report_wizard__grouped_by__partners
|
|
1402
|
+
#: model:ir.model.fields.selection,name:account_financial_report.selection__open_items_report_wizard__grouped_by__partners
|
|
1403
|
+
msgid "Partners"
|
|
1404
|
+
msgstr "Empresas"
|
|
1405
|
+
|
|
1343
1406
|
#. module: account_financial_report
|
|
1344
1407
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__payable_accounts_only
|
|
1345
1408
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__payable_accounts_only
|
|
@@ -1354,9 +1417,9 @@ msgid "Percents"
|
|
|
1354
1417
|
msgstr "Porcentajes"
|
|
1355
1418
|
|
|
1356
1419
|
#. module: account_financial_report
|
|
1420
|
+
#. odoo-python
|
|
1357
1421
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1358
1422
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
1359
|
-
#, python-format
|
|
1360
1423
|
msgid "Period balance"
|
|
1361
1424
|
msgstr "Saldo de periodo"
|
|
1362
1425
|
|
|
@@ -1366,22 +1429,15 @@ msgid "Periods"
|
|
|
1366
1429
|
msgstr "Periodos"
|
|
1367
1430
|
|
|
1368
1431
|
#. module: account_financial_report
|
|
1432
|
+
#. odoo-python
|
|
1369
1433
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
1370
|
-
#, python-format
|
|
1371
1434
|
msgid "Posted"
|
|
1372
1435
|
msgstr "Posteado"
|
|
1373
1436
|
|
|
1374
1437
|
#. module: account_financial_report
|
|
1375
|
-
#.
|
|
1376
|
-
#: code:addons/account_financial_report/static/src/xml/report.xml:0
|
|
1377
|
-
#, python-format
|
|
1378
|
-
msgid "Print"
|
|
1379
|
-
msgstr ""
|
|
1380
|
-
|
|
1381
|
-
#. module: account_financial_report
|
|
1438
|
+
#. odoo-python
|
|
1382
1439
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1383
1440
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1384
|
-
#, python-format
|
|
1385
1441
|
msgid "Rec."
|
|
1386
1442
|
msgstr "Num."
|
|
1387
1443
|
|
|
@@ -1399,7 +1455,9 @@ msgstr "Sólo cuentas a cobrar"
|
|
|
1399
1455
|
msgid ""
|
|
1400
1456
|
"Ref -\n"
|
|
1401
1457
|
" Label"
|
|
1402
|
-
msgstr "
|
|
1458
|
+
msgstr ""
|
|
1459
|
+
"Referencia\n"
|
|
1460
|
+
" Etiqueta"
|
|
1403
1461
|
|
|
1404
1462
|
#. module: account_financial_report
|
|
1405
1463
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
@@ -1411,58 +1469,57 @@ msgstr ""
|
|
|
1411
1469
|
" Etiqueta"
|
|
1412
1470
|
|
|
1413
1471
|
#. module: account_financial_report
|
|
1472
|
+
#. odoo-python
|
|
1414
1473
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1415
1474
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1416
1475
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1417
1476
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1418
1477
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1419
|
-
#, python-format
|
|
1420
1478
|
msgid "Ref - Label"
|
|
1421
1479
|
msgstr "Ref - Etiqueta"
|
|
1422
1480
|
|
|
1423
1481
|
#. module: account_financial_report
|
|
1424
1482
|
#: model:ir.model,name:account_financial_report.model_ir_actions_report
|
|
1425
1483
|
msgid "Report Action"
|
|
1426
|
-
msgstr ""
|
|
1484
|
+
msgstr "Acción de informe"
|
|
1427
1485
|
|
|
1428
1486
|
#. module: account_financial_report
|
|
1487
|
+
#. odoo-python
|
|
1429
1488
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1430
1489
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1431
1490
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_lines_header
|
|
1432
1491
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
1433
1492
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1434
|
-
#, python-format
|
|
1435
1493
|
msgid "Residual"
|
|
1436
1494
|
msgstr "Remanente"
|
|
1437
1495
|
|
|
1438
1496
|
#. module: account_financial_report
|
|
1497
|
+
#. odoo-python
|
|
1439
1498
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1440
1499
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1441
|
-
#, python-format
|
|
1442
1500
|
msgid "Sequence"
|
|
1443
|
-
msgstr ""
|
|
1501
|
+
msgstr "Secuencia"
|
|
1444
1502
|
|
|
1445
1503
|
#. module: account_financial_report
|
|
1504
|
+
#. odoo-python
|
|
1446
1505
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1447
1506
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1448
1507
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1449
1508
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1450
1509
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
1451
1510
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1452
|
-
#, python-format
|
|
1453
1511
|
msgid "Show"
|
|
1454
1512
|
msgstr "Mostrar"
|
|
1455
1513
|
|
|
1456
1514
|
#. module: account_financial_report
|
|
1457
1515
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__show_cost_center
|
|
1458
|
-
#, fuzzy
|
|
1459
1516
|
msgid "Show Analytic Account"
|
|
1460
|
-
msgstr "Mostrar
|
|
1517
|
+
msgstr "Mostrar cuenta analítica"
|
|
1461
1518
|
|
|
1462
1519
|
#. module: account_financial_report
|
|
1463
1520
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__with_auto_sequence
|
|
1464
1521
|
msgid "Show Auto Sequence"
|
|
1465
|
-
msgstr ""
|
|
1522
|
+
msgstr "Mostrar auto secuencia"
|
|
1466
1523
|
|
|
1467
1524
|
#. module: account_financial_report
|
|
1468
1525
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__show_move_line_details
|
|
@@ -1470,31 +1527,27 @@ msgid "Show Move Line Details"
|
|
|
1470
1527
|
msgstr "Mostrar Detalles Apuntes"
|
|
1471
1528
|
|
|
1472
1529
|
#. module: account_financial_report
|
|
1473
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__show_partner_details
|
|
1474
1530
|
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__show_partner_details
|
|
1475
1531
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__show_partner_details
|
|
1476
1532
|
msgid "Show Partner Details"
|
|
1477
1533
|
msgstr "Mostrar detalles de empresa"
|
|
1478
1534
|
|
|
1479
1535
|
#. module: account_financial_report
|
|
1480
|
-
|
|
1481
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__show_analytic_tags
|
|
1482
|
-
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1483
|
-
#, python-format
|
|
1484
|
-
msgid "Show analytic tags"
|
|
1485
|
-
msgstr "Mostrar etiquetas analíticas"
|
|
1486
|
-
|
|
1487
|
-
#. module: account_financial_report
|
|
1536
|
+
#. odoo-python
|
|
1488
1537
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1489
1538
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1490
1539
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1491
1540
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__foreign_currency
|
|
1492
1541
|
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__foreign_currency
|
|
1493
1542
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__foreign_currency
|
|
1494
|
-
#, python-format
|
|
1495
1543
|
msgid "Show foreign currency"
|
|
1496
1544
|
msgstr "Mostrar Moneda Extranjera"
|
|
1497
1545
|
|
|
1546
|
+
#. module: account_financial_report
|
|
1547
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__show_hierarchy
|
|
1548
|
+
msgid "Show hierarchy"
|
|
1549
|
+
msgstr "Mostrar con jerarquía"
|
|
1550
|
+
|
|
1498
1551
|
#. module: account_financial_report
|
|
1499
1552
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__sort_option
|
|
1500
1553
|
msgid "Sort entries by"
|
|
@@ -1513,15 +1566,19 @@ msgstr "Fecha de inicio"
|
|
|
1513
1566
|
#. module: account_financial_report
|
|
1514
1567
|
#: model:ir.model.fields,help:account_financial_report.field_aged_partner_balance_report_wizard__account_code_from
|
|
1515
1568
|
#: model:ir.model.fields,help:account_financial_report.field_general_ledger_report_wizard__account_code_from
|
|
1516
|
-
#: model:ir.model.fields,help:account_financial_report.field_open_items_report_wizard__account_code_from
|
|
1517
1569
|
#: model:ir.model.fields,help:account_financial_report.field_trial_balance_report_wizard__account_code_from
|
|
1518
1570
|
msgid "Starting account in a range"
|
|
1519
1571
|
msgstr "Cuenta inicial en un rango"
|
|
1520
1572
|
|
|
1521
1573
|
#. module: account_financial_report
|
|
1522
|
-
|
|
1574
|
+
#. odoo-python
|
|
1575
|
+
#: code:addons/account_financial_report/report/trial_balance.py:0
|
|
1576
|
+
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1577
|
+
msgid "TOTAL"
|
|
1578
|
+
msgstr "TOTAL"
|
|
1579
|
+
|
|
1580
|
+
#. module: account_financial_report
|
|
1523
1581
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1524
|
-
#, python-format
|
|
1525
1582
|
msgid "Tags"
|
|
1526
1583
|
msgstr "Etiquetas"
|
|
1527
1584
|
|
|
@@ -1535,6 +1592,7 @@ msgid "Target Moves"
|
|
|
1535
1592
|
msgstr "Movimientos destino"
|
|
1536
1593
|
|
|
1537
1594
|
#. module: account_financial_report
|
|
1595
|
+
#. odoo-python
|
|
1538
1596
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1539
1597
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1540
1598
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
@@ -1544,14 +1602,13 @@ msgstr "Movimientos destino"
|
|
|
1544
1602
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1545
1603
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
1546
1604
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1547
|
-
#, python-format
|
|
1548
1605
|
msgid "Target moves filter"
|
|
1549
1606
|
msgstr "Filtro movimientos destino"
|
|
1550
1607
|
|
|
1551
1608
|
#. module: account_financial_report
|
|
1609
|
+
#. odoo-python
|
|
1552
1610
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1553
1611
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
1554
|
-
#, python-format
|
|
1555
1612
|
msgid "Tax"
|
|
1556
1613
|
msgstr "Impuesto"
|
|
1557
1614
|
|
|
@@ -1562,49 +1619,68 @@ msgid "Tax Amount"
|
|
|
1562
1619
|
msgstr "Total Impuestos"
|
|
1563
1620
|
|
|
1564
1621
|
#. module: account_financial_report
|
|
1622
|
+
#. odoo-python
|
|
1565
1623
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1566
|
-
#, python-format
|
|
1567
1624
|
msgid "Tax Balance"
|
|
1568
1625
|
msgstr "Saldo de Impuestos"
|
|
1569
1626
|
|
|
1570
1627
|
#. module: account_financial_report
|
|
1628
|
+
#. odoo-python
|
|
1571
1629
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1572
|
-
#, python-format
|
|
1573
1630
|
msgid "Tax Credit"
|
|
1574
1631
|
msgstr "Haber"
|
|
1575
1632
|
|
|
1576
1633
|
#. module: account_financial_report
|
|
1634
|
+
#. odoo-python
|
|
1577
1635
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1578
|
-
#, python-format
|
|
1579
1636
|
msgid "Tax Debit"
|
|
1580
1637
|
msgstr "Debe"
|
|
1581
1638
|
|
|
1582
1639
|
#. module: account_financial_report
|
|
1640
|
+
#. odoo-python
|
|
1583
1641
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1584
1642
|
#: model:ir.model.fields.selection,name:account_financial_report.selection__vat_report_wizard__based_on__taxgroups
|
|
1585
|
-
#, python-format
|
|
1586
1643
|
msgid "Tax Groups"
|
|
1587
1644
|
msgstr "Grupo de impuestos"
|
|
1588
1645
|
|
|
1589
1646
|
#. module: account_financial_report
|
|
1647
|
+
#. odoo-python
|
|
1648
|
+
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1649
|
+
msgid "Tax Initial balance"
|
|
1650
|
+
msgstr "Saldo inicial de impuesto"
|
|
1651
|
+
|
|
1652
|
+
#. module: account_financial_report
|
|
1653
|
+
#. odoo-python
|
|
1590
1654
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1591
1655
|
#: model:ir.model.fields.selection,name:account_financial_report.selection__vat_report_wizard__based_on__taxtags
|
|
1592
|
-
#, python-format
|
|
1593
1656
|
msgid "Tax Tags"
|
|
1594
1657
|
msgstr "Etiquetas de impuestos"
|
|
1595
1658
|
|
|
1596
1659
|
#. module: account_financial_report
|
|
1660
|
+
#. odoo-python
|
|
1661
|
+
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1662
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_ending_cumul
|
|
1663
|
+
msgid "Tax ending balance"
|
|
1664
|
+
msgstr "Saldo final de impuesto"
|
|
1665
|
+
|
|
1666
|
+
#. module: account_financial_report
|
|
1667
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1668
|
+
msgid "Tax initial balance"
|
|
1669
|
+
msgstr "Saldo inicial de impuesto"
|
|
1670
|
+
|
|
1671
|
+
#. module: account_financial_report
|
|
1672
|
+
#. odoo-python
|
|
1597
1673
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1598
1674
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1675
|
+
#: model:ir.model.fields.selection,name:account_financial_report.selection__general_ledger_report_wizard__grouped_by__taxes
|
|
1599
1676
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1600
1677
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1601
|
-
#, python-format
|
|
1602
1678
|
msgid "Taxes"
|
|
1603
1679
|
msgstr "Impuestos"
|
|
1604
1680
|
|
|
1605
1681
|
#. module: account_financial_report
|
|
1682
|
+
#. odoo-python
|
|
1606
1683
|
#: code:addons/account_financial_report/wizard/general_ledger_wizard.py:0
|
|
1607
|
-
#, python-format
|
|
1608
1684
|
msgid ""
|
|
1609
1685
|
"The Company in the General Ledger Report Wizard and in Date Range must be "
|
|
1610
1686
|
"the same."
|
|
@@ -1613,8 +1689,8 @@ msgstr ""
|
|
|
1613
1689
|
"fechas debe ser la misma."
|
|
1614
1690
|
|
|
1615
1691
|
#. module: account_financial_report
|
|
1692
|
+
#. odoo-python
|
|
1616
1693
|
#: code:addons/account_financial_report/wizard/trial_balance_wizard.py:0
|
|
1617
|
-
#, python-format
|
|
1618
1694
|
msgid ""
|
|
1619
1695
|
"The Company in the Trial Balance Report Wizard and in Date Range must be the "
|
|
1620
1696
|
"same."
|
|
@@ -1623,8 +1699,8 @@ msgstr ""
|
|
|
1623
1699
|
"de fechas debe ser la misma."
|
|
1624
1700
|
|
|
1625
1701
|
#. module: account_financial_report
|
|
1702
|
+
#. odoo-python
|
|
1626
1703
|
#: code:addons/account_financial_report/wizard/vat_report_wizard.py:0
|
|
1627
|
-
#, python-format
|
|
1628
1704
|
msgid ""
|
|
1629
1705
|
"The Company in the Vat Report Wizard and in Date Range must be the same."
|
|
1630
1706
|
msgstr ""
|
|
@@ -1632,15 +1708,27 @@ msgstr ""
|
|
|
1632
1708
|
"ser la misma."
|
|
1633
1709
|
|
|
1634
1710
|
#. module: account_financial_report
|
|
1711
|
+
#. odoo-python
|
|
1635
1712
|
#: code:addons/account_financial_report/wizard/trial_balance_wizard.py:0
|
|
1636
|
-
#, python-format
|
|
1637
1713
|
msgid "The hierarchy level to filter on must be greater than 0."
|
|
1638
1714
|
msgstr "El nivel de jerarquía a filtrar debe ser mayor que 0."
|
|
1639
1715
|
|
|
1716
|
+
#. module: account_financial_report
|
|
1717
|
+
#. odoo-python
|
|
1718
|
+
#: code:addons/account_financial_report/report/trial_balance.py:0
|
|
1719
|
+
msgid ""
|
|
1720
|
+
"There is a problem in the structure of the account groups. You may need to "
|
|
1721
|
+
"create some child group of %s."
|
|
1722
|
+
msgstr ""
|
|
1723
|
+
"Hay un problema en la estructura de los grupos de cuentas. Puede que "
|
|
1724
|
+
"necesite crear algunos grupos hijos de %s."
|
|
1725
|
+
|
|
1640
1726
|
#. module: account_financial_report
|
|
1641
1727
|
#: model:ir.model.fields,help:account_financial_report.field_general_ledger_report_wizard__domain
|
|
1642
1728
|
msgid "This domain will be used to select specific domain for Journal Items"
|
|
1643
1729
|
msgstr ""
|
|
1730
|
+
"Este dominio se usa para seleccionar dominios específicos para Apuntes "
|
|
1731
|
+
"Contables"
|
|
1644
1732
|
|
|
1645
1733
|
#. module: account_financial_report
|
|
1646
1734
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
@@ -1653,17 +1741,19 @@ msgid "To:"
|
|
|
1653
1741
|
msgstr "A:"
|
|
1654
1742
|
|
|
1655
1743
|
#. module: account_financial_report
|
|
1744
|
+
#. odoo-python
|
|
1745
|
+
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1656
1746
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_account_ending_cumul
|
|
1657
1747
|
msgid "Total"
|
|
1658
1748
|
msgstr "Total"
|
|
1659
1749
|
|
|
1660
1750
|
#. module: account_financial_report
|
|
1751
|
+
#. odoo-python
|
|
1661
1752
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1662
1753
|
#: model:ir.actions.act_window,name:account_financial_report.action_trial_balance_wizard
|
|
1663
1754
|
#: model:ir.actions.report,name:account_financial_report.action_report_trial_balance_html
|
|
1664
1755
|
#: model:ir.actions.report,name:account_financial_report.action_report_trial_balance_qweb
|
|
1665
1756
|
#: model:ir.ui.menu,name:account_financial_report.menu_trial_balance_wizard
|
|
1666
|
-
#, python-format
|
|
1667
1757
|
msgid "Trial Balance"
|
|
1668
1758
|
msgstr "Balance de Sumas y Saldos"
|
|
1669
1759
|
|
|
@@ -1689,7 +1779,6 @@ msgstr "Balance de Sumas y Saldos XLSX"
|
|
|
1689
1779
|
|
|
1690
1780
|
#. module: account_financial_report
|
|
1691
1781
|
#: model:ir.model,name:account_financial_report.model_report_a_f_r_report_trial_balance_xlsx
|
|
1692
|
-
#, fuzzy
|
|
1693
1782
|
msgid "Trial Balance XLSX Report"
|
|
1694
1783
|
msgstr "Balance de Sumas y Saldos XLSX"
|
|
1695
1784
|
|
|
@@ -1699,6 +1788,10 @@ msgid ""
|
|
|
1699
1788
|
"Trial Balance can be computed only if selected company have only\n"
|
|
1700
1789
|
" one unaffected earnings account."
|
|
1701
1790
|
msgstr ""
|
|
1791
|
+
"El balance de sumas y saldos solo puede calcularse si la compañía "
|
|
1792
|
+
"seleccionada tiene una \n"
|
|
1793
|
+
" y solo una cuenta de "
|
|
1794
|
+
"ganancias."
|
|
1702
1795
|
|
|
1703
1796
|
#. module: account_financial_report
|
|
1704
1797
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__unaffected_earnings_account
|
|
@@ -1718,6 +1811,11 @@ msgstr ""
|
|
|
1718
1811
|
"las empresas se filtran, los debe y haber totales no coincidirán con el "
|
|
1719
1812
|
"balance de sumas y saldos."
|
|
1720
1813
|
|
|
1814
|
+
#. module: account_financial_report
|
|
1815
|
+
#: model:ir.model.fields,help:account_financial_report.field_trial_balance_report_wizard__show_hierarchy
|
|
1816
|
+
msgid "Use when your account groups are hierarchical"
|
|
1817
|
+
msgstr "Úsese cuando sus grupos de cuentas sean jerárquicos"
|
|
1818
|
+
|
|
1721
1819
|
#. module: account_financial_report
|
|
1722
1820
|
#: model:ir.actions.act_window,name:account_financial_report.action_vat_report_wizard
|
|
1723
1821
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_vat_report_html
|
|
@@ -1747,22 +1845,20 @@ msgid "VAT Report XLSX"
|
|
|
1747
1845
|
msgstr "Informe de impuestos XLSX"
|
|
1748
1846
|
|
|
1749
1847
|
#. module: account_financial_report
|
|
1848
|
+
#. odoo-python
|
|
1750
1849
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1751
|
-
#, python-format
|
|
1752
1850
|
msgid "Vat Report"
|
|
1753
1851
|
msgstr "Informe de Impuestos"
|
|
1754
1852
|
|
|
1755
1853
|
#. module: account_financial_report
|
|
1756
1854
|
#: model:ir.model,name:account_financial_report.model_report_account_financial_report_vat_report
|
|
1757
|
-
#, fuzzy
|
|
1758
1855
|
msgid "Vat Report Report"
|
|
1759
|
-
msgstr "Informe de
|
|
1856
|
+
msgstr "Informe de IVA"
|
|
1760
1857
|
|
|
1761
1858
|
#. module: account_financial_report
|
|
1762
1859
|
#: model:ir.model,name:account_financial_report.model_report_a_f_r_report_vat_report_xlsx
|
|
1763
|
-
#, fuzzy
|
|
1764
1860
|
msgid "Vat Report XLSX Report"
|
|
1765
|
-
msgstr "Informe de
|
|
1861
|
+
msgstr "Informe de IVA XLSX"
|
|
1766
1862
|
|
|
1767
1863
|
#. module: account_financial_report
|
|
1768
1864
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.aged_partner_balance_wizard
|
|
@@ -1789,22 +1885,27 @@ msgid "With Account Name"
|
|
|
1789
1885
|
msgstr "Cuenta con Nombre"
|
|
1790
1886
|
|
|
1791
1887
|
#. module: account_financial_report
|
|
1888
|
+
#. odoo-python
|
|
1889
|
+
#: code:addons/account_financial_report/report/trial_balance.py:0
|
|
1890
|
+
msgid "Without analytic account"
|
|
1891
|
+
msgstr "Sin cuenta analítica"
|
|
1892
|
+
|
|
1893
|
+
#. module: account_financial_report
|
|
1894
|
+
#. odoo-python
|
|
1792
1895
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1793
1896
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1794
1897
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1795
1898
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1796
|
-
#, python-format
|
|
1797
1899
|
msgid "Yes"
|
|
1798
1900
|
msgstr "Si"
|
|
1799
1901
|
|
|
1800
1902
|
#. module: account_financial_report
|
|
1903
|
+
#. odoo-python
|
|
1801
1904
|
#: code:addons/account_financial_report/report/general_ledger.py:0
|
|
1802
|
-
#, python-format
|
|
1803
1905
|
msgid "future"
|
|
1804
|
-
msgstr ""
|
|
1906
|
+
msgstr "futuro"
|
|
1805
1907
|
|
|
1806
1908
|
#. module: account_financial_report
|
|
1807
|
-
#: model_terms:ir.ui.view,arch_db:account_financial_report.aged_partner_balance_wizard
|
|
1808
1909
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
|
|
1809
1910
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.journal_ledger_wizard
|
|
1810
1911
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.open_items_wizard
|
|
@@ -1816,7 +1917,7 @@ msgstr "o"
|
|
|
1816
1917
|
#. module: account_financial_report
|
|
1817
1918
|
#: model:ir.actions.report,name:account_financial_report.action_print_journal_ledger_wizard_qweb
|
|
1818
1919
|
msgid "ournal Ledger"
|
|
1819
|
-
msgstr ""
|
|
1920
|
+
msgstr "Libro Diario"
|
|
1820
1921
|
|
|
1821
1922
|
#. module: account_financial_report
|
|
1822
1923
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal
|
|
@@ -1826,7 +1927,7 @@ msgstr "a"
|
|
|
1826
1927
|
#. module: account_financial_report
|
|
1827
1928
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1828
1929
|
msgid "width: 16.21%;"
|
|
1829
|
-
msgstr ""
|
|
1930
|
+
msgstr "ancho: 16.21%;"
|
|
1830
1931
|
|
|
1831
1932
|
#. module: account_financial_report
|
|
1832
1933
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
@@ -1841,7 +1942,7 @@ msgstr "ancho: 23.78%;"
|
|
|
1841
1942
|
#. module: account_financial_report
|
|
1842
1943
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1843
1944
|
msgid "width: 31.35%;"
|
|
1844
|
-
msgstr ""
|
|
1945
|
+
msgstr "ancho:31.35%;"
|
|
1845
1946
|
|
|
1846
1947
|
#. module: account_financial_report
|
|
1847
1948
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
@@ -1853,135 +1954,98 @@ msgstr "ancho: 38.92%;"
|
|
|
1853
1954
|
msgid "width: 8.11%;"
|
|
1854
1955
|
msgstr "ancho: 8.11%;"
|
|
1855
1956
|
|
|
1856
|
-
#~ msgid "<span class=\"fa fa-download\"/> Export"
|
|
1857
|
-
#~ msgstr "<span class=\"fa fa-download\"/>Exportar"
|
|
1858
|
-
|
|
1859
|
-
#~ msgid "<span class=\"fa fa-print\"/> Print"
|
|
1860
|
-
#~ msgstr "<span class=\"fa fa-print\"/>Imprimir"
|
|
1861
|
-
|
|
1862
1957
|
#~ msgid ""
|
|
1863
|
-
#~ "
|
|
1864
|
-
#~ "
|
|
1865
|
-
#~ " </span>"
|
|
1958
|
+
#~ "Age ??? 120\n"
|
|
1959
|
+
#~ " d."
|
|
1866
1960
|
#~ msgstr ""
|
|
1867
|
-
#~ "
|
|
1868
|
-
#~ "
|
|
1869
|
-
#~ " </span>"
|
|
1961
|
+
#~ "Tiempo ??? 120\n"
|
|
1962
|
+
#~ "?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ??d."
|
|
1870
1963
|
|
|
1871
|
-
|
|
1872
|
-
#~ "
|
|
1873
|
-
#~ "
|
|
1874
|
-
#~ " </span>"
|
|
1875
|
-
#~ msgstr ""
|
|
1876
|
-
#~ "<span class=\"oe_inline\">\n"
|
|
1877
|
-
#~ " A\n"
|
|
1878
|
-
#~ " </span>"
|
|
1964
|
+
#, python-format
|
|
1965
|
+
#~ msgid "Age ??? 120 d."
|
|
1966
|
+
#~ msgstr "Tiempo ??? 120 d."
|
|
1879
1967
|
|
|
1880
1968
|
#~ msgid ""
|
|
1881
|
-
#~ "
|
|
1882
|
-
#~ "
|
|
1969
|
+
#~ "Age ??? 30\n"
|
|
1970
|
+
#~ " d."
|
|
1883
1971
|
#~ msgstr ""
|
|
1884
|
-
#~ "
|
|
1885
|
-
#~ "
|
|
1972
|
+
#~ "Tiempo ??? 30\n"
|
|
1973
|
+
#~ "?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ??d."
|
|
1886
1974
|
|
|
1887
|
-
|
|
1888
|
-
#~ "
|
|
1889
|
-
#~ "
|
|
1890
|
-
#~ msgstr ""
|
|
1891
|
-
#~ "El balance de sumas y saldos solo puede calcularse si la compañía "
|
|
1892
|
-
#~ "seleccionada tiene una y solo una cuenta de ganancias."
|
|
1975
|
+
#, python-format
|
|
1976
|
+
#~ msgid "Age ??? 30 d."
|
|
1977
|
+
#~ msgstr "Tiempo ??? 30 d."
|
|
1893
1978
|
|
|
1894
1979
|
#~ msgid ""
|
|
1895
|
-
#~ "
|
|
1896
|
-
#~ "
|
|
1897
|
-
#~ msgstr "
|
|
1898
|
-
|
|
1899
|
-
#~
|
|
1900
|
-
#~ msgstr "Centro de Costos"
|
|
1901
|
-
|
|
1902
|
-
#~ msgid "Account Code"
|
|
1903
|
-
#~ msgstr "Cuenta"
|
|
1904
|
-
|
|
1905
|
-
#~ msgid "Account ID"
|
|
1906
|
-
#~ msgstr "Nº Cuenta"
|
|
1907
|
-
|
|
1908
|
-
#~ msgid "Account Type"
|
|
1909
|
-
#~ msgstr "Tipo de Cuenta"
|
|
1910
|
-
|
|
1911
|
-
#~ msgid "Age 120 Days"
|
|
1912
|
-
#~ msgstr "120 días"
|
|
1980
|
+
#~ "Age ??? 60\n"
|
|
1981
|
+
#~ " d."
|
|
1982
|
+
#~ msgstr ""
|
|
1983
|
+
#~ "Tiempo ??? 60\n"
|
|
1984
|
+
#~ "?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ??d."
|
|
1913
1985
|
|
|
1914
|
-
|
|
1915
|
-
#~
|
|
1986
|
+
#, python-format
|
|
1987
|
+
#~ msgid "Age ??? 60 d."
|
|
1988
|
+
#~ msgstr "Tiempo ??? 60 d."
|
|
1916
1989
|
|
|
1917
|
-
#~ msgid "
|
|
1918
|
-
#~
|
|
1990
|
+
#~ msgid ""
|
|
1991
|
+
#~ "Age ??? 90\n"
|
|
1992
|
+
#~ " d."
|
|
1993
|
+
#~ msgstr ""
|
|
1994
|
+
#~ "Tiempo ??? 90\n"
|
|
1995
|
+
#~ "?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ??d."
|
|
1919
1996
|
|
|
1920
|
-
|
|
1921
|
-
#~
|
|
1997
|
+
#, python-format
|
|
1998
|
+
#~ msgid "Age ??? 90 d."
|
|
1999
|
+
#~ msgstr "Tiempo ??? 90 d."
|
|
1922
2000
|
|
|
1923
|
-
#~ msgid "
|
|
1924
|
-
#~ msgstr "
|
|
2001
|
+
#~ msgid "Last Modified on"
|
|
2002
|
+
#~ msgstr "??ltima modificaci??n en"
|
|
1925
2003
|
|
|
1926
|
-
#~ msgid "
|
|
1927
|
-
#~ msgstr "
|
|
2004
|
+
#~ msgid "Not Only One Unaffected Earnings Account"
|
|
2005
|
+
#~ msgstr "No solo una cuenta de ganancias no afectadas"
|
|
1928
2006
|
|
|
1929
|
-
#~ msgid "
|
|
1930
|
-
#~ msgstr "
|
|
2007
|
+
#~ msgid "Filter analytic tags"
|
|
2008
|
+
#~ msgstr "Filtrar por etiquetas anal??ticas"
|
|
1931
2009
|
|
|
1932
|
-
|
|
1933
|
-
#~
|
|
2010
|
+
#, python-format
|
|
2011
|
+
#~ msgid "Print"
|
|
2012
|
+
#~ msgstr "Imprimir"
|
|
1934
2013
|
|
|
1935
|
-
#~ msgid "
|
|
1936
|
-
#~ msgstr "
|
|
2014
|
+
#~ msgid "Show Analytic Tags"
|
|
2015
|
+
#~ msgstr "Mostrar etiquetas anal??ticas"
|
|
1937
2016
|
|
|
1938
|
-
|
|
1939
|
-
#~
|
|
2017
|
+
#, python-format
|
|
2018
|
+
#~ msgid "Show analytic tags"
|
|
2019
|
+
#~ msgstr "Mostrar etiquetas anal??ticas"
|
|
1940
2020
|
|
|
1941
|
-
#~ msgid "Child
|
|
2021
|
+
#~ msgid "Child Accounts"
|
|
1942
2022
|
#~ msgstr "Cuentas Hijas"
|
|
1943
2023
|
|
|
1944
|
-
#~ msgid "
|
|
1945
|
-
#~ msgstr "
|
|
1946
|
-
|
|
1947
|
-
#~ msgid "Cost Center"
|
|
1948
|
-
#~ msgstr "Centro de Costos"
|
|
1949
|
-
|
|
1950
|
-
#~ msgid "Cumul Age 120 Days"
|
|
1951
|
-
#~ msgstr "Acumulado a 120 días"
|
|
1952
|
-
|
|
1953
|
-
#~ msgid "Cumul Age 30 Days"
|
|
1954
|
-
#~ msgstr "Acumulado a 30 días"
|
|
1955
|
-
|
|
1956
|
-
#~ msgid "Cumul Age 60 Days"
|
|
1957
|
-
#~ msgstr "Acumulado a 60 días"
|
|
1958
|
-
|
|
1959
|
-
#~ msgid "Cumul Age 90 Days"
|
|
1960
|
-
#~ msgstr "Acumulado a 90 días"
|
|
1961
|
-
|
|
1962
|
-
#~ msgid "Cumul Amount Residual"
|
|
1963
|
-
#~ msgstr "Cantidad Residual Acumulada"
|
|
1964
|
-
|
|
1965
|
-
#~ msgid "Cumul Balance"
|
|
1966
|
-
#~ msgstr "Saldo Acumulado"
|
|
2024
|
+
#~ msgid "Computed Accounts"
|
|
2025
|
+
#~ msgstr "Cuentas Calculadas"
|
|
1967
2026
|
|
|
1968
|
-
#~ msgid "
|
|
1969
|
-
#~
|
|
1970
|
-
|
|
1971
|
-
#~
|
|
1972
|
-
#~
|
|
1973
|
-
|
|
1974
|
-
#~
|
|
1975
|
-
#~
|
|
1976
|
-
|
|
1977
|
-
#~
|
|
1978
|
-
#~
|
|
1979
|
-
|
|
1980
|
-
#~
|
|
1981
|
-
#~
|
|
1982
|
-
|
|
1983
|
-
#~
|
|
1984
|
-
#~
|
|
1985
|
-
|
|
1986
|
-
#~
|
|
1987
|
-
|
|
2027
|
+
#~ msgid ""
|
|
2028
|
+
#~ "Computed Accounts: Use when the account group have codes\n"
|
|
2029
|
+
#~ " that represent prefixes of the actual accounts.\n"
|
|
2030
|
+
#~ "\n"
|
|
2031
|
+
#~ " Child Accounts: Use when your account groups are hierarchical.\n"
|
|
2032
|
+
#~ "\n"
|
|
2033
|
+
#~ " No hierarchy: Use to display just the accounts, without any "
|
|
2034
|
+
#~ "grouping.\n"
|
|
2035
|
+
#~ " "
|
|
2036
|
+
#~ msgstr ""
|
|
2037
|
+
#~ "Cuentas Calculadas: Usar cuando el grupo de cuentas tiene c??digos \n"
|
|
2038
|
+
#~ " que representan prefijos de las cuentas reales.\n"
|
|
2039
|
+
#~ "\n"
|
|
2040
|
+
#~ " Cuentas Hijas: Usar cuando los grupos de cuentas son jer??"
|
|
2041
|
+
#~ "rquicos.\n"
|
|
2042
|
+
#~ "\n"
|
|
2043
|
+
#~ " Sin jerarqu??a: Usar para mostrar s??lo las cuentas, sin ninguna "
|
|
2044
|
+
#~ "agrupaci??n.\n"
|
|
2045
|
+
#~ " "
|
|
2046
|
+
|
|
2047
|
+
#~ msgid "Hierarchy On"
|
|
2048
|
+
#~ msgstr "Jerarqu??a en"
|
|
2049
|
+
|
|
2050
|
+
#~ msgid "No hierarchy"
|
|
2051
|
+
#~ msgstr "Sin jerarqu??a"
|