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
|
@@ -55,6 +55,11 @@ msgstr "91 - 120 d."
|
|
|
55
55
|
msgid "<b>Taxes summary</b>"
|
|
56
56
|
msgstr "<B>Resum d'impostos</b>"
|
|
57
57
|
|
|
58
|
+
#. module: account_financial_report
|
|
59
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
60
|
+
msgid "<span class=\"o_form_label\">Intervals configuration</span>"
|
|
61
|
+
msgstr ""
|
|
62
|
+
|
|
58
63
|
#. module: account_financial_report
|
|
59
64
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.aged_partner_balance_wizard
|
|
60
65
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
|
|
@@ -95,6 +100,11 @@ msgstr ""
|
|
|
95
100
|
msgid "Account"
|
|
96
101
|
msgstr "Compte"
|
|
97
102
|
|
|
103
|
+
#. module: account_financial_report
|
|
104
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__account_age_report_config_id
|
|
105
|
+
msgid "Account Age Report Config"
|
|
106
|
+
msgstr ""
|
|
107
|
+
|
|
98
108
|
#. module: account_financial_report
|
|
99
109
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__account_code_from
|
|
100
110
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__account_code_from
|
|
@@ -156,14 +166,17 @@ msgstr "Activar centralització"
|
|
|
156
166
|
msgid "Additional Filtering"
|
|
157
167
|
msgstr "Filtrat addicional"
|
|
158
168
|
|
|
169
|
+
#. module: account_financial_report
|
|
170
|
+
#: model:ir.actions.act_window,name:account_financial_report.action_aged_partner_report_configuration
|
|
171
|
+
msgid "Age Partner Report Configuration"
|
|
172
|
+
msgstr ""
|
|
173
|
+
|
|
159
174
|
#. module: account_financial_report
|
|
160
175
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
161
176
|
msgid ""
|
|
162
177
|
"Age ≤ 120\n"
|
|
163
|
-
"
|
|
178
|
+
" d."
|
|
164
179
|
msgstr ""
|
|
165
|
-
"Antiguitat ≤ 120\n"
|
|
166
|
-
" d."
|
|
167
180
|
|
|
168
181
|
#. module: account_financial_report
|
|
169
182
|
#. odoo-python
|
|
@@ -176,10 +189,8 @@ msgstr "Antiguitat ≤ 120 d."
|
|
|
176
189
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
177
190
|
msgid ""
|
|
178
191
|
"Age ≤ 30\n"
|
|
179
|
-
"
|
|
192
|
+
" d."
|
|
180
193
|
msgstr ""
|
|
181
|
-
"Antiguitat ≤ 30\n"
|
|
182
|
-
" d."
|
|
183
194
|
|
|
184
195
|
#. module: account_financial_report
|
|
185
196
|
#. odoo-python
|
|
@@ -192,10 +203,8 @@ msgstr "Antiguitat ≤ 30 d."
|
|
|
192
203
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
193
204
|
msgid ""
|
|
194
205
|
"Age ≤ 60\n"
|
|
195
|
-
"
|
|
206
|
+
" d."
|
|
196
207
|
msgstr ""
|
|
197
|
-
"Antiguitat ≤ 60\n"
|
|
198
|
-
" d."
|
|
199
208
|
|
|
200
209
|
#. module: account_financial_report
|
|
201
210
|
#. odoo-python
|
|
@@ -208,10 +217,8 @@ msgstr "Antiguitat ≤ 60 d."
|
|
|
208
217
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
209
218
|
msgid ""
|
|
210
219
|
"Age ≤ 90\n"
|
|
211
|
-
"
|
|
220
|
+
" d."
|
|
212
221
|
msgstr ""
|
|
213
|
-
"Antiguitat ≤ 90\n"
|
|
214
|
-
" d."
|
|
215
222
|
|
|
216
223
|
#. module: account_financial_report
|
|
217
224
|
#. odoo-python
|
|
@@ -429,6 +436,7 @@ msgstr "Codi"
|
|
|
429
436
|
#. module: account_financial_report
|
|
430
437
|
#. odoo-python
|
|
431
438
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
439
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__company_id
|
|
432
440
|
#: model:ir.model.fields,field_description:account_financial_report.field_account_financial_report_abstract_wizard__company_id
|
|
433
441
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__company_id
|
|
434
442
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__company_id
|
|
@@ -446,6 +454,18 @@ msgid "Compute accounts"
|
|
|
446
454
|
msgstr "Calcula comptes"
|
|
447
455
|
|
|
448
456
|
#. module: account_financial_report
|
|
457
|
+
#: model:ir.model,name:account_financial_report.model_res_config_settings
|
|
458
|
+
msgid "Config Settings"
|
|
459
|
+
msgstr ""
|
|
460
|
+
|
|
461
|
+
#. module: account_financial_report
|
|
462
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
463
|
+
msgid "Configurations"
|
|
464
|
+
msgstr ""
|
|
465
|
+
|
|
466
|
+
#. module: account_financial_report
|
|
467
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__create_uid
|
|
468
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__create_uid
|
|
449
469
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__create_uid
|
|
450
470
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__create_uid
|
|
451
471
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__create_uid
|
|
@@ -456,6 +476,8 @@ msgid "Created by"
|
|
|
456
476
|
msgstr "Creat per "
|
|
457
477
|
|
|
458
478
|
#. module: account_financial_report
|
|
479
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__create_date
|
|
480
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__create_date
|
|
459
481
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__create_date
|
|
460
482
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__create_date
|
|
461
483
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__create_date
|
|
@@ -644,6 +666,8 @@ msgid "Detail Taxes"
|
|
|
644
666
|
msgstr "Detall d'impostos"
|
|
645
667
|
|
|
646
668
|
#. module: account_financial_report
|
|
669
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__display_name
|
|
670
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__display_name
|
|
647
671
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__display_name
|
|
648
672
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__display_name
|
|
649
673
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__display_name
|
|
@@ -930,6 +954,12 @@ msgstr "Agrupar apunts per"
|
|
|
930
954
|
msgid "Grouped By"
|
|
931
955
|
msgstr "Agrupat per"
|
|
932
956
|
|
|
957
|
+
#. module: account_financial_report
|
|
958
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
959
|
+
msgid ""
|
|
960
|
+
"Here you can set the intervals that will appear on the Aged Partner Balance."
|
|
961
|
+
msgstr ""
|
|
962
|
+
|
|
933
963
|
#. module: account_financial_report
|
|
934
964
|
#. odoo-python
|
|
935
965
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
@@ -959,6 +989,8 @@ msgid "Hierarchy Levels to display"
|
|
|
959
989
|
msgstr "Nivells de jerarquia a mostrar"
|
|
960
990
|
|
|
961
991
|
#. module: account_financial_report
|
|
992
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__id
|
|
993
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__id
|
|
962
994
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__id
|
|
963
995
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__id
|
|
964
996
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__id
|
|
@@ -977,6 +1009,18 @@ msgstr ""
|
|
|
977
1009
|
"Si es marca, no es mostraran els detalls a l'informe del llibre major (només "
|
|
978
1010
|
"el webkit), només imports centralitzats per període."
|
|
979
1011
|
|
|
1012
|
+
#. module: account_financial_report
|
|
1013
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__inferior_limit
|
|
1014
|
+
msgid "Inferior Limit"
|
|
1015
|
+
msgstr ""
|
|
1016
|
+
|
|
1017
|
+
#. module: account_financial_report
|
|
1018
|
+
#. odoo-python
|
|
1019
|
+
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1020
|
+
#, python-format
|
|
1021
|
+
msgid "Inferior Limit must be greather than zero"
|
|
1022
|
+
msgstr ""
|
|
1023
|
+
|
|
980
1024
|
#. module: account_financial_report
|
|
981
1025
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
982
1026
|
#, fuzzy
|
|
@@ -1005,6 +1049,12 @@ msgstr ""
|
|
|
1005
1049
|
msgid "Initial balance"
|
|
1006
1050
|
msgstr "Saldo inicial"
|
|
1007
1051
|
|
|
1052
|
+
#. module: account_financial_report
|
|
1053
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__age_partner_config_id
|
|
1054
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_res_config_settings__default_age_partner_config_id
|
|
1055
|
+
msgid "Intervals configuration"
|
|
1056
|
+
msgstr ""
|
|
1057
|
+
|
|
1008
1058
|
#. module: account_financial_report
|
|
1009
1059
|
#. odoo-python
|
|
1010
1060
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
@@ -1074,6 +1124,8 @@ msgid "Journals"
|
|
|
1074
1124
|
msgstr "Diaris"
|
|
1075
1125
|
|
|
1076
1126
|
#. module: account_financial_report
|
|
1127
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration____last_update
|
|
1128
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line____last_update
|
|
1077
1129
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard____last_update
|
|
1078
1130
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard____last_update
|
|
1079
1131
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard____last_update
|
|
@@ -1084,6 +1136,8 @@ msgid "Last Modified on"
|
|
|
1084
1136
|
msgstr "Última modificació a "
|
|
1085
1137
|
|
|
1086
1138
|
#. module: account_financial_report
|
|
1139
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__write_uid
|
|
1140
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__write_uid
|
|
1087
1141
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__write_uid
|
|
1088
1142
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__write_uid
|
|
1089
1143
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__write_uid
|
|
@@ -1094,6 +1148,8 @@ msgid "Last Updated by"
|
|
|
1094
1148
|
msgstr "Última actualització per "
|
|
1095
1149
|
|
|
1096
1150
|
#. module: account_financial_report
|
|
1151
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__write_date
|
|
1152
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__write_date
|
|
1097
1153
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__write_date
|
|
1098
1154
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__write_date
|
|
1099
1155
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__write_date
|
|
@@ -1125,6 +1181,11 @@ msgstr "Nivell %s"
|
|
|
1125
1181
|
msgid "Limit hierarchy levels"
|
|
1126
1182
|
msgstr "Limita nivells de jerarquia"
|
|
1127
1183
|
|
|
1184
|
+
#. module: account_financial_report
|
|
1185
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__line_ids
|
|
1186
|
+
msgid "Line"
|
|
1187
|
+
msgstr ""
|
|
1188
|
+
|
|
1128
1189
|
#. module: account_financial_report
|
|
1129
1190
|
#. odoo-python
|
|
1130
1191
|
#: code:addons/account_financial_report/report/general_ledger.py:0
|
|
@@ -1134,6 +1195,16 @@ msgstr "Limita nivells de jerarquia"
|
|
|
1134
1195
|
msgid "Missing Partner"
|
|
1135
1196
|
msgstr "Falta contacte"
|
|
1136
1197
|
|
|
1198
|
+
#. module: account_financial_report
|
|
1199
|
+
#: model:ir.model,name:account_financial_report.model_account_age_report_configuration_line
|
|
1200
|
+
msgid "Model to set interval lines for Age partner balance report"
|
|
1201
|
+
msgstr ""
|
|
1202
|
+
|
|
1203
|
+
#. module: account_financial_report
|
|
1204
|
+
#: model:ir.model,name:account_financial_report.model_account_age_report_configuration
|
|
1205
|
+
msgid "Model to set intervals for Age partner balance report"
|
|
1206
|
+
msgstr ""
|
|
1207
|
+
|
|
1137
1208
|
#. module: account_financial_report
|
|
1138
1209
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__move_target
|
|
1139
1210
|
msgid "Move Target"
|
|
@@ -1144,10 +1215,19 @@ msgstr ""
|
|
|
1144
1215
|
msgid "Moves"
|
|
1145
1216
|
msgstr "Assentaments"
|
|
1146
1217
|
|
|
1218
|
+
#. module: account_financial_report
|
|
1219
|
+
#. odoo-python
|
|
1220
|
+
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1221
|
+
#, python-format
|
|
1222
|
+
msgid "Must complete Configuration Lines"
|
|
1223
|
+
msgstr ""
|
|
1224
|
+
|
|
1147
1225
|
#. module: account_financial_report
|
|
1148
1226
|
#. odoo-python
|
|
1149
1227
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1150
1228
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1229
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__name
|
|
1230
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__name
|
|
1151
1231
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
|
|
1152
1232
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
1153
1233
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
@@ -1155,6 +1235,14 @@ msgstr "Assentaments"
|
|
|
1155
1235
|
msgid "Name"
|
|
1156
1236
|
msgstr "Nom"
|
|
1157
1237
|
|
|
1238
|
+
#. module: account_financial_report
|
|
1239
|
+
#. odoo-python
|
|
1240
|
+
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1241
|
+
#: model:ir.model.constraint,message:account_financial_report.constraint_account_age_report_configuration_line_unique_name_config_combination
|
|
1242
|
+
#, python-format
|
|
1243
|
+
msgid "Name must be unique per report configuration"
|
|
1244
|
+
msgstr ""
|
|
1245
|
+
|
|
1158
1246
|
#. module: account_financial_report
|
|
1159
1247
|
#. odoo-python
|
|
1160
1248
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
@@ -1211,6 +1299,11 @@ msgstr "No confirmat"
|
|
|
1211
1299
|
msgid "Not due"
|
|
1212
1300
|
msgstr "No vençut"
|
|
1213
1301
|
|
|
1302
|
+
#. module: account_financial_report
|
|
1303
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
1304
|
+
msgid "OCA Aged Report Configuration"
|
|
1305
|
+
msgstr ""
|
|
1306
|
+
|
|
1214
1307
|
#. module: account_financial_report
|
|
1215
1308
|
#: model:ir.ui.menu,name:account_financial_report.menu_oca_reports
|
|
1216
1309
|
msgid "OCA accounting reports"
|
|
@@ -1836,7 +1929,6 @@ msgid "future"
|
|
|
1836
1929
|
msgstr "futur"
|
|
1837
1930
|
|
|
1838
1931
|
#. module: account_financial_report
|
|
1839
|
-
#: model_terms:ir.ui.view,arch_db:account_financial_report.aged_partner_balance_wizard
|
|
1840
1932
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
|
|
1841
1933
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.journal_ledger_wizard
|
|
1842
1934
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.open_items_wizard
|
|
@@ -1885,6 +1977,34 @@ msgstr "ample: 38.92%;"
|
|
|
1885
1977
|
msgid "width: 8.11%;"
|
|
1886
1978
|
msgstr "ample: 8.11%;"
|
|
1887
1979
|
|
|
1980
|
+
#~ msgid ""
|
|
1981
|
+
#~ "Age ≤ 120\n"
|
|
1982
|
+
#~ " d."
|
|
1983
|
+
#~ msgstr ""
|
|
1984
|
+
#~ "Antiguitat ≤ 120\n"
|
|
1985
|
+
#~ " d."
|
|
1986
|
+
|
|
1987
|
+
#~ msgid ""
|
|
1988
|
+
#~ "Age ≤ 30\n"
|
|
1989
|
+
#~ " d."
|
|
1990
|
+
#~ msgstr ""
|
|
1991
|
+
#~ "Antiguitat ≤ 30\n"
|
|
1992
|
+
#~ " d."
|
|
1993
|
+
|
|
1994
|
+
#~ msgid ""
|
|
1995
|
+
#~ "Age ≤ 60\n"
|
|
1996
|
+
#~ " d."
|
|
1997
|
+
#~ msgstr ""
|
|
1998
|
+
#~ "Antiguitat ≤ 60\n"
|
|
1999
|
+
#~ " d."
|
|
2000
|
+
|
|
2001
|
+
#~ msgid ""
|
|
2002
|
+
#~ "Age ≤ 90\n"
|
|
2003
|
+
#~ " d."
|
|
2004
|
+
#~ msgstr ""
|
|
2005
|
+
#~ "Antiguitat ≤ 90\n"
|
|
2006
|
+
#~ " d."
|
|
2007
|
+
|
|
1888
2008
|
#~ msgid "Filter analytic tags"
|
|
1889
2009
|
#~ msgstr "Filtra etiquetes analítiques"
|
|
1890
2010
|
|
|
@@ -57,6 +57,11 @@ msgstr "91-120 T."
|
|
|
57
57
|
msgid "<b>Taxes summary</b>"
|
|
58
58
|
msgstr "<b>Steuerbuchungen Zusammenfassung</b>"
|
|
59
59
|
|
|
60
|
+
#. module: account_financial_report
|
|
61
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
62
|
+
msgid "<span class=\"o_form_label\">Intervals configuration</span>"
|
|
63
|
+
msgstr ""
|
|
64
|
+
|
|
60
65
|
#. module: account_financial_report
|
|
61
66
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.aged_partner_balance_wizard
|
|
62
67
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
|
|
@@ -98,6 +103,11 @@ msgstr ""
|
|
|
98
103
|
msgid "Account"
|
|
99
104
|
msgstr "Konto"
|
|
100
105
|
|
|
106
|
+
#. module: account_financial_report
|
|
107
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__account_age_report_config_id
|
|
108
|
+
msgid "Account Age Report Config"
|
|
109
|
+
msgstr ""
|
|
110
|
+
|
|
101
111
|
#. module: account_financial_report
|
|
102
112
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__account_code_from
|
|
103
113
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__account_code_from
|
|
@@ -161,14 +171,17 @@ msgstr "Zusammenfassung aktivieren"
|
|
|
161
171
|
msgid "Additional Filtering"
|
|
162
172
|
msgstr ""
|
|
163
173
|
|
|
174
|
+
#. module: account_financial_report
|
|
175
|
+
#: model:ir.actions.act_window,name:account_financial_report.action_aged_partner_report_configuration
|
|
176
|
+
msgid "Age Partner Report Configuration"
|
|
177
|
+
msgstr ""
|
|
178
|
+
|
|
164
179
|
#. module: account_financial_report
|
|
165
180
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
166
181
|
msgid ""
|
|
167
182
|
"Age ≤ 120\n"
|
|
168
|
-
"
|
|
183
|
+
" d."
|
|
169
184
|
msgstr ""
|
|
170
|
-
"Alter ≤ 120\n"
|
|
171
|
-
" T."
|
|
172
185
|
|
|
173
186
|
#. module: account_financial_report
|
|
174
187
|
#. odoo-python
|
|
@@ -181,10 +194,8 @@ msgstr "Alter bis 120 T."
|
|
|
181
194
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
182
195
|
msgid ""
|
|
183
196
|
"Age ≤ 30\n"
|
|
184
|
-
"
|
|
197
|
+
" d."
|
|
185
198
|
msgstr ""
|
|
186
|
-
"Alter ≤ 30\n"
|
|
187
|
-
" T."
|
|
188
199
|
|
|
189
200
|
#. module: account_financial_report
|
|
190
201
|
#. odoo-python
|
|
@@ -197,10 +208,8 @@ msgstr "Alter bis 30 T."
|
|
|
197
208
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
198
209
|
msgid ""
|
|
199
210
|
"Age ≤ 60\n"
|
|
200
|
-
"
|
|
211
|
+
" d."
|
|
201
212
|
msgstr ""
|
|
202
|
-
"Alter ≤ 60\n"
|
|
203
|
-
" T."
|
|
204
213
|
|
|
205
214
|
#. module: account_financial_report
|
|
206
215
|
#. odoo-python
|
|
@@ -213,10 +222,8 @@ msgstr "Alter bis 60 T."
|
|
|
213
222
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
214
223
|
msgid ""
|
|
215
224
|
"Age ≤ 90\n"
|
|
216
|
-
"
|
|
225
|
+
" d."
|
|
217
226
|
msgstr ""
|
|
218
|
-
"Alter ≤ 90\n"
|
|
219
|
-
" T."
|
|
220
227
|
|
|
221
228
|
#. module: account_financial_report
|
|
222
229
|
#. odoo-python
|
|
@@ -439,6 +446,7 @@ msgstr "Nummer"
|
|
|
439
446
|
#. module: account_financial_report
|
|
440
447
|
#. odoo-python
|
|
441
448
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
449
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__company_id
|
|
442
450
|
#: model:ir.model.fields,field_description:account_financial_report.field_account_financial_report_abstract_wizard__company_id
|
|
443
451
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__company_id
|
|
444
452
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__company_id
|
|
@@ -457,6 +465,18 @@ msgid "Compute accounts"
|
|
|
457
465
|
msgstr "Berechnete Konten"
|
|
458
466
|
|
|
459
467
|
#. module: account_financial_report
|
|
468
|
+
#: model:ir.model,name:account_financial_report.model_res_config_settings
|
|
469
|
+
msgid "Config Settings"
|
|
470
|
+
msgstr ""
|
|
471
|
+
|
|
472
|
+
#. module: account_financial_report
|
|
473
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
474
|
+
msgid "Configurations"
|
|
475
|
+
msgstr ""
|
|
476
|
+
|
|
477
|
+
#. module: account_financial_report
|
|
478
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__create_uid
|
|
479
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__create_uid
|
|
460
480
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__create_uid
|
|
461
481
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__create_uid
|
|
462
482
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__create_uid
|
|
@@ -467,6 +487,8 @@ msgid "Created by"
|
|
|
467
487
|
msgstr "Erstellt von"
|
|
468
488
|
|
|
469
489
|
#. module: account_financial_report
|
|
490
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__create_date
|
|
491
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__create_date
|
|
470
492
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__create_date
|
|
471
493
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__create_date
|
|
472
494
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__create_date
|
|
@@ -655,6 +677,8 @@ msgid "Detail Taxes"
|
|
|
655
677
|
msgstr "Details zu Steuern"
|
|
656
678
|
|
|
657
679
|
#. module: account_financial_report
|
|
680
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__display_name
|
|
681
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__display_name
|
|
658
682
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__display_name
|
|
659
683
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__display_name
|
|
660
684
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__display_name
|
|
@@ -946,6 +970,12 @@ msgstr "Gruppieren nach"
|
|
|
946
970
|
msgid "Grouped By"
|
|
947
971
|
msgstr ""
|
|
948
972
|
|
|
973
|
+
#. module: account_financial_report
|
|
974
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
975
|
+
msgid ""
|
|
976
|
+
"Here you can set the intervals that will appear on the Aged Partner Balance."
|
|
977
|
+
msgstr ""
|
|
978
|
+
|
|
949
979
|
#. module: account_financial_report
|
|
950
980
|
#. odoo-python
|
|
951
981
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
@@ -975,6 +1005,8 @@ msgid "Hierarchy Levels to display"
|
|
|
975
1005
|
msgstr "Anzuzeigende Ebenen"
|
|
976
1006
|
|
|
977
1007
|
#. module: account_financial_report
|
|
1008
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__id
|
|
1009
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__id
|
|
978
1010
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__id
|
|
979
1011
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__id
|
|
980
1012
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__id
|
|
@@ -993,6 +1025,18 @@ msgstr ""
|
|
|
993
1025
|
"Wenn gekennzeichnet, werden im (Webkit) Hauptbuch-Bericht nur "
|
|
994
1026
|
"zusammengefasste Abstimmsummen pro Periode ausgewiesen."
|
|
995
1027
|
|
|
1028
|
+
#. module: account_financial_report
|
|
1029
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__inferior_limit
|
|
1030
|
+
msgid "Inferior Limit"
|
|
1031
|
+
msgstr ""
|
|
1032
|
+
|
|
1033
|
+
#. module: account_financial_report
|
|
1034
|
+
#. odoo-python
|
|
1035
|
+
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1036
|
+
#, python-format
|
|
1037
|
+
msgid "Inferior Limit must be greather than zero"
|
|
1038
|
+
msgstr ""
|
|
1039
|
+
|
|
996
1040
|
#. module: account_financial_report
|
|
997
1041
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
998
1042
|
#, fuzzy
|
|
@@ -1017,6 +1061,12 @@ msgstr "Anfangssaldo"
|
|
|
1017
1061
|
msgid "Initial balance"
|
|
1018
1062
|
msgstr "Anfangssaldo"
|
|
1019
1063
|
|
|
1064
|
+
#. module: account_financial_report
|
|
1065
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__age_partner_config_id
|
|
1066
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_res_config_settings__default_age_partner_config_id
|
|
1067
|
+
msgid "Intervals configuration"
|
|
1068
|
+
msgstr ""
|
|
1069
|
+
|
|
1020
1070
|
#. module: account_financial_report
|
|
1021
1071
|
#. odoo-python
|
|
1022
1072
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
@@ -1088,6 +1138,8 @@ msgid "Journals"
|
|
|
1088
1138
|
msgstr "Journale"
|
|
1089
1139
|
|
|
1090
1140
|
#. module: account_financial_report
|
|
1141
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration____last_update
|
|
1142
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line____last_update
|
|
1091
1143
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard____last_update
|
|
1092
1144
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard____last_update
|
|
1093
1145
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard____last_update
|
|
@@ -1098,6 +1150,8 @@ msgid "Last Modified on"
|
|
|
1098
1150
|
msgstr "Geändert am"
|
|
1099
1151
|
|
|
1100
1152
|
#. module: account_financial_report
|
|
1153
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__write_uid
|
|
1154
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__write_uid
|
|
1101
1155
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__write_uid
|
|
1102
1156
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__write_uid
|
|
1103
1157
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__write_uid
|
|
@@ -1108,6 +1162,8 @@ msgid "Last Updated by"
|
|
|
1108
1162
|
msgstr "Aktualisiert durch"
|
|
1109
1163
|
|
|
1110
1164
|
#. module: account_financial_report
|
|
1165
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__write_date
|
|
1166
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__write_date
|
|
1111
1167
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__write_date
|
|
1112
1168
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__write_date
|
|
1113
1169
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__write_date
|
|
@@ -1139,6 +1195,11 @@ msgstr "Ebene %s"
|
|
|
1139
1195
|
msgid "Limit hierarchy levels"
|
|
1140
1196
|
msgstr "Ebenen festlegen"
|
|
1141
1197
|
|
|
1198
|
+
#. module: account_financial_report
|
|
1199
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__line_ids
|
|
1200
|
+
msgid "Line"
|
|
1201
|
+
msgstr "Position"
|
|
1202
|
+
|
|
1142
1203
|
#. module: account_financial_report
|
|
1143
1204
|
#. odoo-python
|
|
1144
1205
|
#: code:addons/account_financial_report/report/general_ledger.py:0
|
|
@@ -1148,6 +1209,16 @@ msgstr "Ebenen festlegen"
|
|
|
1148
1209
|
msgid "Missing Partner"
|
|
1149
1210
|
msgstr ""
|
|
1150
1211
|
|
|
1212
|
+
#. module: account_financial_report
|
|
1213
|
+
#: model:ir.model,name:account_financial_report.model_account_age_report_configuration_line
|
|
1214
|
+
msgid "Model to set interval lines for Age partner balance report"
|
|
1215
|
+
msgstr ""
|
|
1216
|
+
|
|
1217
|
+
#. module: account_financial_report
|
|
1218
|
+
#: model:ir.model,name:account_financial_report.model_account_age_report_configuration
|
|
1219
|
+
msgid "Model to set intervals for Age partner balance report"
|
|
1220
|
+
msgstr ""
|
|
1221
|
+
|
|
1151
1222
|
#. module: account_financial_report
|
|
1152
1223
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__move_target
|
|
1153
1224
|
msgid "Move Target"
|
|
@@ -1158,10 +1229,19 @@ msgstr "Anzuzeigende Buchungen"
|
|
|
1158
1229
|
msgid "Moves"
|
|
1159
1230
|
msgstr "Buchungen"
|
|
1160
1231
|
|
|
1232
|
+
#. module: account_financial_report
|
|
1233
|
+
#. odoo-python
|
|
1234
|
+
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1235
|
+
#, python-format
|
|
1236
|
+
msgid "Must complete Configuration Lines"
|
|
1237
|
+
msgstr ""
|
|
1238
|
+
|
|
1161
1239
|
#. module: account_financial_report
|
|
1162
1240
|
#. odoo-python
|
|
1163
1241
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1164
1242
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1243
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__name
|
|
1244
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__name
|
|
1165
1245
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
|
|
1166
1246
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
1167
1247
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
@@ -1169,6 +1249,14 @@ msgstr "Buchungen"
|
|
|
1169
1249
|
msgid "Name"
|
|
1170
1250
|
msgstr "Bezeichnung"
|
|
1171
1251
|
|
|
1252
|
+
#. module: account_financial_report
|
|
1253
|
+
#. odoo-python
|
|
1254
|
+
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1255
|
+
#: model:ir.model.constraint,message:account_financial_report.constraint_account_age_report_configuration_line_unique_name_config_combination
|
|
1256
|
+
#, python-format
|
|
1257
|
+
msgid "Name must be unique per report configuration"
|
|
1258
|
+
msgstr ""
|
|
1259
|
+
|
|
1172
1260
|
#. module: account_financial_report
|
|
1173
1261
|
#. odoo-python
|
|
1174
1262
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
@@ -1225,6 +1313,11 @@ msgstr "Nicht gebucht"
|
|
|
1225
1313
|
msgid "Not due"
|
|
1226
1314
|
msgstr "Nicht fällig"
|
|
1227
1315
|
|
|
1316
|
+
#. module: account_financial_report
|
|
1317
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
1318
|
+
msgid "OCA Aged Report Configuration"
|
|
1319
|
+
msgstr ""
|
|
1320
|
+
|
|
1228
1321
|
#. module: account_financial_report
|
|
1229
1322
|
#: model:ir.ui.menu,name:account_financial_report.menu_oca_reports
|
|
1230
1323
|
msgid "OCA accounting reports"
|
|
@@ -1864,7 +1957,6 @@ msgid "future"
|
|
|
1864
1957
|
msgstr ""
|
|
1865
1958
|
|
|
1866
1959
|
#. module: account_financial_report
|
|
1867
|
-
#: model_terms:ir.ui.view,arch_db:account_financial_report.aged_partner_balance_wizard
|
|
1868
1960
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
|
|
1869
1961
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.journal_ledger_wizard
|
|
1870
1962
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.open_items_wizard
|
|
@@ -1913,6 +2005,34 @@ msgstr "Breite: 38.92%;"
|
|
|
1913
2005
|
msgid "width: 8.11%;"
|
|
1914
2006
|
msgstr "Breite: 8,11%;"
|
|
1915
2007
|
|
|
2008
|
+
#~ msgid ""
|
|
2009
|
+
#~ "Age ≤ 120\n"
|
|
2010
|
+
#~ " d."
|
|
2011
|
+
#~ msgstr ""
|
|
2012
|
+
#~ "Alter ≤ 120\n"
|
|
2013
|
+
#~ " T."
|
|
2014
|
+
|
|
2015
|
+
#~ msgid ""
|
|
2016
|
+
#~ "Age ≤ 30\n"
|
|
2017
|
+
#~ " d."
|
|
2018
|
+
#~ msgstr ""
|
|
2019
|
+
#~ "Alter ≤ 30\n"
|
|
2020
|
+
#~ " T."
|
|
2021
|
+
|
|
2022
|
+
#~ msgid ""
|
|
2023
|
+
#~ "Age ≤ 60\n"
|
|
2024
|
+
#~ " d."
|
|
2025
|
+
#~ msgstr ""
|
|
2026
|
+
#~ "Alter ≤ 60\n"
|
|
2027
|
+
#~ " T."
|
|
2028
|
+
|
|
2029
|
+
#~ msgid ""
|
|
2030
|
+
#~ "Age ≤ 90\n"
|
|
2031
|
+
#~ " d."
|
|
2032
|
+
#~ msgstr ""
|
|
2033
|
+
#~ "Alter ≤ 90\n"
|
|
2034
|
+
#~ " T."
|
|
2035
|
+
|
|
1916
2036
|
#~ msgid "Filter analytic tags"
|
|
1917
2037
|
#~ msgstr "Kostenstellen-Stichwörter filtern"
|
|
1918
2038
|
|
|
@@ -2120,9 +2240,6 @@ msgstr "Breite: 8,11%;"
|
|
|
2120
2240
|
#~ msgid "Label"
|
|
2121
2241
|
#~ msgstr "Betitelung"
|
|
2122
2242
|
|
|
2123
|
-
#~ msgid "Line"
|
|
2124
|
-
#~ msgstr "Position"
|
|
2125
|
-
|
|
2126
2243
|
#~ msgid "Matching Number"
|
|
2127
2244
|
#~ msgstr "Ausgleich Nummer"
|
|
2128
2245
|
|