odoo-addon-account-financial-report 16.0.1.5.4.4__py3-none-any.whl → 16.0.1.6.0.1__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.
Potentially problematic release.
This version of odoo-addon-account-financial-report might be problematic. Click here for more details.
- odoo/addons/account_financial_report/README.rst +36 -1
- odoo/addons/account_financial_report/__manifest__.py +4 -1
- odoo/addons/account_financial_report/i18n/account_financial_report.pot +105 -5
- odoo/addons/account_financial_report/i18n/ar.po +129 -12
- odoo/addons/account_financial_report/i18n/ca.po +133 -13
- odoo/addons/account_financial_report/i18n/de.po +133 -16
- odoo/addons/account_financial_report/i18n/es.po +142 -13
- odoo/addons/account_financial_report/i18n/es_AR.po +133 -13
- odoo/addons/account_financial_report/i18n/es_MX.po +105 -5
- odoo/addons/account_financial_report/i18n/fr.po +133 -16
- odoo/addons/account_financial_report/i18n/fr_CH.po +129 -12
- odoo/addons/account_financial_report/i18n/fr_FR.po +133 -13
- odoo/addons/account_financial_report/i18n/hr.po +133 -13
- odoo/addons/account_financial_report/i18n/hr_HR.po +105 -5
- odoo/addons/account_financial_report/i18n/it.po +133 -16
- odoo/addons/account_financial_report/i18n/ja.po +105 -5
- odoo/addons/account_financial_report/i18n/nl.po +133 -16
- odoo/addons/account_financial_report/i18n/nl_NL.po +105 -5
- odoo/addons/account_financial_report/i18n/pt.po +129 -9
- odoo/addons/account_financial_report/i18n/pt_BR.po +133 -16
- odoo/addons/account_financial_report/i18n/ro.po +133 -16
- odoo/addons/account_financial_report/i18n/sv.po +133 -13
- odoo/addons/account_financial_report/i18n/tr.po +105 -5
- odoo/addons/account_financial_report/models/__init__.py +2 -0
- odoo/addons/account_financial_report/models/account_age_report_configuration.py +47 -0
- odoo/addons/account_financial_report/models/res_config_settings.py +14 -0
- odoo/addons/account_financial_report/readme/CONFIGURE.rst +26 -0
- odoo/addons/account_financial_report/readme/CONTRIBUTORS.rst +1 -0
- odoo/addons/account_financial_report/readme/DESCRIPTION.rst +4 -0
- odoo/addons/account_financial_report/report/aged_partner_balance.py +69 -8
- odoo/addons/account_financial_report/report/aged_partner_balance_xlsx.py +145 -104
- odoo/addons/account_financial_report/report/templates/aged_partner_balance.xml +428 -333
- odoo/addons/account_financial_report/security/ir.model.access.csv +2 -0
- odoo/addons/account_financial_report/security/security.xml +10 -0
- odoo/addons/account_financial_report/static/description/index.html +45 -21
- odoo/addons/account_financial_report/tests/__init__.py +1 -0
- odoo/addons/account_financial_report/tests/test_age_report_configuration.py +41 -0
- odoo/addons/account_financial_report/tests/test_aged_partner_balance.py +88 -7
- 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 +56 -0
- odoo/addons/account_financial_report/wizard/aged_partner_balance_wizard.py +4 -0
- odoo/addons/account_financial_report/wizard/aged_partner_balance_wizard_view.xml +2 -3
- {odoo_addon_account_financial_report-16.0.1.5.4.4.dist-info → odoo_addon_account_financial_report-16.0.1.6.0.1.dist-info}/METADATA +37 -2
- {odoo_addon_account_financial_report-16.0.1.5.4.4.dist-info → odoo_addon_account_financial_report-16.0.1.6.0.1.dist-info}/RECORD +46 -39
- {odoo_addon_account_financial_report-16.0.1.5.4.4.dist-info → odoo_addon_account_financial_report-16.0.1.6.0.1.dist-info}/WHEEL +0 -0
- {odoo_addon_account_financial_report-16.0.1.5.4.4.dist-info → odoo_addon_account_financial_report-16.0.1.6.0.1.dist-info}/top_level.txt +0 -0
|
@@ -53,6 +53,11 @@ msgstr "91 - 120 d."
|
|
|
53
53
|
msgid "<b>Taxes summary</b>"
|
|
54
54
|
msgstr "<b>Resumen de Impuestos</b>"
|
|
55
55
|
|
|
56
|
+
#. module: account_financial_report
|
|
57
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
58
|
+
msgid "<span class=\"o_form_label\">Intervals configuration</span>"
|
|
59
|
+
msgstr "<span class=\"o_form_label\">Configuración de intervalos</span>"
|
|
60
|
+
|
|
56
61
|
#. module: account_financial_report
|
|
57
62
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.aged_partner_balance_wizard
|
|
58
63
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
|
|
@@ -93,6 +98,11 @@ msgstr "Extracto XLSX Account Financial Report"
|
|
|
93
98
|
msgid "Account"
|
|
94
99
|
msgstr "Cuenta"
|
|
95
100
|
|
|
101
|
+
#. module: account_financial_report
|
|
102
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__account_age_report_config_id
|
|
103
|
+
msgid "Account Age Report Config"
|
|
104
|
+
msgstr "Configuración del informe de calidad de deuda"
|
|
105
|
+
|
|
96
106
|
#. module: account_financial_report
|
|
97
107
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__account_code_from
|
|
98
108
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__account_code_from
|
|
@@ -154,14 +164,17 @@ msgstr "Activar centralización"
|
|
|
154
164
|
msgid "Additional Filtering"
|
|
155
165
|
msgstr "Filtrado adicional"
|
|
156
166
|
|
|
167
|
+
#. module: account_financial_report
|
|
168
|
+
#: model:ir.actions.act_window,name:account_financial_report.action_aged_partner_report_configuration
|
|
169
|
+
msgid "Age Partner Report Configuration"
|
|
170
|
+
msgstr "Configuración Calidad de deuda"
|
|
171
|
+
|
|
157
172
|
#. module: account_financial_report
|
|
158
173
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
159
174
|
msgid ""
|
|
160
175
|
"Age ≤ 120\n"
|
|
161
|
-
"
|
|
176
|
+
" d."
|
|
162
177
|
msgstr ""
|
|
163
|
-
"Tiempo ≤ 120\n"
|
|
164
|
-
"· · · · · · · · · · · · · · · · · · · · · · · ·d."
|
|
165
178
|
|
|
166
179
|
#. module: account_financial_report
|
|
167
180
|
#. odoo-python
|
|
@@ -174,10 +187,8 @@ msgstr "Tiempo ≤ 120 d."
|
|
|
174
187
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
175
188
|
msgid ""
|
|
176
189
|
"Age ≤ 30\n"
|
|
177
|
-
"
|
|
190
|
+
" d."
|
|
178
191
|
msgstr ""
|
|
179
|
-
"Tiempo ≤ 30\n"
|
|
180
|
-
"· · · · · · · · · · · · · · · · · · · · · · · ·d."
|
|
181
192
|
|
|
182
193
|
#. module: account_financial_report
|
|
183
194
|
#. odoo-python
|
|
@@ -190,10 +201,8 @@ msgstr "Tiempo ≤ 30 d."
|
|
|
190
201
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
191
202
|
msgid ""
|
|
192
203
|
"Age ≤ 60\n"
|
|
193
|
-
"
|
|
204
|
+
" d."
|
|
194
205
|
msgstr ""
|
|
195
|
-
"Tiempo ≤ 60\n"
|
|
196
|
-
"· · · · · · · · · · · · · · · · · · · · · · · ·d."
|
|
197
206
|
|
|
198
207
|
#. module: account_financial_report
|
|
199
208
|
#. odoo-python
|
|
@@ -206,10 +215,8 @@ msgstr "Tiempo ≤ 60 d."
|
|
|
206
215
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
207
216
|
msgid ""
|
|
208
217
|
"Age ≤ 90\n"
|
|
209
|
-
"
|
|
218
|
+
" d."
|
|
210
219
|
msgstr ""
|
|
211
|
-
"Tiempo ≤ 90\n"
|
|
212
|
-
"· · · · · · · · · · · · · · · · · · · · · · · ·d."
|
|
213
220
|
|
|
214
221
|
#. module: account_financial_report
|
|
215
222
|
#. odoo-python
|
|
@@ -427,6 +434,7 @@ msgstr "Código"
|
|
|
427
434
|
#. module: account_financial_report
|
|
428
435
|
#. odoo-python
|
|
429
436
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
437
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__company_id
|
|
430
438
|
#: model:ir.model.fields,field_description:account_financial_report.field_account_financial_report_abstract_wizard__company_id
|
|
431
439
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__company_id
|
|
432
440
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__company_id
|
|
@@ -444,6 +452,18 @@ msgid "Compute accounts"
|
|
|
444
452
|
msgstr "Cuentas calculadas"
|
|
445
453
|
|
|
446
454
|
#. module: account_financial_report
|
|
455
|
+
#: model:ir.model,name:account_financial_report.model_res_config_settings
|
|
456
|
+
msgid "Config Settings"
|
|
457
|
+
msgstr "Opciones de configuración"
|
|
458
|
+
|
|
459
|
+
#. module: account_financial_report
|
|
460
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
461
|
+
msgid "Configurations"
|
|
462
|
+
msgstr "Configuraciones"
|
|
463
|
+
|
|
464
|
+
#. module: account_financial_report
|
|
465
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__create_uid
|
|
466
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__create_uid
|
|
447
467
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__create_uid
|
|
448
468
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__create_uid
|
|
449
469
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__create_uid
|
|
@@ -454,6 +474,8 @@ msgid "Created by"
|
|
|
454
474
|
msgstr "Creado por"
|
|
455
475
|
|
|
456
476
|
#. module: account_financial_report
|
|
477
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__create_date
|
|
478
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__create_date
|
|
457
479
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__create_date
|
|
458
480
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__create_date
|
|
459
481
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__create_date
|
|
@@ -642,6 +664,8 @@ msgid "Detail Taxes"
|
|
|
642
664
|
msgstr "Detalle de impuestos"
|
|
643
665
|
|
|
644
666
|
#. module: account_financial_report
|
|
667
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__display_name
|
|
668
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__display_name
|
|
645
669
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__display_name
|
|
646
670
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__display_name
|
|
647
671
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__display_name
|
|
@@ -931,6 +955,14 @@ msgstr "Agrupar por"
|
|
|
931
955
|
msgid "Grouped By"
|
|
932
956
|
msgstr "Agrupado por"
|
|
933
957
|
|
|
958
|
+
#. module: account_financial_report
|
|
959
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
960
|
+
msgid ""
|
|
961
|
+
"Here you can set the intervals that will appear on the Aged Partner Balance."
|
|
962
|
+
msgstr ""
|
|
963
|
+
"Aquí puede configurar los intervalos que aparecerán en el informe de Calidad "
|
|
964
|
+
"de la deuda."
|
|
965
|
+
|
|
934
966
|
#. module: account_financial_report
|
|
935
967
|
#. odoo-python
|
|
936
968
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
@@ -960,6 +992,8 @@ msgid "Hierarchy Levels to display"
|
|
|
960
992
|
msgstr "Niveles de Jerarquía a mostrar"
|
|
961
993
|
|
|
962
994
|
#. module: account_financial_report
|
|
995
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__id
|
|
996
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__id
|
|
963
997
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__id
|
|
964
998
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__id
|
|
965
999
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__id
|
|
@@ -978,6 +1012,18 @@ msgstr ""
|
|
|
978
1012
|
"Si se marca, no se mostrarán detalles en el informe del libro mayor (solo el "
|
|
979
1013
|
"webkit), solo importes centralizados por período."
|
|
980
1014
|
|
|
1015
|
+
#. module: account_financial_report
|
|
1016
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__inferior_limit
|
|
1017
|
+
msgid "Inferior Limit"
|
|
1018
|
+
msgstr "Límite inferior"
|
|
1019
|
+
|
|
1020
|
+
#. module: account_financial_report
|
|
1021
|
+
#. odoo-python
|
|
1022
|
+
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1023
|
+
#, python-format
|
|
1024
|
+
msgid "Inferior Limit must be greather than zero"
|
|
1025
|
+
msgstr "El límite inferior debe ser mayor que cero"
|
|
1026
|
+
|
|
981
1027
|
#. module: account_financial_report
|
|
982
1028
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
983
1029
|
msgid ""
|
|
@@ -1005,6 +1051,12 @@ msgstr ""
|
|
|
1005
1051
|
msgid "Initial balance"
|
|
1006
1052
|
msgstr "Saldo inicial"
|
|
1007
1053
|
|
|
1054
|
+
#. module: account_financial_report
|
|
1055
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__age_partner_config_id
|
|
1056
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_res_config_settings__default_age_partner_config_id
|
|
1057
|
+
msgid "Intervals configuration"
|
|
1058
|
+
msgstr "Configuración de intervalos"
|
|
1059
|
+
|
|
1008
1060
|
#. module: account_financial_report
|
|
1009
1061
|
#. odoo-python
|
|
1010
1062
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
@@ -1074,6 +1126,8 @@ msgid "Journals"
|
|
|
1074
1126
|
msgstr "Diarios"
|
|
1075
1127
|
|
|
1076
1128
|
#. module: account_financial_report
|
|
1129
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration____last_update
|
|
1130
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line____last_update
|
|
1077
1131
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard____last_update
|
|
1078
1132
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard____last_update
|
|
1079
1133
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard____last_update
|
|
@@ -1084,6 +1138,8 @@ msgid "Last Modified on"
|
|
|
1084
1138
|
msgstr "Última modificación en"
|
|
1085
1139
|
|
|
1086
1140
|
#. module: account_financial_report
|
|
1141
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__write_uid
|
|
1142
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__write_uid
|
|
1087
1143
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__write_uid
|
|
1088
1144
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__write_uid
|
|
1089
1145
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__write_uid
|
|
@@ -1094,6 +1150,8 @@ msgid "Last Updated by"
|
|
|
1094
1150
|
msgstr "Última actualización por"
|
|
1095
1151
|
|
|
1096
1152
|
#. module: account_financial_report
|
|
1153
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__write_date
|
|
1154
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__write_date
|
|
1097
1155
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__write_date
|
|
1098
1156
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__write_date
|
|
1099
1157
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__write_date
|
|
@@ -1125,6 +1183,11 @@ msgstr "Nivel %s"
|
|
|
1125
1183
|
msgid "Limit hierarchy levels"
|
|
1126
1184
|
msgstr "Limitar niveles de jerarquía"
|
|
1127
1185
|
|
|
1186
|
+
#. module: account_financial_report
|
|
1187
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__line_ids
|
|
1188
|
+
msgid "Line"
|
|
1189
|
+
msgstr "Línea"
|
|
1190
|
+
|
|
1128
1191
|
#. module: account_financial_report
|
|
1129
1192
|
#. odoo-python
|
|
1130
1193
|
#: code:addons/account_financial_report/report/general_ledger.py:0
|
|
@@ -1134,6 +1197,20 @@ msgstr "Limitar niveles de jerarquía"
|
|
|
1134
1197
|
msgid "Missing Partner"
|
|
1135
1198
|
msgstr "Falta el Socio"
|
|
1136
1199
|
|
|
1200
|
+
#. module: account_financial_report
|
|
1201
|
+
#: model:ir.model,name:account_financial_report.model_account_age_report_configuration_line
|
|
1202
|
+
msgid "Model to set interval lines for Age partner balance report"
|
|
1203
|
+
msgstr ""
|
|
1204
|
+
"Modelo para establecer líneas de intervalo para el informe de Calidad de "
|
|
1205
|
+
"deuda"
|
|
1206
|
+
|
|
1207
|
+
#. module: account_financial_report
|
|
1208
|
+
#: model:ir.model,name:account_financial_report.model_account_age_report_configuration
|
|
1209
|
+
msgid "Model to set intervals for Age partner balance report"
|
|
1210
|
+
msgstr ""
|
|
1211
|
+
"Modelo para establecer intervalos en el informe de Calidad de deudaFalta el "
|
|
1212
|
+
"Socio"
|
|
1213
|
+
|
|
1137
1214
|
#. module: account_financial_report
|
|
1138
1215
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__move_target
|
|
1139
1216
|
msgid "Move Target"
|
|
@@ -1144,10 +1221,19 @@ msgstr "Asiento Objetivo"
|
|
|
1144
1221
|
msgid "Moves"
|
|
1145
1222
|
msgstr "Asientos"
|
|
1146
1223
|
|
|
1224
|
+
#. module: account_financial_report
|
|
1225
|
+
#. odoo-python
|
|
1226
|
+
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1227
|
+
#, python-format
|
|
1228
|
+
msgid "Must complete Configuration Lines"
|
|
1229
|
+
msgstr "Debe completar las líneas de configuración"
|
|
1230
|
+
|
|
1147
1231
|
#. module: account_financial_report
|
|
1148
1232
|
#. odoo-python
|
|
1149
1233
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1150
1234
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1235
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__name
|
|
1236
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__name
|
|
1151
1237
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
|
|
1152
1238
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
1153
1239
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
@@ -1155,6 +1241,14 @@ msgstr "Asientos"
|
|
|
1155
1241
|
msgid "Name"
|
|
1156
1242
|
msgstr "Nombre"
|
|
1157
1243
|
|
|
1244
|
+
#. module: account_financial_report
|
|
1245
|
+
#. odoo-python
|
|
1246
|
+
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1247
|
+
#: model:ir.model.constraint,message:account_financial_report.constraint_account_age_report_configuration_line_unique_name_config_combination
|
|
1248
|
+
#, python-format
|
|
1249
|
+
msgid "Name must be unique per report configuration"
|
|
1250
|
+
msgstr "El nombre debe ser único por cada configuración del informe"
|
|
1251
|
+
|
|
1158
1252
|
#. module: account_financial_report
|
|
1159
1253
|
#. odoo-python
|
|
1160
1254
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
@@ -1211,6 +1305,11 @@ msgstr "Sin Postear"
|
|
|
1211
1305
|
msgid "Not due"
|
|
1212
1306
|
msgstr "Deuda"
|
|
1213
1307
|
|
|
1308
|
+
#. module: account_financial_report
|
|
1309
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
1310
|
+
msgid "OCA Aged Report Configuration"
|
|
1311
|
+
msgstr "Configuración del informe Calidad de deuda OCA"
|
|
1312
|
+
|
|
1214
1313
|
#. module: account_financial_report
|
|
1215
1314
|
#: model:ir.ui.menu,name:account_financial_report.menu_oca_reports
|
|
1216
1315
|
msgid "OCA accounting reports"
|
|
@@ -1842,7 +1941,6 @@ msgid "future"
|
|
|
1842
1941
|
msgstr "futuro"
|
|
1843
1942
|
|
|
1844
1943
|
#. module: account_financial_report
|
|
1845
|
-
#: model_terms:ir.ui.view,arch_db:account_financial_report.aged_partner_balance_wizard
|
|
1846
1944
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
|
|
1847
1945
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.journal_ledger_wizard
|
|
1848
1946
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.open_items_wizard
|
|
@@ -1891,6 +1989,37 @@ msgstr "ancho: 38.92%;"
|
|
|
1891
1989
|
msgid "width: 8.11%;"
|
|
1892
1990
|
msgstr "ancho: 8.11%;"
|
|
1893
1991
|
|
|
1992
|
+
#~ msgid ""
|
|
1993
|
+
#~ "Age ≤ 120\n"
|
|
1994
|
+
#~ " d."
|
|
1995
|
+
#~ msgstr ""
|
|
1996
|
+
#~ "Tiempo ≤ 120\n"
|
|
1997
|
+
#~ "· · · · · · · · · · · · · · · · · · · · · · · ·d."
|
|
1998
|
+
|
|
1999
|
+
#~ msgid ""
|
|
2000
|
+
#~ "Age ≤ 30\n"
|
|
2001
|
+
#~ " d."
|
|
2002
|
+
#~ msgstr ""
|
|
2003
|
+
#~ "Tiempo ≤ 30\n"
|
|
2004
|
+
#~ "· · · · · · · · · · · · · · · · · · · · · · · ·d."
|
|
2005
|
+
|
|
2006
|
+
#~ msgid ""
|
|
2007
|
+
#~ "Age ≤ 60\n"
|
|
2008
|
+
#~ " d."
|
|
2009
|
+
#~ msgstr ""
|
|
2010
|
+
#~ "Tiempo ≤ 60\n"
|
|
2011
|
+
#~ "· · · · · · · · · · · · · · · · · · · · · · · ·d."
|
|
2012
|
+
|
|
2013
|
+
#~ msgid ""
|
|
2014
|
+
#~ "Age ≤ 90\n"
|
|
2015
|
+
#~ " d."
|
|
2016
|
+
#~ msgstr ""
|
|
2017
|
+
#~ "Tiempo ≤ 90\n"
|
|
2018
|
+
#~ "· · · · · · · · · · · · · · · · · · · · · · · ·d."
|
|
2019
|
+
|
|
2020
|
+
#~ msgid "Companies"
|
|
2021
|
+
#~ msgstr "Compañías"
|
|
2022
|
+
|
|
1894
2023
|
#~ msgid "Filter analytic tags"
|
|
1895
2024
|
#~ msgstr "Filtrar por etiquetas analíticas"
|
|
1896
2025
|
|
|
@@ -52,6 +52,11 @@ 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.res_config_settings_view_form
|
|
57
|
+
msgid "<span class=\"o_form_label\">Intervals configuration</span>"
|
|
58
|
+
msgstr ""
|
|
59
|
+
|
|
55
60
|
#. module: account_financial_report
|
|
56
61
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.aged_partner_balance_wizard
|
|
57
62
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
|
|
@@ -92,6 +97,11 @@ msgstr "Informe XLSX Financiero Abstracto de la Cuenta"
|
|
|
92
97
|
msgid "Account"
|
|
93
98
|
msgstr "Cuenta"
|
|
94
99
|
|
|
100
|
+
#. module: account_financial_report
|
|
101
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__account_age_report_config_id
|
|
102
|
+
msgid "Account Age Report Config"
|
|
103
|
+
msgstr ""
|
|
104
|
+
|
|
95
105
|
#. module: account_financial_report
|
|
96
106
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__account_code_from
|
|
97
107
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__account_code_from
|
|
@@ -153,14 +163,17 @@ msgstr "Activar centralización"
|
|
|
153
163
|
msgid "Additional Filtering"
|
|
154
164
|
msgstr "Filtros Adicionales"
|
|
155
165
|
|
|
166
|
+
#. module: account_financial_report
|
|
167
|
+
#: model:ir.actions.act_window,name:account_financial_report.action_aged_partner_report_configuration
|
|
168
|
+
msgid "Age Partner Report Configuration"
|
|
169
|
+
msgstr ""
|
|
170
|
+
|
|
156
171
|
#. module: account_financial_report
|
|
157
172
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
158
173
|
msgid ""
|
|
159
174
|
"Age ≤ 120\n"
|
|
160
|
-
"
|
|
175
|
+
" d."
|
|
161
176
|
msgstr ""
|
|
162
|
-
"Antigüedad ≤ 120\n"
|
|
163
|
-
" d."
|
|
164
177
|
|
|
165
178
|
#. module: account_financial_report
|
|
166
179
|
#. odoo-python
|
|
@@ -173,10 +186,8 @@ msgstr "Tiempo ≤ 120 d."
|
|
|
173
186
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
174
187
|
msgid ""
|
|
175
188
|
"Age ≤ 30\n"
|
|
176
|
-
"
|
|
189
|
+
" d."
|
|
177
190
|
msgstr ""
|
|
178
|
-
"Antigüedad ≤ 30\n"
|
|
179
|
-
" d."
|
|
180
191
|
|
|
181
192
|
#. module: account_financial_report
|
|
182
193
|
#. odoo-python
|
|
@@ -189,10 +200,8 @@ msgstr "Tiempo ≤ 30 d."
|
|
|
189
200
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
190
201
|
msgid ""
|
|
191
202
|
"Age ≤ 60\n"
|
|
192
|
-
"
|
|
203
|
+
" d."
|
|
193
204
|
msgstr ""
|
|
194
|
-
"Antigüedad ≤ 60\n"
|
|
195
|
-
" d."
|
|
196
205
|
|
|
197
206
|
#. module: account_financial_report
|
|
198
207
|
#. odoo-python
|
|
@@ -205,10 +214,8 @@ msgstr "Tiempo ≤ 60 d."
|
|
|
205
214
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
206
215
|
msgid ""
|
|
207
216
|
"Age ≤ 90\n"
|
|
208
|
-
"
|
|
217
|
+
" d."
|
|
209
218
|
msgstr ""
|
|
210
|
-
"Antigüedad ≤ 90\n"
|
|
211
|
-
" d."
|
|
212
219
|
|
|
213
220
|
#. module: account_financial_report
|
|
214
221
|
#. odoo-python
|
|
@@ -426,6 +433,7 @@ msgstr "Código"
|
|
|
426
433
|
#. module: account_financial_report
|
|
427
434
|
#. odoo-python
|
|
428
435
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
436
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__company_id
|
|
429
437
|
#: model:ir.model.fields,field_description:account_financial_report.field_account_financial_report_abstract_wizard__company_id
|
|
430
438
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__company_id
|
|
431
439
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__company_id
|
|
@@ -443,6 +451,18 @@ msgid "Compute accounts"
|
|
|
443
451
|
msgstr "Cuentas calculadas"
|
|
444
452
|
|
|
445
453
|
#. module: account_financial_report
|
|
454
|
+
#: model:ir.model,name:account_financial_report.model_res_config_settings
|
|
455
|
+
msgid "Config Settings"
|
|
456
|
+
msgstr ""
|
|
457
|
+
|
|
458
|
+
#. module: account_financial_report
|
|
459
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
460
|
+
msgid "Configurations"
|
|
461
|
+
msgstr ""
|
|
462
|
+
|
|
463
|
+
#. module: account_financial_report
|
|
464
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__create_uid
|
|
465
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__create_uid
|
|
446
466
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__create_uid
|
|
447
467
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__create_uid
|
|
448
468
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__create_uid
|
|
@@ -453,6 +473,8 @@ msgid "Created by"
|
|
|
453
473
|
msgstr "Creado por"
|
|
454
474
|
|
|
455
475
|
#. module: account_financial_report
|
|
476
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__create_date
|
|
477
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__create_date
|
|
456
478
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__create_date
|
|
457
479
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__create_date
|
|
458
480
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__create_date
|
|
@@ -641,6 +663,8 @@ msgid "Detail Taxes"
|
|
|
641
663
|
msgstr "Detalle de impuestos"
|
|
642
664
|
|
|
643
665
|
#. module: account_financial_report
|
|
666
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__display_name
|
|
667
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__display_name
|
|
644
668
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__display_name
|
|
645
669
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__display_name
|
|
646
670
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__display_name
|
|
@@ -929,6 +953,12 @@ msgstr "Agrupar por"
|
|
|
929
953
|
msgid "Grouped By"
|
|
930
954
|
msgstr "Agrupar por"
|
|
931
955
|
|
|
956
|
+
#. module: account_financial_report
|
|
957
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
958
|
+
msgid ""
|
|
959
|
+
"Here you can set the intervals that will appear on the Aged Partner Balance."
|
|
960
|
+
msgstr ""
|
|
961
|
+
|
|
932
962
|
#. module: account_financial_report
|
|
933
963
|
#. odoo-python
|
|
934
964
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
@@ -958,6 +988,8 @@ msgid "Hierarchy Levels to display"
|
|
|
958
988
|
msgstr "Niveles de Jerarquía a mostrar"
|
|
959
989
|
|
|
960
990
|
#. module: account_financial_report
|
|
991
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__id
|
|
992
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__id
|
|
961
993
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__id
|
|
962
994
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__id
|
|
963
995
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__id
|
|
@@ -976,6 +1008,18 @@ msgstr ""
|
|
|
976
1008
|
"Si se marca, no se mostrarán detalles en el informe del libro mayor (solo el "
|
|
977
1009
|
"webkit), solo importes centralizados por período."
|
|
978
1010
|
|
|
1011
|
+
#. module: account_financial_report
|
|
1012
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__inferior_limit
|
|
1013
|
+
msgid "Inferior Limit"
|
|
1014
|
+
msgstr ""
|
|
1015
|
+
|
|
1016
|
+
#. module: account_financial_report
|
|
1017
|
+
#. odoo-python
|
|
1018
|
+
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1019
|
+
#, python-format
|
|
1020
|
+
msgid "Inferior Limit must be greather than zero"
|
|
1021
|
+
msgstr ""
|
|
1022
|
+
|
|
979
1023
|
#. module: account_financial_report
|
|
980
1024
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
981
1025
|
msgid ""
|
|
@@ -1003,6 +1047,12 @@ msgstr ""
|
|
|
1003
1047
|
msgid "Initial balance"
|
|
1004
1048
|
msgstr "Saldo inicial"
|
|
1005
1049
|
|
|
1050
|
+
#. module: account_financial_report
|
|
1051
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__age_partner_config_id
|
|
1052
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_res_config_settings__default_age_partner_config_id
|
|
1053
|
+
msgid "Intervals configuration"
|
|
1054
|
+
msgstr ""
|
|
1055
|
+
|
|
1006
1056
|
#. module: account_financial_report
|
|
1007
1057
|
#. odoo-python
|
|
1008
1058
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
@@ -1072,6 +1122,8 @@ msgid "Journals"
|
|
|
1072
1122
|
msgstr "Diarios"
|
|
1073
1123
|
|
|
1074
1124
|
#. module: account_financial_report
|
|
1125
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration____last_update
|
|
1126
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line____last_update
|
|
1075
1127
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard____last_update
|
|
1076
1128
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard____last_update
|
|
1077
1129
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard____last_update
|
|
@@ -1082,6 +1134,8 @@ msgid "Last Modified on"
|
|
|
1082
1134
|
msgstr "Última modificación en"
|
|
1083
1135
|
|
|
1084
1136
|
#. module: account_financial_report
|
|
1137
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__write_uid
|
|
1138
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__write_uid
|
|
1085
1139
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__write_uid
|
|
1086
1140
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__write_uid
|
|
1087
1141
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__write_uid
|
|
@@ -1092,6 +1146,8 @@ msgid "Last Updated by"
|
|
|
1092
1146
|
msgstr "Última modificación por"
|
|
1093
1147
|
|
|
1094
1148
|
#. module: account_financial_report
|
|
1149
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__write_date
|
|
1150
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__write_date
|
|
1095
1151
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__write_date
|
|
1096
1152
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__write_date
|
|
1097
1153
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__write_date
|
|
@@ -1123,6 +1179,11 @@ msgstr "Nivel %s"
|
|
|
1123
1179
|
msgid "Limit hierarchy levels"
|
|
1124
1180
|
msgstr "Limitar niveles de jerarquía"
|
|
1125
1181
|
|
|
1182
|
+
#. module: account_financial_report
|
|
1183
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__line_ids
|
|
1184
|
+
msgid "Line"
|
|
1185
|
+
msgstr ""
|
|
1186
|
+
|
|
1126
1187
|
#. module: account_financial_report
|
|
1127
1188
|
#. odoo-python
|
|
1128
1189
|
#: code:addons/account_financial_report/report/general_ledger.py:0
|
|
@@ -1132,6 +1193,16 @@ msgstr "Limitar niveles de jerarquía"
|
|
|
1132
1193
|
msgid "Missing Partner"
|
|
1133
1194
|
msgstr ""
|
|
1134
1195
|
|
|
1196
|
+
#. module: account_financial_report
|
|
1197
|
+
#: model:ir.model,name:account_financial_report.model_account_age_report_configuration_line
|
|
1198
|
+
msgid "Model to set interval lines for Age partner balance report"
|
|
1199
|
+
msgstr ""
|
|
1200
|
+
|
|
1201
|
+
#. module: account_financial_report
|
|
1202
|
+
#: model:ir.model,name:account_financial_report.model_account_age_report_configuration
|
|
1203
|
+
msgid "Model to set intervals for Age partner balance report"
|
|
1204
|
+
msgstr ""
|
|
1205
|
+
|
|
1135
1206
|
#. module: account_financial_report
|
|
1136
1207
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__move_target
|
|
1137
1208
|
msgid "Move Target"
|
|
@@ -1142,10 +1213,19 @@ msgstr "Asiento Objetivo"
|
|
|
1142
1213
|
msgid "Moves"
|
|
1143
1214
|
msgstr "Asientos"
|
|
1144
1215
|
|
|
1216
|
+
#. module: account_financial_report
|
|
1217
|
+
#. odoo-python
|
|
1218
|
+
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1219
|
+
#, python-format
|
|
1220
|
+
msgid "Must complete Configuration Lines"
|
|
1221
|
+
msgstr ""
|
|
1222
|
+
|
|
1145
1223
|
#. module: account_financial_report
|
|
1146
1224
|
#. odoo-python
|
|
1147
1225
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1148
1226
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1227
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__name
|
|
1228
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__name
|
|
1149
1229
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
|
|
1150
1230
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
1151
1231
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
@@ -1153,6 +1233,14 @@ msgstr "Asientos"
|
|
|
1153
1233
|
msgid "Name"
|
|
1154
1234
|
msgstr "Nombre"
|
|
1155
1235
|
|
|
1236
|
+
#. module: account_financial_report
|
|
1237
|
+
#. odoo-python
|
|
1238
|
+
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1239
|
+
#: model:ir.model.constraint,message:account_financial_report.constraint_account_age_report_configuration_line_unique_name_config_combination
|
|
1240
|
+
#, python-format
|
|
1241
|
+
msgid "Name must be unique per report configuration"
|
|
1242
|
+
msgstr ""
|
|
1243
|
+
|
|
1156
1244
|
#. module: account_financial_report
|
|
1157
1245
|
#. odoo-python
|
|
1158
1246
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
@@ -1209,6 +1297,11 @@ msgstr "Sin Postear"
|
|
|
1209
1297
|
msgid "Not due"
|
|
1210
1298
|
msgstr "Deuda"
|
|
1211
1299
|
|
|
1300
|
+
#. module: account_financial_report
|
|
1301
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
1302
|
+
msgid "OCA Aged Report Configuration"
|
|
1303
|
+
msgstr ""
|
|
1304
|
+
|
|
1212
1305
|
#. module: account_financial_report
|
|
1213
1306
|
#: model:ir.ui.menu,name:account_financial_report.menu_oca_reports
|
|
1214
1307
|
msgid "OCA accounting reports"
|
|
@@ -1839,7 +1932,6 @@ msgid "future"
|
|
|
1839
1932
|
msgstr "futuro"
|
|
1840
1933
|
|
|
1841
1934
|
#. module: account_financial_report
|
|
1842
|
-
#: model_terms:ir.ui.view,arch_db:account_financial_report.aged_partner_balance_wizard
|
|
1843
1935
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
|
|
1844
1936
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.journal_ledger_wizard
|
|
1845
1937
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.open_items_wizard
|
|
@@ -1888,6 +1980,34 @@ msgstr "ancho: 38.92%;"
|
|
|
1888
1980
|
msgid "width: 8.11%;"
|
|
1889
1981
|
msgstr "ancho: 8.11%;"
|
|
1890
1982
|
|
|
1983
|
+
#~ msgid ""
|
|
1984
|
+
#~ "Age ≤ 120\n"
|
|
1985
|
+
#~ " d."
|
|
1986
|
+
#~ msgstr ""
|
|
1987
|
+
#~ "Antigüedad ≤ 120\n"
|
|
1988
|
+
#~ " d."
|
|
1989
|
+
|
|
1990
|
+
#~ msgid ""
|
|
1991
|
+
#~ "Age ≤ 30\n"
|
|
1992
|
+
#~ " d."
|
|
1993
|
+
#~ msgstr ""
|
|
1994
|
+
#~ "Antigüedad ≤ 30\n"
|
|
1995
|
+
#~ " d."
|
|
1996
|
+
|
|
1997
|
+
#~ msgid ""
|
|
1998
|
+
#~ "Age ≤ 60\n"
|
|
1999
|
+
#~ " d."
|
|
2000
|
+
#~ msgstr ""
|
|
2001
|
+
#~ "Antigüedad ≤ 60\n"
|
|
2002
|
+
#~ " d."
|
|
2003
|
+
|
|
2004
|
+
#~ msgid ""
|
|
2005
|
+
#~ "Age ≤ 90\n"
|
|
2006
|
+
#~ " d."
|
|
2007
|
+
#~ msgstr ""
|
|
2008
|
+
#~ "Antigüedad ≤ 90\n"
|
|
2009
|
+
#~ " d."
|
|
2010
|
+
|
|
1891
2011
|
#~ msgid "Filter analytic tags"
|
|
1892
2012
|
#~ msgstr "Filtrar por etiquetas analíticas"
|
|
1893
2013
|
|