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,7 +6,7 @@ msgid ""
|
|
|
6
6
|
msgstr ""
|
|
7
7
|
"Project-Id-Version: Odoo Server 13.0\n"
|
|
8
8
|
"Report-Msgid-Bugs-To: \n"
|
|
9
|
-
"PO-Revision-Date: 2022-
|
|
9
|
+
"PO-Revision-Date: 2022-09-26 05:07+0000\n"
|
|
10
10
|
"Last-Translator: Ignacio Buioli <ibuioli@gmail.com>\n"
|
|
11
11
|
"Language-Team: none\n"
|
|
12
12
|
"Language: es_AR\n"
|
|
@@ -52,6 +52,19 @@ msgstr "91 - 120 d."
|
|
|
52
52
|
msgid "<b>Taxes summary</b>"
|
|
53
53
|
msgstr "<b>Resumen de Impuestos</b>"
|
|
54
54
|
|
|
55
|
+
#. module: account_financial_report
|
|
56
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.trial_balance_wizard
|
|
57
|
+
msgid ""
|
|
58
|
+
"<i class=\"fa fa-exclamation-triangle mr-3\"/>\n"
|
|
59
|
+
" Duplicate amounts may be shown because more than one "
|
|
60
|
+
"analytical account may be defined in the journal items."
|
|
61
|
+
msgstr ""
|
|
62
|
+
|
|
63
|
+
#. module: account_financial_report
|
|
64
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
65
|
+
msgid "<span class=\"o_form_label\">Intervals configuration</span>"
|
|
66
|
+
msgstr ""
|
|
67
|
+
|
|
55
68
|
#. module: account_financial_report
|
|
56
69
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.aged_partner_balance_wizard
|
|
57
70
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
|
|
@@ -76,6 +89,7 @@ msgid "Abstract XLSX Account Financial Report"
|
|
|
76
89
|
msgstr "Informe XLSX Financiero Abstracto de la Cuenta"
|
|
77
90
|
|
|
78
91
|
#. module: account_financial_report
|
|
92
|
+
#. odoo-python
|
|
79
93
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
80
94
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
81
95
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
@@ -87,17 +101,21 @@ msgstr "Informe XLSX Financiero Abstracto de la Cuenta"
|
|
|
87
101
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
88
102
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
89
103
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
90
|
-
#, python-format
|
|
91
104
|
msgid "Account"
|
|
92
105
|
msgstr "Cuenta"
|
|
93
106
|
|
|
107
|
+
#. module: account_financial_report
|
|
108
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__account_age_report_config_id
|
|
109
|
+
msgid "Account Age Report Config"
|
|
110
|
+
msgstr ""
|
|
111
|
+
|
|
94
112
|
#. module: account_financial_report
|
|
95
113
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__account_code_from
|
|
96
114
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__account_code_from
|
|
97
115
|
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__account_code_from
|
|
98
116
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__account_code_from
|
|
99
117
|
msgid "Account Code From"
|
|
100
|
-
msgstr "
|
|
118
|
+
msgstr "C??digo de Cuenta de"
|
|
101
119
|
|
|
102
120
|
#. module: account_financial_report
|
|
103
121
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__account_code_to
|
|
@@ -105,7 +123,7 @@ msgstr "Código de Cuenta de"
|
|
|
105
123
|
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__account_code_to
|
|
106
124
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__account_code_to
|
|
107
125
|
msgid "Account Code To"
|
|
108
|
-
msgstr "
|
|
126
|
+
msgstr "C??digo de Cuenta Para"
|
|
109
127
|
|
|
110
128
|
#. module: account_financial_report
|
|
111
129
|
#: model:ir.model,name:account_financial_report.model_account_group
|
|
@@ -113,24 +131,24 @@ msgid "Account Group"
|
|
|
113
131
|
msgstr "Grupo de cuentas"
|
|
114
132
|
|
|
115
133
|
#. module: account_financial_report
|
|
134
|
+
#. odoo-python
|
|
116
135
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
117
|
-
#, python-format
|
|
118
136
|
msgid "Account Name"
|
|
119
137
|
msgstr "Cuenta"
|
|
120
138
|
|
|
121
139
|
#. module: account_financial_report
|
|
140
|
+
#. odoo-python
|
|
122
141
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
123
142
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
124
|
-
#, python-format
|
|
125
143
|
msgid "Account at 0 filter"
|
|
126
144
|
msgstr "Filtrar por Cuenta a 0"
|
|
127
145
|
|
|
128
146
|
#. module: account_financial_report
|
|
147
|
+
#. odoo-python
|
|
129
148
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
130
149
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
131
150
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
132
151
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
133
|
-
#, python-format
|
|
134
152
|
msgid "Account balance at 0 filter"
|
|
135
153
|
msgstr "Balance de Cuenta en filtro 0"
|
|
136
154
|
|
|
@@ -142,80 +160,77 @@ msgstr "Cuentas"
|
|
|
142
160
|
#. module: account_financial_report
|
|
143
161
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__centralize
|
|
144
162
|
msgid "Activate centralization"
|
|
145
|
-
msgstr "Activar
|
|
163
|
+
msgstr "Activar centralizaci??n"
|
|
146
164
|
|
|
147
165
|
#. module: account_financial_report
|
|
148
166
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
|
|
149
167
|
msgid "Additional Filtering"
|
|
150
168
|
msgstr "Filtros Adicionales"
|
|
151
169
|
|
|
170
|
+
#. module: account_financial_report
|
|
171
|
+
#: model:ir.actions.act_window,name:account_financial_report.action_aged_partner_report_configuration
|
|
172
|
+
msgid "Age Partner Report Configuration"
|
|
173
|
+
msgstr ""
|
|
174
|
+
|
|
152
175
|
#. module: account_financial_report
|
|
153
176
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
154
177
|
msgid ""
|
|
155
178
|
"Age ≤ 120\n"
|
|
156
|
-
"
|
|
179
|
+
" d."
|
|
157
180
|
msgstr ""
|
|
158
|
-
"Antigüedad ≤ 120\n"
|
|
159
|
-
" d."
|
|
160
181
|
|
|
161
182
|
#. module: account_financial_report
|
|
183
|
+
#. odoo-python
|
|
162
184
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
163
|
-
#, python-format
|
|
164
185
|
msgid "Age ≤ 120 d."
|
|
165
|
-
msgstr "
|
|
186
|
+
msgstr ""
|
|
166
187
|
|
|
167
188
|
#. module: account_financial_report
|
|
168
189
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
169
190
|
msgid ""
|
|
170
191
|
"Age ≤ 30\n"
|
|
171
|
-
"
|
|
192
|
+
" d."
|
|
172
193
|
msgstr ""
|
|
173
|
-
"Antigüedad ≤ 30\n"
|
|
174
|
-
" d."
|
|
175
194
|
|
|
176
195
|
#. module: account_financial_report
|
|
196
|
+
#. odoo-python
|
|
177
197
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
178
|
-
#, python-format
|
|
179
198
|
msgid "Age ≤ 30 d."
|
|
180
|
-
msgstr "
|
|
199
|
+
msgstr ""
|
|
181
200
|
|
|
182
201
|
#. module: account_financial_report
|
|
183
202
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
184
203
|
msgid ""
|
|
185
204
|
"Age ≤ 60\n"
|
|
186
|
-
"
|
|
205
|
+
" d."
|
|
187
206
|
msgstr ""
|
|
188
|
-
"Antigüedad ≤ 60\n"
|
|
189
|
-
" d."
|
|
190
207
|
|
|
191
208
|
#. module: account_financial_report
|
|
209
|
+
#. odoo-python
|
|
192
210
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
193
|
-
#, python-format
|
|
194
211
|
msgid "Age ≤ 60 d."
|
|
195
|
-
msgstr "
|
|
212
|
+
msgstr ""
|
|
196
213
|
|
|
197
214
|
#. module: account_financial_report
|
|
198
215
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
199
216
|
msgid ""
|
|
200
217
|
"Age ≤ 90\n"
|
|
201
|
-
"
|
|
218
|
+
" d."
|
|
202
219
|
msgstr ""
|
|
203
|
-
"Antigüedad ≤ 90\n"
|
|
204
|
-
" d."
|
|
205
220
|
|
|
206
221
|
#. module: account_financial_report
|
|
222
|
+
#. odoo-python
|
|
207
223
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
208
|
-
#, python-format
|
|
209
224
|
msgid "Age ≤ 90 d."
|
|
210
|
-
msgstr "
|
|
225
|
+
msgstr ""
|
|
211
226
|
|
|
212
227
|
#. module: account_financial_report
|
|
228
|
+
#. odoo-python
|
|
213
229
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
214
230
|
#: model:ir.actions.act_window,name:account_financial_report.action_aged_partner_balance_wizard
|
|
215
231
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_aged_partner_balance_html
|
|
216
232
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_aged_partner_balance_qweb
|
|
217
233
|
#: model:ir.ui.menu,name:account_financial_report.menu_aged_partner_balance_wizard
|
|
218
|
-
#, python-format
|
|
219
234
|
msgid "Aged Partner Balance"
|
|
220
235
|
msgstr "Saldo vencidos de empresa"
|
|
221
236
|
|
|
@@ -245,8 +260,8 @@ msgid "Aged Partner Balance XLSX"
|
|
|
245
260
|
msgstr "Saldo vencidos de empresa XLSX"
|
|
246
261
|
|
|
247
262
|
#. module: account_financial_report
|
|
263
|
+
#. odoo-python
|
|
248
264
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
249
|
-
#, python-format
|
|
250
265
|
msgid "All"
|
|
251
266
|
msgstr "Todos"
|
|
252
267
|
|
|
@@ -269,6 +284,7 @@ msgid "All Posted Entries"
|
|
|
269
284
|
msgstr "Todos los Asientos Asentados"
|
|
270
285
|
|
|
271
286
|
#. module: account_financial_report
|
|
287
|
+
#. odoo-python
|
|
272
288
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
273
289
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
274
290
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
@@ -277,11 +293,11 @@ msgstr "Todos los Asientos Asentados"
|
|
|
277
293
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
278
294
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
279
295
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
280
|
-
#, python-format
|
|
281
296
|
msgid "All entries"
|
|
282
297
|
msgstr "Todos los asientos"
|
|
283
298
|
|
|
284
299
|
#. module: account_financial_report
|
|
300
|
+
#. odoo-python
|
|
285
301
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
286
302
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
287
303
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
@@ -290,7 +306,6 @@ msgstr "Todos los asientos"
|
|
|
290
306
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
291
307
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
292
308
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
293
|
-
#, python-format
|
|
294
309
|
msgid "All posted entries"
|
|
295
310
|
msgstr "Todos los asientos asentados"
|
|
296
311
|
|
|
@@ -300,24 +315,30 @@ msgid "Amount Cur."
|
|
|
300
315
|
msgstr "Importe Inicial."
|
|
301
316
|
|
|
302
317
|
#. module: account_financial_report
|
|
318
|
+
#. odoo-python
|
|
303
319
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
304
|
-
#, python-format
|
|
305
320
|
msgid "Amount Currency"
|
|
306
321
|
msgstr "Moneda de Total"
|
|
307
322
|
|
|
308
323
|
#. module: account_financial_report
|
|
324
|
+
#. odoo-python
|
|
309
325
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
310
326
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
311
|
-
#, python-format
|
|
312
327
|
msgid "Amount cur."
|
|
313
328
|
msgstr "Total Act."
|
|
314
329
|
|
|
315
330
|
#. module: account_financial_report
|
|
331
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_move_line__analytic_account_ids
|
|
332
|
+
#: model:ir.model.fields.selection,name:account_financial_report.selection__trial_balance_report_wizard__grouped_by__analytic_account
|
|
333
|
+
msgid "Analytic Account"
|
|
334
|
+
msgstr "Cuenta Anal??tica"
|
|
335
|
+
|
|
336
|
+
#. module: account_financial_report
|
|
337
|
+
#. odoo-python
|
|
316
338
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
317
339
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
msgstr "Cuenta Analítica"
|
|
340
|
+
msgid "Analytic Distribution"
|
|
341
|
+
msgstr ""
|
|
321
342
|
|
|
322
343
|
#. module: account_financial_report
|
|
323
344
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
|
|
@@ -332,20 +353,20 @@ msgid "Base Amount"
|
|
|
332
353
|
msgstr "Basados en"
|
|
333
354
|
|
|
334
355
|
#. module: account_financial_report
|
|
356
|
+
#. odoo-python
|
|
335
357
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
336
|
-
#, python-format
|
|
337
358
|
msgid "Base Balance"
|
|
338
359
|
msgstr "Base Imponible"
|
|
339
360
|
|
|
340
361
|
#. module: account_financial_report
|
|
362
|
+
#. odoo-python
|
|
341
363
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
342
|
-
#, python-format
|
|
343
364
|
msgid "Base Credit"
|
|
344
365
|
msgstr "Haber"
|
|
345
366
|
|
|
346
367
|
#. module: account_financial_report
|
|
368
|
+
#. odoo-python
|
|
347
369
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
348
|
-
#, python-format
|
|
349
370
|
msgid "Base Debit"
|
|
350
371
|
msgstr "Total Debe"
|
|
351
372
|
|
|
@@ -356,8 +377,8 @@ msgid "Based On"
|
|
|
356
377
|
msgstr "Basados en"
|
|
357
378
|
|
|
358
379
|
#. module: account_financial_report
|
|
380
|
+
#. odoo-python
|
|
359
381
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
360
|
-
#, python-format
|
|
361
382
|
msgid "Based on"
|
|
362
383
|
msgstr "Basados en"
|
|
363
384
|
|
|
@@ -372,9 +393,9 @@ msgid "Cancel"
|
|
|
372
393
|
msgstr "Cancelar"
|
|
373
394
|
|
|
374
395
|
#. module: account_financial_report
|
|
396
|
+
#. odoo-python
|
|
375
397
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
376
398
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
377
|
-
#, python-format
|
|
378
399
|
msgid "Centralize filter"
|
|
379
400
|
msgstr "Centralizar el filtro"
|
|
380
401
|
|
|
@@ -383,27 +404,24 @@ msgstr "Centralizar el filtro"
|
|
|
383
404
|
msgid "Centralized"
|
|
384
405
|
msgstr "Centralizado"
|
|
385
406
|
|
|
386
|
-
#. module: account_financial_report
|
|
387
|
-
#: model:ir.model.fields.selection,name:account_financial_report.selection__trial_balance_report_wizard__hierarchy_on__relation
|
|
388
|
-
msgid "Child Accounts"
|
|
389
|
-
msgstr "Cuentas Hijas"
|
|
390
|
-
|
|
391
407
|
#. module: account_financial_report
|
|
392
408
|
#: model:ir.model.fields,field_description:account_financial_report.field_account_group__group_child_ids
|
|
393
409
|
msgid "Child Groups"
|
|
394
410
|
msgstr "Grupos Hijos"
|
|
395
411
|
|
|
396
412
|
#. module: account_financial_report
|
|
413
|
+
#. odoo-python
|
|
397
414
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
398
415
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
399
416
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
400
417
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
401
|
-
#, python-format
|
|
402
418
|
msgid "Code"
|
|
403
|
-
msgstr "
|
|
419
|
+
msgstr "C??digo"
|
|
404
420
|
|
|
405
421
|
#. module: account_financial_report
|
|
422
|
+
#. odoo-python
|
|
406
423
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
424
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__company_id
|
|
407
425
|
#: model:ir.model.fields,field_description:account_financial_report.field_account_financial_report_abstract_wizard__company_id
|
|
408
426
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__company_id
|
|
409
427
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__company_id
|
|
@@ -411,9 +429,8 @@ msgstr "Código"
|
|
|
411
429
|
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__company_id
|
|
412
430
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__company_id
|
|
413
431
|
#: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__company_id
|
|
414
|
-
#, python-format
|
|
415
432
|
msgid "Company"
|
|
416
|
-
msgstr "
|
|
433
|
+
msgstr "Compa????a"
|
|
417
434
|
|
|
418
435
|
#. module: account_financial_report
|
|
419
436
|
#: model:ir.model.fields,field_description:account_financial_report.field_account_group__compute_account_ids
|
|
@@ -421,32 +438,18 @@ msgid "Compute accounts"
|
|
|
421
438
|
msgstr "Cuentas calculadas"
|
|
422
439
|
|
|
423
440
|
#. module: account_financial_report
|
|
424
|
-
#: model:ir.model
|
|
425
|
-
msgid "
|
|
426
|
-
msgstr "
|
|
441
|
+
#: model:ir.model,name:account_financial_report.model_res_config_settings
|
|
442
|
+
msgid "Config Settings"
|
|
443
|
+
msgstr ""
|
|
427
444
|
|
|
428
445
|
#. module: account_financial_report
|
|
429
|
-
#:
|
|
430
|
-
msgid ""
|
|
431
|
-
"Computed Accounts: Use when the account group have codes\n"
|
|
432
|
-
" that represent prefixes of the actual accounts.\n"
|
|
433
|
-
"\n"
|
|
434
|
-
" Child Accounts: Use when your account groups are hierarchical.\n"
|
|
435
|
-
"\n"
|
|
436
|
-
" No hierarchy: Use to display just the accounts, without any "
|
|
437
|
-
"grouping.\n"
|
|
438
|
-
" "
|
|
446
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
447
|
+
msgid "Configurations"
|
|
439
448
|
msgstr ""
|
|
440
|
-
"Cuentas Calculadas: Usar cuando el grupo de cuentas tiene códigos \n"
|
|
441
|
-
" que representan prefijos de las cuentas reales.\n"
|
|
442
|
-
"\n"
|
|
443
|
-
" Cuentas Hijas: Usar cuando los grupos de cuentas son jerárquicos.\n"
|
|
444
|
-
"\n"
|
|
445
|
-
" Sin jerarquía: Usar para mostrar sólo las cuentas, sin ninguna "
|
|
446
|
-
"agrupación.\n"
|
|
447
|
-
" "
|
|
448
449
|
|
|
449
450
|
#. module: account_financial_report
|
|
451
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__create_uid
|
|
452
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__create_uid
|
|
450
453
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__create_uid
|
|
451
454
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__create_uid
|
|
452
455
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__create_uid
|
|
@@ -457,6 +460,8 @@ msgid "Created by"
|
|
|
457
460
|
msgstr "Creado por"
|
|
458
461
|
|
|
459
462
|
#. module: account_financial_report
|
|
463
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__create_date
|
|
464
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__create_date
|
|
460
465
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__create_date
|
|
461
466
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__create_date
|
|
462
467
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__create_date
|
|
@@ -467,6 +472,7 @@ msgid "Created on"
|
|
|
467
472
|
msgstr "Creado en"
|
|
468
473
|
|
|
469
474
|
#. module: account_financial_report
|
|
475
|
+
#. odoo-python
|
|
470
476
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
471
477
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
472
478
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
@@ -475,57 +481,60 @@ msgstr "Creado en"
|
|
|
475
481
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
476
482
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
477
483
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
478
|
-
#, python-format
|
|
479
484
|
msgid "Credit"
|
|
480
|
-
msgstr "
|
|
485
|
+
msgstr "Cr??dito"
|
|
481
486
|
|
|
482
487
|
#. module: account_financial_report
|
|
488
|
+
#. odoo-python
|
|
489
|
+
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
490
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
491
|
+
msgid "Cumul cur."
|
|
492
|
+
msgstr "Moneda Acumulada."
|
|
493
|
+
|
|
494
|
+
#. module: account_financial_report
|
|
495
|
+
#. odoo-python
|
|
483
496
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
484
497
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
485
|
-
#, python-format
|
|
486
498
|
msgid "Cumul. Bal."
|
|
487
499
|
msgstr "Saldo Acumu."
|
|
488
500
|
|
|
489
501
|
#. module: account_financial_report
|
|
490
|
-
|
|
502
|
+
#. odoo-python
|
|
491
503
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
492
|
-
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
493
|
-
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
494
504
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
495
505
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
496
|
-
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
497
|
-
#, python-format
|
|
498
506
|
msgid "Cur."
|
|
499
507
|
msgstr "Actual."
|
|
500
508
|
|
|
501
509
|
#. module: account_financial_report
|
|
510
|
+
#. odoo-python
|
|
502
511
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
503
512
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
504
|
-
#, python-format
|
|
505
513
|
msgid "Cur. Original"
|
|
506
514
|
msgstr "Acum. Inicial"
|
|
507
515
|
|
|
508
516
|
#. module: account_financial_report
|
|
517
|
+
#. odoo-python
|
|
509
518
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
510
519
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
511
|
-
#, python-format
|
|
512
520
|
msgid "Cur. Residual"
|
|
513
521
|
msgstr "Acum. Residual"
|
|
514
522
|
|
|
515
523
|
#. module: account_financial_report
|
|
524
|
+
#. odoo-python
|
|
516
525
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
517
|
-
#, python-format
|
|
518
526
|
msgid "Currency"
|
|
519
527
|
msgstr "Moneda"
|
|
520
528
|
|
|
521
529
|
#. module: account_financial_report
|
|
530
|
+
#. odoo-python
|
|
522
531
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
523
532
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
524
|
-
#, python-format
|
|
525
533
|
msgid "Current"
|
|
526
534
|
msgstr "Actual"
|
|
527
535
|
|
|
528
536
|
#. module: account_financial_report
|
|
537
|
+
#. odoo-python
|
|
529
538
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
530
539
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
531
540
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
@@ -535,7 +544,6 @@ msgstr "Actual"
|
|
|
535
544
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
536
545
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
537
546
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
538
|
-
#, python-format
|
|
539
547
|
msgid "Date"
|
|
540
548
|
msgstr "Fecha"
|
|
541
549
|
|
|
@@ -562,17 +570,17 @@ msgid "Date To"
|
|
|
562
570
|
msgstr "Fecha final"
|
|
563
571
|
|
|
564
572
|
#. module: account_financial_report
|
|
573
|
+
#. odoo-python
|
|
565
574
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
566
575
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
567
576
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_filters
|
|
568
577
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
569
|
-
#, python-format
|
|
570
578
|
msgid "Date at filter"
|
|
571
579
|
msgstr "Filtro Fecha"
|
|
572
580
|
|
|
573
581
|
#. module: account_financial_report
|
|
582
|
+
#. odoo-python
|
|
574
583
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
575
|
-
#, python-format
|
|
576
584
|
msgid "Date from"
|
|
577
585
|
msgstr "Desde"
|
|
578
586
|
|
|
@@ -585,22 +593,23 @@ msgid "Date range"
|
|
|
585
593
|
msgstr "Periodo"
|
|
586
594
|
|
|
587
595
|
#. module: account_financial_report
|
|
596
|
+
#. odoo-python
|
|
588
597
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
589
598
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
590
599
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
591
600
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
592
601
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
593
|
-
#, python-format
|
|
594
602
|
msgid "Date range filter"
|
|
595
603
|
msgstr "Filtro periodo"
|
|
596
604
|
|
|
597
605
|
#. module: account_financial_report
|
|
606
|
+
#. odoo-python
|
|
598
607
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
599
|
-
#, python-format
|
|
600
608
|
msgid "Date to"
|
|
601
609
|
msgstr "Hasta"
|
|
602
610
|
|
|
603
611
|
#. module: account_financial_report
|
|
612
|
+
#. odoo-python
|
|
604
613
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
605
614
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
606
615
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
@@ -609,17 +618,16 @@ msgstr "Hasta"
|
|
|
609
618
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
610
619
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
611
620
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
612
|
-
#, python-format
|
|
613
621
|
msgid "Debit"
|
|
614
|
-
msgstr "
|
|
622
|
+
msgstr "D??bito"
|
|
615
623
|
|
|
616
624
|
#. module: account_financial_report
|
|
625
|
+
#. odoo-python
|
|
617
626
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
618
627
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
|
|
619
628
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
620
|
-
#, python-format
|
|
621
629
|
msgid "Description"
|
|
622
|
-
msgstr "
|
|
630
|
+
msgstr "Descripci??n"
|
|
623
631
|
|
|
624
632
|
#. module: account_financial_report
|
|
625
633
|
#: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__tax_detail
|
|
@@ -627,29 +635,12 @@ msgid "Detail Taxes"
|
|
|
627
635
|
msgstr "Detalle de impuestos"
|
|
628
636
|
|
|
629
637
|
#. module: account_financial_report
|
|
630
|
-
#: model:ir.model.fields,field_description:account_financial_report.
|
|
631
|
-
#: model:ir.model.fields,field_description:account_financial_report.
|
|
632
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_account_group__display_name
|
|
633
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_account_move_line__display_name
|
|
638
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__display_name
|
|
639
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__display_name
|
|
634
640
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__display_name
|
|
635
641
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__display_name
|
|
636
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_ir_actions_report__display_name
|
|
637
642
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__display_name
|
|
638
643
|
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__display_name
|
|
639
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_aged_partner_balance_xlsx__display_name
|
|
640
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_general_ledger_xlsx__display_name
|
|
641
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_journal_ledger_xlsx__display_name
|
|
642
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_open_items_xlsx__display_name
|
|
643
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_trial_balance_xlsx__display_name
|
|
644
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_vat_report_xlsx__display_name
|
|
645
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_abstract_report__display_name
|
|
646
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_abstract_report_xlsx__display_name
|
|
647
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_aged_partner_balance__display_name
|
|
648
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_general_ledger__display_name
|
|
649
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_journal_ledger__display_name
|
|
650
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_open_items__display_name
|
|
651
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_trial_balance__display_name
|
|
652
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_vat_report__display_name
|
|
653
644
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__display_name
|
|
654
645
|
#: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__display_name
|
|
655
646
|
msgid "Display Name"
|
|
@@ -664,9 +655,9 @@ msgid ""
|
|
|
664
655
|
"setup through chart of accounts will display initial and final balance in "
|
|
665
656
|
"that currency."
|
|
666
657
|
msgstr ""
|
|
667
|
-
"Mostrar moneda extranjera para
|
|
668
|
-
"moneda de la cuenta no
|
|
669
|
-
"
|
|
658
|
+
"Mostrar moneda extranjera para l??neas de movimiento contable, a menos que "
|
|
659
|
+
"la moneda de la cuenta no est?? configurada a trav??s del plan de cuentas "
|
|
660
|
+
"mostrar?? el saldo inicial y final en esa moneda."
|
|
670
661
|
|
|
671
662
|
#. module: account_financial_report
|
|
672
663
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__hide_parent_hierarchy_level
|
|
@@ -692,9 +683,9 @@ msgstr ""
|
|
|
692
683
|
" vencimiento"
|
|
693
684
|
|
|
694
685
|
#. module: account_financial_report
|
|
686
|
+
#. odoo-python
|
|
695
687
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
696
688
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
697
|
-
#, python-format
|
|
698
689
|
msgid "Due date"
|
|
699
690
|
msgstr "Fecha vencimiento"
|
|
700
691
|
|
|
@@ -726,12 +717,12 @@ msgid "Ending account in a range"
|
|
|
726
717
|
msgstr "Cuenta final en un rango"
|
|
727
718
|
|
|
728
719
|
#. module: account_financial_report
|
|
720
|
+
#. odoo-python
|
|
729
721
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
730
722
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
731
723
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
732
724
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_ending_cumul
|
|
733
725
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
734
|
-
#, python-format
|
|
735
726
|
msgid "Ending balance"
|
|
736
727
|
msgstr "Saldo final"
|
|
737
728
|
|
|
@@ -745,12 +736,13 @@ msgstr ""
|
|
|
745
736
|
" cur."
|
|
746
737
|
|
|
747
738
|
#. module: account_financial_report
|
|
739
|
+
#. odoo-python
|
|
748
740
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
749
|
-
#, python-format
|
|
750
741
|
msgid "Entries sorted by"
|
|
751
742
|
msgstr "Asientos ordenados por"
|
|
752
743
|
|
|
753
744
|
#. module: account_financial_report
|
|
745
|
+
#. odoo-python
|
|
754
746
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
755
747
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
756
748
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
@@ -759,20 +751,18 @@ msgstr "Asientos ordenados por"
|
|
|
759
751
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
760
752
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
761
753
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
762
|
-
#, python-format
|
|
763
754
|
msgid "Entry"
|
|
764
755
|
msgstr "Asiento"
|
|
765
756
|
|
|
766
757
|
#. module: account_financial_report
|
|
758
|
+
#. odoo-python
|
|
767
759
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
768
|
-
#, python-format
|
|
769
760
|
msgid "Entry number"
|
|
770
|
-
msgstr "
|
|
761
|
+
msgstr "N??mero de asiento"
|
|
771
762
|
|
|
772
763
|
#. module: account_financial_report
|
|
773
|
-
#.
|
|
764
|
+
#. odoo-javascript
|
|
774
765
|
#: code:addons/account_financial_report/static/src/xml/report.xml:0
|
|
775
|
-
#, python-format
|
|
776
766
|
msgid "Export"
|
|
777
767
|
msgstr "Exportar"
|
|
778
768
|
|
|
@@ -808,13 +798,7 @@ msgstr "Filtro cuentas"
|
|
|
808
798
|
#. module: account_financial_report
|
|
809
799
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
|
|
810
800
|
msgid "Filter analytic accounts"
|
|
811
|
-
msgstr "Filtrar por cuentas
|
|
812
|
-
|
|
813
|
-
#. module: account_financial_report
|
|
814
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__analytic_tag_ids
|
|
815
|
-
#: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
|
|
816
|
-
msgid "Filter analytic tags"
|
|
817
|
-
msgstr "Filtrar por etiquetas analíticas"
|
|
801
|
+
msgstr "Filtrar por cuentas anal??ticas"
|
|
818
802
|
|
|
819
803
|
#. module: account_financial_report
|
|
820
804
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__cost_center_ids
|
|
@@ -840,13 +824,18 @@ msgstr "Filtrar socios"
|
|
|
840
824
|
msgid "Foreign Currency"
|
|
841
825
|
msgstr "Moneda Extranjera"
|
|
842
826
|
|
|
827
|
+
#. module: account_financial_report
|
|
828
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
|
|
829
|
+
msgid "Format"
|
|
830
|
+
msgstr ""
|
|
831
|
+
|
|
843
832
|
#. module: account_financial_report
|
|
844
833
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.aged_partner_balance_wizard
|
|
845
834
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
|
|
846
835
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.open_items_wizard
|
|
847
836
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.trial_balance_wizard
|
|
848
837
|
msgid "From Code"
|
|
849
|
-
msgstr "Desde
|
|
838
|
+
msgstr "Desde C??digo"
|
|
850
839
|
|
|
851
840
|
#. module: account_financial_report
|
|
852
841
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
@@ -855,17 +844,17 @@ msgid "From:"
|
|
|
855
844
|
msgstr "Desde:"
|
|
856
845
|
|
|
857
846
|
#. module: account_financial_report
|
|
847
|
+
#. odoo-python
|
|
858
848
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
859
849
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
860
850
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
msgstr "Desde: %s A: %s"
|
|
851
|
+
msgid "From: %(date_from)s To: %(date_to)s"
|
|
852
|
+
msgstr "Desde: %(date_from)s Hasta: %(date_to)s"
|
|
864
853
|
|
|
865
854
|
#. module: account_financial_report
|
|
866
855
|
#: model:ir.model.fields,field_description:account_financial_report.field_account_group__complete_code
|
|
867
856
|
msgid "Full Code"
|
|
868
|
-
msgstr "
|
|
857
|
+
msgstr "C??digo Completo"
|
|
869
858
|
|
|
870
859
|
#. module: account_financial_report
|
|
871
860
|
#: model:ir.model.fields,field_description:account_financial_report.field_account_group__complete_name
|
|
@@ -879,13 +868,13 @@ msgid "Fy Start Date"
|
|
|
879
868
|
msgstr "Fecha Inicio"
|
|
880
869
|
|
|
881
870
|
#. module: account_financial_report
|
|
871
|
+
#. odoo-python
|
|
882
872
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
883
873
|
#: model:ir.actions.act_window,name:account_financial_report.act_action_general_ledger_wizard_partner_relation
|
|
884
874
|
#: model:ir.actions.act_window,name:account_financial_report.action_general_ledger_wizard
|
|
885
875
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_general_ledger_html
|
|
886
876
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_general_ledger_qweb
|
|
887
877
|
#: model:ir.ui.menu,name:account_financial_report.menu_general_ledger_wizard
|
|
888
|
-
#, python-format
|
|
889
878
|
msgid "General Ledger"
|
|
890
879
|
msgstr "Libro mayor"
|
|
891
880
|
|
|
@@ -929,13 +918,26 @@ msgid "Group entries by"
|
|
|
929
918
|
msgstr "Agrupar por"
|
|
930
919
|
|
|
931
920
|
#. module: account_financial_report
|
|
921
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__grouped_by
|
|
922
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__grouped_by
|
|
923
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__grouped_by
|
|
924
|
+
msgid "Grouped By"
|
|
925
|
+
msgstr "Agrupar por"
|
|
926
|
+
|
|
927
|
+
#. module: account_financial_report
|
|
928
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
929
|
+
msgid ""
|
|
930
|
+
"Here you can set the intervals that will appear on the Aged Partner Balance."
|
|
931
|
+
msgstr ""
|
|
932
|
+
|
|
933
|
+
#. module: account_financial_report
|
|
934
|
+
#. odoo-python
|
|
932
935
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
933
936
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
934
937
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
935
938
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
936
939
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
937
940
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
938
|
-
#, python-format
|
|
939
941
|
msgid "Hide"
|
|
940
942
|
msgstr "Ocultar"
|
|
941
943
|
|
|
@@ -953,37 +955,15 @@ msgstr "Ocultar cuentas a 0"
|
|
|
953
955
|
#. module: account_financial_report
|
|
954
956
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__show_hierarchy_level
|
|
955
957
|
msgid "Hierarchy Levels to display"
|
|
956
|
-
msgstr "Niveles de
|
|
957
|
-
|
|
958
|
-
#. module: account_financial_report
|
|
959
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__hierarchy_on
|
|
960
|
-
msgid "Hierarchy On"
|
|
961
|
-
msgstr "Jerarquía en"
|
|
958
|
+
msgstr "Niveles de Jerarqu??a a mostrar"
|
|
962
959
|
|
|
963
960
|
#. module: account_financial_report
|
|
964
|
-
#: model:ir.model.fields,field_description:account_financial_report.
|
|
965
|
-
#: model:ir.model.fields,field_description:account_financial_report.
|
|
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
|
|
961
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__id
|
|
962
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__id
|
|
968
963
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__id
|
|
969
964
|
#: 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
965
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__id
|
|
972
966
|
#: 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
967
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__id
|
|
988
968
|
#: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__id
|
|
989
969
|
msgid "ID"
|
|
@@ -995,8 +975,19 @@ msgid ""
|
|
|
995
975
|
"If flagged, no details will be displayed in the General Ledger report (the "
|
|
996
976
|
"webkit one only), only centralized amounts per period."
|
|
997
977
|
msgstr ""
|
|
998
|
-
"Si se marca, no se
|
|
999
|
-
"webkit), solo importes centralizados por
|
|
978
|
+
"Si se marca, no se mostrar??n detalles en el informe del libro mayor (solo "
|
|
979
|
+
"el webkit), solo importes centralizados por per??odo."
|
|
980
|
+
|
|
981
|
+
#. module: account_financial_report
|
|
982
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__inferior_limit
|
|
983
|
+
msgid "Inferior Limit"
|
|
984
|
+
msgstr ""
|
|
985
|
+
|
|
986
|
+
#. module: account_financial_report
|
|
987
|
+
#. odoo-python
|
|
988
|
+
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
989
|
+
msgid "Inferior Limit must be greather than zero"
|
|
990
|
+
msgstr ""
|
|
1000
991
|
|
|
1001
992
|
#. module: account_financial_report
|
|
1002
993
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
@@ -1017,14 +1008,21 @@ msgstr ""
|
|
|
1017
1008
|
" inicial"
|
|
1018
1009
|
|
|
1019
1010
|
#. module: account_financial_report
|
|
1011
|
+
#. odoo-python
|
|
1020
1012
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1021
1013
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1022
1014
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1023
|
-
#, python-format
|
|
1024
1015
|
msgid "Initial balance"
|
|
1025
1016
|
msgstr "Saldo inicial"
|
|
1026
1017
|
|
|
1027
1018
|
#. module: account_financial_report
|
|
1019
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__age_partner_config_id
|
|
1020
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_res_config_settings__age_partner_config_id
|
|
1021
|
+
msgid "Intervals configuration"
|
|
1022
|
+
msgstr ""
|
|
1023
|
+
|
|
1024
|
+
#. module: account_financial_report
|
|
1025
|
+
#. odoo-python
|
|
1028
1026
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1029
1027
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1030
1028
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
@@ -1033,7 +1031,6 @@ msgstr "Saldo inicial"
|
|
|
1033
1031
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
1034
1032
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1035
1033
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1036
|
-
#, python-format
|
|
1037
1034
|
msgid "Journal"
|
|
1038
1035
|
msgstr "Diario"
|
|
1039
1036
|
|
|
@@ -1048,11 +1045,11 @@ msgid "Journal Items Domain"
|
|
|
1048
1045
|
msgstr "Dominio de los Apuntes Contables"
|
|
1049
1046
|
|
|
1050
1047
|
#. module: account_financial_report
|
|
1048
|
+
#. odoo-python
|
|
1051
1049
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1052
1050
|
#: model:ir.actions.act_window,name:account_financial_report.action_journal_ledger_wizard
|
|
1053
1051
|
#: model:ir.actions.report,name:account_financial_report.action_print_journal_ledger_wizard_html
|
|
1054
1052
|
#: model:ir.ui.menu,name:account_financial_report.menu_journal_ledger_wizard
|
|
1055
|
-
#, python-format
|
|
1056
1053
|
msgid "Journal Ledger"
|
|
1057
1054
|
msgstr "Libro diario"
|
|
1058
1055
|
|
|
@@ -1082,43 +1079,27 @@ msgid "Journal Ledger XLSX Report"
|
|
|
1082
1079
|
msgstr "Informe XLSX del Libro del Diario"
|
|
1083
1080
|
|
|
1084
1081
|
#. module: account_financial_report
|
|
1082
|
+
#. odoo-python
|
|
1085
1083
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1086
1084
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__journal_ids
|
|
1087
1085
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.journal_ledger_wizard
|
|
1088
|
-
#, python-format
|
|
1089
1086
|
msgid "Journals"
|
|
1090
1087
|
msgstr "Diarios"
|
|
1091
1088
|
|
|
1092
1089
|
#. module: account_financial_report
|
|
1093
|
-
#: model:ir.model.fields,field_description:account_financial_report.
|
|
1094
|
-
#: model:ir.model.fields,field_description: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
|
-
|
|
1101
|
-
|
|
1102
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_aged_partner_balance_xlsx____last_update
|
|
1103
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_general_ledger_xlsx____last_update
|
|
1104
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_journal_ledger_xlsx____last_update
|
|
1105
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_open_items_xlsx____last_update
|
|
1106
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_trial_balance_xlsx____last_update
|
|
1107
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_vat_report_xlsx____last_update
|
|
1108
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_abstract_report____last_update
|
|
1109
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_abstract_report_xlsx____last_update
|
|
1110
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_aged_partner_balance____last_update
|
|
1111
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_general_ledger____last_update
|
|
1112
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_journal_ledger____last_update
|
|
1113
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_open_items____last_update
|
|
1114
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_trial_balance____last_update
|
|
1115
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_vat_report____last_update
|
|
1116
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard____last_update
|
|
1117
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard____last_update
|
|
1118
|
-
msgid "Last Modified on"
|
|
1119
|
-
msgstr "Última modificación en"
|
|
1090
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_financial_report_abstract_wizard__label_text_limit
|
|
1091
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__label_text_limit
|
|
1092
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__label_text_limit
|
|
1093
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__label_text_limit
|
|
1094
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__label_text_limit
|
|
1095
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__label_text_limit
|
|
1096
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__label_text_limit
|
|
1097
|
+
msgid "Label Text Limit"
|
|
1098
|
+
msgstr ""
|
|
1120
1099
|
|
|
1121
1100
|
#. module: account_financial_report
|
|
1101
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__write_uid
|
|
1102
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__write_uid
|
|
1122
1103
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__write_uid
|
|
1123
1104
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__write_uid
|
|
1124
1105
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__write_uid
|
|
@@ -1126,9 +1107,11 @@ msgstr "Última modificación en"
|
|
|
1126
1107
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__write_uid
|
|
1127
1108
|
#: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__write_uid
|
|
1128
1109
|
msgid "Last Updated by"
|
|
1129
|
-
msgstr "
|
|
1110
|
+
msgstr "??ltima modificaci??n por"
|
|
1130
1111
|
|
|
1131
1112
|
#. module: account_financial_report
|
|
1113
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__write_date
|
|
1114
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__write_date
|
|
1132
1115
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__write_date
|
|
1133
1116
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__write_date
|
|
1134
1117
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__write_date
|
|
@@ -1136,7 +1119,7 @@ msgstr "Última modificación por"
|
|
|
1136
1119
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__write_date
|
|
1137
1120
|
#: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__write_date
|
|
1138
1121
|
msgid "Last Updated on"
|
|
1139
|
-
msgstr "
|
|
1122
|
+
msgstr "??ltima actualizaci??n en"
|
|
1140
1123
|
|
|
1141
1124
|
#. module: account_financial_report
|
|
1142
1125
|
#: model:ir.model.fields,field_description:account_financial_report.field_account_group__level
|
|
@@ -1145,18 +1128,48 @@ msgid "Level"
|
|
|
1145
1128
|
msgstr "Nivel"
|
|
1146
1129
|
|
|
1147
1130
|
#. module: account_financial_report
|
|
1131
|
+
#. odoo-python
|
|
1148
1132
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1149
|
-
#, python-format
|
|
1150
1133
|
msgid "Level %s"
|
|
1151
1134
|
msgstr "Nivel %s"
|
|
1152
1135
|
|
|
1153
1136
|
#. module: account_financial_report
|
|
1137
|
+
#. odoo-python
|
|
1154
1138
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1155
1139
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__limit_hierarchy_level
|
|
1156
1140
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1157
|
-
#, python-format
|
|
1158
1141
|
msgid "Limit hierarchy levels"
|
|
1159
|
-
msgstr "Limitar niveles de
|
|
1142
|
+
msgstr "Limitar niveles de jerarqu??a"
|
|
1143
|
+
|
|
1144
|
+
#. module: account_financial_report
|
|
1145
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__line_ids
|
|
1146
|
+
msgid "Line"
|
|
1147
|
+
msgstr ""
|
|
1148
|
+
|
|
1149
|
+
#. module: account_financial_report
|
|
1150
|
+
#. odoo-python
|
|
1151
|
+
#: code:addons/account_financial_report/report/general_ledger.py:0
|
|
1152
|
+
#: code:addons/account_financial_report/report/open_items.py:0
|
|
1153
|
+
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1154
|
+
#: code:addons/account_financial_report/report/trial_balance.py:0
|
|
1155
|
+
msgid "Missing Partner"
|
|
1156
|
+
msgstr ""
|
|
1157
|
+
|
|
1158
|
+
#. module: account_financial_report
|
|
1159
|
+
#. odoo-python
|
|
1160
|
+
#: code:addons/account_financial_report/report/open_items.py:0
|
|
1161
|
+
msgid "Missing Salesperson"
|
|
1162
|
+
msgstr ""
|
|
1163
|
+
|
|
1164
|
+
#. module: account_financial_report
|
|
1165
|
+
#: model:ir.model,name:account_financial_report.model_account_age_report_configuration_line
|
|
1166
|
+
msgid "Model to set interval lines for Age partner balance report"
|
|
1167
|
+
msgstr ""
|
|
1168
|
+
|
|
1169
|
+
#. module: account_financial_report
|
|
1170
|
+
#: model:ir.model,name:account_financial_report.model_account_age_report_configuration
|
|
1171
|
+
msgid "Model to set intervals for Age partner balance report"
|
|
1172
|
+
msgstr ""
|
|
1160
1173
|
|
|
1161
1174
|
#. module: account_financial_report
|
|
1162
1175
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__move_target
|
|
@@ -1169,52 +1182,65 @@ msgid "Moves"
|
|
|
1169
1182
|
msgstr "Asientos"
|
|
1170
1183
|
|
|
1171
1184
|
#. module: account_financial_report
|
|
1185
|
+
#. odoo-python
|
|
1186
|
+
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1187
|
+
msgid "Must complete Configuration Lines"
|
|
1188
|
+
msgstr ""
|
|
1189
|
+
|
|
1190
|
+
#. module: account_financial_report
|
|
1191
|
+
#. odoo-python
|
|
1172
1192
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1173
1193
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1194
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__name
|
|
1195
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__name
|
|
1174
1196
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
|
|
1175
1197
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
1176
1198
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
1177
|
-
#, python-format
|
|
1178
1199
|
msgid "Name"
|
|
1179
1200
|
msgstr "Nombre"
|
|
1180
1201
|
|
|
1181
1202
|
#. module: account_financial_report
|
|
1203
|
+
#: model:ir.model.constraint,message:account_financial_report.constraint_account_age_report_configuration_line_unique_name_config_combination
|
|
1204
|
+
msgid "Name must be unique per report configuration"
|
|
1205
|
+
msgstr ""
|
|
1206
|
+
|
|
1207
|
+
#. module: account_financial_report
|
|
1208
|
+
#. odoo-python
|
|
1182
1209
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1183
1210
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
1184
|
-
#, python-format
|
|
1185
1211
|
msgid "Net"
|
|
1186
1212
|
msgstr "Neto"
|
|
1187
1213
|
|
|
1188
1214
|
#. module: account_financial_report
|
|
1215
|
+
#. odoo-python
|
|
1189
1216
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1190
1217
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1191
1218
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1192
1219
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1193
|
-
#, python-format
|
|
1194
1220
|
msgid "No"
|
|
1195
1221
|
msgstr "No"
|
|
1196
1222
|
|
|
1197
1223
|
#. module: account_financial_report
|
|
1224
|
+
#. odoo-python
|
|
1198
1225
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
1199
|
-
#, python-format
|
|
1200
1226
|
msgid "No group"
|
|
1201
1227
|
msgstr "Sin grupo"
|
|
1202
1228
|
|
|
1203
1229
|
#. module: account_financial_report
|
|
1204
|
-
|
|
1205
|
-
msgid "No hierarchy"
|
|
1206
|
-
msgstr "Sin jerarquía"
|
|
1207
|
-
|
|
1208
|
-
#. module: account_financial_report
|
|
1230
|
+
#. odoo-python
|
|
1209
1231
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1210
1232
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1211
|
-
#, python-format
|
|
1212
1233
|
msgid "No limit"
|
|
1213
|
-
msgstr "Sin
|
|
1234
|
+
msgstr "Sin l??mite"
|
|
1214
1235
|
|
|
1215
1236
|
#. module: account_financial_report
|
|
1237
|
+
#: model:ir.model.fields.selection,name:account_financial_report.selection__general_ledger_report_wizard__grouped_by__none
|
|
1238
|
+
msgid "None"
|
|
1239
|
+
msgstr "Ninguno"
|
|
1240
|
+
|
|
1241
|
+
#. module: account_financial_report
|
|
1242
|
+
#. odoo-python
|
|
1216
1243
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
1217
|
-
#, python-format
|
|
1218
1244
|
msgid "Not Posted"
|
|
1219
1245
|
msgstr "Sin Postear"
|
|
1220
1246
|
|
|
@@ -1224,10 +1250,9 @@ msgid "Not due"
|
|
|
1224
1250
|
msgstr "Deuda"
|
|
1225
1251
|
|
|
1226
1252
|
#. module: account_financial_report
|
|
1227
|
-
#:
|
|
1228
|
-
|
|
1229
|
-
|
|
1230
|
-
msgstr "No solo una cuenta de ganancias no afectadas"
|
|
1253
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
1254
|
+
msgid "OCA Aged Report Configuration"
|
|
1255
|
+
msgstr ""
|
|
1231
1256
|
|
|
1232
1257
|
#. module: account_financial_report
|
|
1233
1258
|
#: model:ir.ui.menu,name:account_financial_report.menu_oca_reports
|
|
@@ -1235,19 +1260,25 @@ msgid "OCA accounting reports"
|
|
|
1235
1260
|
msgstr "Informes de contabilidad OCA"
|
|
1236
1261
|
|
|
1237
1262
|
#. module: account_financial_report
|
|
1263
|
+
#. odoo-python
|
|
1238
1264
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1239
1265
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
1240
|
-
#, python-format
|
|
1241
1266
|
msgid "Older"
|
|
1242
1267
|
msgstr "Mayor"
|
|
1243
1268
|
|
|
1244
1269
|
#. module: account_financial_report
|
|
1270
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__only_one_unaffected_earnings_account
|
|
1271
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__only_one_unaffected_earnings_account
|
|
1272
|
+
msgid "Only One Unaffected Earnings Account"
|
|
1273
|
+
msgstr ""
|
|
1274
|
+
|
|
1275
|
+
#. module: account_financial_report
|
|
1276
|
+
#. odoo-python
|
|
1245
1277
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1246
1278
|
#: model:ir.actions.act_window,name:account_financial_report.action_open_items_wizard
|
|
1247
1279
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_open_items_html
|
|
1248
1280
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_open_items_qweb
|
|
1249
1281
|
#: model:ir.ui.menu,name:account_financial_report.menu_open_items_wizard
|
|
1250
|
-
#, python-format
|
|
1251
1282
|
msgid "Open Items"
|
|
1252
1283
|
msgstr "Partidas abiertas"
|
|
1253
1284
|
|
|
@@ -1287,13 +1318,14 @@ msgid "Options"
|
|
|
1287
1318
|
msgstr "Opciones"
|
|
1288
1319
|
|
|
1289
1320
|
#. module: account_financial_report
|
|
1321
|
+
#. odoo-python
|
|
1290
1322
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1291
1323
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1292
|
-
#, python-format
|
|
1293
1324
|
msgid "Original"
|
|
1294
1325
|
msgstr "Inicial"
|
|
1295
1326
|
|
|
1296
1327
|
#. module: account_financial_report
|
|
1328
|
+
#. odoo-python
|
|
1297
1329
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1298
1330
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1299
1331
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
@@ -1305,7 +1337,6 @@ msgstr "Inicial"
|
|
|
1305
1337
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1306
1338
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1307
1339
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
1308
|
-
#, python-format
|
|
1309
1340
|
msgid "Partner"
|
|
1310
1341
|
msgstr "Socio"
|
|
1311
1342
|
|
|
@@ -1319,33 +1350,49 @@ msgstr ""
|
|
|
1319
1350
|
" acumulado de Empresa"
|
|
1320
1351
|
|
|
1321
1352
|
#. module: account_financial_report
|
|
1353
|
+
#. odoo-python
|
|
1322
1354
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1323
|
-
#, python-format
|
|
1324
1355
|
msgid "Partner Initial balance"
|
|
1325
1356
|
msgstr "Saldo Inicial de empresa"
|
|
1326
1357
|
|
|
1327
1358
|
#. module: account_financial_report
|
|
1359
|
+
#: model:ir.model.fields.selection,name:account_financial_report.selection__open_items_report_wizard__grouped_by__salesperson
|
|
1360
|
+
msgid "Partner Salesperson"
|
|
1361
|
+
msgstr ""
|
|
1362
|
+
|
|
1363
|
+
#. module: account_financial_report
|
|
1364
|
+
#. odoo-python
|
|
1328
1365
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1329
|
-
#, python-format
|
|
1330
1366
|
msgid "Partner cumul aged balance"
|
|
1331
1367
|
msgstr "Saldo Acumulado de Empresa"
|
|
1332
1368
|
|
|
1333
1369
|
#. module: account_financial_report
|
|
1370
|
+
#. odoo-python
|
|
1334
1371
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1335
1372
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1336
1373
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_ending_cumul
|
|
1337
1374
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_ending_cumul
|
|
1338
|
-
#, python-format
|
|
1339
1375
|
msgid "Partner ending balance"
|
|
1340
1376
|
msgstr "Saldo final de empresa"
|
|
1341
1377
|
|
|
1378
|
+
#. module: account_financial_report
|
|
1379
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1380
|
+
msgid "Partner initial balance"
|
|
1381
|
+
msgstr "Saldo inicial del contacto"
|
|
1382
|
+
|
|
1383
|
+
#. module: account_financial_report
|
|
1384
|
+
#: model:ir.model.fields.selection,name:account_financial_report.selection__general_ledger_report_wizard__grouped_by__partners
|
|
1385
|
+
#: model:ir.model.fields.selection,name:account_financial_report.selection__open_items_report_wizard__grouped_by__partners
|
|
1386
|
+
msgid "Partners"
|
|
1387
|
+
msgstr "Contactos"
|
|
1388
|
+
|
|
1342
1389
|
#. module: account_financial_report
|
|
1343
1390
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__payable_accounts_only
|
|
1344
1391
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__payable_accounts_only
|
|
1345
1392
|
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__payable_accounts_only
|
|
1346
1393
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__payable_accounts_only
|
|
1347
1394
|
msgid "Payable Accounts Only"
|
|
1348
|
-
msgstr "
|
|
1395
|
+
msgstr "S??lo cuentas a pagar"
|
|
1349
1396
|
|
|
1350
1397
|
#. module: account_financial_report
|
|
1351
1398
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_account_ending_cumul
|
|
@@ -1353,9 +1400,9 @@ msgid "Percents"
|
|
|
1353
1400
|
msgstr "Porcentajes"
|
|
1354
1401
|
|
|
1355
1402
|
#. module: account_financial_report
|
|
1403
|
+
#. odoo-python
|
|
1356
1404
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1357
1405
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
1358
|
-
#, python-format
|
|
1359
1406
|
msgid "Period balance"
|
|
1360
1407
|
msgstr "Saldo de periodo"
|
|
1361
1408
|
|
|
@@ -1365,22 +1412,15 @@ msgid "Periods"
|
|
|
1365
1412
|
msgstr "Periodos"
|
|
1366
1413
|
|
|
1367
1414
|
#. module: account_financial_report
|
|
1415
|
+
#. odoo-python
|
|
1368
1416
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
1369
|
-
#, python-format
|
|
1370
1417
|
msgid "Posted"
|
|
1371
1418
|
msgstr "Posteado"
|
|
1372
1419
|
|
|
1373
1420
|
#. module: account_financial_report
|
|
1374
|
-
#.
|
|
1375
|
-
#: code:addons/account_financial_report/static/src/xml/report.xml:0
|
|
1376
|
-
#, python-format
|
|
1377
|
-
msgid "Print"
|
|
1378
|
-
msgstr "Imprimir"
|
|
1379
|
-
|
|
1380
|
-
#. module: account_financial_report
|
|
1421
|
+
#. odoo-python
|
|
1381
1422
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1382
1423
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1383
|
-
#, python-format
|
|
1384
1424
|
msgid "Rec."
|
|
1385
1425
|
msgstr "Num."
|
|
1386
1426
|
|
|
@@ -1390,7 +1430,7 @@ msgstr "Num."
|
|
|
1390
1430
|
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__receivable_accounts_only
|
|
1391
1431
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__receivable_accounts_only
|
|
1392
1432
|
msgid "Receivable Accounts Only"
|
|
1393
|
-
msgstr "
|
|
1433
|
+
msgstr "S??lo cuentas a cobrar"
|
|
1394
1434
|
|
|
1395
1435
|
#. module: account_financial_report
|
|
1396
1436
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
@@ -1412,57 +1452,57 @@ msgstr ""
|
|
|
1412
1452
|
" Etiqueta"
|
|
1413
1453
|
|
|
1414
1454
|
#. module: account_financial_report
|
|
1455
|
+
#. odoo-python
|
|
1415
1456
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1416
1457
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1417
1458
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1418
1459
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1419
1460
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1420
|
-
#, python-format
|
|
1421
1461
|
msgid "Ref - Label"
|
|
1422
1462
|
msgstr "Referencia"
|
|
1423
1463
|
|
|
1424
1464
|
#. module: account_financial_report
|
|
1425
1465
|
#: model:ir.model,name:account_financial_report.model_ir_actions_report
|
|
1426
1466
|
msgid "Report Action"
|
|
1427
|
-
msgstr "
|
|
1467
|
+
msgstr "Acci??n de Informe"
|
|
1428
1468
|
|
|
1429
1469
|
#. module: account_financial_report
|
|
1470
|
+
#. odoo-python
|
|
1430
1471
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1431
1472
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1432
1473
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_lines_header
|
|
1433
1474
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
1434
1475
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1435
|
-
#, python-format
|
|
1436
1476
|
msgid "Residual"
|
|
1437
1477
|
msgstr "Remanente"
|
|
1438
1478
|
|
|
1439
1479
|
#. module: account_financial_report
|
|
1480
|
+
#. odoo-python
|
|
1440
1481
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1441
1482
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1442
|
-
#, python-format
|
|
1443
1483
|
msgid "Sequence"
|
|
1444
1484
|
msgstr "Secuencia"
|
|
1445
1485
|
|
|
1446
1486
|
#. module: account_financial_report
|
|
1487
|
+
#. odoo-python
|
|
1447
1488
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1448
1489
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1449
1490
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1450
1491
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1451
1492
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
1452
1493
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1453
|
-
#, python-format
|
|
1454
1494
|
msgid "Show"
|
|
1455
1495
|
msgstr "Mostrar"
|
|
1456
1496
|
|
|
1457
1497
|
#. module: account_financial_report
|
|
1458
1498
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__show_cost_center
|
|
1459
1499
|
msgid "Show Analytic Account"
|
|
1460
|
-
msgstr "Mostrar Cuenta
|
|
1500
|
+
msgstr "Mostrar Cuenta Anal??tica"
|
|
1461
1501
|
|
|
1462
1502
|
#. module: account_financial_report
|
|
1463
1503
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__with_auto_sequence
|
|
1464
1504
|
msgid "Show Auto Sequence"
|
|
1465
|
-
msgstr "Mostrar Secuencia
|
|
1505
|
+
msgstr "Mostrar Secuencia Autom??tica"
|
|
1466
1506
|
|
|
1467
1507
|
#. module: account_financial_report
|
|
1468
1508
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__show_move_line_details
|
|
@@ -1470,31 +1510,27 @@ msgid "Show Move Line Details"
|
|
|
1470
1510
|
msgstr "Mostrar detalles de asientos"
|
|
1471
1511
|
|
|
1472
1512
|
#. module: account_financial_report
|
|
1473
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__show_partner_details
|
|
1474
1513
|
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__show_partner_details
|
|
1475
1514
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__show_partner_details
|
|
1476
1515
|
msgid "Show Partner Details"
|
|
1477
1516
|
msgstr "Mostrar detalles de empresa"
|
|
1478
1517
|
|
|
1479
1518
|
#. 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
|
|
1519
|
+
#. odoo-python
|
|
1488
1520
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1489
1521
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1490
1522
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1491
1523
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__foreign_currency
|
|
1492
1524
|
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__foreign_currency
|
|
1493
1525
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__foreign_currency
|
|
1494
|
-
#, python-format
|
|
1495
1526
|
msgid "Show foreign currency"
|
|
1496
1527
|
msgstr "Mostrar Moneda Extranjera"
|
|
1497
1528
|
|
|
1529
|
+
#. module: account_financial_report
|
|
1530
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__show_hierarchy
|
|
1531
|
+
msgid "Show hierarchy"
|
|
1532
|
+
msgstr ""
|
|
1533
|
+
|
|
1498
1534
|
#. module: account_financial_report
|
|
1499
1535
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__sort_option
|
|
1500
1536
|
msgid "Sort entries by"
|
|
@@ -1513,15 +1549,19 @@ msgstr "Fecha de inicio"
|
|
|
1513
1549
|
#. module: account_financial_report
|
|
1514
1550
|
#: model:ir.model.fields,help:account_financial_report.field_aged_partner_balance_report_wizard__account_code_from
|
|
1515
1551
|
#: 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
1552
|
#: model:ir.model.fields,help:account_financial_report.field_trial_balance_report_wizard__account_code_from
|
|
1518
1553
|
msgid "Starting account in a range"
|
|
1519
1554
|
msgstr "Cuenta inicial en un rango"
|
|
1520
1555
|
|
|
1521
1556
|
#. module: account_financial_report
|
|
1522
|
-
|
|
1557
|
+
#. odoo-python
|
|
1558
|
+
#: code:addons/account_financial_report/report/trial_balance.py:0
|
|
1559
|
+
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1560
|
+
msgid "TOTAL"
|
|
1561
|
+
msgstr ""
|
|
1562
|
+
|
|
1563
|
+
#. module: account_financial_report
|
|
1523
1564
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1524
|
-
#, python-format
|
|
1525
1565
|
msgid "Tags"
|
|
1526
1566
|
msgstr "Etiquetas"
|
|
1527
1567
|
|
|
@@ -1535,6 +1575,7 @@ msgid "Target Moves"
|
|
|
1535
1575
|
msgstr "Movimientos destino"
|
|
1536
1576
|
|
|
1537
1577
|
#. module: account_financial_report
|
|
1578
|
+
#. odoo-python
|
|
1538
1579
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1539
1580
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1540
1581
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
@@ -1544,14 +1585,13 @@ msgstr "Movimientos destino"
|
|
|
1544
1585
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1545
1586
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
1546
1587
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1547
|
-
#, python-format
|
|
1548
1588
|
msgid "Target moves filter"
|
|
1549
1589
|
msgstr "Filtro movimientos destino"
|
|
1550
1590
|
|
|
1551
1591
|
#. module: account_financial_report
|
|
1592
|
+
#. odoo-python
|
|
1552
1593
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1553
1594
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
1554
|
-
#, python-format
|
|
1555
1595
|
msgid "Tax"
|
|
1556
1596
|
msgstr "Impuesto"
|
|
1557
1597
|
|
|
@@ -1562,49 +1602,68 @@ msgid "Tax Amount"
|
|
|
1562
1602
|
msgstr "Total Impuestos"
|
|
1563
1603
|
|
|
1564
1604
|
#. module: account_financial_report
|
|
1605
|
+
#. odoo-python
|
|
1565
1606
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1566
|
-
#, python-format
|
|
1567
1607
|
msgid "Tax Balance"
|
|
1568
1608
|
msgstr "Saldo de Impuestos"
|
|
1569
1609
|
|
|
1570
1610
|
#. module: account_financial_report
|
|
1611
|
+
#. odoo-python
|
|
1571
1612
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1572
|
-
#, python-format
|
|
1573
1613
|
msgid "Tax Credit"
|
|
1574
|
-
msgstr "Impuesto
|
|
1614
|
+
msgstr "Impuesto Cr??dito"
|
|
1575
1615
|
|
|
1576
1616
|
#. module: account_financial_report
|
|
1617
|
+
#. odoo-python
|
|
1577
1618
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1578
|
-
#, python-format
|
|
1579
1619
|
msgid "Tax Debit"
|
|
1580
|
-
msgstr "Impuesto
|
|
1620
|
+
msgstr "Impuesto D??bito"
|
|
1581
1621
|
|
|
1582
1622
|
#. module: account_financial_report
|
|
1623
|
+
#. odoo-python
|
|
1583
1624
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1584
1625
|
#: model:ir.model.fields.selection,name:account_financial_report.selection__vat_report_wizard__based_on__taxgroups
|
|
1585
|
-
#, python-format
|
|
1586
1626
|
msgid "Tax Groups"
|
|
1587
1627
|
msgstr "Grupo de impuestos"
|
|
1588
1628
|
|
|
1589
1629
|
#. module: account_financial_report
|
|
1630
|
+
#. odoo-python
|
|
1631
|
+
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1632
|
+
msgid "Tax Initial balance"
|
|
1633
|
+
msgstr "Impuesto de saldo inicial"
|
|
1634
|
+
|
|
1635
|
+
#. module: account_financial_report
|
|
1636
|
+
#. odoo-python
|
|
1590
1637
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1591
1638
|
#: model:ir.model.fields.selection,name:account_financial_report.selection__vat_report_wizard__based_on__taxtags
|
|
1592
|
-
#, python-format
|
|
1593
1639
|
msgid "Tax Tags"
|
|
1594
1640
|
msgstr "Etiquetas de impuestos"
|
|
1595
1641
|
|
|
1596
1642
|
#. module: account_financial_report
|
|
1643
|
+
#. odoo-python
|
|
1644
|
+
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1645
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_ending_cumul
|
|
1646
|
+
msgid "Tax ending balance"
|
|
1647
|
+
msgstr "Impuesto de saldo final"
|
|
1648
|
+
|
|
1649
|
+
#. module: account_financial_report
|
|
1650
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1651
|
+
msgid "Tax initial balance"
|
|
1652
|
+
msgstr "Impuesto de saldo inicial"
|
|
1653
|
+
|
|
1654
|
+
#. module: account_financial_report
|
|
1655
|
+
#. odoo-python
|
|
1597
1656
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1598
1657
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1658
|
+
#: model:ir.model.fields.selection,name:account_financial_report.selection__general_ledger_report_wizard__grouped_by__taxes
|
|
1599
1659
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1600
1660
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1601
|
-
#, python-format
|
|
1602
1661
|
msgid "Taxes"
|
|
1603
1662
|
msgstr "Impuestos"
|
|
1604
1663
|
|
|
1605
1664
|
#. module: account_financial_report
|
|
1665
|
+
#. odoo-python
|
|
1606
1666
|
#: code:addons/account_financial_report/wizard/general_ledger_wizard.py:0
|
|
1607
|
-
#, python-format
|
|
1608
1667
|
msgid ""
|
|
1609
1668
|
"The Company in the General Ledger Report Wizard and in Date Range must be "
|
|
1610
1669
|
"the same."
|
|
@@ -1613,18 +1672,18 @@ msgstr ""
|
|
|
1613
1672
|
"fechas debe ser la misma."
|
|
1614
1673
|
|
|
1615
1674
|
#. module: account_financial_report
|
|
1675
|
+
#. odoo-python
|
|
1616
1676
|
#: code:addons/account_financial_report/wizard/trial_balance_wizard.py:0
|
|
1617
|
-
#, python-format
|
|
1618
1677
|
msgid ""
|
|
1619
1678
|
"The Company in the Trial Balance Report Wizard and in Date Range must be the "
|
|
1620
1679
|
"same."
|
|
1621
1680
|
msgstr ""
|
|
1622
|
-
"La empresa en el Asistente de informe de Balance de
|
|
1681
|
+
"La empresa en el Asistente de informe de Balance de comprobaci??n y en rango "
|
|
1623
1682
|
"de fechas debe ser la misma."
|
|
1624
1683
|
|
|
1625
1684
|
#. module: account_financial_report
|
|
1685
|
+
#. odoo-python
|
|
1626
1686
|
#: code:addons/account_financial_report/wizard/vat_report_wizard.py:0
|
|
1627
|
-
#, python-format
|
|
1628
1687
|
msgid ""
|
|
1629
1688
|
"The Company in the Vat Report Wizard and in Date Range must be the same."
|
|
1630
1689
|
msgstr ""
|
|
@@ -1632,16 +1691,24 @@ msgstr ""
|
|
|
1632
1691
|
"ser la misma."
|
|
1633
1692
|
|
|
1634
1693
|
#. module: account_financial_report
|
|
1694
|
+
#. odoo-python
|
|
1635
1695
|
#: code:addons/account_financial_report/wizard/trial_balance_wizard.py:0
|
|
1636
|
-
#, python-format
|
|
1637
1696
|
msgid "The hierarchy level to filter on must be greater than 0."
|
|
1638
|
-
msgstr "El nivel de
|
|
1697
|
+
msgstr "El nivel de jerarqu??a a filtrar debe ser mayor que 0."
|
|
1698
|
+
|
|
1699
|
+
#. module: account_financial_report
|
|
1700
|
+
#. odoo-python
|
|
1701
|
+
#: code:addons/account_financial_report/report/trial_balance.py:0
|
|
1702
|
+
msgid ""
|
|
1703
|
+
"There is a problem in the structure of the account groups. You may need to "
|
|
1704
|
+
"create some child group of %s."
|
|
1705
|
+
msgstr ""
|
|
1639
1706
|
|
|
1640
1707
|
#. module: account_financial_report
|
|
1641
1708
|
#: model:ir.model.fields,help:account_financial_report.field_general_ledger_report_wizard__domain
|
|
1642
1709
|
msgid "This domain will be used to select specific domain for Journal Items"
|
|
1643
1710
|
msgstr ""
|
|
1644
|
-
"Este dominio se
|
|
1711
|
+
"Este dominio se utilizar?? para seleccionar un dominio espec??fico para los "
|
|
1645
1712
|
"Apuntes Contables"
|
|
1646
1713
|
|
|
1647
1714
|
#. module: account_financial_report
|
|
@@ -1655,17 +1722,19 @@ msgid "To:"
|
|
|
1655
1722
|
msgstr "A:"
|
|
1656
1723
|
|
|
1657
1724
|
#. module: account_financial_report
|
|
1725
|
+
#. odoo-python
|
|
1726
|
+
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1658
1727
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_account_ending_cumul
|
|
1659
1728
|
msgid "Total"
|
|
1660
1729
|
msgstr "Total"
|
|
1661
1730
|
|
|
1662
1731
|
#. module: account_financial_report
|
|
1732
|
+
#. odoo-python
|
|
1663
1733
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1664
1734
|
#: model:ir.actions.act_window,name:account_financial_report.action_trial_balance_wizard
|
|
1665
1735
|
#: model:ir.actions.report,name:account_financial_report.action_report_trial_balance_html
|
|
1666
1736
|
#: model:ir.actions.report,name:account_financial_report.action_report_trial_balance_qweb
|
|
1667
1737
|
#: model:ir.ui.menu,name:account_financial_report.menu_trial_balance_wizard
|
|
1668
|
-
#, python-format
|
|
1669
1738
|
msgid "Trial Balance"
|
|
1670
1739
|
msgstr "Balance de Sumas y Saldos"
|
|
1671
1740
|
|
|
@@ -1677,7 +1746,7 @@ msgstr "Balance de Sumas y Saldos -"
|
|
|
1677
1746
|
#. module: account_financial_report
|
|
1678
1747
|
#: model:ir.model,name:account_financial_report.model_report_account_financial_report_trial_balance
|
|
1679
1748
|
msgid "Trial Balance Report"
|
|
1680
|
-
msgstr "Informe de Balance de
|
|
1749
|
+
msgstr "Informe de Balance de Comprobaci??n"
|
|
1681
1750
|
|
|
1682
1751
|
#. module: account_financial_report
|
|
1683
1752
|
#: model:ir.model,name:account_financial_report.model_trial_balance_report_wizard
|
|
@@ -1692,7 +1761,7 @@ msgstr "Balance de Sumas y Saldos XLSX"
|
|
|
1692
1761
|
#. module: account_financial_report
|
|
1693
1762
|
#: model:ir.model,name:account_financial_report.model_report_a_f_r_report_trial_balance_xlsx
|
|
1694
1763
|
msgid "Trial Balance XLSX Report"
|
|
1695
|
-
msgstr "Informe XLSX del Balance de
|
|
1764
|
+
msgstr "Informe XLSX del Balance de Comprobaci??n"
|
|
1696
1765
|
|
|
1697
1766
|
#. module: account_financial_report
|
|
1698
1767
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.trial_balance_wizard
|
|
@@ -1719,9 +1788,14 @@ msgid ""
|
|
|
1719
1788
|
"balance."
|
|
1720
1789
|
msgstr ""
|
|
1721
1790
|
"Use este filtro para ocultar las cuentas o empresas con saldo final 0. Si "
|
|
1722
|
-
"las empresas se filtran, los debe y haber totales no
|
|
1791
|
+
"las empresas se filtran, los debe y haber totales no coincidir??n con el "
|
|
1723
1792
|
"balance de sumas y saldos."
|
|
1724
1793
|
|
|
1794
|
+
#. module: account_financial_report
|
|
1795
|
+
#: model:ir.model.fields,help:account_financial_report.field_trial_balance_report_wizard__show_hierarchy
|
|
1796
|
+
msgid "Use when your account groups are hierarchical"
|
|
1797
|
+
msgstr ""
|
|
1798
|
+
|
|
1725
1799
|
#. module: account_financial_report
|
|
1726
1800
|
#: model:ir.actions.act_window,name:account_financial_report.action_vat_report_wizard
|
|
1727
1801
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_vat_report_html
|
|
@@ -1751,8 +1825,8 @@ msgid "VAT Report XLSX"
|
|
|
1751
1825
|
msgstr "Informe de impuestos XLSX"
|
|
1752
1826
|
|
|
1753
1827
|
#. module: account_financial_report
|
|
1828
|
+
#. odoo-python
|
|
1754
1829
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1755
|
-
#, python-format
|
|
1756
1830
|
msgid "Vat Report"
|
|
1757
1831
|
msgstr "Informe del IVA"
|
|
1758
1832
|
|
|
@@ -1782,8 +1856,8 @@ msgid ""
|
|
|
1782
1856
|
"When this option is enabled, the trial balance will not display accounts "
|
|
1783
1857
|
"that have initial balance = debit = credit = end balance = 0"
|
|
1784
1858
|
msgstr ""
|
|
1785
|
-
"Cuando habilite esta
|
|
1786
|
-
"cuentas que tengan saldo inicial =
|
|
1859
|
+
"Cuando habilite esta opci??n el balance de sumas y saldos no va a mostrar "
|
|
1860
|
+
"cuentas que tengan saldo inicial = d??bito = cr??dito = saldo final = 0"
|
|
1787
1861
|
|
|
1788
1862
|
#. module: account_financial_report
|
|
1789
1863
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__with_account_name
|
|
@@ -1791,22 +1865,27 @@ msgid "With Account Name"
|
|
|
1791
1865
|
msgstr "Cuenta con Nombre"
|
|
1792
1866
|
|
|
1793
1867
|
#. module: account_financial_report
|
|
1868
|
+
#. odoo-python
|
|
1869
|
+
#: code:addons/account_financial_report/report/trial_balance.py:0
|
|
1870
|
+
msgid "Without analytic account"
|
|
1871
|
+
msgstr ""
|
|
1872
|
+
|
|
1873
|
+
#. module: account_financial_report
|
|
1874
|
+
#. odoo-python
|
|
1794
1875
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1795
1876
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1796
1877
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1797
1878
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1798
|
-
#, python-format
|
|
1799
1879
|
msgid "Yes"
|
|
1800
1880
|
msgstr "Si"
|
|
1801
1881
|
|
|
1802
1882
|
#. module: account_financial_report
|
|
1883
|
+
#. odoo-python
|
|
1803
1884
|
#: code:addons/account_financial_report/report/general_ledger.py:0
|
|
1804
|
-
#, python-format
|
|
1805
1885
|
msgid "future"
|
|
1806
1886
|
msgstr "futuro"
|
|
1807
1887
|
|
|
1808
1888
|
#. module: account_financial_report
|
|
1809
|
-
#: model_terms:ir.ui.view,arch_db:account_financial_report.aged_partner_balance_wizard
|
|
1810
1889
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
|
|
1811
1890
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.journal_ledger_wizard
|
|
1812
1891
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.open_items_wizard
|
|
@@ -1855,6 +1934,108 @@ msgstr "ancho: 38.92%;"
|
|
|
1855
1934
|
msgid "width: 8.11%;"
|
|
1856
1935
|
msgstr "ancho: 8.11%;"
|
|
1857
1936
|
|
|
1937
|
+
#~ msgid ""
|
|
1938
|
+
#~ "Age ??? 120\n"
|
|
1939
|
+
#~ " d."
|
|
1940
|
+
#~ msgstr ""
|
|
1941
|
+
#~ "Antig??edad ??? 120\n"
|
|
1942
|
+
#~ " d."
|
|
1943
|
+
|
|
1944
|
+
#, python-format
|
|
1945
|
+
#~ msgid "Age ??? 120 d."
|
|
1946
|
+
#~ msgstr "Tiempo ??? 120 d."
|
|
1947
|
+
|
|
1948
|
+
#~ msgid ""
|
|
1949
|
+
#~ "Age ??? 30\n"
|
|
1950
|
+
#~ " d."
|
|
1951
|
+
#~ msgstr ""
|
|
1952
|
+
#~ "Antig??edad ??? 30\n"
|
|
1953
|
+
#~ " d."
|
|
1954
|
+
|
|
1955
|
+
#, python-format
|
|
1956
|
+
#~ msgid "Age ??? 30 d."
|
|
1957
|
+
#~ msgstr "Tiempo ??? 30 d."
|
|
1958
|
+
|
|
1959
|
+
#~ msgid ""
|
|
1960
|
+
#~ "Age ??? 60\n"
|
|
1961
|
+
#~ " d."
|
|
1962
|
+
#~ msgstr ""
|
|
1963
|
+
#~ "Antig??edad ??? 60\n"
|
|
1964
|
+
#~ " d."
|
|
1965
|
+
|
|
1966
|
+
#, python-format
|
|
1967
|
+
#~ msgid "Age ??? 60 d."
|
|
1968
|
+
#~ msgstr "Tiempo ??? 60 d."
|
|
1969
|
+
|
|
1970
|
+
#~ msgid ""
|
|
1971
|
+
#~ "Age ??? 90\n"
|
|
1972
|
+
#~ " d."
|
|
1973
|
+
#~ msgstr ""
|
|
1974
|
+
#~ "Antig??edad ??? 90\n"
|
|
1975
|
+
#~ " d."
|
|
1976
|
+
|
|
1977
|
+
#, python-format
|
|
1978
|
+
#~ msgid "Age ??? 90 d."
|
|
1979
|
+
#~ msgstr "Tiempo ??? 90 d."
|
|
1980
|
+
|
|
1981
|
+
#~ msgid "Last Modified on"
|
|
1982
|
+
#~ msgstr "??ltima modificaci??n en"
|
|
1983
|
+
|
|
1984
|
+
#~ msgid "Not Only One Unaffected Earnings Account"
|
|
1985
|
+
#~ msgstr "No Solo Una Cuenta de Ganancias No Afectada"
|
|
1986
|
+
|
|
1987
|
+
#~ msgid "Filter analytic tags"
|
|
1988
|
+
#~ msgstr "Filtrar por etiquetas anal??ticas"
|
|
1989
|
+
|
|
1990
|
+
#, python-format
|
|
1991
|
+
#~ msgid "Print"
|
|
1992
|
+
#~ msgstr "Imprimir"
|
|
1993
|
+
|
|
1994
|
+
#~ msgid "Show Analytic Tags"
|
|
1995
|
+
#~ msgstr "Mostrar Etiquetas Anal??ticas"
|
|
1996
|
+
|
|
1997
|
+
#, python-format
|
|
1998
|
+
#~ msgid "Show analytic tags"
|
|
1999
|
+
#~ msgstr "Mostrar etiquetas anal??ticas"
|
|
2000
|
+
|
|
2001
|
+
#~ msgid "Child Accounts"
|
|
2002
|
+
#~ msgstr "Cuentas Hijas"
|
|
2003
|
+
|
|
2004
|
+
#~ msgid "Computed Accounts"
|
|
2005
|
+
#~ msgstr "Cuentas Calculadas"
|
|
2006
|
+
|
|
2007
|
+
#~ msgid ""
|
|
2008
|
+
#~ "Computed Accounts: Use when the account group have codes\n"
|
|
2009
|
+
#~ " that represent prefixes of the actual accounts.\n"
|
|
2010
|
+
#~ "\n"
|
|
2011
|
+
#~ " Child Accounts: Use when your account groups are hierarchical.\n"
|
|
2012
|
+
#~ "\n"
|
|
2013
|
+
#~ " No hierarchy: Use to display just the accounts, without any "
|
|
2014
|
+
#~ "grouping.\n"
|
|
2015
|
+
#~ " "
|
|
2016
|
+
#~ msgstr ""
|
|
2017
|
+
#~ "Cuentas Calculadas: Usar cuando el grupo de cuentas tiene c??digos \n"
|
|
2018
|
+
#~ " que representan prefijos de las cuentas reales.\n"
|
|
2019
|
+
#~ "\n"
|
|
2020
|
+
#~ " Cuentas Hijas: Usar cuando los grupos de cuentas son jer??"
|
|
2021
|
+
#~ "rquicos.\n"
|
|
2022
|
+
#~ "\n"
|
|
2023
|
+
#~ " Sin jerarqu??a: Usar para mostrar s??lo las cuentas, sin ninguna "
|
|
2024
|
+
#~ "agrupaci??n.\n"
|
|
2025
|
+
#~ " "
|
|
2026
|
+
|
|
2027
|
+
#~ msgid "Hierarchy On"
|
|
2028
|
+
#~ msgstr "Jerarqu??a en"
|
|
2029
|
+
|
|
2030
|
+
#~ msgid "No hierarchy"
|
|
2031
|
+
#~ msgstr "Sin jerarqu??a"
|
|
2032
|
+
|
|
2033
|
+
#~ msgid "From: %s To: %s"
|
|
2034
|
+
#~ msgstr "Desde: %s A: %s"
|
|
2035
|
+
|
|
2036
|
+
#~ msgid "Not only one unaffected earnings account"
|
|
2037
|
+
#~ msgstr "No solo una cuenta de ganancias no afectadas"
|
|
2038
|
+
|
|
1858
2039
|
#~ msgid "Open Itemsr"
|
|
1859
2040
|
#~ msgstr "Abrir Itemsr"
|
|
1860
2041
|
|
|
@@ -1893,7 +2074,7 @@ msgstr "ancho: 8.11%;"
|
|
|
1893
2074
|
#~ "Trial Balance can be computed only if selected company have only one "
|
|
1894
2075
|
#~ "unaffected earnings account."
|
|
1895
2076
|
#~ msgstr ""
|
|
1896
|
-
#~ "El balance de sumas y saldos solo puede calcularse si la
|
|
2077
|
+
#~ "El balance de sumas y saldos solo puede calcularse si la compa????a "
|
|
1897
2078
|
#~ "seleccionada tiene una y solo una cuenta de ganancias."
|
|
1898
2079
|
|
|
1899
2080
|
#~ msgid ""
|