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
|
@@ -7,7 +7,7 @@ Account Financial Reports
|
|
|
7
7
|
!! This file is generated by oca-gen-addon-readme !!
|
|
8
8
|
!! changes will be overwritten. !!
|
|
9
9
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
10
|
-
!! source digest: sha256:
|
|
10
|
+
!! source digest: sha256:34860a3d62e5ebcec741d2f2bdc5a0e4e209b545dba76e0f9649a0aabb5aafbe
|
|
11
11
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
12
12
|
|
|
13
13
|
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
|
@@ -45,11 +45,45 @@ currency used in account move lines is properly shown.
|
|
|
45
45
|
In case that in an account has not been configured a second currency foreign
|
|
46
46
|
currency balances are not available.
|
|
47
47
|
|
|
48
|
+
Invoicing / Settings / Invoicing / OCA Aged Report Configuration you will be able to set
|
|
49
|
+
dynamic intervals that will appear on the Aged Partner Balance.
|
|
50
|
+
For further information, check CONFIGURE.rst
|
|
51
|
+
|
|
48
52
|
**Table of contents**
|
|
49
53
|
|
|
50
54
|
.. contents::
|
|
51
55
|
:local:
|
|
52
56
|
|
|
57
|
+
Configuration
|
|
58
|
+
=============
|
|
59
|
+
|
|
60
|
+
To configure dynamic intervals for Aged Partner Balance you need to:
|
|
61
|
+
|
|
62
|
+
Go on 'Settings' -> 'Invoicing' -> 'OCA Aged Report Configuration'.
|
|
63
|
+
|
|
64
|
+
Click on option 'Configurations' and create new record.
|
|
65
|
+
|
|
66
|
+
Create new interval.
|
|
67
|
+
The name established on line will be the column to display in Aged Partner Balance.
|
|
68
|
+
Inferior limit established on line is the interval
|
|
69
|
+
|
|
70
|
+
Example of configuration inferior limit:
|
|
71
|
+
|
|
72
|
+
-> 15
|
|
73
|
+
-> 30
|
|
74
|
+
-> 60
|
|
75
|
+
|
|
76
|
+
It means the first interval is from 0 to 15, the second from 16 to 30, and the third is 61+.
|
|
77
|
+
|
|
78
|
+
Go on 'Invoicing' -> 'Reports' -> 'OCA accounting reports' -> 'Aged Partner Balance'
|
|
79
|
+
|
|
80
|
+
When wizard is open, you need to select your interval configuration and print report.
|
|
81
|
+
|
|
82
|
+
If you want to get default interval configuration any time you wish to print Aged Partner Report,
|
|
83
|
+
you can set default interval configuration per company in:
|
|
84
|
+
|
|
85
|
+
'Settings' -> 'Invoicing' -> 'OCA Aged Report Configuration'.
|
|
86
|
+
|
|
53
87
|
Known issues / Roadmap
|
|
54
88
|
======================
|
|
55
89
|
|
|
@@ -134,6 +168,7 @@ Contributors
|
|
|
134
168
|
* João Marques
|
|
135
169
|
* Alexandre D. Díaz
|
|
136
170
|
* Víctor Martínez
|
|
171
|
+
* Carolina Fernandez
|
|
137
172
|
|
|
138
173
|
* `Sygel <https://www.sygel.es>`__:
|
|
139
174
|
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
|
7
7
|
{
|
|
8
8
|
"name": "Account Financial Reports",
|
|
9
|
-
"version": "16.0.1.
|
|
9
|
+
"version": "16.0.1.6.0",
|
|
10
10
|
"category": "Reporting",
|
|
11
11
|
"summary": "OCA Financial Reports",
|
|
12
12
|
"author": "Camptocamp SA,"
|
|
@@ -18,12 +18,14 @@
|
|
|
18
18
|
"depends": ["account", "date_range", "report_xlsx"],
|
|
19
19
|
"data": [
|
|
20
20
|
"security/ir.model.access.csv",
|
|
21
|
+
"security/security.xml",
|
|
21
22
|
"wizard/aged_partner_balance_wizard_view.xml",
|
|
22
23
|
"wizard/general_ledger_wizard_view.xml",
|
|
23
24
|
"wizard/journal_ledger_wizard_view.xml",
|
|
24
25
|
"wizard/open_items_wizard_view.xml",
|
|
25
26
|
"wizard/trial_balance_wizard_view.xml",
|
|
26
27
|
"wizard/vat_report_wizard_view.xml",
|
|
28
|
+
"view/account_age_report_configuration_views.xml",
|
|
27
29
|
"menuitems.xml",
|
|
28
30
|
"reports.xml",
|
|
29
31
|
"report/templates/layouts.xml",
|
|
@@ -40,6 +42,7 @@
|
|
|
40
42
|
"view/report_open_items.xml",
|
|
41
43
|
"view/report_aged_partner_balance.xml",
|
|
42
44
|
"view/report_vat_report.xml",
|
|
45
|
+
"view/res_config_settings_views.xml",
|
|
43
46
|
],
|
|
44
47
|
"assets": {
|
|
45
48
|
"web.assets_backend": [
|
|
@@ -49,6 +49,11 @@ msgstr ""
|
|
|
49
49
|
msgid "<b>Taxes summary</b>"
|
|
50
50
|
msgstr ""
|
|
51
51
|
|
|
52
|
+
#. module: account_financial_report
|
|
53
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
54
|
+
msgid "<span class=\"o_form_label\">Intervals configuration</span>"
|
|
55
|
+
msgstr ""
|
|
56
|
+
|
|
52
57
|
#. module: account_financial_report
|
|
53
58
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.aged_partner_balance_wizard
|
|
54
59
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
|
|
@@ -89,6 +94,11 @@ msgstr ""
|
|
|
89
94
|
msgid "Account"
|
|
90
95
|
msgstr ""
|
|
91
96
|
|
|
97
|
+
#. module: account_financial_report
|
|
98
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__account_age_report_config_id
|
|
99
|
+
msgid "Account Age Report Config"
|
|
100
|
+
msgstr ""
|
|
101
|
+
|
|
92
102
|
#. module: account_financial_report
|
|
93
103
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__account_code_from
|
|
94
104
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__account_code_from
|
|
@@ -150,11 +160,16 @@ msgstr ""
|
|
|
150
160
|
msgid "Additional Filtering"
|
|
151
161
|
msgstr ""
|
|
152
162
|
|
|
163
|
+
#. module: account_financial_report
|
|
164
|
+
#: model:ir.actions.act_window,name:account_financial_report.action_aged_partner_report_configuration
|
|
165
|
+
msgid "Age Partner Report Configuration"
|
|
166
|
+
msgstr ""
|
|
167
|
+
|
|
153
168
|
#. module: account_financial_report
|
|
154
169
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
155
170
|
msgid ""
|
|
156
171
|
"Age ≤ 120\n"
|
|
157
|
-
"
|
|
172
|
+
" d."
|
|
158
173
|
msgstr ""
|
|
159
174
|
|
|
160
175
|
#. module: account_financial_report
|
|
@@ -169,7 +184,7 @@ msgstr ""
|
|
|
169
184
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
170
185
|
msgid ""
|
|
171
186
|
"Age ≤ 30\n"
|
|
172
|
-
"
|
|
187
|
+
" d."
|
|
173
188
|
msgstr ""
|
|
174
189
|
|
|
175
190
|
#. module: account_financial_report
|
|
@@ -184,7 +199,7 @@ msgstr ""
|
|
|
184
199
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
185
200
|
msgid ""
|
|
186
201
|
"Age ≤ 60\n"
|
|
187
|
-
"
|
|
202
|
+
" d."
|
|
188
203
|
msgstr ""
|
|
189
204
|
|
|
190
205
|
#. module: account_financial_report
|
|
@@ -199,7 +214,7 @@ msgstr ""
|
|
|
199
214
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
200
215
|
msgid ""
|
|
201
216
|
"Age ≤ 90\n"
|
|
202
|
-
"
|
|
217
|
+
" d."
|
|
203
218
|
msgstr ""
|
|
204
219
|
|
|
205
220
|
#. module: account_financial_report
|
|
@@ -419,6 +434,7 @@ msgstr ""
|
|
|
419
434
|
#. module: account_financial_report
|
|
420
435
|
#. odoo-python
|
|
421
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
|
|
422
438
|
#: model:ir.model.fields,field_description:account_financial_report.field_account_financial_report_abstract_wizard__company_id
|
|
423
439
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__company_id
|
|
424
440
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__company_id
|
|
@@ -436,6 +452,18 @@ msgid "Compute accounts"
|
|
|
436
452
|
msgstr ""
|
|
437
453
|
|
|
438
454
|
#. module: account_financial_report
|
|
455
|
+
#: model:ir.model,name:account_financial_report.model_res_config_settings
|
|
456
|
+
msgid "Config Settings"
|
|
457
|
+
msgstr ""
|
|
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 ""
|
|
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
|
|
439
467
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__create_uid
|
|
440
468
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__create_uid
|
|
441
469
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__create_uid
|
|
@@ -446,6 +474,8 @@ msgid "Created by"
|
|
|
446
474
|
msgstr ""
|
|
447
475
|
|
|
448
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
|
|
449
479
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__create_date
|
|
450
480
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__create_date
|
|
451
481
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__create_date
|
|
@@ -637,6 +667,8 @@ msgid "Detail Taxes"
|
|
|
637
667
|
msgstr ""
|
|
638
668
|
|
|
639
669
|
#. module: account_financial_report
|
|
670
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__display_name
|
|
671
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__display_name
|
|
640
672
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__display_name
|
|
641
673
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__display_name
|
|
642
674
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__display_name
|
|
@@ -916,6 +948,12 @@ msgstr ""
|
|
|
916
948
|
msgid "Grouped By"
|
|
917
949
|
msgstr ""
|
|
918
950
|
|
|
951
|
+
#. module: account_financial_report
|
|
952
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
953
|
+
msgid ""
|
|
954
|
+
"Here you can set the intervals that will appear on the Aged Partner Balance."
|
|
955
|
+
msgstr ""
|
|
956
|
+
|
|
919
957
|
#. module: account_financial_report
|
|
920
958
|
#. odoo-python
|
|
921
959
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
@@ -945,6 +983,8 @@ msgid "Hierarchy Levels to display"
|
|
|
945
983
|
msgstr ""
|
|
946
984
|
|
|
947
985
|
#. module: account_financial_report
|
|
986
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__id
|
|
987
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__id
|
|
948
988
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__id
|
|
949
989
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__id
|
|
950
990
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__id
|
|
@@ -961,6 +1001,18 @@ msgid ""
|
|
|
961
1001
|
"webkit one only), only centralized amounts per period."
|
|
962
1002
|
msgstr ""
|
|
963
1003
|
|
|
1004
|
+
#. module: account_financial_report
|
|
1005
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__inferior_limit
|
|
1006
|
+
msgid "Inferior Limit"
|
|
1007
|
+
msgstr ""
|
|
1008
|
+
|
|
1009
|
+
#. module: account_financial_report
|
|
1010
|
+
#. odoo-python
|
|
1011
|
+
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1012
|
+
#, python-format
|
|
1013
|
+
msgid "Inferior Limit must be greather than zero"
|
|
1014
|
+
msgstr ""
|
|
1015
|
+
|
|
964
1016
|
#. module: account_financial_report
|
|
965
1017
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
966
1018
|
msgid ""
|
|
@@ -987,6 +1039,12 @@ msgstr ""
|
|
|
987
1039
|
msgid "Initial balance"
|
|
988
1040
|
msgstr ""
|
|
989
1041
|
|
|
1042
|
+
#. module: account_financial_report
|
|
1043
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__age_partner_config_id
|
|
1044
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_res_config_settings__default_age_partner_config_id
|
|
1045
|
+
msgid "Intervals configuration"
|
|
1046
|
+
msgstr ""
|
|
1047
|
+
|
|
990
1048
|
#. module: account_financial_report
|
|
991
1049
|
#. odoo-python
|
|
992
1050
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
@@ -1056,6 +1114,8 @@ msgid "Journals"
|
|
|
1056
1114
|
msgstr ""
|
|
1057
1115
|
|
|
1058
1116
|
#. module: account_financial_report
|
|
1117
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration____last_update
|
|
1118
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line____last_update
|
|
1059
1119
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard____last_update
|
|
1060
1120
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard____last_update
|
|
1061
1121
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard____last_update
|
|
@@ -1066,6 +1126,8 @@ msgid "Last Modified on"
|
|
|
1066
1126
|
msgstr ""
|
|
1067
1127
|
|
|
1068
1128
|
#. module: account_financial_report
|
|
1129
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__write_uid
|
|
1130
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__write_uid
|
|
1069
1131
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__write_uid
|
|
1070
1132
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__write_uid
|
|
1071
1133
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__write_uid
|
|
@@ -1076,6 +1138,8 @@ msgid "Last Updated by"
|
|
|
1076
1138
|
msgstr ""
|
|
1077
1139
|
|
|
1078
1140
|
#. module: account_financial_report
|
|
1141
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__write_date
|
|
1142
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__write_date
|
|
1079
1143
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__write_date
|
|
1080
1144
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__write_date
|
|
1081
1145
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__write_date
|
|
@@ -1107,6 +1171,11 @@ msgstr ""
|
|
|
1107
1171
|
msgid "Limit hierarchy levels"
|
|
1108
1172
|
msgstr ""
|
|
1109
1173
|
|
|
1174
|
+
#. module: account_financial_report
|
|
1175
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__line_ids
|
|
1176
|
+
msgid "Line"
|
|
1177
|
+
msgstr ""
|
|
1178
|
+
|
|
1110
1179
|
#. module: account_financial_report
|
|
1111
1180
|
#. odoo-python
|
|
1112
1181
|
#: code:addons/account_financial_report/report/general_ledger.py:0
|
|
@@ -1118,6 +1187,16 @@ msgstr ""
|
|
|
1118
1187
|
msgid "Missing Partner"
|
|
1119
1188
|
msgstr ""
|
|
1120
1189
|
|
|
1190
|
+
#. module: account_financial_report
|
|
1191
|
+
#: model:ir.model,name:account_financial_report.model_account_age_report_configuration_line
|
|
1192
|
+
msgid "Model to set interval lines for Age partner balance report"
|
|
1193
|
+
msgstr ""
|
|
1194
|
+
|
|
1195
|
+
#. module: account_financial_report
|
|
1196
|
+
#: model:ir.model,name:account_financial_report.model_account_age_report_configuration
|
|
1197
|
+
msgid "Model to set intervals for Age partner balance report"
|
|
1198
|
+
msgstr ""
|
|
1199
|
+
|
|
1121
1200
|
#. module: account_financial_report
|
|
1122
1201
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__move_target
|
|
1123
1202
|
msgid "Move Target"
|
|
@@ -1128,10 +1207,19 @@ msgstr ""
|
|
|
1128
1207
|
msgid "Moves"
|
|
1129
1208
|
msgstr ""
|
|
1130
1209
|
|
|
1210
|
+
#. module: account_financial_report
|
|
1211
|
+
#. odoo-python
|
|
1212
|
+
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1213
|
+
#, python-format
|
|
1214
|
+
msgid "Must complete Configuration Lines"
|
|
1215
|
+
msgstr ""
|
|
1216
|
+
|
|
1131
1217
|
#. module: account_financial_report
|
|
1132
1218
|
#. odoo-python
|
|
1133
1219
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1134
1220
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1221
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__name
|
|
1222
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__name
|
|
1135
1223
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
|
|
1136
1224
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
1137
1225
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
@@ -1139,6 +1227,14 @@ msgstr ""
|
|
|
1139
1227
|
msgid "Name"
|
|
1140
1228
|
msgstr ""
|
|
1141
1229
|
|
|
1230
|
+
#. module: account_financial_report
|
|
1231
|
+
#. odoo-python
|
|
1232
|
+
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1233
|
+
#: model:ir.model.constraint,message:account_financial_report.constraint_account_age_report_configuration_line_unique_name_config_combination
|
|
1234
|
+
#, python-format
|
|
1235
|
+
msgid "Name must be unique per report configuration"
|
|
1236
|
+
msgstr ""
|
|
1237
|
+
|
|
1142
1238
|
#. module: account_financial_report
|
|
1143
1239
|
#. odoo-python
|
|
1144
1240
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
@@ -1196,6 +1292,11 @@ msgstr ""
|
|
|
1196
1292
|
msgid "Not due"
|
|
1197
1293
|
msgstr ""
|
|
1198
1294
|
|
|
1295
|
+
#. module: account_financial_report
|
|
1296
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
1297
|
+
msgid "OCA Aged Report Configuration"
|
|
1298
|
+
msgstr ""
|
|
1299
|
+
|
|
1199
1300
|
#. module: account_financial_report
|
|
1200
1301
|
#: model:ir.ui.menu,name:account_financial_report.menu_oca_reports
|
|
1201
1302
|
msgid "OCA accounting reports"
|
|
@@ -1809,7 +1910,6 @@ msgid "future"
|
|
|
1809
1910
|
msgstr ""
|
|
1810
1911
|
|
|
1811
1912
|
#. module: account_financial_report
|
|
1812
|
-
#: model_terms:ir.ui.view,arch_db:account_financial_report.aged_partner_balance_wizard
|
|
1813
1913
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
|
|
1814
1914
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.journal_ledger_wizard
|
|
1815
1915
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.open_items_wizard
|
|
@@ -52,6 +52,11 @@ msgstr "91 - 120 يوم."
|
|
|
52
52
|
msgid "<b>Taxes summary</b>"
|
|
53
53
|
msgstr "<b>موجز الضرائب</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 ""
|
|
|
92
97
|
msgid "Account"
|
|
93
98
|
msgstr "الحساب"
|
|
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
|
|
@@ -155,12 +165,17 @@ msgstr "تجميع القيود"
|
|
|
155
165
|
msgid "Additional Filtering"
|
|
156
166
|
msgstr ""
|
|
157
167
|
|
|
168
|
+
#. module: account_financial_report
|
|
169
|
+
#: model:ir.actions.act_window,name:account_financial_report.action_aged_partner_report_configuration
|
|
170
|
+
msgid "Age Partner Report Configuration"
|
|
171
|
+
msgstr ""
|
|
172
|
+
|
|
158
173
|
#. module: account_financial_report
|
|
159
174
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
160
175
|
msgid ""
|
|
161
176
|
"Age ≤ 120\n"
|
|
162
|
-
"
|
|
163
|
-
msgstr "
|
|
177
|
+
" d."
|
|
178
|
+
msgstr ""
|
|
164
179
|
|
|
165
180
|
#. module: account_financial_report
|
|
166
181
|
#. odoo-python
|
|
@@ -173,8 +188,8 @@ msgstr "⤠120 يوم."
|
|
|
173
188
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
174
189
|
msgid ""
|
|
175
190
|
"Age ≤ 30\n"
|
|
176
|
-
"
|
|
177
|
-
msgstr "
|
|
191
|
+
" d."
|
|
192
|
+
msgstr ""
|
|
178
193
|
|
|
179
194
|
#. module: account_financial_report
|
|
180
195
|
#. odoo-python
|
|
@@ -187,8 +202,8 @@ msgstr "⤠30 يوم."
|
|
|
187
202
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
188
203
|
msgid ""
|
|
189
204
|
"Age ≤ 60\n"
|
|
190
|
-
"
|
|
191
|
-
msgstr "
|
|
205
|
+
" d."
|
|
206
|
+
msgstr ""
|
|
192
207
|
|
|
193
208
|
#. module: account_financial_report
|
|
194
209
|
#. odoo-python
|
|
@@ -201,8 +216,8 @@ msgstr "⤠60 يوم."
|
|
|
201
216
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
202
217
|
msgid ""
|
|
203
218
|
"Age ≤ 90\n"
|
|
204
|
-
"
|
|
205
|
-
msgstr "
|
|
219
|
+
" d."
|
|
220
|
+
msgstr ""
|
|
206
221
|
|
|
207
222
|
#. module: account_financial_report
|
|
208
223
|
#. odoo-python
|
|
@@ -424,6 +439,7 @@ msgstr "الرمز"
|
|
|
424
439
|
#. module: account_financial_report
|
|
425
440
|
#. odoo-python
|
|
426
441
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
442
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__company_id
|
|
427
443
|
#: model:ir.model.fields,field_description:account_financial_report.field_account_financial_report_abstract_wizard__company_id
|
|
428
444
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__company_id
|
|
429
445
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__company_id
|
|
@@ -442,6 +458,18 @@ msgid "Compute accounts"
|
|
|
442
458
|
msgstr "حسابات محسوبة"
|
|
443
459
|
|
|
444
460
|
#. module: account_financial_report
|
|
461
|
+
#: model:ir.model,name:account_financial_report.model_res_config_settings
|
|
462
|
+
msgid "Config Settings"
|
|
463
|
+
msgstr ""
|
|
464
|
+
|
|
465
|
+
#. module: account_financial_report
|
|
466
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
467
|
+
msgid "Configurations"
|
|
468
|
+
msgstr ""
|
|
469
|
+
|
|
470
|
+
#. module: account_financial_report
|
|
471
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__create_uid
|
|
472
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__create_uid
|
|
445
473
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__create_uid
|
|
446
474
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__create_uid
|
|
447
475
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__create_uid
|
|
@@ -452,6 +480,8 @@ msgid "Created by"
|
|
|
452
480
|
msgstr "أنشئ بواسطة"
|
|
453
481
|
|
|
454
482
|
#. module: account_financial_report
|
|
483
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__create_date
|
|
484
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__create_date
|
|
455
485
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__create_date
|
|
456
486
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__create_date
|
|
457
487
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__create_date
|
|
@@ -640,6 +670,8 @@ msgid "Detail Taxes"
|
|
|
640
670
|
msgstr "تفصيل الضرائب"
|
|
641
671
|
|
|
642
672
|
#. module: account_financial_report
|
|
673
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__display_name
|
|
674
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__display_name
|
|
643
675
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__display_name
|
|
644
676
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__display_name
|
|
645
677
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__display_name
|
|
@@ -925,6 +957,12 @@ msgstr "تجميع القيود حسب"
|
|
|
925
957
|
msgid "Grouped By"
|
|
926
958
|
msgstr ""
|
|
927
959
|
|
|
960
|
+
#. module: account_financial_report
|
|
961
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
962
|
+
msgid ""
|
|
963
|
+
"Here you can set the intervals that will appear on the Aged Partner Balance."
|
|
964
|
+
msgstr ""
|
|
965
|
+
|
|
928
966
|
#. module: account_financial_report
|
|
929
967
|
#. odoo-python
|
|
930
968
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
@@ -955,6 +993,8 @@ msgid "Hierarchy Levels to display"
|
|
|
955
993
|
msgstr ""
|
|
956
994
|
|
|
957
995
|
#. module: account_financial_report
|
|
996
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__id
|
|
997
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__id
|
|
958
998
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__id
|
|
959
999
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__id
|
|
960
1000
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__id
|
|
@@ -971,6 +1011,18 @@ msgid ""
|
|
|
971
1011
|
"webkit one only), only centralized amounts per period."
|
|
972
1012
|
msgstr ""
|
|
973
1013
|
|
|
1014
|
+
#. module: account_financial_report
|
|
1015
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__inferior_limit
|
|
1016
|
+
msgid "Inferior Limit"
|
|
1017
|
+
msgstr ""
|
|
1018
|
+
|
|
1019
|
+
#. module: account_financial_report
|
|
1020
|
+
#. odoo-python
|
|
1021
|
+
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1022
|
+
#, python-format
|
|
1023
|
+
msgid "Inferior Limit must be greather than zero"
|
|
1024
|
+
msgstr ""
|
|
1025
|
+
|
|
974
1026
|
#. module: account_financial_report
|
|
975
1027
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
976
1028
|
#, fuzzy
|
|
@@ -995,6 +1047,12 @@ msgstr "الرصيد الافتتاحي"
|
|
|
995
1047
|
msgid "Initial balance"
|
|
996
1048
|
msgstr "الرصيد الافتتاحي"
|
|
997
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
|
+
|
|
998
1056
|
#. module: account_financial_report
|
|
999
1057
|
#. odoo-python
|
|
1000
1058
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
@@ -1068,6 +1126,8 @@ msgid "Journals"
|
|
|
1068
1126
|
msgstr "اليوميات"
|
|
1069
1127
|
|
|
1070
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
|
|
1071
1131
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard____last_update
|
|
1072
1132
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard____last_update
|
|
1073
1133
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard____last_update
|
|
@@ -1078,6 +1138,8 @@ msgid "Last Modified on"
|
|
|
1078
1138
|
msgstr "آخر تعديل في"
|
|
1079
1139
|
|
|
1080
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
|
|
1081
1143
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__write_uid
|
|
1082
1144
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__write_uid
|
|
1083
1145
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__write_uid
|
|
@@ -1088,6 +1150,8 @@ msgid "Last Updated by"
|
|
|
1088
1150
|
msgstr "آخر تحديث بواسطة"
|
|
1089
1151
|
|
|
1090
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
|
|
1091
1155
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__write_date
|
|
1092
1156
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__write_date
|
|
1093
1157
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__write_date
|
|
@@ -1119,6 +1183,11 @@ msgstr "المستوى %s"
|
|
|
1119
1183
|
msgid "Limit hierarchy levels"
|
|
1120
1184
|
msgstr ""
|
|
1121
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 "بند"
|
|
1190
|
+
|
|
1122
1191
|
#. module: account_financial_report
|
|
1123
1192
|
#. odoo-python
|
|
1124
1193
|
#: code:addons/account_financial_report/report/general_ledger.py:0
|
|
@@ -1128,6 +1197,16 @@ msgstr ""
|
|
|
1128
1197
|
msgid "Missing Partner"
|
|
1129
1198
|
msgstr ""
|
|
1130
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
|
+
|
|
1205
|
+
#. module: account_financial_report
|
|
1206
|
+
#: model:ir.model,name:account_financial_report.model_account_age_report_configuration
|
|
1207
|
+
msgid "Model to set intervals for Age partner balance report"
|
|
1208
|
+
msgstr ""
|
|
1209
|
+
|
|
1131
1210
|
#. module: account_financial_report
|
|
1132
1211
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__move_target
|
|
1133
1212
|
msgid "Move Target"
|
|
@@ -1138,10 +1217,19 @@ msgstr "التحركات المستهدفة"
|
|
|
1138
1217
|
msgid "Moves"
|
|
1139
1218
|
msgstr "القيود"
|
|
1140
1219
|
|
|
1220
|
+
#. module: account_financial_report
|
|
1221
|
+
#. odoo-python
|
|
1222
|
+
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1223
|
+
#, python-format
|
|
1224
|
+
msgid "Must complete Configuration Lines"
|
|
1225
|
+
msgstr ""
|
|
1226
|
+
|
|
1141
1227
|
#. module: account_financial_report
|
|
1142
1228
|
#. odoo-python
|
|
1143
1229
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1144
1230
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1231
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__name
|
|
1232
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__name
|
|
1145
1233
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
|
|
1146
1234
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
1147
1235
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
@@ -1149,6 +1237,14 @@ msgstr "القيود"
|
|
|
1149
1237
|
msgid "Name"
|
|
1150
1238
|
msgstr "الاسم"
|
|
1151
1239
|
|
|
1240
|
+
#. module: account_financial_report
|
|
1241
|
+
#. odoo-python
|
|
1242
|
+
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1243
|
+
#: model:ir.model.constraint,message:account_financial_report.constraint_account_age_report_configuration_line_unique_name_config_combination
|
|
1244
|
+
#, python-format
|
|
1245
|
+
msgid "Name must be unique per report configuration"
|
|
1246
|
+
msgstr ""
|
|
1247
|
+
|
|
1152
1248
|
#. module: account_financial_report
|
|
1153
1249
|
#. odoo-python
|
|
1154
1250
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
@@ -1205,6 +1301,11 @@ msgstr "غير مرحّل"
|
|
|
1205
1301
|
msgid "Not due"
|
|
1206
1302
|
msgstr "غير مستحق"
|
|
1207
1303
|
|
|
1304
|
+
#. module: account_financial_report
|
|
1305
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
1306
|
+
msgid "OCA Aged Report Configuration"
|
|
1307
|
+
msgstr ""
|
|
1308
|
+
|
|
1208
1309
|
#. module: account_financial_report
|
|
1209
1310
|
#: model:ir.ui.menu,name:account_financial_report.menu_oca_reports
|
|
1210
1311
|
msgid "OCA accounting reports"
|
|
@@ -1821,7 +1922,6 @@ msgid "future"
|
|
|
1821
1922
|
msgstr ""
|
|
1822
1923
|
|
|
1823
1924
|
#. module: account_financial_report
|
|
1824
|
-
#: model_terms:ir.ui.view,arch_db:account_financial_report.aged_partner_balance_wizard
|
|
1825
1925
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
|
|
1826
1926
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.journal_ledger_wizard
|
|
1827
1927
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.open_items_wizard
|
|
@@ -1870,6 +1970,26 @@ msgstr ""
|
|
|
1870
1970
|
msgid "width: 8.11%;"
|
|
1871
1971
|
msgstr ""
|
|
1872
1972
|
|
|
1973
|
+
#~ msgid ""
|
|
1974
|
+
#~ "Age ≤ 120\n"
|
|
1975
|
+
#~ " d."
|
|
1976
|
+
#~ msgstr "≤ 120 يوم."
|
|
1977
|
+
|
|
1978
|
+
#~ msgid ""
|
|
1979
|
+
#~ "Age ≤ 30\n"
|
|
1980
|
+
#~ " d."
|
|
1981
|
+
#~ msgstr "المدة ≤ 30 يوم."
|
|
1982
|
+
|
|
1983
|
+
#~ msgid ""
|
|
1984
|
+
#~ "Age ≤ 60\n"
|
|
1985
|
+
#~ " d."
|
|
1986
|
+
#~ msgstr "المدة ≤ 60 يوم."
|
|
1987
|
+
|
|
1988
|
+
#~ msgid ""
|
|
1989
|
+
#~ "Age ≤ 90\n"
|
|
1990
|
+
#~ " d."
|
|
1991
|
+
#~ msgstr "المدة ≤ 90 يوم."
|
|
1992
|
+
|
|
1873
1993
|
#, fuzzy
|
|
1874
1994
|
#~ msgid "Filter analytic tags"
|
|
1875
1995
|
#~ msgstr "ترشيح الحسابات"
|
|
@@ -2056,9 +2176,6 @@ msgstr ""
|
|
|
2056
2176
|
#~ msgid "Label"
|
|
2057
2177
|
#~ msgstr "البيان"
|
|
2058
2178
|
|
|
2059
|
-
#~ msgid "Line"
|
|
2060
|
-
#~ msgstr "بند"
|
|
2061
|
-
|
|
2062
2179
|
#~ msgid "Matching Number"
|
|
2063
2180
|
#~ msgstr "الرقم المطابق"
|
|
2064
2181
|
|