odoo-addon-account-financial-report 15.0.1.1.0.1__py3-none-any.whl → 18.0.1.4.4.3__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (104) hide show
  1. odoo/addons/account_financial_report/README.rst +131 -74
  2. odoo/addons/account_financial_report/__manifest__.py +6 -9
  3. odoo/addons/account_financial_report/i18n/account_financial_report.pot +313 -188
  4. odoo/addons/account_financial_report/i18n/ar.po +579 -433
  5. odoo/addons/account_financial_report/i18n/ca.po +474 -289
  6. odoo/addons/account_financial_report/i18n/{fr_FR.po → ca_AD.po} +539 -491
  7. odoo/addons/account_financial_report/i18n/ca_ES.po +1891 -0
  8. odoo/addons/account_financial_report/i18n/de.po +455 -295
  9. odoo/addons/account_financial_report/i18n/es.po +458 -394
  10. odoo/addons/account_financial_report/i18n/es_AR.po +464 -283
  11. odoo/addons/account_financial_report/i18n/es_MX.po +315 -220
  12. odoo/addons/account_financial_report/i18n/fr.po +620 -435
  13. odoo/addons/account_financial_report/i18n/fr_CH.po +616 -462
  14. odoo/addons/account_financial_report/i18n/hr.po +506 -355
  15. odoo/addons/account_financial_report/i18n/hr_HR.po +331 -232
  16. odoo/addons/account_financial_report/i18n/it.po +538 -356
  17. odoo/addons/account_financial_report/i18n/ja.po +339 -240
  18. odoo/addons/account_financial_report/i18n/nl.po +462 -324
  19. odoo/addons/account_financial_report/i18n/nl_NL.po +318 -220
  20. odoo/addons/account_financial_report/i18n/pt.po +429 -242
  21. odoo/addons/account_financial_report/i18n/pt_BR.po +588 -438
  22. odoo/addons/account_financial_report/i18n/ro.po +499 -342
  23. odoo/addons/account_financial_report/i18n/sl.po +1945 -0
  24. odoo/addons/account_financial_report/i18n/sv.po +1997 -0
  25. odoo/addons/account_financial_report/i18n/tr.po +1947 -0
  26. odoo/addons/account_financial_report/menuitems.xml +1 -1
  27. odoo/addons/account_financial_report/models/__init__.py +2 -0
  28. odoo/addons/account_financial_report/models/account_age_report_configuration.py +49 -0
  29. odoo/addons/account_financial_report/models/account_group.py +62 -23
  30. odoo/addons/account_financial_report/models/account_move_line.py +33 -3
  31. odoo/addons/account_financial_report/models/ir_actions_report.py +6 -4
  32. odoo/addons/account_financial_report/models/res_config_settings.py +36 -0
  33. odoo/addons/account_financial_report/readme/CONFIGURE.md +26 -0
  34. odoo/addons/account_financial_report/readme/CONTRIBUTORS.md +38 -0
  35. odoo/addons/account_financial_report/readme/CREDITS.md +1 -0
  36. odoo/addons/account_financial_report/readme/DESCRIPTION.md +21 -0
  37. odoo/addons/account_financial_report/readme/HISTORY.md +16 -0
  38. odoo/addons/account_financial_report/readme/ROADMAP.md +6 -0
  39. odoo/addons/account_financial_report/report/abstract_report.py +73 -23
  40. odoo/addons/account_financial_report/report/abstract_report_xlsx.py +28 -23
  41. odoo/addons/account_financial_report/report/aged_partner_balance.py +131 -30
  42. odoo/addons/account_financial_report/report/aged_partner_balance_xlsx.py +158 -118
  43. odoo/addons/account_financial_report/report/general_ledger.py +421 -340
  44. odoo/addons/account_financial_report/report/general_ledger_xlsx.py +127 -75
  45. odoo/addons/account_financial_report/report/journal_ledger.py +84 -68
  46. odoo/addons/account_financial_report/report/journal_ledger_xlsx.py +14 -8
  47. odoo/addons/account_financial_report/report/open_items.py +113 -70
  48. odoo/addons/account_financial_report/report/open_items_xlsx.py +152 -19
  49. odoo/addons/account_financial_report/report/templates/aged_partner_balance.xml +408 -311
  50. odoo/addons/account_financial_report/report/templates/general_ledger.xml +273 -213
  51. odoo/addons/account_financial_report/report/templates/journal_ledger.xml +70 -76
  52. odoo/addons/account_financial_report/report/templates/layouts.xml +12 -1
  53. odoo/addons/account_financial_report/report/templates/open_items.xml +181 -55
  54. odoo/addons/account_financial_report/report/templates/trial_balance.xml +304 -195
  55. odoo/addons/account_financial_report/report/templates/vat_report.xml +10 -10
  56. odoo/addons/account_financial_report/report/trial_balance.py +463 -211
  57. odoo/addons/account_financial_report/report/trial_balance_xlsx.py +37 -38
  58. odoo/addons/account_financial_report/report/vat_report.py +36 -25
  59. odoo/addons/account_financial_report/report/vat_report_xlsx.py +1 -1
  60. odoo/addons/account_financial_report/security/ir.model.access.csv +2 -0
  61. odoo/addons/account_financial_report/security/security.xml +8 -0
  62. odoo/addons/account_financial_report/static/description/index.html +106 -55
  63. odoo/addons/account_financial_report/static/src/css/report.css +77 -42
  64. odoo/addons/account_financial_report/static/src/css/report_html.css +10 -0
  65. odoo/addons/account_financial_report/static/src/js/report.esm.js +72 -0
  66. odoo/addons/account_financial_report/static/src/js/report_action.esm.js +39 -0
  67. odoo/addons/account_financial_report/static/src/xml/report.xml +10 -9
  68. odoo/addons/account_financial_report/tests/__init__.py +1 -0
  69. odoo/addons/account_financial_report/tests/test_age_report_configuration.py +42 -0
  70. odoo/addons/account_financial_report/tests/test_aged_partner_balance.py +99 -9
  71. odoo/addons/account_financial_report/tests/test_general_ledger.py +19 -9
  72. odoo/addons/account_financial_report/tests/test_journal_ledger.py +18 -9
  73. odoo/addons/account_financial_report/tests/test_open_items.py +42 -2
  74. odoo/addons/account_financial_report/tests/test_trial_balance.py +114 -223
  75. odoo/addons/account_financial_report/tests/test_vat_report.py +17 -9
  76. odoo/addons/account_financial_report/view/account_age_report_configuration_views.xml +41 -0
  77. odoo/addons/account_financial_report/view/res_config_settings_views.xml +51 -0
  78. odoo/addons/account_financial_report/wizard/abstract_wizard.py +23 -0
  79. odoo/addons/account_financial_report/wizard/aged_partner_balance_wizard.py +22 -8
  80. odoo/addons/account_financial_report/wizard/aged_partner_balance_wizard_view.xml +2 -3
  81. odoo/addons/account_financial_report/wizard/general_ledger_wizard.py +42 -36
  82. odoo/addons/account_financial_report/wizard/general_ledger_wizard_view.xml +26 -41
  83. odoo/addons/account_financial_report/wizard/journal_ledger_wizard.py +19 -7
  84. odoo/addons/account_financial_report/wizard/journal_ledger_wizard_view.xml +15 -14
  85. odoo/addons/account_financial_report/wizard/open_items_wizard.py +34 -8
  86. odoo/addons/account_financial_report/wizard/open_items_wizard_view.xml +16 -14
  87. odoo/addons/account_financial_report/wizard/trial_balance_wizard.py +68 -45
  88. odoo/addons/account_financial_report/wizard/trial_balance_wizard_view.xml +40 -39
  89. odoo/addons/account_financial_report/wizard/vat_report_wizard.py +9 -3
  90. odoo/addons/account_financial_report/wizard/vat_report_wizard_view.xml +14 -14
  91. odoo_addon_account_financial_report-18.0.1.4.4.3.dist-info/METADATA +234 -0
  92. odoo_addon_account_financial_report-18.0.1.4.4.3.dist-info/RECORD +107 -0
  93. {odoo_addon_account_financial_report-15.0.1.1.0.1.dist-info → odoo_addon_account_financial_report-18.0.1.4.4.3.dist-info}/WHEEL +1 -1
  94. odoo_addon_account_financial_report-18.0.1.4.4.3.dist-info/top_level.txt +1 -0
  95. odoo/addons/account_financial_report/readme/CONTRIBUTORS.rst +0 -35
  96. odoo/addons/account_financial_report/readme/DESCRIPTION.rst +0 -16
  97. odoo/addons/account_financial_report/readme/HISTORY.rst +0 -19
  98. odoo/addons/account_financial_report/readme/ROADMAP.rst +0 -7
  99. odoo/addons/account_financial_report/static/src/js/action_manager_report.js +0 -37
  100. odoo/addons/account_financial_report/static/src/js/client_action.js +0 -58
  101. odoo/addons/account_financial_report/static/src/js/report.js +0 -58
  102. odoo_addon_account_financial_report-15.0.1.1.0.1.dist-info/METADATA +0 -179
  103. odoo_addon_account_financial_report-15.0.1.1.0.1.dist-info/RECORD +0 -95
  104. odoo_addon_account_financial_report-15.0.1.1.0.1.dist-info/top_level.txt +0 -1
@@ -4,53 +4,63 @@
4
4
  #
5
5
  msgid ""
6
6
  msgstr ""
7
- "Project-Id-Version: Odoo Server 14.0\n"
7
+ "Project-Id-Version: Odoo Server 18.0\n"
8
8
  "Report-Msgid-Bugs-To: \n"
9
- "PO-Revision-Date: 2021-04-10 15:46+0000\n"
10
- "Last-Translator: Yves Le Doeuff <yld@alliasys.fr>\n"
9
+ "Last-Translator: Automatically generated\n"
11
10
  "Language-Team: none\n"
12
- "Language: fr_FR\n"
11
+ "Language: ca_AD\n"
13
12
  "MIME-Version: 1.0\n"
14
13
  "Content-Type: text/plain; charset=UTF-8\n"
15
14
  "Content-Transfer-Encoding: \n"
16
- "Plural-Forms: nplurals=2; plural=n > 1;\n"
17
- "X-Generator: Weblate 4.3.2\n"
15
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
18
16
 
19
17
  #. module: account_financial_report
20
18
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_lines_header
21
19
  msgid "&gt; 120 d."
22
- msgstr "&gt; 120 j."
20
+ msgstr ""
23
21
 
24
22
  #. module: account_financial_report
25
23
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_lines_header
26
24
  msgid "1 - 30 d."
27
- msgstr "1 - 30 j."
25
+ msgstr ""
28
26
 
29
27
  #. module: account_financial_report
30
28
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
31
29
  msgid "10"
32
- msgstr "10"
30
+ msgstr ""
33
31
 
34
32
  #. module: account_financial_report
35
33
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_lines_header
36
34
  msgid "31 - 60 d."
37
- msgstr "31 - 60 j."
35
+ msgstr ""
38
36
 
39
37
  #. module: account_financial_report
40
38
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_lines_header
41
39
  msgid "61 - 90 d."
42
- msgstr "61 - 90 j."
40
+ msgstr ""
43
41
 
44
42
  #. module: account_financial_report
45
43
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_lines_header
46
44
  msgid "91 - 120 d."
47
- msgstr "91 - 120 j."
45
+ msgstr ""
48
46
 
49
47
  #. module: account_financial_report
50
48
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
51
49
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
52
50
  msgid "<b>Taxes summary</b>"
53
- msgstr "<b> Synthèse des taxes</b>"
51
+ msgstr ""
52
+
53
+ #. module: account_financial_report
54
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.trial_balance_wizard
55
+ msgid ""
56
+ "<i class=\"fa fa-exclamation-triangle mr-3\"/>\n"
57
+ " Duplicate amounts may be shown because more than one analytical account may be defined in the journal items."
58
+ msgstr ""
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 ""
54
64
 
55
65
  #. module: account_financial_report
56
66
  #: model_terms:ir.ui.view,arch_db:account_financial_report.aged_partner_balance_wizard
@@ -58,7 +68,7 @@ msgstr "<b> Synthèse des taxes</b>"
58
68
  #: model_terms:ir.ui.view,arch_db:account_financial_report.open_items_wizard
59
69
  #: model_terms:ir.ui.view,arch_db:account_financial_report.trial_balance_wizard
60
70
  msgid "<span class=\"oe_inline\">To</span>"
61
- msgstr "<span class=\"oe_inline\">à</span>"
71
+ msgstr ""
62
72
 
63
73
  #. module: account_financial_report
64
74
  #: model:ir.model,name:account_financial_report.model_report_account_financial_report_abstract_report
@@ -68,14 +78,15 @@ msgstr ""
68
78
  #. module: account_financial_report
69
79
  #: model:ir.model,name:account_financial_report.model_account_financial_report_abstract_wizard
70
80
  msgid "Abstract Wizard"
71
- msgstr "Résumé du rapport"
81
+ msgstr ""
72
82
 
73
83
  #. module: account_financial_report
74
84
  #: model:ir.model,name:account_financial_report.model_report_account_financial_report_abstract_report_xlsx
75
85
  msgid "Abstract XLSX Account Financial Report"
76
- msgstr "Résumé du rapport financier comptable au format XLSX"
86
+ msgstr ""
77
87
 
78
88
  #. module: account_financial_report
89
+ #. odoo-python
79
90
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
80
91
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
81
92
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
@@ -87,9 +98,13 @@ msgstr "Résumé du rapport financier comptable au format XLSX"
87
98
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
88
99
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
89
100
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
90
- #, python-format
91
101
  msgid "Account"
92
- msgstr "Compte"
102
+ msgstr ""
103
+
104
+ #. module: account_financial_report
105
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__account_age_report_config_id
106
+ msgid "Account Age Report Config"
107
+ msgstr ""
93
108
 
94
109
  #. module: account_financial_report
95
110
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__account_code_from
@@ -97,7 +112,7 @@ msgstr "Compte"
97
112
  #: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__account_code_from
98
113
  #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__account_code_from
99
114
  msgid "Account Code From"
100
- msgstr "Du compte"
115
+ msgstr ""
101
116
 
102
117
  #. module: account_financial_report
103
118
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__account_code_to
@@ -105,142 +120,147 @@ msgstr "Du compte"
105
120
  #: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__account_code_to
106
121
  #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__account_code_to
107
122
  msgid "Account Code To"
108
- msgstr "Au compte"
123
+ msgstr ""
109
124
 
110
125
  #. module: account_financial_report
111
126
  #: model:ir.model,name:account_financial_report.model_account_group
112
127
  msgid "Account Group"
113
- msgstr "Groupe de compte"
128
+ msgstr ""
114
129
 
115
130
  #. module: account_financial_report
131
+ #. odoo-python
116
132
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
117
- #, python-format
118
133
  msgid "Account Name"
119
- msgstr "Nom du compte"
134
+ msgstr ""
120
135
 
121
136
  #. module: account_financial_report
137
+ #. odoo-python
122
138
  #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
123
139
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
124
- #, python-format
125
140
  msgid "Account at 0 filter"
126
- msgstr "Filtrer les comptes à 0"
141
+ msgstr ""
127
142
 
128
143
  #. module: account_financial_report
144
+ #. odoo-python
129
145
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
130
146
  #: code:addons/account_financial_report/report/open_items_xlsx.py:0
131
147
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
132
148
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
133
- #, python-format
134
149
  msgid "Account balance at 0 filter"
135
- msgstr "Filtrer les soldes de compte à 0"
150
+ msgstr ""
136
151
 
137
152
  #. module: account_financial_report
138
153
  #: model:ir.model.fields,field_description:account_financial_report.field_account_group__account_ids
139
154
  msgid "Accounts"
140
- msgstr "Comptes"
155
+ msgstr ""
141
156
 
142
157
  #. module: account_financial_report
143
158
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__centralize
144
159
  msgid "Activate centralization"
145
- msgstr "Activer la centralisation"
160
+ msgstr ""
146
161
 
147
162
  #. module: account_financial_report
148
163
  #: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
149
164
  msgid "Additional Filtering"
150
- msgstr "Filtre supplémentaire"
165
+ msgstr ""
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 ""
151
171
 
152
172
  #. module: account_financial_report
153
173
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
154
174
  msgid ""
155
175
  "Age ≤ 120\n"
156
- " d."
157
- msgstr "≤ 120"
176
+ " d."
177
+ msgstr ""
158
178
 
159
179
  #. module: account_financial_report
180
+ #. odoo-python
160
181
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
161
- #, python-format
162
182
  msgid "Age ≤ 120 d."
163
- msgstr "≤ 120 jours"
183
+ msgstr ""
164
184
 
165
185
  #. module: account_financial_report
166
186
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
167
187
  msgid ""
168
188
  "Age ≤ 30\n"
169
- " d."
170
- msgstr "≤ 30 jours"
189
+ " d."
190
+ msgstr ""
171
191
 
172
192
  #. module: account_financial_report
193
+ #. odoo-python
173
194
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
174
- #, python-format
175
195
  msgid "Age ≤ 30 d."
176
- msgstr "≤ 30 j."
196
+ msgstr ""
177
197
 
178
198
  #. module: account_financial_report
179
199
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
180
200
  msgid ""
181
201
  "Age ≤ 60\n"
182
- " d."
183
- msgstr "≤ 60 jours"
202
+ " d."
203
+ msgstr ""
184
204
 
185
205
  #. module: account_financial_report
206
+ #. odoo-python
186
207
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
187
- #, python-format
188
208
  msgid "Age ≤ 60 d."
189
- msgstr "≤ 60 j."
209
+ msgstr ""
190
210
 
191
211
  #. module: account_financial_report
192
212
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
193
213
  msgid ""
194
214
  "Age ≤ 90\n"
195
- " d."
196
- msgstr "≤ 90 j."
215
+ " d."
216
+ msgstr ""
197
217
 
198
218
  #. module: account_financial_report
219
+ #. odoo-python
199
220
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
200
- #, python-format
201
221
  msgid "Age ≤ 90 d."
202
- msgstr "≤ 90 j."
222
+ msgstr ""
203
223
 
204
224
  #. module: account_financial_report
225
+ #. odoo-python
205
226
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
206
227
  #: model:ir.actions.act_window,name:account_financial_report.action_aged_partner_balance_wizard
207
228
  #: model:ir.actions.report,name:account_financial_report.action_print_report_aged_partner_balance_html
208
229
  #: model:ir.actions.report,name:account_financial_report.action_print_report_aged_partner_balance_qweb
209
230
  #: model:ir.ui.menu,name:account_financial_report.menu_aged_partner_balance_wizard
210
- #, python-format
211
231
  msgid "Aged Partner Balance"
212
- msgstr "Balance âgée des tiers"
232
+ msgstr ""
213
233
 
214
234
  #. module: account_financial_report
215
235
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_base
216
236
  msgid "Aged Partner Balance -"
217
- msgstr "Balance âgée des tiers -"
237
+ msgstr ""
218
238
 
219
239
  #. module: account_financial_report
220
240
  #: model:ir.model,name:account_financial_report.model_report_account_financial_report_aged_partner_balance
221
241
  msgid "Aged Partner Balance Report"
222
- msgstr "Balance âgée des tiers"
242
+ msgstr ""
223
243
 
224
244
  #. module: account_financial_report
225
245
  #: model:ir.model,name:account_financial_report.model_aged_partner_balance_report_wizard
226
246
  msgid "Aged Partner Balance Wizard"
227
- msgstr "Assistant balance âgée des tiers"
247
+ msgstr ""
228
248
 
229
249
  #. module: account_financial_report
230
250
  #: model:ir.model,name:account_financial_report.model_report_a_f_r_report_aged_partner_balance_xlsx
231
251
  msgid "Aged Partner Balance XLSL Report"
232
- msgstr "Balance âgée des tiers XLSX"
252
+ msgstr ""
233
253
 
234
254
  #. module: account_financial_report
235
255
  #: model:ir.actions.report,name:account_financial_report.action_report_aged_partner_balance_xlsx
236
256
  msgid "Aged Partner Balance XLSX"
237
- msgstr "Balance âgée des tiers XLSX"
257
+ msgstr ""
238
258
 
239
259
  #. module: account_financial_report
260
+ #. odoo-python
240
261
  #: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
241
- #, python-format
242
262
  msgid "All"
243
- msgstr "Tous"
263
+ msgstr ""
244
264
 
245
265
  #. module: account_financial_report
246
266
  #: model:ir.model.fields.selection,name:account_financial_report.selection__aged_partner_balance_report_wizard__target_move__all
@@ -249,7 +269,7 @@ msgstr "Tous"
249
269
  #: model:ir.model.fields.selection,name:account_financial_report.selection__trial_balance_report_wizard__target_move__all
250
270
  #: model:ir.model.fields.selection,name:account_financial_report.selection__vat_report_wizard__target_move__all
251
271
  msgid "All Entries"
252
- msgstr "Toutes les écritures"
272
+ msgstr ""
253
273
 
254
274
  #. module: account_financial_report
255
275
  #: model:ir.model.fields.selection,name:account_financial_report.selection__aged_partner_balance_report_wizard__target_move__posted
@@ -258,9 +278,10 @@ msgstr "Toutes les écritures"
258
278
  #: model:ir.model.fields.selection,name:account_financial_report.selection__trial_balance_report_wizard__target_move__posted
259
279
  #: model:ir.model.fields.selection,name:account_financial_report.selection__vat_report_wizard__target_move__posted
260
280
  msgid "All Posted Entries"
261
- msgstr "Écritures comptabilisées seulement"
281
+ msgstr ""
262
282
 
263
283
  #. module: account_financial_report
284
+ #. odoo-python
264
285
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
265
286
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
266
287
  #: code:addons/account_financial_report/report/open_items_xlsx.py:0
@@ -269,11 +290,11 @@ msgstr "Écritures comptabilisées seulement"
269
290
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
270
291
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
271
292
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
272
- #, python-format
273
293
  msgid "All entries"
274
- msgstr "Toutes les écritures"
294
+ msgstr ""
275
295
 
276
296
  #. module: account_financial_report
297
+ #. odoo-python
277
298
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
278
299
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
279
300
  #: code:addons/account_financial_report/report/open_items_xlsx.py:0
@@ -282,76 +303,81 @@ msgstr "Toutes les écritures"
282
303
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
283
304
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
284
305
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
285
- #, python-format
286
306
  msgid "All posted entries"
287
- msgstr "Toutes les écritures comptabilisées"
307
+ msgstr ""
288
308
 
289
309
  #. module: account_financial_report
290
310
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
291
311
  msgid "Amount Cur."
292
- msgstr "Montant Devise"
312
+ msgstr ""
293
313
 
294
314
  #. module: account_financial_report
315
+ #. odoo-python
295
316
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
296
- #, python-format
297
317
  msgid "Amount Currency"
298
- msgstr "Montant Devise"
318
+ msgstr ""
299
319
 
300
320
  #. module: account_financial_report
321
+ #. odoo-python
301
322
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
302
323
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
303
- #, python-format
304
324
  msgid "Amount cur."
305
- msgstr "Montant Devise"
325
+ msgstr ""
306
326
 
307
327
  #. module: account_financial_report
328
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_move_line__analytic_account_ids
329
+ #: model:ir.model.fields.selection,name:account_financial_report.selection__trial_balance_report_wizard__grouped_by__analytic_account
330
+ msgid "Analytic Account"
331
+ msgstr ""
332
+
333
+ #. module: account_financial_report
334
+ #. odoo-python
308
335
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
309
336
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
310
- #, python-format
311
- msgid "Analytic Account"
312
- msgstr "Compte analytique"
337
+ msgid "Analytic Distribution"
338
+ msgstr ""
313
339
 
314
340
  #. module: account_financial_report
315
341
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
316
342
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
317
343
  msgid "Balance"
318
- msgstr "Solde"
344
+ msgstr ""
319
345
 
320
346
  #. module: account_financial_report
321
347
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
322
348
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
323
349
  msgid "Base Amount"
324
- msgstr "Montant de base"
350
+ msgstr ""
325
351
 
326
352
  #. module: account_financial_report
353
+ #. odoo-python
327
354
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
328
- #, python-format
329
355
  msgid "Base Balance"
330
- msgstr "Solde de base"
356
+ msgstr ""
331
357
 
332
358
  #. module: account_financial_report
359
+ #. odoo-python
333
360
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
334
- #, python-format
335
361
  msgid "Base Credit"
336
- msgstr "Crédit de base"
362
+ msgstr ""
337
363
 
338
364
  #. module: account_financial_report
365
+ #. odoo-python
339
366
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
340
- #, python-format
341
367
  msgid "Base Debit"
342
- msgstr "Débit de base"
368
+ msgstr ""
343
369
 
344
370
  #. module: account_financial_report
345
371
  #: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__based_on
346
372
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_filters
347
373
  msgid "Based On"
348
- msgstr "Basé sur"
374
+ msgstr ""
349
375
 
350
376
  #. module: account_financial_report
377
+ #. odoo-python
351
378
  #: code:addons/account_financial_report/report/vat_report_xlsx.py:0
352
- #, python-format
353
379
  msgid "Based on"
354
- msgstr "Basée sur"
380
+ msgstr ""
355
381
 
356
382
  #. module: account_financial_report
357
383
  #: model_terms:ir.ui.view,arch_db:account_financial_report.aged_partner_balance_wizard
@@ -361,41 +387,38 @@ msgstr "Basée sur"
361
387
  #: model_terms:ir.ui.view,arch_db:account_financial_report.trial_balance_wizard
362
388
  #: model_terms:ir.ui.view,arch_db:account_financial_report.vat_report_wizard
363
389
  msgid "Cancel"
364
- msgstr "Annuler"
390
+ msgstr ""
365
391
 
366
392
  #. module: account_financial_report
393
+ #. odoo-python
367
394
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
368
395
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
369
- #, python-format
370
396
  msgid "Centralize filter"
371
- msgstr "Filtre de centralisation"
397
+ msgstr ""
372
398
 
373
399
  #. module: account_financial_report
374
400
  #: model:ir.model.fields,field_description:account_financial_report.field_account_account__centralized
375
401
  msgid "Centralized"
376
- msgstr "Centralisé"
377
-
378
- #. module: account_financial_report
379
- #: model:ir.model.fields.selection,name:account_financial_report.selection__trial_balance_report_wizard__hierarchy_on__relation
380
- msgid "Child Accounts"
381
- msgstr "Comptes enfants"
402
+ msgstr ""
382
403
 
383
404
  #. module: account_financial_report
384
405
  #: model:ir.model.fields,field_description:account_financial_report.field_account_group__group_child_ids
385
406
  msgid "Child Groups"
386
- msgstr "Groupes enfants"
407
+ msgstr ""
387
408
 
388
409
  #. module: account_financial_report
410
+ #. odoo-python
389
411
  #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
390
412
  #: code:addons/account_financial_report/report/vat_report_xlsx.py:0
391
413
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
392
414
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
393
- #, python-format
394
415
  msgid "Code"
395
- msgstr "Code"
416
+ msgstr ""
396
417
 
397
418
  #. module: account_financial_report
419
+ #. odoo-python
398
420
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
421
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__company_id
399
422
  #: model:ir.model.fields,field_description:account_financial_report.field_account_financial_report_abstract_wizard__company_id
400
423
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__company_id
401
424
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__company_id
@@ -403,43 +426,27 @@ msgstr "Code"
403
426
  #: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__company_id
404
427
  #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__company_id
405
428
  #: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__company_id
406
- #, python-format
407
429
  msgid "Company"
408
- msgstr "Société"
430
+ msgstr ""
409
431
 
410
432
  #. module: account_financial_report
411
433
  #: model:ir.model.fields,field_description:account_financial_report.field_account_group__compute_account_ids
412
434
  msgid "Compute accounts"
413
- msgstr "Calculer les comptes"
435
+ msgstr ""
414
436
 
415
437
  #. module: account_financial_report
416
- #: model:ir.model.fields.selection,name:account_financial_report.selection__trial_balance_report_wizard__hierarchy_on__computed
417
- msgid "Computed Accounts"
418
- msgstr "Comptes calculés"
438
+ #: model:ir.model,name:account_financial_report.model_res_config_settings
439
+ msgid "Config Settings"
440
+ msgstr ""
419
441
 
420
442
  #. module: account_financial_report
421
- #: model:ir.model.fields,help:account_financial_report.field_trial_balance_report_wizard__hierarchy_on
422
- msgid ""
423
- "Computed Accounts: Use when the account group have codes\n"
424
- " that represent prefixes of the actual accounts.\n"
425
- "\n"
426
- " Child Accounts: Use when your account groups are hierarchical.\n"
427
- "\n"
428
- " No hierarchy: Use to display just the accounts, without any "
429
- "grouping.\n"
430
- " "
431
- msgstr ""
432
- "Comptes calculés: À utiliser lorsque les groupes de comptes ont des codes\n"
433
- " qui représentent des préfixes des comptes actuels.\n"
434
- "\n"
435
- " Comptes enfants: À utiliser lorsque vos groupes de comptes sont "
436
- "hiérarchisés.\n"
437
- "\n"
438
- " Pas de hiérarchie: À utiliser pour n'afficher que les comptes sans "
439
- "aucun groupement.\n"
440
- " "
443
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
444
+ msgid "Configurations"
445
+ msgstr ""
441
446
 
442
447
  #. module: account_financial_report
448
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__create_uid
449
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__create_uid
443
450
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__create_uid
444
451
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__create_uid
445
452
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__create_uid
@@ -447,9 +454,11 @@ msgstr ""
447
454
  #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__create_uid
448
455
  #: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__create_uid
449
456
  msgid "Created by"
450
- msgstr "Créé par"
457
+ msgstr ""
451
458
 
452
459
  #. module: account_financial_report
460
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__create_date
461
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__create_date
453
462
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__create_date
454
463
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__create_date
455
464
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__create_date
@@ -457,9 +466,10 @@ msgstr "Créé par"
457
466
  #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__create_date
458
467
  #: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__create_date
459
468
  msgid "Created on"
460
- msgstr "Créé le"
469
+ msgstr ""
461
470
 
462
471
  #. module: account_financial_report
472
+ #. odoo-python
463
473
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
464
474
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
465
475
  #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
@@ -468,57 +478,60 @@ msgstr "Créé le"
468
478
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
469
479
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
470
480
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
471
- #, python-format
472
481
  msgid "Credit"
473
- msgstr "Crédit"
482
+ msgstr ""
474
483
 
475
484
  #. module: account_financial_report
485
+ #. odoo-python
476
486
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
477
487
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
478
- #, python-format
479
- msgid "Cumul. Bal."
480
- msgstr "Cumuler bal."
488
+ msgid "Cumul cur."
489
+ msgstr ""
481
490
 
482
491
  #. module: account_financial_report
492
+ #. odoo-python
483
493
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
484
- #: code:addons/account_financial_report/report/open_items_xlsx.py:0
485
- #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
486
494
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
495
+ msgid "Cumul. Bal."
496
+ msgstr ""
497
+
498
+ #. module: account_financial_report
499
+ #. odoo-python
500
+ #: code:addons/account_financial_report/report/open_items_xlsx.py:0
487
501
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
488
502
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
489
- #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
490
- #, python-format
491
503
  msgid "Cur."
492
- msgstr "Courant"
504
+ msgstr ""
493
505
 
494
506
  #. module: account_financial_report
507
+ #. odoo-python
495
508
  #: code:addons/account_financial_report/report/open_items_xlsx.py:0
496
509
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
497
- #, python-format
498
510
  msgid "Cur. Original"
499
- msgstr "Courant original"
511
+ msgstr ""
500
512
 
501
513
  #. module: account_financial_report
514
+ #. odoo-python
502
515
  #: code:addons/account_financial_report/report/open_items_xlsx.py:0
503
516
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
504
- #, python-format
505
517
  msgid "Cur. Residual"
506
- msgstr "Courant résiduel"
518
+ msgstr ""
507
519
 
508
520
  #. module: account_financial_report
521
+ #. odoo-python
509
522
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
510
- #, python-format
511
523
  msgid "Currency"
512
- msgstr "Devise"
524
+ msgstr ""
513
525
 
514
526
  #. module: account_financial_report
527
+ #. odoo-python
515
528
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
516
529
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
517
- #, python-format
518
530
  msgid "Current"
519
- msgstr "Courant"
531
+ msgstr ""
520
532
 
521
533
  #. module: account_financial_report
534
+ #. odoo-python
522
535
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
523
536
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
524
537
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
@@ -528,15 +541,14 @@ msgstr "Courant"
528
541
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
529
542
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
530
543
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
531
- #, python-format
532
544
  msgid "Date"
533
- msgstr "Date"
545
+ msgstr ""
534
546
 
535
547
  #. module: account_financial_report
536
548
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__date_at
537
549
  #: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__date_at
538
550
  msgid "Date At"
539
- msgstr "Date au"
551
+ msgstr ""
540
552
 
541
553
  #. module: account_financial_report
542
554
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__date_from
@@ -545,29 +557,29 @@ msgstr "Date au"
545
557
  #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__date_from
546
558
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_filters
547
559
  msgid "Date From"
548
- msgstr "Date du"
560
+ msgstr ""
549
561
 
550
562
  #. module: account_financial_report
551
563
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__date_to
552
564
  #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__date_to
553
565
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_filters
554
566
  msgid "Date To"
555
- msgstr "Date au"
567
+ msgstr ""
556
568
 
557
569
  #. module: account_financial_report
570
+ #. odoo-python
558
571
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
559
572
  #: code:addons/account_financial_report/report/open_items_xlsx.py:0
560
573
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_filters
561
574
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
562
- #, python-format
563
575
  msgid "Date at filter"
564
- msgstr "Date au filtre"
576
+ msgstr ""
565
577
 
566
578
  #. module: account_financial_report
579
+ #. odoo-python
567
580
  #: code:addons/account_financial_report/report/vat_report_xlsx.py:0
568
- #, python-format
569
581
  msgid "Date from"
570
- msgstr "Date du"
582
+ msgstr ""
571
583
 
572
584
  #. module: account_financial_report
573
585
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__date_range_id
@@ -575,25 +587,26 @@ msgstr "Date du"
575
587
  #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__date_range_id
576
588
  #: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__date_range_id
577
589
  msgid "Date range"
578
- msgstr "Plage de date"
590
+ msgstr ""
579
591
 
580
592
  #. module: account_financial_report
593
+ #. odoo-python
581
594
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
582
595
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
583
596
  #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
584
597
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
585
598
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
586
- #, python-format
587
599
  msgid "Date range filter"
588
- msgstr "Filtre de plage de dates"
600
+ msgstr ""
589
601
 
590
602
  #. module: account_financial_report
603
+ #. odoo-python
591
604
  #: code:addons/account_financial_report/report/vat_report_xlsx.py:0
592
- #, python-format
593
605
  msgid "Date to"
594
- msgstr "Date au"
606
+ msgstr ""
595
607
 
596
608
  #. module: account_financial_report
609
+ #. odoo-python
597
610
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
598
611
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
599
612
  #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
@@ -602,51 +615,33 @@ msgstr "Date au"
602
615
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
603
616
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
604
617
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
605
- #, python-format
606
618
  msgid "Debit"
607
- msgstr "Débit"
619
+ msgstr ""
608
620
 
609
621
  #. module: account_financial_report
622
+ #. odoo-python
610
623
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
611
624
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
612
625
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
613
- #, python-format
614
626
  msgid "Description"
615
- msgstr "Description"
627
+ msgstr ""
616
628
 
617
629
  #. module: account_financial_report
618
630
  #: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__tax_detail
619
631
  msgid "Detail Taxes"
620
- msgstr "Détail des taxes"
632
+ msgstr ""
621
633
 
622
634
  #. module: account_financial_report
623
- #: model:ir.model.fields,field_description:account_financial_report.field_account_account__display_name
624
- #: model:ir.model.fields,field_description:account_financial_report.field_account_financial_report_abstract_wizard__display_name
625
- #: model:ir.model.fields,field_description:account_financial_report.field_account_group__display_name
626
- #: model:ir.model.fields,field_description:account_financial_report.field_account_move_line__display_name
635
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__display_name
636
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__display_name
627
637
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__display_name
628
638
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__display_name
629
- #: model:ir.model.fields,field_description:account_financial_report.field_ir_actions_report__display_name
630
639
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__display_name
631
640
  #: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__display_name
632
- #: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_aged_partner_balance_xlsx__display_name
633
- #: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_general_ledger_xlsx__display_name
634
- #: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_journal_ledger_xlsx__display_name
635
- #: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_open_items_xlsx__display_name
636
- #: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_trial_balance_xlsx__display_name
637
- #: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_vat_report_xlsx__display_name
638
- #: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_abstract_report__display_name
639
- #: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_abstract_report_xlsx__display_name
640
- #: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_aged_partner_balance__display_name
641
- #: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_general_ledger__display_name
642
- #: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_journal_ledger__display_name
643
- #: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_open_items__display_name
644
- #: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_trial_balance__display_name
645
- #: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_vat_report__display_name
646
641
  #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__display_name
647
642
  #: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__display_name
648
643
  msgid "Display Name"
649
- msgstr "Nom affiché"
644
+ msgstr ""
650
645
 
651
646
  #. module: account_financial_report
652
647
  #: model:ir.model.fields,help:account_financial_report.field_general_ledger_report_wizard__foreign_currency
@@ -657,14 +652,11 @@ msgid ""
657
652
  "setup through chart of accounts will display initial and final balance in "
658
653
  "that currency."
659
654
  msgstr ""
660
- "Afficher les devises étrangères pour les écritures comptables, à moins que "
661
- "la monnaie du compte comptable ne soit pas définie dans le plan comptable "
662
- "affichera les balances initiale et finale dans cette monnaie."
663
655
 
664
656
  #. module: account_financial_report
665
657
  #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__hide_parent_hierarchy_level
666
658
  msgid "Do not display parent levels"
667
- msgstr "Ne pas afficher les niveaux parent"
659
+ msgstr ""
668
660
 
669
661
  #. module: account_financial_report
670
662
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
@@ -672,8 +664,6 @@ msgid ""
672
664
  "Due\n"
673
665
  " date"
674
666
  msgstr ""
675
- "Échéance\n"
676
- " date"
677
667
 
678
668
  #. module: account_financial_report
679
669
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
@@ -681,25 +671,23 @@ msgid ""
681
671
  "Due\n"
682
672
  " date"
683
673
  msgstr ""
684
- "Échéance\n"
685
- " date"
686
674
 
687
675
  #. module: account_financial_report
676
+ #. odoo-python
688
677
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
689
678
  #: code:addons/account_financial_report/report/open_items_xlsx.py:0
690
- #, python-format
691
679
  msgid "Due date"
692
- msgstr "Date d'échéance"
680
+ msgstr ""
693
681
 
694
682
  #. module: account_financial_report
695
683
  #: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__date_to
696
684
  msgid "End Date"
697
- msgstr "Date de fin"
685
+ msgstr ""
698
686
 
699
687
  #. module: account_financial_report
700
688
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__date_to
701
689
  msgid "End date"
702
- msgstr "Date de fin"
690
+ msgstr ""
703
691
 
704
692
  #. module: account_financial_report
705
693
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_ending_cumul
@@ -707,8 +695,6 @@ msgid ""
707
695
  "Ending\n"
708
696
  " balance"
709
697
  msgstr ""
710
- "Clôture\n"
711
- " solde"
712
698
 
713
699
  #. module: account_financial_report
714
700
  #: model:ir.model.fields,help:account_financial_report.field_aged_partner_balance_report_wizard__account_code_to
@@ -716,17 +702,17 @@ msgstr ""
716
702
  #: model:ir.model.fields,help:account_financial_report.field_open_items_report_wizard__account_code_to
717
703
  #: model:ir.model.fields,help:account_financial_report.field_trial_balance_report_wizard__account_code_to
718
704
  msgid "Ending account in a range"
719
- msgstr "Compte de fin dans une période"
705
+ msgstr ""
720
706
 
721
707
  #. module: account_financial_report
708
+ #. odoo-python
722
709
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
723
710
  #: code:addons/account_financial_report/report/open_items_xlsx.py:0
724
711
  #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
725
712
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_ending_cumul
726
713
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
727
- #, python-format
728
714
  msgid "Ending balance"
729
- msgstr "Solde de clôture"
715
+ msgstr ""
730
716
 
731
717
  #. module: account_financial_report
732
718
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
@@ -734,16 +720,15 @@ msgid ""
734
720
  "Ending balance\n"
735
721
  " cur."
736
722
  msgstr ""
737
- "Clôture\n"
738
- " solde"
739
723
 
740
724
  #. module: account_financial_report
725
+ #. odoo-python
741
726
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
742
- #, python-format
743
727
  msgid "Entries sorted by"
744
- msgstr "Écriture triées par"
728
+ msgstr ""
745
729
 
746
730
  #. module: account_financial_report
731
+ #. odoo-python
747
732
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
748
733
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
749
734
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
@@ -752,20 +737,18 @@ msgstr "Écriture triées par"
752
737
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
753
738
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
754
739
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
755
- #, python-format
756
740
  msgid "Entry"
757
- msgstr "Écriture"
741
+ msgstr ""
758
742
 
759
743
  #. module: account_financial_report
744
+ #. odoo-python
760
745
  #: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
761
- #, python-format
762
746
  msgid "Entry number"
763
- msgstr "Numéro d'écriture"
747
+ msgstr ""
764
748
 
765
749
  #. module: account_financial_report
766
- #. openerp-web
750
+ #. odoo-javascript
767
751
  #: code:addons/account_financial_report/static/src/xml/report.xml:0
768
- #, python-format
769
752
  msgid "Export"
770
753
  msgstr ""
771
754
 
@@ -777,7 +760,7 @@ msgstr ""
777
760
  #: model_terms:ir.ui.view,arch_db:account_financial_report.trial_balance_wizard
778
761
  #: model_terms:ir.ui.view,arch_db:account_financial_report.vat_report_wizard
779
762
  msgid "Export PDF"
780
- msgstr "Export PDF"
763
+ msgstr ""
781
764
 
782
765
  #. module: account_financial_report
783
766
  #: model_terms:ir.ui.view,arch_db:account_financial_report.aged_partner_balance_wizard
@@ -787,7 +770,7 @@ msgstr "Export PDF"
787
770
  #: model_terms:ir.ui.view,arch_db:account_financial_report.trial_balance_wizard
788
771
  #: model_terms:ir.ui.view,arch_db:account_financial_report.vat_report_wizard
789
772
  msgid "Export XLSX"
790
- msgstr "Export XLSX"
773
+ msgstr ""
791
774
 
792
775
  #. module: account_financial_report
793
776
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__account_ids
@@ -796,28 +779,22 @@ msgstr "Export XLSX"
796
779
  #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__account_ids
797
780
  #: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
798
781
  msgid "Filter accounts"
799
- msgstr "Filtrer les comptes"
782
+ msgstr ""
800
783
 
801
784
  #. module: account_financial_report
802
785
  #: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
803
786
  msgid "Filter analytic accounts"
804
- msgstr "Filtrer les comptes analytiques"
805
-
806
- #. module: account_financial_report
807
- #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__analytic_tag_ids
808
- #: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
809
- msgid "Filter analytic tags"
810
- msgstr "Filtrer les étiquettes analytiques"
787
+ msgstr ""
811
788
 
812
789
  #. module: account_financial_report
813
790
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__cost_center_ids
814
791
  msgid "Filter cost centers"
815
- msgstr "Filtrer les centres de coûts"
792
+ msgstr ""
816
793
 
817
794
  #. module: account_financial_report
818
795
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__account_journal_ids
819
796
  msgid "Filter journals"
820
- msgstr "Filtrer les journaux"
797
+ msgstr ""
821
798
 
822
799
  #. module: account_financial_report
823
800
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__partner_ids
@@ -826,12 +803,17 @@ msgstr "Filtrer les journaux"
826
803
  #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__partner_ids
827
804
  #: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
828
805
  msgid "Filter partners"
829
- msgstr "Filtrer les partenaires"
806
+ msgstr ""
830
807
 
831
808
  #. module: account_financial_report
832
809
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__foreign_currency
833
810
  msgid "Foreign Currency"
834
- msgstr "Devise étrangère"
811
+ msgstr ""
812
+
813
+ #. module: account_financial_report
814
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
815
+ msgid "Format"
816
+ msgstr ""
835
817
 
836
818
  #. module: account_financial_report
837
819
  #: model_terms:ir.ui.view,arch_db:account_financial_report.aged_partner_balance_wizard
@@ -839,73 +821,73 @@ msgstr "Devise étrangère"
839
821
  #: model_terms:ir.ui.view,arch_db:account_financial_report.open_items_wizard
840
822
  #: model_terms:ir.ui.view,arch_db:account_financial_report.trial_balance_wizard
841
823
  msgid "From Code"
842
- msgstr "Du code"
824
+ msgstr ""
843
825
 
844
826
  #. module: account_financial_report
845
827
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
846
828
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
847
829
  msgid "From:"
848
- msgstr "Du:"
830
+ msgstr ""
849
831
 
850
832
  #. module: account_financial_report
833
+ #. odoo-python
851
834
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
852
835
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
853
836
  #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
854
- #, python-format
855
- msgid "From: %s To: %s"
856
- msgstr "Du: %s au: %s"
837
+ msgid "From: %(date_from)s To: %(date_to)s"
838
+ msgstr ""
857
839
 
858
840
  #. module: account_financial_report
859
841
  #: model:ir.model.fields,field_description:account_financial_report.field_account_group__complete_code
860
842
  msgid "Full Code"
861
- msgstr "Code complet"
843
+ msgstr ""
862
844
 
863
845
  #. module: account_financial_report
864
846
  #: model:ir.model.fields,field_description:account_financial_report.field_account_group__complete_name
865
847
  msgid "Full Name"
866
- msgstr "Nom complet"
848
+ msgstr ""
867
849
 
868
850
  #. module: account_financial_report
869
851
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__fy_start_date
870
852
  #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__fy_start_date
871
853
  msgid "Fy Start Date"
872
- msgstr "Af Date de début"
854
+ msgstr ""
873
855
 
874
856
  #. module: account_financial_report
857
+ #. odoo-python
875
858
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
876
859
  #: model:ir.actions.act_window,name:account_financial_report.act_action_general_ledger_wizard_partner_relation
877
860
  #: model:ir.actions.act_window,name:account_financial_report.action_general_ledger_wizard
878
861
  #: model:ir.actions.report,name:account_financial_report.action_print_report_general_ledger_html
879
862
  #: model:ir.actions.report,name:account_financial_report.action_print_report_general_ledger_qweb
880
863
  #: model:ir.ui.menu,name:account_financial_report.menu_general_ledger_wizard
881
- #, python-format
882
864
  msgid "General Ledger"
883
- msgstr "Grand livre"
865
+ msgstr ""
884
866
 
885
867
  #. module: account_financial_report
886
868
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_base
887
869
  msgid "General Ledger -"
888
- msgstr "Grand livre"
870
+ msgstr ""
889
871
 
890
872
  #. module: account_financial_report
891
873
  #: model:ir.model,name:account_financial_report.model_report_account_financial_report_general_ledger
892
874
  msgid "General Ledger Report"
893
- msgstr "Etat du Grand livre"
875
+ msgstr ""
894
876
 
895
877
  #. module: account_financial_report
896
878
  #: model:ir.model,name:account_financial_report.model_general_ledger_report_wizard
897
879
  msgid "General Ledger Report Wizard"
898
- msgstr "Assistant d'impression du Grand livre"
880
+ msgstr ""
899
881
 
900
882
  #. module: account_financial_report
901
883
  #: model:ir.model,name:account_financial_report.model_report_a_f_r_report_general_ledger_xlsx
902
884
  msgid "General Ledger XLSL Report"
903
- msgstr "Grand livre au format XLSX"
885
+ msgstr ""
904
886
 
905
887
  #. module: account_financial_report
906
888
  #: model:ir.actions.report,name:account_financial_report.action_report_general_ledger_xlsx
907
889
  msgid "General Ledger XLSX"
908
- msgstr "Grand livre XLSX"
890
+ msgstr ""
909
891
 
910
892
  #. module: account_financial_report
911
893
  #: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
@@ -917,68 +899,59 @@ msgstr ""
917
899
  #. module: account_financial_report
918
900
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__group_option
919
901
  msgid "Group entries by"
920
- msgstr "Grouper les écritures par"
902
+ msgstr ""
903
+
904
+ #. module: account_financial_report
905
+ #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__grouped_by
906
+ #: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__grouped_by
907
+ #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__grouped_by
908
+ msgid "Grouped By"
909
+ msgstr ""
910
+
911
+ #. module: account_financial_report
912
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
913
+ msgid ""
914
+ "Here you can set the intervals that will appear on the Aged Partner Balance."
915
+ msgstr ""
921
916
 
922
917
  #. module: account_financial_report
918
+ #. odoo-python
923
919
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
924
920
  #: code:addons/account_financial_report/report/open_items_xlsx.py:0
925
921
  #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
926
922
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
927
923
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
928
924
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
929
- #, python-format
930
925
  msgid "Hide"
931
- msgstr "Cacher"
926
+ msgstr ""
932
927
 
933
928
  #. module: account_financial_report
934
929
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__hide_account_at_0
935
930
  #: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__hide_account_at_0
936
931
  msgid "Hide account ending balance at 0"
937
- msgstr "Cacher les comptes avec un solde à 0"
932
+ msgstr ""
938
933
 
939
934
  #. module: account_financial_report
940
935
  #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__hide_account_at_0
941
936
  msgid "Hide accounts at 0"
942
- msgstr "Cacher les comptes à 0"
937
+ msgstr ""
943
938
 
944
939
  #. module: account_financial_report
945
940
  #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__show_hierarchy_level
946
941
  msgid "Hierarchy Levels to display"
947
- msgstr "Niveaux de hiérarchie à afficher"
948
-
949
- #. module: account_financial_report
950
- #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__hierarchy_on
951
- msgid "Hierarchy On"
952
- msgstr "Hiérarchiser sur"
942
+ msgstr ""
953
943
 
954
944
  #. module: account_financial_report
955
- #: model:ir.model.fields,field_description:account_financial_report.field_account_account__id
956
- #: model:ir.model.fields,field_description:account_financial_report.field_account_financial_report_abstract_wizard__id
957
- #: model:ir.model.fields,field_description:account_financial_report.field_account_group__id
958
- #: model:ir.model.fields,field_description:account_financial_report.field_account_move_line__id
945
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__id
946
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__id
959
947
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__id
960
948
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__id
961
- #: model:ir.model.fields,field_description:account_financial_report.field_ir_actions_report__id
962
949
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__id
963
950
  #: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__id
964
- #: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_aged_partner_balance_xlsx__id
965
- #: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_general_ledger_xlsx__id
966
- #: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_journal_ledger_xlsx__id
967
- #: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_open_items_xlsx__id
968
- #: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_trial_balance_xlsx__id
969
- #: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_vat_report_xlsx__id
970
- #: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_abstract_report__id
971
- #: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_abstract_report_xlsx__id
972
- #: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_aged_partner_balance__id
973
- #: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_general_ledger__id
974
- #: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_journal_ledger__id
975
- #: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_open_items__id
976
- #: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_trial_balance__id
977
- #: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_vat_report__id
978
951
  #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__id
979
952
  #: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__id
980
953
  msgid "ID"
981
- msgstr "ID"
954
+ msgstr ""
982
955
 
983
956
  #. module: account_financial_report
984
957
  #: model:ir.model.fields,help:account_financial_report.field_account_account__centralized
@@ -986,8 +959,17 @@ msgid ""
986
959
  "If flagged, no details will be displayed in the General Ledger report (the "
987
960
  "webkit one only), only centralized amounts per period."
988
961
  msgstr ""
989
- "Si coché, aucun détail ne sera affiché dans les rapport du Grand Livre "
990
- "(uniquement le webkit), seulement les montants centralisés par période."
962
+
963
+ #. module: account_financial_report
964
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__inferior_limit
965
+ msgid "Inferior Limit"
966
+ msgstr ""
967
+
968
+ #. module: account_financial_report
969
+ #. odoo-python
970
+ #: code:addons/account_financial_report/models/account_age_report_configuration.py:0
971
+ msgid "Inferior Limit must be greather than zero"
972
+ msgstr ""
991
973
 
992
974
  #. module: account_financial_report
993
975
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
@@ -995,8 +977,6 @@ msgid ""
995
977
  "Initial\n"
996
978
  " balance cur."
997
979
  msgstr ""
998
- "Solde\n"
999
- " initial"
1000
980
 
1001
981
  #. module: account_financial_report
1002
982
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
@@ -1004,18 +984,23 @@ msgid ""
1004
984
  "Initial\n"
1005
985
  " balance"
1006
986
  msgstr ""
1007
- "Solde\n"
1008
- " initial"
1009
987
 
1010
988
  #. module: account_financial_report
989
+ #. odoo-python
1011
990
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
1012
991
  #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
1013
992
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
1014
- #, python-format
1015
993
  msgid "Initial balance"
1016
- msgstr "Solde initial"
994
+ msgstr ""
1017
995
 
1018
996
  #. module: account_financial_report
997
+ #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__age_partner_config_id
998
+ #: model:ir.model.fields,field_description:account_financial_report.field_res_config_settings__age_partner_config_id
999
+ msgid "Intervals configuration"
1000
+ msgstr ""
1001
+
1002
+ #. module: account_financial_report
1003
+ #. odoo-python
1019
1004
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
1020
1005
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
1021
1006
  #: code:addons/account_financial_report/report/open_items_xlsx.py:0
@@ -1024,14 +1009,13 @@ msgstr "Solde initial"
1024
1009
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
1025
1010
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
1026
1011
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
1027
- #, python-format
1028
1012
  msgid "Journal"
1029
- msgstr "Journal"
1013
+ msgstr ""
1030
1014
 
1031
1015
  #. module: account_financial_report
1032
1016
  #: model:ir.model,name:account_financial_report.model_account_move_line
1033
1017
  msgid "Journal Item"
1034
- msgstr "Écriture comptable"
1018
+ msgstr ""
1035
1019
 
1036
1020
  #. module: account_financial_report
1037
1021
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__domain
@@ -1039,77 +1023,61 @@ msgid "Journal Items Domain"
1039
1023
  msgstr ""
1040
1024
 
1041
1025
  #. module: account_financial_report
1026
+ #. odoo-python
1042
1027
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
1043
1028
  #: model:ir.actions.act_window,name:account_financial_report.action_journal_ledger_wizard
1044
1029
  #: model:ir.actions.report,name:account_financial_report.action_print_journal_ledger_wizard_html
1045
1030
  #: model:ir.ui.menu,name:account_financial_report.menu_journal_ledger_wizard
1046
- #, python-format
1047
1031
  msgid "Journal Ledger"
1048
- msgstr "Livre des journaux"
1032
+ msgstr ""
1049
1033
 
1050
1034
  #. module: account_financial_report
1051
1035
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_base
1052
1036
  msgid "Journal Ledger -"
1053
- msgstr "Livre des Journaux -"
1037
+ msgstr ""
1054
1038
 
1055
1039
  #. module: account_financial_report
1056
1040
  #: model:ir.model,name:account_financial_report.model_report_account_financial_report_journal_ledger
1057
1041
  msgid "Journal Ledger Report"
1058
- msgstr "Livre des Journaux"
1042
+ msgstr ""
1059
1043
 
1060
1044
  #. module: account_financial_report
1061
1045
  #: model:ir.model,name:account_financial_report.model_journal_ledger_report_wizard
1062
1046
  msgid "Journal Ledger Report Wizard"
1063
- msgstr "Assistant du Livre des Journaux"
1047
+ msgstr ""
1064
1048
 
1065
1049
  #. module: account_financial_report
1066
1050
  #: model:ir.actions.report,name:account_financial_report.action_report_journal_ledger_xlsx
1067
1051
  msgid "Journal Ledger XLSX"
1068
- msgstr "Livre des Journaux XLSX"
1052
+ msgstr ""
1069
1053
 
1070
1054
  #. module: account_financial_report
1071
1055
  #: model:ir.model,name:account_financial_report.model_report_a_f_r_report_journal_ledger_xlsx
1072
1056
  msgid "Journal Ledger XLSX Report"
1073
- msgstr "Livre des journaux au format XLSX"
1057
+ msgstr ""
1074
1058
 
1075
1059
  #. module: account_financial_report
1060
+ #. odoo-python
1076
1061
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
1077
1062
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__journal_ids
1078
1063
  #: model_terms:ir.ui.view,arch_db:account_financial_report.journal_ledger_wizard
1079
- #, python-format
1080
1064
  msgid "Journals"
1081
- msgstr "Journaux"
1082
-
1083
- #. module: account_financial_report
1084
- #: model:ir.model.fields,field_description:account_financial_report.field_account_account____last_update
1085
- #: model:ir.model.fields,field_description:account_financial_report.field_account_financial_report_abstract_wizard____last_update
1086
- #: model:ir.model.fields,field_description:account_financial_report.field_account_group____last_update
1087
- #: model:ir.model.fields,field_description:account_financial_report.field_account_move_line____last_update
1088
- #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard____last_update
1089
- #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard____last_update
1090
- #: model:ir.model.fields,field_description:account_financial_report.field_ir_actions_report____last_update
1091
- #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard____last_update
1092
- #: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard____last_update
1093
- #: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_aged_partner_balance_xlsx____last_update
1094
- #: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_general_ledger_xlsx____last_update
1095
- #: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_journal_ledger_xlsx____last_update
1096
- #: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_open_items_xlsx____last_update
1097
- #: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_trial_balance_xlsx____last_update
1098
- #: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_vat_report_xlsx____last_update
1099
- #: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_abstract_report____last_update
1100
- #: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_abstract_report_xlsx____last_update
1101
- #: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_aged_partner_balance____last_update
1102
- #: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_general_ledger____last_update
1103
- #: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_journal_ledger____last_update
1104
- #: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_open_items____last_update
1105
- #: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_trial_balance____last_update
1106
- #: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_vat_report____last_update
1107
- #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard____last_update
1108
- #: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard____last_update
1109
- msgid "Last Modified on"
1110
- msgstr "Dernière modification le"
1065
+ msgstr ""
1066
+
1067
+ #. module: account_financial_report
1068
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_financial_report_abstract_wizard__label_text_limit
1069
+ #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__label_text_limit
1070
+ #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__label_text_limit
1071
+ #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__label_text_limit
1072
+ #: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__label_text_limit
1073
+ #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__label_text_limit
1074
+ #: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__label_text_limit
1075
+ msgid "Label Text Limit"
1076
+ msgstr ""
1111
1077
 
1112
1078
  #. module: account_financial_report
1079
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__write_uid
1080
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__write_uid
1113
1081
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__write_uid
1114
1082
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__write_uid
1115
1083
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__write_uid
@@ -1117,9 +1085,11 @@ msgstr "Dernière modification le"
1117
1085
  #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__write_uid
1118
1086
  #: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__write_uid
1119
1087
  msgid "Last Updated by"
1120
- msgstr "Dernière mise à jour par"
1088
+ msgstr ""
1121
1089
 
1122
1090
  #. module: account_financial_report
1091
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__write_date
1092
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__write_date
1123
1093
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__write_date
1124
1094
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__write_date
1125
1095
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__write_date
@@ -1127,164 +1097,213 @@ msgstr "Dernière mise à jour par"
1127
1097
  #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__write_date
1128
1098
  #: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__write_date
1129
1099
  msgid "Last Updated on"
1130
- msgstr "Dernière mise à jour le"
1100
+ msgstr ""
1131
1101
 
1132
1102
  #. module: account_financial_report
1133
1103
  #: model:ir.model.fields,field_description:account_financial_report.field_account_group__level
1134
1104
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
1135
1105
  msgid "Level"
1136
- msgstr "Niveau"
1106
+ msgstr ""
1137
1107
 
1138
1108
  #. module: account_financial_report
1109
+ #. odoo-python
1139
1110
  #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
1140
- #, python-format
1141
1111
  msgid "Level %s"
1142
- msgstr "Niveau %s"
1112
+ msgstr ""
1143
1113
 
1144
1114
  #. module: account_financial_report
1115
+ #. odoo-python
1145
1116
  #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
1146
1117
  #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__limit_hierarchy_level
1147
1118
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
1148
- #, python-format
1149
1119
  msgid "Limit hierarchy levels"
1150
- msgstr "Limiter les niveaux de hiérarchie"
1120
+ msgstr ""
1121
+
1122
+ #. module: account_financial_report
1123
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__line_ids
1124
+ msgid "Line"
1125
+ msgstr ""
1126
+
1127
+ #. module: account_financial_report
1128
+ #. odoo-python
1129
+ #: code:addons/account_financial_report/report/general_ledger.py:0
1130
+ #: code:addons/account_financial_report/report/open_items.py:0
1131
+ #: code:addons/account_financial_report/report/open_items_xlsx.py:0
1132
+ #: code:addons/account_financial_report/report/trial_balance.py:0
1133
+ msgid "Missing Partner"
1134
+ msgstr ""
1135
+
1136
+ #. module: account_financial_report
1137
+ #. odoo-python
1138
+ #: code:addons/account_financial_report/report/open_items.py:0
1139
+ msgid "Missing Salesperson"
1140
+ msgstr ""
1141
+
1142
+ #. module: account_financial_report
1143
+ #: model:ir.model,name:account_financial_report.model_account_age_report_configuration_line
1144
+ msgid "Model to set interval lines for Age partner balance report"
1145
+ msgstr ""
1146
+
1147
+ #. module: account_financial_report
1148
+ #: model:ir.model,name:account_financial_report.model_account_age_report_configuration
1149
+ msgid "Model to set intervals for Age partner balance report"
1150
+ msgstr ""
1151
1151
 
1152
1152
  #. module: account_financial_report
1153
1153
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__move_target
1154
1154
  msgid "Move Target"
1155
- msgstr "Mouvement cible"
1155
+ msgstr ""
1156
1156
 
1157
1157
  #. module: account_financial_report
1158
1158
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal
1159
1159
  msgid "Moves"
1160
- msgstr "Mouvements"
1160
+ msgstr ""
1161
+
1162
+ #. module: account_financial_report
1163
+ #. odoo-python
1164
+ #: code:addons/account_financial_report/models/account_age_report_configuration.py:0
1165
+ msgid "Must complete Configuration Lines"
1166
+ msgstr ""
1161
1167
 
1162
1168
  #. module: account_financial_report
1169
+ #. odoo-python
1163
1170
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
1164
1171
  #: code:addons/account_financial_report/report/vat_report_xlsx.py:0
1172
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__name
1173
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__name
1165
1174
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
1166
1175
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
1167
1176
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
1168
- #, python-format
1169
1177
  msgid "Name"
1170
- msgstr "Nom"
1178
+ msgstr ""
1179
+
1180
+ #. module: account_financial_report
1181
+ #: model:ir.model.constraint,message:account_financial_report.constraint_account_age_report_configuration_line_unique_name_config_combination
1182
+ msgid "Name must be unique per report configuration"
1183
+ msgstr ""
1171
1184
 
1172
1185
  #. module: account_financial_report
1186
+ #. odoo-python
1173
1187
  #: code:addons/account_financial_report/report/vat_report_xlsx.py:0
1174
1188
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
1175
- #, python-format
1176
1189
  msgid "Net"
1177
- msgstr "Net"
1190
+ msgstr ""
1178
1191
 
1179
1192
  #. module: account_financial_report
1193
+ #. odoo-python
1180
1194
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
1181
1195
  #: code:addons/account_financial_report/report/open_items_xlsx.py:0
1182
1196
  #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
1183
1197
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
1184
- #, python-format
1185
1198
  msgid "No"
1186
- msgstr "Non"
1199
+ msgstr ""
1187
1200
 
1188
1201
  #. module: account_financial_report
1202
+ #. odoo-python
1189
1203
  #: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
1190
- #, python-format
1191
1204
  msgid "No group"
1192
- msgstr "Sans groupe"
1193
-
1194
- #. module: account_financial_report
1195
- #: model:ir.model.fields.selection,name:account_financial_report.selection__trial_balance_report_wizard__hierarchy_on__none
1196
- msgid "No hierarchy"
1197
- msgstr "Sans hiérarchie"
1205
+ msgstr ""
1198
1206
 
1199
1207
  #. module: account_financial_report
1208
+ #. odoo-python
1200
1209
  #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
1201
1210
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
1202
- #, python-format
1203
1211
  msgid "No limit"
1204
- msgstr "Sans limite"
1212
+ msgstr ""
1205
1213
 
1206
1214
  #. module: account_financial_report
1215
+ #: model:ir.model.fields.selection,name:account_financial_report.selection__general_ledger_report_wizard__grouped_by__none
1216
+ msgid "None"
1217
+ msgstr ""
1218
+
1219
+ #. module: account_financial_report
1220
+ #. odoo-python
1207
1221
  #: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
1208
- #, python-format
1209
1222
  msgid "Not Posted"
1210
- msgstr "Non comptabilisé"
1223
+ msgstr ""
1211
1224
 
1212
1225
  #. module: account_financial_report
1213
1226
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_lines_header
1214
1227
  msgid "Not due"
1215
- msgstr "Non échu"
1228
+ msgstr ""
1216
1229
 
1217
1230
  #. module: account_financial_report
1218
- #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__not_only_one_unaffected_earnings_account
1219
- #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__not_only_one_unaffected_earnings_account
1220
- msgid "Not only one unaffected earnings account"
1221
- msgstr "Pas un seul compte de gains non affecté"
1231
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
1232
+ msgid "OCA Aged Report Configuration"
1233
+ msgstr ""
1222
1234
 
1223
1235
  #. module: account_financial_report
1224
1236
  #: model:ir.ui.menu,name:account_financial_report.menu_oca_reports
1225
1237
  msgid "OCA accounting reports"
1226
- msgstr "Rapports de comptabilité OCA"
1238
+ msgstr ""
1227
1239
 
1228
1240
  #. module: account_financial_report
1241
+ #. odoo-python
1229
1242
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
1230
1243
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
1231
- #, python-format
1232
1244
  msgid "Older"
1233
- msgstr "Plus ancien"
1245
+ msgstr ""
1246
+
1247
+ #. module: account_financial_report
1248
+ #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__only_one_unaffected_earnings_account
1249
+ #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__only_one_unaffected_earnings_account
1250
+ msgid "Only One Unaffected Earnings Account"
1251
+ msgstr ""
1234
1252
 
1235
1253
  #. module: account_financial_report
1254
+ #. odoo-python
1236
1255
  #: code:addons/account_financial_report/report/open_items_xlsx.py:0
1237
1256
  #: model:ir.actions.act_window,name:account_financial_report.action_open_items_wizard
1238
1257
  #: model:ir.actions.report,name:account_financial_report.action_print_report_open_items_html
1239
1258
  #: model:ir.actions.report,name:account_financial_report.action_print_report_open_items_qweb
1240
1259
  #: model:ir.ui.menu,name:account_financial_report.menu_open_items_wizard
1241
- #, python-format
1242
1260
  msgid "Open Items"
1243
- msgstr "Ecritures non lettrées"
1261
+ msgstr ""
1244
1262
 
1245
1263
  #. module: account_financial_report
1246
1264
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_base
1247
1265
  msgid "Open Items -"
1248
- msgstr "Ecritures non lettrées -"
1266
+ msgstr ""
1249
1267
 
1250
1268
  #. module: account_financial_report
1251
1269
  #: model:ir.actions.act_window,name:account_financial_report.act_action_open_items_wizard_partner_relation
1252
1270
  msgid "Open Items Partner"
1253
- msgstr "Ecritures non lettrées du partenaire"
1271
+ msgstr ""
1254
1272
 
1255
1273
  #. module: account_financial_report
1256
1274
  #: model:ir.model,name:account_financial_report.model_report_account_financial_report_open_items
1257
1275
  msgid "Open Items Report"
1258
- msgstr "Etat des Ecritures non lettrées"
1276
+ msgstr ""
1259
1277
 
1260
1278
  #. module: account_financial_report
1261
1279
  #: model:ir.model,name:account_financial_report.model_open_items_report_wizard
1262
1280
  msgid "Open Items Report Wizard"
1263
- msgstr "Assistant Etat des Ecritures non lettrées"
1281
+ msgstr ""
1264
1282
 
1265
1283
  #. module: account_financial_report
1266
1284
  #: model:ir.actions.report,name:account_financial_report.action_report_open_items_xlsx
1267
1285
  msgid "Open Items XLSX"
1268
- msgstr "Ecritures non lettrées XLSX"
1286
+ msgstr ""
1269
1287
 
1270
1288
  #. module: account_financial_report
1271
1289
  #: model:ir.model,name:account_financial_report.model_report_a_f_r_report_open_items_xlsx
1272
1290
  msgid "Open Items XLSX Report"
1273
- msgstr "Ecritures non lettrées XLSX"
1291
+ msgstr ""
1274
1292
 
1275
1293
  #. module: account_financial_report
1276
1294
  #: model_terms:ir.ui.view,arch_db:account_financial_report.journal_ledger_wizard
1277
1295
  msgid "Options"
1278
- msgstr "Options"
1296
+ msgstr ""
1279
1297
 
1280
1298
  #. module: account_financial_report
1299
+ #. odoo-python
1281
1300
  #: code:addons/account_financial_report/report/open_items_xlsx.py:0
1282
1301
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
1283
- #, python-format
1284
1302
  msgid "Original"
1285
- msgstr "Original"
1303
+ msgstr ""
1286
1304
 
1287
1305
  #. module: account_financial_report
1306
+ #. odoo-python
1288
1307
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
1289
1308
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
1290
1309
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
@@ -1296,9 +1315,8 @@ msgstr "Original"
1296
1315
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
1297
1316
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
1298
1317
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
1299
- #, python-format
1300
1318
  msgid "Partner"
1301
- msgstr "Partenaire"
1319
+ msgstr ""
1302
1320
 
1303
1321
  #. module: account_financial_report
1304
1322
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_partner_ending_cumul
@@ -1306,29 +1324,43 @@ msgid ""
1306
1324
  "Partner\n"
1307
1325
  " cumul aged balance"
1308
1326
  msgstr ""
1309
- "Partenaire\n"
1310
- " cumul balance âgée"
1311
1327
 
1312
1328
  #. module: account_financial_report
1329
+ #. odoo-python
1313
1330
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
1314
- #, python-format
1315
1331
  msgid "Partner Initial balance"
1316
- msgstr "Solde initial du partenaire"
1332
+ msgstr ""
1317
1333
 
1318
1334
  #. module: account_financial_report
1335
+ #: model:ir.model.fields.selection,name:account_financial_report.selection__open_items_report_wizard__grouped_by__salesperson
1336
+ msgid "Partner Salesperson"
1337
+ msgstr ""
1338
+
1339
+ #. module: account_financial_report
1340
+ #. odoo-python
1319
1341
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
1320
- #, python-format
1321
1342
  msgid "Partner cumul aged balance"
1322
- msgstr "Balance âgée cumulée du partenaire"
1343
+ msgstr ""
1323
1344
 
1324
1345
  #. module: account_financial_report
1346
+ #. odoo-python
1325
1347
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
1326
1348
  #: code:addons/account_financial_report/report/open_items_xlsx.py:0
1327
1349
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_ending_cumul
1328
1350
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_ending_cumul
1329
- #, python-format
1330
1351
  msgid "Partner ending balance"
1331
- msgstr "Solde de clôture du partenaire"
1352
+ msgstr ""
1353
+
1354
+ #. module: account_financial_report
1355
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
1356
+ msgid "Partner initial balance"
1357
+ msgstr ""
1358
+
1359
+ #. module: account_financial_report
1360
+ #: model:ir.model.fields.selection,name:account_financial_report.selection__general_ledger_report_wizard__grouped_by__partners
1361
+ #: model:ir.model.fields.selection,name:account_financial_report.selection__open_items_report_wizard__grouped_by__partners
1362
+ msgid "Partners"
1363
+ msgstr ""
1332
1364
 
1333
1365
  #. module: account_financial_report
1334
1366
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__payable_accounts_only
@@ -1336,44 +1368,37 @@ msgstr "Solde de clôture du partenaire"
1336
1368
  #: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__payable_accounts_only
1337
1369
  #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__payable_accounts_only
1338
1370
  msgid "Payable Accounts Only"
1339
- msgstr "Comptes créditeurs uniquement"
1371
+ msgstr ""
1340
1372
 
1341
1373
  #. module: account_financial_report
1342
1374
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_account_ending_cumul
1343
1375
  msgid "Percents"
1344
- msgstr "Pourcentages"
1376
+ msgstr ""
1345
1377
 
1346
1378
  #. module: account_financial_report
1379
+ #. odoo-python
1347
1380
  #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
1348
1381
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
1349
- #, python-format
1350
1382
  msgid "Period balance"
1351
- msgstr "Solde de la période"
1383
+ msgstr ""
1352
1384
 
1353
1385
  #. module: account_financial_report
1354
1386
  #: model_terms:ir.ui.view,arch_db:account_financial_report.journal_ledger_wizard
1355
1387
  msgid "Periods"
1356
- msgstr "Périodes"
1388
+ msgstr ""
1357
1389
 
1358
1390
  #. module: account_financial_report
1391
+ #. odoo-python
1359
1392
  #: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
1360
- #, python-format
1361
1393
  msgid "Posted"
1362
- msgstr "Comptabilisé"
1363
-
1364
- #. module: account_financial_report
1365
- #. openerp-web
1366
- #: code:addons/account_financial_report/static/src/xml/report.xml:0
1367
- #, python-format
1368
- msgid "Print"
1369
1394
  msgstr ""
1370
1395
 
1371
1396
  #. module: account_financial_report
1397
+ #. odoo-python
1372
1398
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
1373
1399
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
1374
- #, python-format
1375
1400
  msgid "Rec."
1376
- msgstr "Réc."
1401
+ msgstr ""
1377
1402
 
1378
1403
  #. module: account_financial_report
1379
1404
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__receivable_accounts_only
@@ -1381,7 +1406,7 @@ msgstr "Réc."
1381
1406
  #: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__receivable_accounts_only
1382
1407
  #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__receivable_accounts_only
1383
1408
  msgid "Receivable Accounts Only"
1384
- msgstr "Comptes débiteurs uniquement"
1409
+ msgstr ""
1385
1410
 
1386
1411
  #. module: account_financial_report
1387
1412
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
@@ -1390,8 +1415,6 @@ msgid ""
1390
1415
  "Ref -\n"
1391
1416
  " Label"
1392
1417
  msgstr ""
1393
- "Ref -\n"
1394
- " Libellé"
1395
1418
 
1396
1419
  #. module: account_financial_report
1397
1420
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
@@ -1399,56 +1422,54 @@ msgid ""
1399
1422
  "Ref -\n"
1400
1423
  " Label"
1401
1424
  msgstr ""
1402
- "Ref -\n"
1403
- " Libellé"
1404
1425
 
1405
1426
  #. module: account_financial_report
1427
+ #. odoo-python
1406
1428
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
1407
1429
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
1408
1430
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
1409
1431
  #: code:addons/account_financial_report/report/open_items_xlsx.py:0
1410
1432
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
1411
- #, python-format
1412
1433
  msgid "Ref - Label"
1413
- msgstr "Ref - Libellé"
1434
+ msgstr ""
1414
1435
 
1415
1436
  #. module: account_financial_report
1416
1437
  #: model:ir.model,name:account_financial_report.model_ir_actions_report
1417
1438
  msgid "Report Action"
1418
- msgstr "Reporter une action"
1439
+ msgstr ""
1419
1440
 
1420
1441
  #. module: account_financial_report
1442
+ #. odoo-python
1421
1443
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
1422
1444
  #: code:addons/account_financial_report/report/open_items_xlsx.py:0
1423
1445
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_lines_header
1424
1446
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
1425
1447
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
1426
- #, python-format
1427
1448
  msgid "Residual"
1428
- msgstr "Résiduel"
1449
+ msgstr ""
1429
1450
 
1430
1451
  #. module: account_financial_report
1452
+ #. odoo-python
1431
1453
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
1432
1454
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
1433
- #, python-format
1434
1455
  msgid "Sequence"
1435
1456
  msgstr ""
1436
1457
 
1437
1458
  #. module: account_financial_report
1459
+ #. odoo-python
1438
1460
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
1439
1461
  #: code:addons/account_financial_report/report/open_items_xlsx.py:0
1440
1462
  #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
1441
1463
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
1442
1464
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
1443
1465
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
1444
- #, python-format
1445
1466
  msgid "Show"
1446
- msgstr "Afficher"
1467
+ msgstr ""
1447
1468
 
1448
1469
  #. module: account_financial_report
1449
1470
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__show_cost_center
1450
1471
  msgid "Show Analytic Account"
1451
- msgstr "Afficher le compte analytique"
1472
+ msgstr ""
1452
1473
 
1453
1474
  #. module: account_financial_report
1454
1475
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__with_auto_sequence
@@ -1458,63 +1479,63 @@ msgstr ""
1458
1479
  #. module: account_financial_report
1459
1480
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__show_move_line_details
1460
1481
  msgid "Show Move Line Details"
1461
- msgstr "Afficher le détail des écritures"
1482
+ msgstr ""
1462
1483
 
1463
1484
  #. module: account_financial_report
1464
- #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__show_partner_details
1465
1485
  #: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__show_partner_details
1466
1486
  #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__show_partner_details
1467
1487
  msgid "Show Partner Details"
1468
- msgstr "Afficher le détails du partenaire"
1469
-
1470
- #. module: account_financial_report
1471
- #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
1472
- #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__show_analytic_tags
1473
- #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
1474
- #, python-format
1475
- msgid "Show analytic tags"
1476
- msgstr "Afficher les étiquettes analytiques"
1488
+ msgstr ""
1477
1489
 
1478
1490
  #. module: account_financial_report
1491
+ #. odoo-python
1479
1492
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
1480
1493
  #: code:addons/account_financial_report/report/open_items_xlsx.py:0
1481
1494
  #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
1482
1495
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__foreign_currency
1483
1496
  #: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__foreign_currency
1484
1497
  #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__foreign_currency
1485
- #, python-format
1486
1498
  msgid "Show foreign currency"
1487
- msgstr "Afficher les devises étrangères"
1499
+ msgstr ""
1500
+
1501
+ #. module: account_financial_report
1502
+ #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__show_hierarchy
1503
+ msgid "Show hierarchy"
1504
+ msgstr ""
1488
1505
 
1489
1506
  #. module: account_financial_report
1490
1507
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__sort_option
1491
1508
  msgid "Sort entries by"
1492
- msgstr "Trier les écritures par"
1509
+ msgstr ""
1493
1510
 
1494
1511
  #. module: account_financial_report
1495
1512
  #: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__date_from
1496
1513
  msgid "Start Date"
1497
- msgstr "Date de début"
1514
+ msgstr ""
1498
1515
 
1499
1516
  #. module: account_financial_report
1500
1517
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__date_from
1501
1518
  msgid "Start date"
1502
- msgstr "Date de début"
1519
+ msgstr ""
1503
1520
 
1504
1521
  #. module: account_financial_report
1505
1522
  #: model:ir.model.fields,help:account_financial_report.field_aged_partner_balance_report_wizard__account_code_from
1506
1523
  #: model:ir.model.fields,help:account_financial_report.field_general_ledger_report_wizard__account_code_from
1507
- #: model:ir.model.fields,help:account_financial_report.field_open_items_report_wizard__account_code_from
1508
1524
  #: model:ir.model.fields,help:account_financial_report.field_trial_balance_report_wizard__account_code_from
1509
1525
  msgid "Starting account in a range"
1510
- msgstr "Compte de début dans une période"
1526
+ msgstr ""
1527
+
1528
+ #. module: account_financial_report
1529
+ #. odoo-python
1530
+ #: code:addons/account_financial_report/report/trial_balance.py:0
1531
+ #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
1532
+ msgid "TOTAL"
1533
+ msgstr ""
1511
1534
 
1512
1535
  #. module: account_financial_report
1513
- #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
1514
1536
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
1515
- #, python-format
1516
1537
  msgid "Tags"
1517
- msgstr "Étiquettes"
1538
+ msgstr ""
1518
1539
 
1519
1540
  #. module: account_financial_report
1520
1541
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__target_move
@@ -1523,9 +1544,10 @@ msgstr "Étiquettes"
1523
1544
  #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__target_move
1524
1545
  #: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__target_move
1525
1546
  msgid "Target Moves"
1526
- msgstr "Écritures ciblées"
1547
+ msgstr ""
1527
1548
 
1528
1549
  #. module: account_financial_report
1550
+ #. odoo-python
1529
1551
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
1530
1552
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
1531
1553
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
@@ -1535,154 +1557,175 @@ msgstr "Écritures ciblées"
1535
1557
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
1536
1558
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
1537
1559
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
1538
- #, python-format
1539
1560
  msgid "Target moves filter"
1540
- msgstr "Filtre sur les écritures cibles"
1561
+ msgstr ""
1541
1562
 
1542
1563
  #. module: account_financial_report
1564
+ #. odoo-python
1543
1565
  #: code:addons/account_financial_report/report/vat_report_xlsx.py:0
1544
1566
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
1545
- #, python-format
1546
1567
  msgid "Tax"
1547
- msgstr "Taxe"
1568
+ msgstr ""
1548
1569
 
1549
1570
  #. module: account_financial_report
1550
1571
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
1551
1572
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
1552
1573
  msgid "Tax Amount"
1553
- msgstr "Montant de la taxe"
1574
+ msgstr ""
1554
1575
 
1555
1576
  #. module: account_financial_report
1577
+ #. odoo-python
1556
1578
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
1557
- #, python-format
1558
1579
  msgid "Tax Balance"
1559
- msgstr "Solde des taxes"
1580
+ msgstr ""
1560
1581
 
1561
1582
  #. module: account_financial_report
1583
+ #. odoo-python
1562
1584
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
1563
- #, python-format
1564
1585
  msgid "Tax Credit"
1565
- msgstr "Crédit de taxe"
1586
+ msgstr ""
1566
1587
 
1567
1588
  #. module: account_financial_report
1589
+ #. odoo-python
1568
1590
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
1569
- #, python-format
1570
1591
  msgid "Tax Debit"
1571
- msgstr "Débit de taxe"
1592
+ msgstr ""
1572
1593
 
1573
1594
  #. module: account_financial_report
1595
+ #. odoo-python
1574
1596
  #: code:addons/account_financial_report/report/vat_report_xlsx.py:0
1575
1597
  #: model:ir.model.fields.selection,name:account_financial_report.selection__vat_report_wizard__based_on__taxgroups
1576
- #, python-format
1577
1598
  msgid "Tax Groups"
1578
- msgstr "Groupes de taxe"
1599
+ msgstr ""
1600
+
1601
+ #. module: account_financial_report
1602
+ #. odoo-python
1603
+ #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
1604
+ msgid "Tax Initial balance"
1605
+ msgstr ""
1579
1606
 
1580
1607
  #. module: account_financial_report
1608
+ #. odoo-python
1581
1609
  #: code:addons/account_financial_report/report/vat_report_xlsx.py:0
1582
1610
  #: model:ir.model.fields.selection,name:account_financial_report.selection__vat_report_wizard__based_on__taxtags
1583
- #, python-format
1584
1611
  msgid "Tax Tags"
1585
- msgstr "Étiquettes de taxe"
1612
+ msgstr ""
1586
1613
 
1587
1614
  #. module: account_financial_report
1615
+ #. odoo-python
1616
+ #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
1617
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_ending_cumul
1618
+ msgid "Tax ending balance"
1619
+ msgstr ""
1620
+
1621
+ #. module: account_financial_report
1622
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
1623
+ msgid "Tax initial balance"
1624
+ msgstr ""
1625
+
1626
+ #. module: account_financial_report
1627
+ #. odoo-python
1588
1628
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
1589
1629
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
1630
+ #: model:ir.model.fields.selection,name:account_financial_report.selection__general_ledger_report_wizard__grouped_by__taxes
1590
1631
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
1591
1632
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
1592
- #, python-format
1593
1633
  msgid "Taxes"
1594
- msgstr "Taxes"
1634
+ msgstr ""
1595
1635
 
1596
1636
  #. module: account_financial_report
1637
+ #. odoo-python
1597
1638
  #: code:addons/account_financial_report/wizard/general_ledger_wizard.py:0
1598
- #, python-format
1599
1639
  msgid ""
1600
1640
  "The Company in the General Ledger Report Wizard and in Date Range must be "
1601
1641
  "the same."
1602
1642
  msgstr ""
1603
- "La société dans le Grand livre et dans la plage de dates doit être la même."
1604
1643
 
1605
1644
  #. module: account_financial_report
1645
+ #. odoo-python
1606
1646
  #: code:addons/account_financial_report/wizard/trial_balance_wizard.py:0
1607
- #, python-format
1608
1647
  msgid ""
1609
- "The Company in the Trial Balance Report Wizard and in Date Range must be the "
1610
- "same."
1648
+ "The Company in the Trial Balance Report Wizard and in Date Range must be the"
1649
+ " same."
1611
1650
  msgstr ""
1612
- "La société dans la balance générale et dans la plage de dates doivent être "
1613
- "les mêmes."
1614
1651
 
1615
1652
  #. module: account_financial_report
1653
+ #. odoo-python
1616
1654
  #: code:addons/account_financial_report/wizard/vat_report_wizard.py:0
1617
- #, python-format
1618
1655
  msgid ""
1619
1656
  "The Company in the Vat Report Wizard and in Date Range must be the same."
1620
1657
  msgstr ""
1621
- "La société dans le rapport des taxes et dans la plage de dates doit être la "
1622
- "même."
1623
1658
 
1624
1659
  #. module: account_financial_report
1660
+ #. odoo-python
1625
1661
  #: code:addons/account_financial_report/wizard/trial_balance_wizard.py:0
1626
- #, python-format
1627
1662
  msgid "The hierarchy level to filter on must be greater than 0."
1628
- msgstr "Le niveau de hiérarchie à filtrer doit être plus grand que 0."
1663
+ msgstr ""
1664
+
1665
+ #. module: account_financial_report
1666
+ #. odoo-python
1667
+ #: code:addons/account_financial_report/report/trial_balance.py:0
1668
+ msgid ""
1669
+ "There is a problem in the structure of the account groups. You may need to "
1670
+ "create some child group of %s."
1671
+ msgstr ""
1629
1672
 
1630
1673
  #. module: account_financial_report
1631
1674
  #: model:ir.model.fields,help:account_financial_report.field_general_ledger_report_wizard__domain
1632
1675
  msgid "This domain will be used to select specific domain for Journal Items"
1633
1676
  msgstr ""
1634
- "Ce domaine sera utilisé pour sélectionner un domaine spécifique pour les "
1635
- "écritures de journal"
1636
1677
 
1637
1678
  #. module: account_financial_report
1638
1679
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
1639
1680
  msgid "To"
1640
- msgstr "Au"
1681
+ msgstr ""
1641
1682
 
1642
1683
  #. module: account_financial_report
1643
1684
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
1644
1685
  msgid "To:"
1645
- msgstr "Au:"
1686
+ msgstr ""
1646
1687
 
1647
1688
  #. module: account_financial_report
1689
+ #. odoo-python
1690
+ #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
1648
1691
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_account_ending_cumul
1649
1692
  msgid "Total"
1650
- msgstr "Total"
1693
+ msgstr ""
1651
1694
 
1652
1695
  #. module: account_financial_report
1696
+ #. odoo-python
1653
1697
  #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
1654
1698
  #: model:ir.actions.act_window,name:account_financial_report.action_trial_balance_wizard
1655
1699
  #: model:ir.actions.report,name:account_financial_report.action_report_trial_balance_html
1656
1700
  #: model:ir.actions.report,name:account_financial_report.action_report_trial_balance_qweb
1657
1701
  #: model:ir.ui.menu,name:account_financial_report.menu_trial_balance_wizard
1658
- #, python-format
1659
1702
  msgid "Trial Balance"
1660
- msgstr "Balance générale"
1703
+ msgstr ""
1661
1704
 
1662
1705
  #. module: account_financial_report
1663
1706
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_base
1664
1707
  msgid "Trial Balance -"
1665
- msgstr "Balance générale -"
1708
+ msgstr ""
1666
1709
 
1667
1710
  #. module: account_financial_report
1668
1711
  #: model:ir.model,name:account_financial_report.model_report_account_financial_report_trial_balance
1669
1712
  msgid "Trial Balance Report"
1670
- msgstr "Rapport de balance générale"
1713
+ msgstr ""
1671
1714
 
1672
1715
  #. module: account_financial_report
1673
1716
  #: model:ir.model,name:account_financial_report.model_trial_balance_report_wizard
1674
1717
  msgid "Trial Balance Report Wizard"
1675
- msgstr "Assistant de balance générale"
1718
+ msgstr ""
1676
1719
 
1677
1720
  #. module: account_financial_report
1678
1721
  #: model:ir.actions.report,name:account_financial_report.action_report_trial_balance_xlsx
1679
1722
  msgid "Trial Balance XLSX"
1680
- msgstr "Balance générale XLSX"
1723
+ msgstr ""
1681
1724
 
1682
1725
  #. module: account_financial_report
1683
1726
  #: model:ir.model,name:account_financial_report.model_report_a_f_r_report_trial_balance_xlsx
1684
1727
  msgid "Trial Balance XLSX Report"
1685
- msgstr "Balance générale au format XLSX"
1728
+ msgstr ""
1686
1729
 
1687
1730
  #. module: account_financial_report
1688
1731
  #: model_terms:ir.ui.view,arch_db:account_financial_report.trial_balance_wizard
@@ -1695,19 +1738,21 @@ msgstr ""
1695
1738
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__unaffected_earnings_account
1696
1739
  #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__unaffected_earnings_account
1697
1740
  msgid "Unaffected Earnings Account"
1698
- msgstr "Compte des Bénéfices/Pertes à reporter"
1741
+ msgstr ""
1699
1742
 
1700
1743
  #. module: account_financial_report
1701
1744
  #: model:ir.model.fields,help:account_financial_report.field_general_ledger_report_wizard__hide_account_at_0
1702
1745
  #: model:ir.model.fields,help:account_financial_report.field_open_items_report_wizard__hide_account_at_0
1703
1746
  msgid ""
1704
- "Use this filter to hide an account or a partner with an ending balance at 0. "
1705
- "If partners are filtered, debits and credits totals will not match the trial "
1706
- "balance."
1747
+ "Use this filter to hide an account or a partner with an ending balance at 0."
1748
+ " If partners are filtered, debits and credits totals will not match the "
1749
+ "trial balance."
1750
+ msgstr ""
1751
+
1752
+ #. module: account_financial_report
1753
+ #: model:ir.model.fields,help:account_financial_report.field_trial_balance_report_wizard__show_hierarchy
1754
+ msgid "Use when your account groups are hierarchical"
1707
1755
  msgstr ""
1708
- "Utiliser ce filtre pour cacher un compte ou un partenaire avec un solde de "
1709
- "clôture à 0. Si les partenaires sont filtrés, les totaux des débits et "
1710
- "crédits ne correspondront pas à la balance générale."
1711
1756
 
1712
1757
  #. module: account_financial_report
1713
1758
  #: model:ir.actions.act_window,name:account_financial_report.action_vat_report_wizard
@@ -1715,43 +1760,43 @@ msgstr ""
1715
1760
  #: model:ir.actions.report,name:account_financial_report.action_print_report_vat_report_qweb
1716
1761
  #: model:ir.ui.menu,name:account_financial_report.menu_vat_report_wizard
1717
1762
  msgid "VAT Report"
1718
- msgstr "Etat de TVA"
1763
+ msgstr ""
1719
1764
 
1720
1765
  #. module: account_financial_report
1721
1766
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
1722
1767
  msgid "VAT Report -"
1723
- msgstr "Etat de TVA -"
1768
+ msgstr ""
1724
1769
 
1725
1770
  #. module: account_financial_report
1726
1771
  #: model_terms:ir.ui.view,arch_db:account_financial_report.vat_report_wizard
1727
1772
  msgid "VAT Report Options"
1728
- msgstr "Options de l'état de TVA"
1773
+ msgstr ""
1729
1774
 
1730
1775
  #. module: account_financial_report
1731
1776
  #: model:ir.model,name:account_financial_report.model_vat_report_wizard
1732
1777
  msgid "VAT Report Wizard"
1733
- msgstr "Assistant de l'état de TVA"
1778
+ msgstr ""
1734
1779
 
1735
1780
  #. module: account_financial_report
1736
1781
  #: model:ir.actions.report,name:account_financial_report.action_report_vat_report_xlsx
1737
1782
  msgid "VAT Report XLSX"
1738
- msgstr "Etat de TVA XLSX"
1783
+ msgstr ""
1739
1784
 
1740
1785
  #. module: account_financial_report
1786
+ #. odoo-python
1741
1787
  #: code:addons/account_financial_report/report/vat_report_xlsx.py:0
1742
- #, python-format
1743
1788
  msgid "Vat Report"
1744
- msgstr "Etat de TVA"
1789
+ msgstr ""
1745
1790
 
1746
1791
  #. module: account_financial_report
1747
1792
  #: model:ir.model,name:account_financial_report.model_report_account_financial_report_vat_report
1748
1793
  msgid "Vat Report Report"
1749
- msgstr "Options de l'état de TVA"
1794
+ msgstr ""
1750
1795
 
1751
1796
  #. module: account_financial_report
1752
1797
  #: model:ir.model,name:account_financial_report.model_report_a_f_r_report_vat_report_xlsx
1753
1798
  msgid "Vat Report XLSX Report"
1754
- msgstr "Etat de TVA au format XLSX"
1799
+ msgstr ""
1755
1800
 
1756
1801
  #. module: account_financial_report
1757
1802
  #: model_terms:ir.ui.view,arch_db:account_financial_report.aged_partner_balance_wizard
@@ -1761,7 +1806,7 @@ msgstr "Etat de TVA au format XLSX"
1761
1806
  #: model_terms:ir.ui.view,arch_db:account_financial_report.trial_balance_wizard
1762
1807
  #: model_terms:ir.ui.view,arch_db:account_financial_report.vat_report_wizard
1763
1808
  msgid "View"
1764
- msgstr "Voir"
1809
+ msgstr ""
1765
1810
 
1766
1811
  #. module: account_financial_report
1767
1812
  #: model:ir.model.fields,help:account_financial_report.field_trial_balance_report_wizard__hide_account_at_0
@@ -1769,38 +1814,41 @@ msgid ""
1769
1814
  "When this option is enabled, the trial balance will not display accounts "
1770
1815
  "that have initial balance = debit = credit = end balance = 0"
1771
1816
  msgstr ""
1772
- "Lorsque cette options est activée, la balance générale n'affichera pas les "
1773
- "comptes qui ont: Solde initial = débit = crédit = solde de clôture = 0"
1774
1817
 
1775
1818
  #. module: account_financial_report
1776
1819
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__with_account_name
1777
1820
  msgid "With Account Name"
1778
- msgstr "Avec le nom du compte"
1821
+ msgstr ""
1822
+
1823
+ #. module: account_financial_report
1824
+ #. odoo-python
1825
+ #: code:addons/account_financial_report/report/trial_balance.py:0
1826
+ msgid "Without analytic account"
1827
+ msgstr ""
1779
1828
 
1780
1829
  #. module: account_financial_report
1830
+ #. odoo-python
1781
1831
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
1782
1832
  #: code:addons/account_financial_report/report/open_items_xlsx.py:0
1783
1833
  #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
1784
1834
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
1785
- #, python-format
1786
1835
  msgid "Yes"
1787
- msgstr "Oui"
1836
+ msgstr ""
1788
1837
 
1789
1838
  #. module: account_financial_report
1839
+ #. odoo-python
1790
1840
  #: code:addons/account_financial_report/report/general_ledger.py:0
1791
- #, python-format
1792
1841
  msgid "future"
1793
- msgstr "futur"
1842
+ msgstr ""
1794
1843
 
1795
1844
  #. module: account_financial_report
1796
- #: model_terms:ir.ui.view,arch_db:account_financial_report.aged_partner_balance_wizard
1797
1845
  #: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
1798
1846
  #: model_terms:ir.ui.view,arch_db:account_financial_report.journal_ledger_wizard
1799
1847
  #: model_terms:ir.ui.view,arch_db:account_financial_report.open_items_wizard
1800
1848
  #: model_terms:ir.ui.view,arch_db:account_financial_report.trial_balance_wizard
1801
1849
  #: model_terms:ir.ui.view,arch_db:account_financial_report.vat_report_wizard
1802
1850
  msgid "or"
1803
- msgstr "ou"
1851
+ msgstr ""
1804
1852
 
1805
1853
  #. module: account_financial_report
1806
1854
  #: model:ir.actions.report,name:account_financial_report.action_print_journal_ledger_wizard_qweb
@@ -1810,7 +1858,7 @@ msgstr ""
1810
1858
  #. module: account_financial_report
1811
1859
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal
1812
1860
  msgid "to"
1813
- msgstr "à"
1861
+ msgstr ""
1814
1862
 
1815
1863
  #. module: account_financial_report
1816
1864
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
@@ -1820,12 +1868,12 @@ msgstr ""
1820
1868
  #. module: account_financial_report
1821
1869
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
1822
1870
  msgid "width: 23.24%;"
1823
- msgstr "largeur : 23,24%;"
1871
+ msgstr ""
1824
1872
 
1825
1873
  #. module: account_financial_report
1826
1874
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
1827
1875
  msgid "width: 23.78%;"
1828
- msgstr "largeur : 23,78%;"
1876
+ msgstr ""
1829
1877
 
1830
1878
  #. module: account_financial_report
1831
1879
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
@@ -1835,9 +1883,9 @@ msgstr ""
1835
1883
  #. module: account_financial_report
1836
1884
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
1837
1885
  msgid "width: 38.92%;"
1838
- msgstr "Largeur : 38,92%;"
1886
+ msgstr ""
1839
1887
 
1840
1888
  #. module: account_financial_report
1841
1889
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
1842
1890
  msgid "width: 8.11%;"
1843
- msgstr "largeur : 8.11% ;"
1891
+ msgstr ""