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
@@ -9,7 +9,7 @@ msgstr ""
9
9
  "Project-Id-Version: Odoo Server 11.0\n"
10
10
  "Report-Msgid-Bugs-To: \n"
11
11
  "POT-Creation-Date: 2018-03-16 08:14+0000\n"
12
- "PO-Revision-Date: 2021-07-02 22:50+0000\n"
12
+ "PO-Revision-Date: 2024-06-16 16:32+0000\n"
13
13
  "Last-Translator: Pedro Castro Silva <pedrocs@exo.pt>\n"
14
14
  "Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/pt/)\n"
15
15
  "Language: pt\n"
@@ -17,7 +17,7 @@ msgstr ""
17
17
  "Content-Type: text/plain; charset=UTF-8\n"
18
18
  "Content-Transfer-Encoding: \n"
19
19
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
20
- "X-Generator: Weblate 4.3.2\n"
20
+ "X-Generator: Weblate 4.17\n"
21
21
 
22
22
  #. module: account_financial_report
23
23
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_lines_header
@@ -55,6 +55,19 @@ msgstr "91 - 120 d."
55
55
  msgid "<b>Taxes summary</b>"
56
56
  msgstr "<b>Resumo de impostos</b>"
57
57
 
58
+ #. module: account_financial_report
59
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.trial_balance_wizard
60
+ msgid ""
61
+ "<i class=\"fa fa-exclamation-triangle mr-3\"/>\n"
62
+ " Duplicate amounts may be shown because more than one "
63
+ "analytical account may be defined in the journal items."
64
+ msgstr ""
65
+
66
+ #. module: account_financial_report
67
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
68
+ msgid "<span class=\"o_form_label\">Intervals configuration</span>"
69
+ msgstr "<span class=\"o_form_label\">Configuração dos intervalos</span>"
70
+
58
71
  #. module: account_financial_report
59
72
  #: model_terms:ir.ui.view,arch_db:account_financial_report.aged_partner_balance_wizard
60
73
  #: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
@@ -66,7 +79,7 @@ msgstr "<span class=\"oe_inline\">Até</span>"
66
79
  #. module: account_financial_report
67
80
  #: model:ir.model,name:account_financial_report.model_report_account_financial_report_abstract_report
68
81
  msgid "Abstract Report"
69
- msgstr ""
82
+ msgstr "Relatório Abstrato"
70
83
 
71
84
  #. module: account_financial_report
72
85
  #: model:ir.model,name:account_financial_report.model_account_financial_report_abstract_wizard
@@ -79,6 +92,7 @@ msgid "Abstract XLSX Account Financial Report"
79
92
  msgstr "Relatório Financeiro Abstrato XLSX"
80
93
 
81
94
  #. module: account_financial_report
95
+ #. odoo-python
82
96
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
83
97
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
84
98
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
@@ -90,10 +104,14 @@ msgstr "Relatório Financeiro Abstrato XLSX"
90
104
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
91
105
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
92
106
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
93
- #, python-format
94
107
  msgid "Account"
95
108
  msgstr "Conta"
96
109
 
110
+ #. module: account_financial_report
111
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__account_age_report_config_id
112
+ msgid "Account Age Report Config"
113
+ msgstr "Config Relatório Antiguidade de Contas"
114
+
97
115
  #. module: account_financial_report
98
116
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__account_code_from
99
117
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__account_code_from
@@ -116,24 +134,24 @@ msgid "Account Group"
116
134
  msgstr "Grupo de Contas"
117
135
 
118
136
  #. module: account_financial_report
137
+ #. odoo-python
119
138
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
120
- #, python-format
121
139
  msgid "Account Name"
122
140
  msgstr "Nome da Conta"
123
141
 
124
142
  #. module: account_financial_report
143
+ #. odoo-python
125
144
  #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
126
145
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
127
- #, python-format
128
146
  msgid "Account at 0 filter"
129
147
  msgstr "Conta para filtro 0"
130
148
 
131
149
  #. module: account_financial_report
150
+ #. odoo-python
132
151
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
133
152
  #: code:addons/account_financial_report/report/open_items_xlsx.py:0
134
153
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
135
154
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
136
- #, python-format
137
155
  msgid "Account balance at 0 filter"
138
156
  msgstr "Filtro de conta com saldo 0"
139
157
 
@@ -152,16 +170,23 @@ msgstr "Ativar centralização"
152
170
  msgid "Additional Filtering"
153
171
  msgstr "Filtragem Adicional"
154
172
 
173
+ #. module: account_financial_report
174
+ #: model:ir.actions.act_window,name:account_financial_report.action_aged_partner_report_configuration
175
+ msgid "Age Partner Report Configuration"
176
+ msgstr "Configuração do Relatório de Antiguidade de Parceiros"
177
+
155
178
  #. module: account_financial_report
156
179
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
157
180
  msgid ""
158
181
  "Age ≤ 120\n"
159
- " d."
160
- msgstr "Antiguidade ≤ 120 d."
182
+ " d."
183
+ msgstr ""
184
+ "Antiguidade ≤ 120\n"
185
+ " d."
161
186
 
162
187
  #. module: account_financial_report
188
+ #. odoo-python
163
189
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
164
- #, python-format
165
190
  msgid "Age ≤ 120 d."
166
191
  msgstr "Antiguidade ≤ 120 d."
167
192
 
@@ -169,12 +194,14 @@ msgstr "Antiguidade ≤ 120 d."
169
194
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
170
195
  msgid ""
171
196
  "Age ≤ 30\n"
172
- " d."
173
- msgstr "Antiguidade ≤ 30 d."
197
+ " d."
198
+ msgstr ""
199
+ "Antiguidade ≤ 30\n"
200
+ " d."
174
201
 
175
202
  #. module: account_financial_report
203
+ #. odoo-python
176
204
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
177
- #, python-format
178
205
  msgid "Age ≤ 30 d."
179
206
  msgstr "Antiguidade ≤ 30 d."
180
207
 
@@ -182,12 +209,14 @@ msgstr "Antiguidade ≤ 30 d."
182
209
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
183
210
  msgid ""
184
211
  "Age ≤ 60\n"
185
- " d."
186
- msgstr "Antiguidade ≤ 60 d."
212
+ " d."
213
+ msgstr ""
214
+ "Antiguidade ≤ 60\n"
215
+ " d."
187
216
 
188
217
  #. module: account_financial_report
218
+ #. odoo-python
189
219
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
190
- #, python-format
191
220
  msgid "Age ≤ 60 d."
192
221
  msgstr "Antiguidade ≤ 60 d."
193
222
 
@@ -195,22 +224,24 @@ msgstr "Antiguidade ≤ 60 d."
195
224
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
196
225
  msgid ""
197
226
  "Age ≤ 90\n"
198
- " d."
199
- msgstr "Antiguidade ≤ 90 d."
227
+ " d."
228
+ msgstr ""
229
+ "Antiguidade ≤ 90\n"
230
+ " d."
200
231
 
201
232
  #. module: account_financial_report
233
+ #. odoo-python
202
234
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
203
- #, python-format
204
235
  msgid "Age ≤ 90 d."
205
236
  msgstr "Antiguidade ≤ 90 d."
206
237
 
207
238
  #. module: account_financial_report
239
+ #. odoo-python
208
240
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
209
241
  #: model:ir.actions.act_window,name:account_financial_report.action_aged_partner_balance_wizard
210
242
  #: model:ir.actions.report,name:account_financial_report.action_print_report_aged_partner_balance_html
211
243
  #: model:ir.actions.report,name:account_financial_report.action_print_report_aged_partner_balance_qweb
212
244
  #: model:ir.ui.menu,name:account_financial_report.menu_aged_partner_balance_wizard
213
- #, python-format
214
245
  msgid "Aged Partner Balance"
215
246
  msgstr "Antiguidade de Saldo de Parceiro"
216
247
 
@@ -240,8 +271,8 @@ msgid "Aged Partner Balance XLSX"
240
271
  msgstr "Antiguidade de Saldo de Parceiro XLSX"
241
272
 
242
273
  #. module: account_financial_report
274
+ #. odoo-python
243
275
  #: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
244
- #, python-format
245
276
  msgid "All"
246
277
  msgstr "Todos"
247
278
 
@@ -264,6 +295,7 @@ msgid "All Posted Entries"
264
295
  msgstr "Todos os Lançamentos Publicados"
265
296
 
266
297
  #. module: account_financial_report
298
+ #. odoo-python
267
299
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
268
300
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
269
301
  #: code:addons/account_financial_report/report/open_items_xlsx.py:0
@@ -272,11 +304,11 @@ msgstr "Todos os Lançamentos Publicados"
272
304
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
273
305
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
274
306
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
275
- #, python-format
276
307
  msgid "All entries"
277
308
  msgstr "Todos os movimentos"
278
309
 
279
310
  #. module: account_financial_report
311
+ #. odoo-python
280
312
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
281
313
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
282
314
  #: code:addons/account_financial_report/report/open_items_xlsx.py:0
@@ -285,35 +317,40 @@ msgstr "Todos os movimentos"
285
317
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
286
318
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
287
319
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
288
- #, python-format
289
320
  msgid "All posted entries"
290
321
  msgstr "Todos os movimentos publicados"
291
322
 
292
323
  #. module: account_financial_report
293
324
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
294
325
  msgid "Amount Cur."
295
- msgstr "Montante em Moeda"
326
+ msgstr "Mont. Moeda"
296
327
 
297
328
  #. module: account_financial_report
329
+ #. odoo-python
298
330
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
299
- #, python-format
300
331
  msgid "Amount Currency"
301
332
  msgstr "Montante em Moeda"
302
333
 
303
334
  #. module: account_financial_report
335
+ #. odoo-python
304
336
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
305
337
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
306
- #, python-format
307
338
  msgid "Amount cur."
308
339
  msgstr "Montante em moeda."
309
340
 
310
341
  #. module: account_financial_report
311
- #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
312
- #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
313
- #, python-format
342
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_move_line__analytic_account_ids
343
+ #: model:ir.model.fields.selection,name:account_financial_report.selection__trial_balance_report_wizard__grouped_by__analytic_account
314
344
  msgid "Analytic Account"
315
345
  msgstr "Conta Analítica"
316
346
 
347
+ #. module: account_financial_report
348
+ #. odoo-python
349
+ #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
350
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
351
+ msgid "Analytic Distribution"
352
+ msgstr "Distribuição Analítica"
353
+
317
354
  #. module: account_financial_report
318
355
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
319
356
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
@@ -327,20 +364,20 @@ msgid "Base Amount"
327
364
  msgstr "Montante Base"
328
365
 
329
366
  #. module: account_financial_report
367
+ #. odoo-python
330
368
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
331
- #, python-format
332
369
  msgid "Base Balance"
333
370
  msgstr "Saldo da base"
334
371
 
335
372
  #. module: account_financial_report
373
+ #. odoo-python
336
374
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
337
- #, python-format
338
375
  msgid "Base Credit"
339
376
  msgstr "Crédito base"
340
377
 
341
378
  #. module: account_financial_report
379
+ #. odoo-python
342
380
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
343
- #, python-format
344
381
  msgid "Base Debit"
345
382
  msgstr "Débito Base"
346
383
 
@@ -351,8 +388,8 @@ msgid "Based On"
351
388
  msgstr "Baseado Em"
352
389
 
353
390
  #. module: account_financial_report
391
+ #. odoo-python
354
392
  #: code:addons/account_financial_report/report/vat_report_xlsx.py:0
355
- #, python-format
356
393
  msgid "Based on"
357
394
  msgstr "Baseado em"
358
395
 
@@ -367,9 +404,9 @@ msgid "Cancel"
367
404
  msgstr "Cancelar"
368
405
 
369
406
  #. module: account_financial_report
407
+ #. odoo-python
370
408
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
371
409
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
372
- #, python-format
373
410
  msgid "Centralize filter"
374
411
  msgstr "Filtro de Centralização"
375
412
 
@@ -378,27 +415,24 @@ msgstr "Filtro de Centralização"
378
415
  msgid "Centralized"
379
416
  msgstr "Centralizado"
380
417
 
381
- #. module: account_financial_report
382
- #: model:ir.model.fields.selection,name:account_financial_report.selection__trial_balance_report_wizard__hierarchy_on__relation
383
- msgid "Child Accounts"
384
- msgstr "Contas Descendentes"
385
-
386
418
  #. module: account_financial_report
387
419
  #: model:ir.model.fields,field_description:account_financial_report.field_account_group__group_child_ids
388
420
  msgid "Child Groups"
389
421
  msgstr "Grupos Descendentes"
390
422
 
391
423
  #. module: account_financial_report
424
+ #. odoo-python
392
425
  #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
393
426
  #: code:addons/account_financial_report/report/vat_report_xlsx.py:0
394
427
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
395
428
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
396
- #, python-format
397
429
  msgid "Code"
398
430
  msgstr "Código"
399
431
 
400
432
  #. module: account_financial_report
433
+ #. odoo-python
401
434
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
435
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__company_id
402
436
  #: model:ir.model.fields,field_description:account_financial_report.field_account_financial_report_abstract_wizard__company_id
403
437
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__company_id
404
438
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__company_id
@@ -406,7 +440,6 @@ msgstr "Código"
406
440
  #: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__company_id
407
441
  #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__company_id
408
442
  #: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__company_id
409
- #, python-format
410
443
  msgid "Company"
411
444
  msgstr "Empresa"
412
445
 
@@ -416,33 +449,18 @@ msgid "Compute accounts"
416
449
  msgstr "Calcular contas"
417
450
 
418
451
  #. module: account_financial_report
419
- #: model:ir.model.fields.selection,name:account_financial_report.selection__trial_balance_report_wizard__hierarchy_on__computed
420
- msgid "Computed Accounts"
421
- msgstr "Calcular Contas"
452
+ #: model:ir.model,name:account_financial_report.model_res_config_settings
453
+ msgid "Config Settings"
454
+ msgstr "Parâmetros de Configuração"
422
455
 
423
456
  #. module: account_financial_report
424
- #: model:ir.model.fields,help:account_financial_report.field_trial_balance_report_wizard__hierarchy_on
425
- msgid ""
426
- "Computed Accounts: Use when the account group have codes\n"
427
- " that represent prefixes of the actual accounts.\n"
428
- "\n"
429
- " Child Accounts: Use when your account groups are hierarchical.\n"
430
- "\n"
431
- " No hierarchy: Use to display just the accounts, without any "
432
- "grouping.\n"
433
- " "
434
- msgstr ""
435
- "Contas Calculadas: Usar quando o grupo de contas tem códigos\n"
436
- " que representam prefixos das contas reais.\n"
437
- "\n"
438
- " Contas Descendentes: Usar quando o grupo de contas tem estrutura "
439
- "hierárquica.\n"
440
- "\n"
441
- " Sem hierarquia: Usar para exibir apenas as contas, sem qualquer "
442
- "agrupmento.\n"
443
- " "
457
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
458
+ msgid "Configurations"
459
+ msgstr "Configurações"
444
460
 
445
461
  #. module: account_financial_report
462
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__create_uid
463
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__create_uid
446
464
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__create_uid
447
465
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__create_uid
448
466
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__create_uid
@@ -453,6 +471,8 @@ msgid "Created by"
453
471
  msgstr "Criado por"
454
472
 
455
473
  #. module: account_financial_report
474
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__create_date
475
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__create_date
456
476
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__create_date
457
477
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__create_date
458
478
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__create_date
@@ -463,6 +483,7 @@ msgid "Created on"
463
483
  msgstr "Criado em"
464
484
 
465
485
  #. module: account_financial_report
486
+ #. odoo-python
466
487
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
467
488
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
468
489
  #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
@@ -471,57 +492,60 @@ msgstr "Criado em"
471
492
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
472
493
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
473
494
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
474
- #, python-format
475
495
  msgid "Credit"
476
496
  msgstr "Crédito"
477
497
 
478
498
  #. module: account_financial_report
499
+ #. odoo-python
500
+ #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
501
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
502
+ msgid "Cumul cur."
503
+ msgstr "Cumul moeda"
504
+
505
+ #. module: account_financial_report
506
+ #. odoo-python
479
507
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
480
508
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
481
- #, python-format
482
509
  msgid "Cumul. Bal."
483
510
  msgstr "Saldo Acumulado."
484
511
 
485
512
  #. module: account_financial_report
486
- #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
513
+ #. odoo-python
487
514
  #: code:addons/account_financial_report/report/open_items_xlsx.py:0
488
- #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
489
- #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
490
515
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
491
516
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
492
- #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
493
- #, python-format
494
517
  msgid "Cur."
495
518
  msgstr "Divisa"
496
519
 
497
520
  #. module: account_financial_report
521
+ #. odoo-python
498
522
  #: code:addons/account_financial_report/report/open_items_xlsx.py:0
499
523
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
500
- #, python-format
501
524
  msgid "Cur. Original"
502
525
  msgstr "Divisa Original"
503
526
 
504
527
  #. module: account_financial_report
528
+ #. odoo-python
505
529
  #: code:addons/account_financial_report/report/open_items_xlsx.py:0
506
530
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
507
- #, python-format
508
531
  msgid "Cur. Residual"
509
532
  msgstr "Divisa Residual"
510
533
 
511
534
  #. module: account_financial_report
535
+ #. odoo-python
512
536
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
513
- #, python-format
514
537
  msgid "Currency"
515
538
  msgstr "Divisa"
516
539
 
517
540
  #. module: account_financial_report
541
+ #. odoo-python
518
542
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
519
543
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
520
- #, python-format
521
544
  msgid "Current"
522
545
  msgstr "Corrente"
523
546
 
524
547
  #. module: account_financial_report
548
+ #. odoo-python
525
549
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
526
550
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
527
551
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
@@ -531,7 +555,6 @@ msgstr "Corrente"
531
555
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
532
556
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
533
557
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
534
- #, python-format
535
558
  msgid "Date"
536
559
  msgstr "Data"
537
560
 
@@ -558,17 +581,17 @@ msgid "Date To"
558
581
  msgstr "Data até"
559
582
 
560
583
  #. module: account_financial_report
584
+ #. odoo-python
561
585
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
562
586
  #: code:addons/account_financial_report/report/open_items_xlsx.py:0
563
587
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_filters
564
588
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
565
- #, python-format
566
589
  msgid "Date at filter"
567
590
  msgstr "Data no filtro"
568
591
 
569
592
  #. module: account_financial_report
593
+ #. odoo-python
570
594
  #: code:addons/account_financial_report/report/vat_report_xlsx.py:0
571
- #, python-format
572
595
  msgid "Date from"
573
596
  msgstr "Data de"
574
597
 
@@ -581,22 +604,23 @@ msgid "Date range"
581
604
  msgstr "Período"
582
605
 
583
606
  #. module: account_financial_report
607
+ #. odoo-python
584
608
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
585
609
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
586
610
  #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
587
611
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
588
612
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
589
- #, python-format
590
613
  msgid "Date range filter"
591
614
  msgstr "Filtro do período"
592
615
 
593
616
  #. module: account_financial_report
617
+ #. odoo-python
594
618
  #: code:addons/account_financial_report/report/vat_report_xlsx.py:0
595
- #, python-format
596
619
  msgid "Date to"
597
620
  msgstr "Data até"
598
621
 
599
622
  #. module: account_financial_report
623
+ #. odoo-python
600
624
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
601
625
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
602
626
  #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
@@ -605,15 +629,14 @@ msgstr "Data até"
605
629
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
606
630
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
607
631
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
608
- #, python-format
609
632
  msgid "Debit"
610
633
  msgstr "Débito"
611
634
 
612
635
  #. module: account_financial_report
636
+ #. odoo-python
613
637
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
614
638
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
615
639
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
616
- #, python-format
617
640
  msgid "Description"
618
641
  msgstr "Descrição"
619
642
 
@@ -623,29 +646,12 @@ msgid "Detail Taxes"
623
646
  msgstr "Detalhe dos Impostos"
624
647
 
625
648
  #. module: account_financial_report
626
- #: model:ir.model.fields,field_description:account_financial_report.field_account_account__display_name
627
- #: model:ir.model.fields,field_description:account_financial_report.field_account_financial_report_abstract_wizard__display_name
628
- #: model:ir.model.fields,field_description:account_financial_report.field_account_group__display_name
629
- #: model:ir.model.fields,field_description:account_financial_report.field_account_move_line__display_name
649
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__display_name
650
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__display_name
630
651
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__display_name
631
652
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__display_name
632
- #: model:ir.model.fields,field_description:account_financial_report.field_ir_actions_report__display_name
633
653
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__display_name
634
654
  #: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__display_name
635
- #: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_aged_partner_balance_xlsx__display_name
636
- #: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_general_ledger_xlsx__display_name
637
- #: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_journal_ledger_xlsx__display_name
638
- #: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_open_items_xlsx__display_name
639
- #: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_trial_balance_xlsx__display_name
640
- #: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_vat_report_xlsx__display_name
641
- #: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_abstract_report__display_name
642
- #: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_abstract_report_xlsx__display_name
643
- #: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_aged_partner_balance__display_name
644
- #: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_general_ledger__display_name
645
- #: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_journal_ledger__display_name
646
- #: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_open_items__display_name
647
- #: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_trial_balance__display_name
648
- #: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_vat_report__display_name
649
655
  #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__display_name
650
656
  #: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__display_name
651
657
  msgid "Display Name"
@@ -684,9 +690,9 @@ msgid ""
684
690
  msgstr "Data de Vencimento"
685
691
 
686
692
  #. module: account_financial_report
693
+ #. odoo-python
687
694
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
688
695
  #: code:addons/account_financial_report/report/open_items_xlsx.py:0
689
- #, python-format
690
696
  msgid "Due date"
691
697
  msgstr "Data de vencimento"
692
698
 
@@ -716,12 +722,12 @@ msgid "Ending account in a range"
716
722
  msgstr "Conta final no intervalo"
717
723
 
718
724
  #. module: account_financial_report
725
+ #. odoo-python
719
726
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
720
727
  #: code:addons/account_financial_report/report/open_items_xlsx.py:0
721
728
  #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
722
729
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_ending_cumul
723
730
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
724
- #, python-format
725
731
  msgid "Ending balance"
726
732
  msgstr "Saldo Final"
727
733
 
@@ -733,12 +739,13 @@ msgid ""
733
739
  msgstr "Saldo final na moeda"
734
740
 
735
741
  #. module: account_financial_report
742
+ #. odoo-python
736
743
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
737
- #, python-format
738
744
  msgid "Entries sorted by"
739
745
  msgstr "Movimentos ordenados por"
740
746
 
741
747
  #. module: account_financial_report
748
+ #. odoo-python
742
749
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
743
750
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
744
751
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
@@ -747,20 +754,18 @@ msgstr "Movimentos ordenados por"
747
754
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
748
755
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
749
756
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
750
- #, python-format
751
757
  msgid "Entry"
752
758
  msgstr "Movimento"
753
759
 
754
760
  #. module: account_financial_report
761
+ #. odoo-python
755
762
  #: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
756
- #, python-format
757
763
  msgid "Entry number"
758
764
  msgstr "Número do movimento"
759
765
 
760
766
  #. module: account_financial_report
761
- #. openerp-web
767
+ #. odoo-javascript
762
768
  #: code:addons/account_financial_report/static/src/xml/report.xml:0
763
- #, python-format
764
769
  msgid "Export"
765
770
  msgstr "Exportar"
766
771
 
@@ -798,12 +803,6 @@ msgstr "Filtrar contas"
798
803
  msgid "Filter analytic accounts"
799
804
  msgstr "Filtrar contas analíticas"
800
805
 
801
- #. module: account_financial_report
802
- #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__analytic_tag_ids
803
- #: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
804
- msgid "Filter analytic tags"
805
- msgstr "Filtrar etiquetas analíticas"
806
-
807
806
  #. module: account_financial_report
808
807
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__cost_center_ids
809
808
  msgid "Filter cost centers"
@@ -828,6 +827,11 @@ msgstr "Filtrar parceiros"
828
827
  msgid "Foreign Currency"
829
828
  msgstr "Divisa Estrangeira"
830
829
 
830
+ #. module: account_financial_report
831
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
832
+ msgid "Format"
833
+ msgstr ""
834
+
831
835
  #. module: account_financial_report
832
836
  #: model_terms:ir.ui.view,arch_db:account_financial_report.aged_partner_balance_wizard
833
837
  #: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
@@ -843,12 +847,12 @@ msgid "From:"
843
847
  msgstr "De:"
844
848
 
845
849
  #. module: account_financial_report
850
+ #. odoo-python
846
851
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
847
852
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
848
853
  #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
849
- #, python-format
850
- msgid "From: %s To: %s"
851
- msgstr "De: %s A: %s"
854
+ msgid "From: %(date_from)s To: %(date_to)s"
855
+ msgstr "De: %(date_from)s A: %(date_to)s"
852
856
 
853
857
  #. module: account_financial_report
854
858
  #: model:ir.model.fields,field_description:account_financial_report.field_account_group__complete_code
@@ -867,13 +871,13 @@ msgid "Fy Start Date"
867
871
  msgstr "Data Inicial do Ano Fiscal"
868
872
 
869
873
  #. module: account_financial_report
874
+ #. odoo-python
870
875
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
871
876
  #: model:ir.actions.act_window,name:account_financial_report.act_action_general_ledger_wizard_partner_relation
872
877
  #: model:ir.actions.act_window,name:account_financial_report.action_general_ledger_wizard
873
878
  #: model:ir.actions.report,name:account_financial_report.action_print_report_general_ledger_html
874
879
  #: model:ir.actions.report,name:account_financial_report.action_print_report_general_ledger_qweb
875
880
  #: model:ir.ui.menu,name:account_financial_report.menu_general_ledger_wizard
876
- #, python-format
877
881
  msgid "General Ledger"
878
882
  msgstr "Razão"
879
883
 
@@ -917,13 +921,28 @@ msgid "Group entries by"
917
921
  msgstr "Agrupar movimentos por"
918
922
 
919
923
  #. module: account_financial_report
924
+ #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__grouped_by
925
+ #: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__grouped_by
926
+ #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__grouped_by
927
+ msgid "Grouped By"
928
+ msgstr "Agrupar Por"
929
+
930
+ #. module: account_financial_report
931
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
932
+ msgid ""
933
+ "Here you can set the intervals that will appear on the Aged Partner Balance."
934
+ msgstr ""
935
+ "Aqui podemos definir os intervalos que aparecerão no Extrato de Antiguidade "
936
+ "de Parceiros."
937
+
938
+ #. module: account_financial_report
939
+ #. odoo-python
920
940
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
921
941
  #: code:addons/account_financial_report/report/open_items_xlsx.py:0
922
942
  #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
923
943
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
924
944
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
925
945
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
926
- #, python-format
927
946
  msgid "Hide"
928
947
  msgstr "Esconder"
929
948
 
@@ -944,34 +963,12 @@ msgid "Hierarchy Levels to display"
944
963
  msgstr "Níveis Hierárquicos a exibir"
945
964
 
946
965
  #. module: account_financial_report
947
- #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__hierarchy_on
948
- msgid "Hierarchy On"
949
- msgstr "Hierarquia em"
950
-
951
- #. module: account_financial_report
952
- #: model:ir.model.fields,field_description:account_financial_report.field_account_account__id
953
- #: model:ir.model.fields,field_description:account_financial_report.field_account_financial_report_abstract_wizard__id
954
- #: model:ir.model.fields,field_description:account_financial_report.field_account_group__id
955
- #: model:ir.model.fields,field_description:account_financial_report.field_account_move_line__id
966
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__id
967
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__id
956
968
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__id
957
969
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__id
958
- #: model:ir.model.fields,field_description:account_financial_report.field_ir_actions_report__id
959
970
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__id
960
971
  #: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__id
961
- #: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_aged_partner_balance_xlsx__id
962
- #: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_general_ledger_xlsx__id
963
- #: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_journal_ledger_xlsx__id
964
- #: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_open_items_xlsx__id
965
- #: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_trial_balance_xlsx__id
966
- #: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_vat_report_xlsx__id
967
- #: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_abstract_report__id
968
- #: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_abstract_report_xlsx__id
969
- #: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_aged_partner_balance__id
970
- #: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_general_ledger__id
971
- #: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_journal_ledger__id
972
- #: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_open_items__id
973
- #: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_trial_balance__id
974
- #: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_vat_report__id
975
972
  #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__id
976
973
  #: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__id
977
974
  msgid "ID"
@@ -986,6 +983,17 @@ msgstr ""
986
983
  "Se marcado, não serão exibidos os detalhes no relatório do Razão , apenas "
987
984
  "montantes centralizados por período."
988
985
 
986
+ #. module: account_financial_report
987
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__inferior_limit
988
+ msgid "Inferior Limit"
989
+ msgstr "Limite Inferior"
990
+
991
+ #. module: account_financial_report
992
+ #. odoo-python
993
+ #: code:addons/account_financial_report/models/account_age_report_configuration.py:0
994
+ msgid "Inferior Limit must be greather than zero"
995
+ msgstr "O Limite Inferior deve ser maior do que zero"
996
+
989
997
  #. module: account_financial_report
990
998
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
991
999
  msgid ""
@@ -1003,14 +1011,21 @@ msgstr ""
1003
1011
  " inicial"
1004
1012
 
1005
1013
  #. module: account_financial_report
1014
+ #. odoo-python
1006
1015
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
1007
1016
  #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
1008
1017
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
1009
- #, python-format
1010
1018
  msgid "Initial balance"
1011
1019
  msgstr "Saldo Inicial"
1012
1020
 
1013
1021
  #. module: account_financial_report
1022
+ #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__age_partner_config_id
1023
+ #: model:ir.model.fields,field_description:account_financial_report.field_res_config_settings__age_partner_config_id
1024
+ msgid "Intervals configuration"
1025
+ msgstr "Configuração de intervalos"
1026
+
1027
+ #. module: account_financial_report
1028
+ #. odoo-python
1014
1029
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
1015
1030
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
1016
1031
  #: code:addons/account_financial_report/report/open_items_xlsx.py:0
@@ -1019,7 +1034,6 @@ msgstr "Saldo Inicial"
1019
1034
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
1020
1035
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
1021
1036
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
1022
- #, python-format
1023
1037
  msgid "Journal"
1024
1038
  msgstr "Diário"
1025
1039
 
@@ -1034,11 +1048,11 @@ msgid "Journal Items Domain"
1034
1048
  msgstr "Domínio de Itens do Diário"
1035
1049
 
1036
1050
  #. module: account_financial_report
1051
+ #. odoo-python
1037
1052
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
1038
1053
  #: model:ir.actions.act_window,name:account_financial_report.action_journal_ledger_wizard
1039
1054
  #: model:ir.actions.report,name:account_financial_report.action_print_journal_ledger_wizard_html
1040
1055
  #: model:ir.ui.menu,name:account_financial_report.menu_journal_ledger_wizard
1041
- #, python-format
1042
1056
  msgid "Journal Ledger"
1043
1057
  msgstr "Diário Razão"
1044
1058
 
@@ -1068,43 +1082,27 @@ msgid "Journal Ledger XLSX Report"
1068
1082
  msgstr "Relatório do Razão XLSX"
1069
1083
 
1070
1084
  #. module: account_financial_report
1085
+ #. odoo-python
1071
1086
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
1072
1087
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__journal_ids
1073
1088
  #: model_terms:ir.ui.view,arch_db:account_financial_report.journal_ledger_wizard
1074
- #, python-format
1075
1089
  msgid "Journals"
1076
1090
  msgstr "Diários"
1077
1091
 
1078
1092
  #. module: account_financial_report
1079
- #: model:ir.model.fields,field_description:account_financial_report.field_account_account____last_update
1080
- #: model:ir.model.fields,field_description:account_financial_report.field_account_financial_report_abstract_wizard____last_update
1081
- #: model:ir.model.fields,field_description:account_financial_report.field_account_group____last_update
1082
- #: model:ir.model.fields,field_description:account_financial_report.field_account_move_line____last_update
1083
- #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard____last_update
1084
- #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard____last_update
1085
- #: model:ir.model.fields,field_description:account_financial_report.field_ir_actions_report____last_update
1086
- #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard____last_update
1087
- #: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard____last_update
1088
- #: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_aged_partner_balance_xlsx____last_update
1089
- #: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_general_ledger_xlsx____last_update
1090
- #: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_journal_ledger_xlsx____last_update
1091
- #: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_open_items_xlsx____last_update
1092
- #: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_trial_balance_xlsx____last_update
1093
- #: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_vat_report_xlsx____last_update
1094
- #: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_abstract_report____last_update
1095
- #: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_abstract_report_xlsx____last_update
1096
- #: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_aged_partner_balance____last_update
1097
- #: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_general_ledger____last_update
1098
- #: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_journal_ledger____last_update
1099
- #: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_open_items____last_update
1100
- #: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_trial_balance____last_update
1101
- #: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_vat_report____last_update
1102
- #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard____last_update
1103
- #: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard____last_update
1104
- msgid "Last Modified on"
1105
- msgstr "Última modificação em"
1093
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_financial_report_abstract_wizard__label_text_limit
1094
+ #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__label_text_limit
1095
+ #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__label_text_limit
1096
+ #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__label_text_limit
1097
+ #: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__label_text_limit
1098
+ #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__label_text_limit
1099
+ #: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__label_text_limit
1100
+ msgid "Label Text Limit"
1101
+ msgstr ""
1106
1102
 
1107
1103
  #. module: account_financial_report
1104
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__write_uid
1105
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__write_uid
1108
1106
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__write_uid
1109
1107
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__write_uid
1110
1108
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__write_uid
@@ -1115,6 +1113,8 @@ msgid "Last Updated by"
1115
1113
  msgstr "Última atualização por"
1116
1114
 
1117
1115
  #. module: account_financial_report
1116
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__write_date
1117
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__write_date
1118
1118
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__write_date
1119
1119
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__write_date
1120
1120
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__write_date
@@ -1131,19 +1131,52 @@ msgid "Level"
1131
1131
  msgstr "Nível"
1132
1132
 
1133
1133
  #. module: account_financial_report
1134
+ #. odoo-python
1134
1135
  #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
1135
- #, python-format
1136
1136
  msgid "Level %s"
1137
1137
  msgstr "Nível %s"
1138
1138
 
1139
1139
  #. module: account_financial_report
1140
+ #. odoo-python
1140
1141
  #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
1141
1142
  #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__limit_hierarchy_level
1142
1143
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
1143
- #, python-format
1144
1144
  msgid "Limit hierarchy levels"
1145
1145
  msgstr "Limite dos níveis hierárquicos"
1146
1146
 
1147
+ #. module: account_financial_report
1148
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__line_ids
1149
+ msgid "Line"
1150
+ msgstr "Linha"
1151
+
1152
+ #. module: account_financial_report
1153
+ #. odoo-python
1154
+ #: code:addons/account_financial_report/report/general_ledger.py:0
1155
+ #: code:addons/account_financial_report/report/open_items.py:0
1156
+ #: code:addons/account_financial_report/report/open_items_xlsx.py:0
1157
+ #: code:addons/account_financial_report/report/trial_balance.py:0
1158
+ msgid "Missing Partner"
1159
+ msgstr "Parceiro em Falta"
1160
+
1161
+ #. module: account_financial_report
1162
+ #. odoo-python
1163
+ #: code:addons/account_financial_report/report/open_items.py:0
1164
+ msgid "Missing Salesperson"
1165
+ msgstr ""
1166
+
1167
+ #. module: account_financial_report
1168
+ #: model:ir.model,name:account_financial_report.model_account_age_report_configuration_line
1169
+ msgid "Model to set interval lines for Age partner balance report"
1170
+ msgstr ""
1171
+ "Modelo para definir linhas de intervalos para o extrato de antiguidade de "
1172
+ "parceiros"
1173
+
1174
+ #. module: account_financial_report
1175
+ #: model:ir.model,name:account_financial_report.model_account_age_report_configuration
1176
+ msgid "Model to set intervals for Age partner balance report"
1177
+ msgstr ""
1178
+ "Modelo para definir intervalos para o extrato de antiguidade de parceiros"
1179
+
1147
1180
  #. module: account_financial_report
1148
1181
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__move_target
1149
1182
  msgid "Move Target"
@@ -1155,52 +1188,65 @@ msgid "Moves"
1155
1188
  msgstr "Movimentos"
1156
1189
 
1157
1190
  #. module: account_financial_report
1191
+ #. odoo-python
1192
+ #: code:addons/account_financial_report/models/account_age_report_configuration.py:0
1193
+ msgid "Must complete Configuration Lines"
1194
+ msgstr "Deve completar as Linhas de Configuração"
1195
+
1196
+ #. module: account_financial_report
1197
+ #. odoo-python
1158
1198
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
1159
1199
  #: code:addons/account_financial_report/report/vat_report_xlsx.py:0
1200
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__name
1201
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__name
1160
1202
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
1161
1203
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
1162
1204
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
1163
- #, python-format
1164
1205
  msgid "Name"
1165
1206
  msgstr "Nome"
1166
1207
 
1167
1208
  #. module: account_financial_report
1209
+ #: model:ir.model.constraint,message:account_financial_report.constraint_account_age_report_configuration_line_unique_name_config_combination
1210
+ msgid "Name must be unique per report configuration"
1211
+ msgstr "O nome deve ser único por configuração de relatório"
1212
+
1213
+ #. module: account_financial_report
1214
+ #. odoo-python
1168
1215
  #: code:addons/account_financial_report/report/vat_report_xlsx.py:0
1169
1216
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
1170
- #, python-format
1171
1217
  msgid "Net"
1172
1218
  msgstr "Líquido"
1173
1219
 
1174
1220
  #. module: account_financial_report
1221
+ #. odoo-python
1175
1222
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
1176
1223
  #: code:addons/account_financial_report/report/open_items_xlsx.py:0
1177
1224
  #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
1178
1225
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
1179
- #, python-format
1180
1226
  msgid "No"
1181
1227
  msgstr "Não"
1182
1228
 
1183
1229
  #. module: account_financial_report
1230
+ #. odoo-python
1184
1231
  #: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
1185
- #, python-format
1186
1232
  msgid "No group"
1187
1233
  msgstr "Sem grupo"
1188
1234
 
1189
1235
  #. module: account_financial_report
1190
- #: model:ir.model.fields.selection,name:account_financial_report.selection__trial_balance_report_wizard__hierarchy_on__none
1191
- msgid "No hierarchy"
1192
- msgstr "Sem hierarquia"
1193
-
1194
- #. module: account_financial_report
1236
+ #. odoo-python
1195
1237
  #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
1196
1238
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
1197
- #, python-format
1198
1239
  msgid "No limit"
1199
1240
  msgstr "Sem limite"
1200
1241
 
1201
1242
  #. module: account_financial_report
1243
+ #: model:ir.model.fields.selection,name:account_financial_report.selection__general_ledger_report_wizard__grouped_by__none
1244
+ msgid "None"
1245
+ msgstr "Nenhum"
1246
+
1247
+ #. module: account_financial_report
1248
+ #. odoo-python
1202
1249
  #: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
1203
- #, python-format
1204
1250
  msgid "Not Posted"
1205
1251
  msgstr "Não Publicado"
1206
1252
 
@@ -1210,10 +1256,9 @@ msgid "Not due"
1210
1256
  msgstr "Não vencido"
1211
1257
 
1212
1258
  #. module: account_financial_report
1213
- #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__not_only_one_unaffected_earnings_account
1214
- #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__not_only_one_unaffected_earnings_account
1215
- msgid "Not only one unaffected earnings account"
1216
- msgstr "Mais que uma conta de lucros não distribuídos"
1259
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
1260
+ msgid "OCA Aged Report Configuration"
1261
+ msgstr "Configuração de Relatório de Antiguidades OCA"
1217
1262
 
1218
1263
  #. module: account_financial_report
1219
1264
  #: model:ir.ui.menu,name:account_financial_report.menu_oca_reports
@@ -1221,19 +1266,25 @@ msgid "OCA accounting reports"
1221
1266
  msgstr "Relatórios de contabilidade OCA"
1222
1267
 
1223
1268
  #. module: account_financial_report
1269
+ #. odoo-python
1224
1270
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
1225
1271
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
1226
- #, python-format
1227
1272
  msgid "Older"
1228
1273
  msgstr "Mais Antigo"
1229
1274
 
1230
1275
  #. module: account_financial_report
1276
+ #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__only_one_unaffected_earnings_account
1277
+ #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__only_one_unaffected_earnings_account
1278
+ msgid "Only One Unaffected Earnings Account"
1279
+ msgstr "Apenas Uma Conta de Lucros Não Distribuídos"
1280
+
1281
+ #. module: account_financial_report
1282
+ #. odoo-python
1231
1283
  #: code:addons/account_financial_report/report/open_items_xlsx.py:0
1232
1284
  #: model:ir.actions.act_window,name:account_financial_report.action_open_items_wizard
1233
1285
  #: model:ir.actions.report,name:account_financial_report.action_print_report_open_items_html
1234
1286
  #: model:ir.actions.report,name:account_financial_report.action_print_report_open_items_qweb
1235
1287
  #: model:ir.ui.menu,name:account_financial_report.menu_open_items_wizard
1236
- #, python-format
1237
1288
  msgid "Open Items"
1238
1289
  msgstr "Items em aberto"
1239
1290
 
@@ -1273,13 +1324,14 @@ msgid "Options"
1273
1324
  msgstr "Opções"
1274
1325
 
1275
1326
  #. module: account_financial_report
1327
+ #. odoo-python
1276
1328
  #: code:addons/account_financial_report/report/open_items_xlsx.py:0
1277
1329
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
1278
- #, python-format
1279
1330
  msgid "Original"
1280
1331
  msgstr "Original"
1281
1332
 
1282
1333
  #. module: account_financial_report
1334
+ #. odoo-python
1283
1335
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
1284
1336
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
1285
1337
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
@@ -1291,7 +1343,6 @@ msgstr "Original"
1291
1343
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
1292
1344
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
1293
1345
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
1294
- #, python-format
1295
1346
  msgid "Partner"
1296
1347
  msgstr "Parceiro"
1297
1348
 
@@ -1305,26 +1356,42 @@ msgstr ""
1305
1356
  " antiguidade de saldo acumulada"
1306
1357
 
1307
1358
  #. module: account_financial_report
1359
+ #. odoo-python
1308
1360
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
1309
- #, python-format
1310
1361
  msgid "Partner Initial balance"
1311
1362
  msgstr "Saldo inicial de Parceiro"
1312
1363
 
1313
1364
  #. module: account_financial_report
1365
+ #: model:ir.model.fields.selection,name:account_financial_report.selection__open_items_report_wizard__grouped_by__salesperson
1366
+ msgid "Partner Salesperson"
1367
+ msgstr ""
1368
+
1369
+ #. module: account_financial_report
1370
+ #. odoo-python
1314
1371
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
1315
- #, python-format
1316
1372
  msgid "Partner cumul aged balance"
1317
1373
  msgstr "Antiguidade de saldo de parceiro acumulado"
1318
1374
 
1319
1375
  #. module: account_financial_report
1376
+ #. odoo-python
1320
1377
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
1321
1378
  #: code:addons/account_financial_report/report/open_items_xlsx.py:0
1322
1379
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_ending_cumul
1323
1380
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_ending_cumul
1324
- #, python-format
1325
1381
  msgid "Partner ending balance"
1326
1382
  msgstr "Saldo final de parceiro"
1327
1383
 
1384
+ #. module: account_financial_report
1385
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
1386
+ msgid "Partner initial balance"
1387
+ msgstr "Saldo inicial do parceiro"
1388
+
1389
+ #. module: account_financial_report
1390
+ #: model:ir.model.fields.selection,name:account_financial_report.selection__general_ledger_report_wizard__grouped_by__partners
1391
+ #: model:ir.model.fields.selection,name:account_financial_report.selection__open_items_report_wizard__grouped_by__partners
1392
+ msgid "Partners"
1393
+ msgstr "Parceiros"
1394
+
1328
1395
  #. module: account_financial_report
1329
1396
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__payable_accounts_only
1330
1397
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__payable_accounts_only
@@ -1339,9 +1406,9 @@ msgid "Percents"
1339
1406
  msgstr "Percentagens"
1340
1407
 
1341
1408
  #. module: account_financial_report
1409
+ #. odoo-python
1342
1410
  #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
1343
1411
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
1344
- #, python-format
1345
1412
  msgid "Period balance"
1346
1413
  msgstr "Saldo do período"
1347
1414
 
@@ -1351,22 +1418,15 @@ msgid "Periods"
1351
1418
  msgstr "Períodos"
1352
1419
 
1353
1420
  #. module: account_financial_report
1421
+ #. odoo-python
1354
1422
  #: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
1355
- #, python-format
1356
1423
  msgid "Posted"
1357
1424
  msgstr "Publicado"
1358
1425
 
1359
1426
  #. module: account_financial_report
1360
- #. openerp-web
1361
- #: code:addons/account_financial_report/static/src/xml/report.xml:0
1362
- #, python-format
1363
- msgid "Print"
1364
- msgstr "Imprimir"
1365
-
1366
- #. module: account_financial_report
1427
+ #. odoo-python
1367
1428
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
1368
1429
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
1369
- #, python-format
1370
1430
  msgid "Rec."
1371
1431
  msgstr "Rec."
1372
1432
 
@@ -1396,12 +1456,12 @@ msgid ""
1396
1456
  msgstr "Ref - Etiqueta"
1397
1457
 
1398
1458
  #. module: account_financial_report
1459
+ #. odoo-python
1399
1460
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
1400
1461
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
1401
1462
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
1402
1463
  #: code:addons/account_financial_report/report/open_items_xlsx.py:0
1403
1464
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
1404
- #, python-format
1405
1465
  msgid "Ref - Label"
1406
1466
  msgstr "Ref - Rótulo"
1407
1467
 
@@ -1411,30 +1471,30 @@ msgid "Report Action"
1411
1471
  msgstr "Ação de Relatório"
1412
1472
 
1413
1473
  #. module: account_financial_report
1474
+ #. odoo-python
1414
1475
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
1415
1476
  #: code:addons/account_financial_report/report/open_items_xlsx.py:0
1416
1477
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_lines_header
1417
1478
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
1418
1479
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
1419
- #, python-format
1420
1480
  msgid "Residual"
1421
1481
  msgstr "Residual"
1422
1482
 
1423
1483
  #. module: account_financial_report
1484
+ #. odoo-python
1424
1485
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
1425
1486
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
1426
- #, python-format
1427
1487
  msgid "Sequence"
1428
1488
  msgstr "Sequência"
1429
1489
 
1430
1490
  #. module: account_financial_report
1491
+ #. odoo-python
1431
1492
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
1432
1493
  #: code:addons/account_financial_report/report/open_items_xlsx.py:0
1433
1494
  #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
1434
1495
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
1435
1496
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
1436
1497
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
1437
- #, python-format
1438
1498
  msgid "Show"
1439
1499
  msgstr "Exibir"
1440
1500
 
@@ -1454,31 +1514,27 @@ msgid "Show Move Line Details"
1454
1514
  msgstr "Exibir Detalhes de Linhas de Movimento"
1455
1515
 
1456
1516
  #. module: account_financial_report
1457
- #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__show_partner_details
1458
1517
  #: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__show_partner_details
1459
1518
  #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__show_partner_details
1460
1519
  msgid "Show Partner Details"
1461
1520
  msgstr "Exibir Detalhes de Parceiro"
1462
1521
 
1463
1522
  #. module: account_financial_report
1464
- #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
1465
- #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__show_analytic_tags
1466
- #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
1467
- #, python-format
1468
- msgid "Show analytic tags"
1469
- msgstr "Exibir etiquetas analíticas"
1470
-
1471
- #. module: account_financial_report
1523
+ #. odoo-python
1472
1524
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
1473
1525
  #: code:addons/account_financial_report/report/open_items_xlsx.py:0
1474
1526
  #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
1475
1527
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__foreign_currency
1476
1528
  #: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__foreign_currency
1477
1529
  #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__foreign_currency
1478
- #, python-format
1479
1530
  msgid "Show foreign currency"
1480
1531
  msgstr "Exibir divisa estrangeira"
1481
1532
 
1533
+ #. module: account_financial_report
1534
+ #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__show_hierarchy
1535
+ msgid "Show hierarchy"
1536
+ msgstr "Mostrar hierarquia"
1537
+
1482
1538
  #. module: account_financial_report
1483
1539
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__sort_option
1484
1540
  msgid "Sort entries by"
@@ -1497,15 +1553,19 @@ msgstr "Data inicial"
1497
1553
  #. module: account_financial_report
1498
1554
  #: model:ir.model.fields,help:account_financial_report.field_aged_partner_balance_report_wizard__account_code_from
1499
1555
  #: model:ir.model.fields,help:account_financial_report.field_general_ledger_report_wizard__account_code_from
1500
- #: model:ir.model.fields,help:account_financial_report.field_open_items_report_wizard__account_code_from
1501
1556
  #: model:ir.model.fields,help:account_financial_report.field_trial_balance_report_wizard__account_code_from
1502
1557
  msgid "Starting account in a range"
1503
1558
  msgstr "Conta inicial no intervalo"
1504
1559
 
1505
1560
  #. module: account_financial_report
1506
- #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
1561
+ #. odoo-python
1562
+ #: code:addons/account_financial_report/report/trial_balance.py:0
1563
+ #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
1564
+ msgid "TOTAL"
1565
+ msgstr ""
1566
+
1567
+ #. module: account_financial_report
1507
1568
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
1508
- #, python-format
1509
1569
  msgid "Tags"
1510
1570
  msgstr "Etiquetas"
1511
1571
 
@@ -1519,6 +1579,7 @@ msgid "Target Moves"
1519
1579
  msgstr "Marcar Movimentos"
1520
1580
 
1521
1581
  #. module: account_financial_report
1582
+ #. odoo-python
1522
1583
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
1523
1584
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
1524
1585
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
@@ -1528,14 +1589,13 @@ msgstr "Marcar Movimentos"
1528
1589
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
1529
1590
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
1530
1591
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
1531
- #, python-format
1532
1592
  msgid "Target moves filter"
1533
1593
  msgstr "Filtro de Movimentos Marcados"
1534
1594
 
1535
1595
  #. module: account_financial_report
1596
+ #. odoo-python
1536
1597
  #: code:addons/account_financial_report/report/vat_report_xlsx.py:0
1537
1598
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
1538
- #, python-format
1539
1599
  msgid "Tax"
1540
1600
  msgstr "Imposto"
1541
1601
 
@@ -1546,49 +1606,68 @@ msgid "Tax Amount"
1546
1606
  msgstr "Montante do Imposto"
1547
1607
 
1548
1608
  #. module: account_financial_report
1609
+ #. odoo-python
1549
1610
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
1550
- #, python-format
1551
1611
  msgid "Tax Balance"
1552
1612
  msgstr "Saldo de Impostos"
1553
1613
 
1554
1614
  #. module: account_financial_report
1615
+ #. odoo-python
1555
1616
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
1556
- #, python-format
1557
1617
  msgid "Tax Credit"
1558
1618
  msgstr "Crédito de Imposto"
1559
1619
 
1560
1620
  #. module: account_financial_report
1621
+ #. odoo-python
1561
1622
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
1562
- #, python-format
1563
1623
  msgid "Tax Debit"
1564
1624
  msgstr "Débito de Impostos"
1565
1625
 
1566
1626
  #. module: account_financial_report
1627
+ #. odoo-python
1567
1628
  #: code:addons/account_financial_report/report/vat_report_xlsx.py:0
1568
1629
  #: model:ir.model.fields.selection,name:account_financial_report.selection__vat_report_wizard__based_on__taxgroups
1569
- #, python-format
1570
1630
  msgid "Tax Groups"
1571
1631
  msgstr "Grupos de Impostos"
1572
1632
 
1573
1633
  #. module: account_financial_report
1634
+ #. odoo-python
1635
+ #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
1636
+ msgid "Tax Initial balance"
1637
+ msgstr "Saldo de Impostos inicial"
1638
+
1639
+ #. module: account_financial_report
1640
+ #. odoo-python
1574
1641
  #: code:addons/account_financial_report/report/vat_report_xlsx.py:0
1575
1642
  #: model:ir.model.fields.selection,name:account_financial_report.selection__vat_report_wizard__based_on__taxtags
1576
- #, python-format
1577
1643
  msgid "Tax Tags"
1578
1644
  msgstr "Etiquetas de Imposto"
1579
1645
 
1580
1646
  #. module: account_financial_report
1647
+ #. odoo-python
1648
+ #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
1649
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_ending_cumul
1650
+ msgid "Tax ending balance"
1651
+ msgstr "Saldo de impostos final"
1652
+
1653
+ #. module: account_financial_report
1654
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
1655
+ msgid "Tax initial balance"
1656
+ msgstr "Saldo de impostos inicial"
1657
+
1658
+ #. module: account_financial_report
1659
+ #. odoo-python
1581
1660
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
1582
1661
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
1662
+ #: model:ir.model.fields.selection,name:account_financial_report.selection__general_ledger_report_wizard__grouped_by__taxes
1583
1663
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
1584
1664
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
1585
- #, python-format
1586
1665
  msgid "Taxes"
1587
1666
  msgstr "Impostos"
1588
1667
 
1589
1668
  #. module: account_financial_report
1669
+ #. odoo-python
1590
1670
  #: code:addons/account_financial_report/wizard/general_ledger_wizard.py:0
1591
- #, python-format
1592
1671
  msgid ""
1593
1672
  "The Company in the General Ledger Report Wizard and in Date Range must be "
1594
1673
  "the same."
@@ -1596,8 +1675,8 @@ msgstr ""
1596
1675
  "A Empresa no Assistente de Relatório do Razão e em Período deve ser a mesma."
1597
1676
 
1598
1677
  #. module: account_financial_report
1678
+ #. odoo-python
1599
1679
  #: code:addons/account_financial_report/wizard/trial_balance_wizard.py:0
1600
- #, python-format
1601
1680
  msgid ""
1602
1681
  "The Company in the Trial Balance Report Wizard and in Date Range must be the "
1603
1682
  "same."
@@ -1606,19 +1685,27 @@ msgstr ""
1606
1685
  "mesma."
1607
1686
 
1608
1687
  #. module: account_financial_report
1688
+ #. odoo-python
1609
1689
  #: code:addons/account_financial_report/wizard/vat_report_wizard.py:0
1610
- #, python-format
1611
1690
  msgid ""
1612
1691
  "The Company in the Vat Report Wizard and in Date Range must be the same."
1613
1692
  msgstr ""
1614
1693
  "A Empresa no Assistente de Relatório do IVA e em Período deve ser a mesma."
1615
1694
 
1616
1695
  #. module: account_financial_report
1696
+ #. odoo-python
1617
1697
  #: code:addons/account_financial_report/wizard/trial_balance_wizard.py:0
1618
- #, python-format
1619
1698
  msgid "The hierarchy level to filter on must be greater than 0."
1620
1699
  msgstr "O nível hierárquico a filtrar deve ser superior a 0."
1621
1700
 
1701
+ #. module: account_financial_report
1702
+ #. odoo-python
1703
+ #: code:addons/account_financial_report/report/trial_balance.py:0
1704
+ msgid ""
1705
+ "There is a problem in the structure of the account groups. You may need to "
1706
+ "create some child group of %s."
1707
+ msgstr ""
1708
+
1622
1709
  #. module: account_financial_report
1623
1710
  #: model:ir.model.fields,help:account_financial_report.field_general_ledger_report_wizard__domain
1624
1711
  msgid "This domain will be used to select specific domain for Journal Items"
@@ -1637,17 +1724,19 @@ msgid "To:"
1637
1724
  msgstr "Para:"
1638
1725
 
1639
1726
  #. module: account_financial_report
1727
+ #. odoo-python
1728
+ #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
1640
1729
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_account_ending_cumul
1641
1730
  msgid "Total"
1642
1731
  msgstr "Total"
1643
1732
 
1644
1733
  #. module: account_financial_report
1734
+ #. odoo-python
1645
1735
  #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
1646
1736
  #: model:ir.actions.act_window,name:account_financial_report.action_trial_balance_wizard
1647
1737
  #: model:ir.actions.report,name:account_financial_report.action_report_trial_balance_html
1648
1738
  #: model:ir.actions.report,name:account_financial_report.action_report_trial_balance_qweb
1649
1739
  #: model:ir.ui.menu,name:account_financial_report.menu_trial_balance_wizard
1650
- #, python-format
1651
1740
  msgid "Trial Balance"
1652
1741
  msgstr "Balancete"
1653
1742
 
@@ -1703,6 +1792,11 @@ msgstr ""
1703
1792
  "Se filtrarem parceiros, os totais do débito e crédito não serão iguais aos "
1704
1793
  "do balancete."
1705
1794
 
1795
+ #. module: account_financial_report
1796
+ #: model:ir.model.fields,help:account_financial_report.field_trial_balance_report_wizard__show_hierarchy
1797
+ msgid "Use when your account groups are hierarchical"
1798
+ msgstr "Usar quando os seus grupos de contas forem hierárquicos"
1799
+
1706
1800
  #. module: account_financial_report
1707
1801
  #: model:ir.actions.act_window,name:account_financial_report.action_vat_report_wizard
1708
1802
  #: model:ir.actions.report,name:account_financial_report.action_print_report_vat_report_html
@@ -1732,8 +1826,8 @@ msgid "VAT Report XLSX"
1732
1826
  msgstr "Relatório de IVA XLSX"
1733
1827
 
1734
1828
  #. module: account_financial_report
1829
+ #. odoo-python
1735
1830
  #: code:addons/account_financial_report/report/vat_report_xlsx.py:0
1736
- #, python-format
1737
1831
  msgid "Vat Report"
1738
1832
  msgstr "Relatório de IVA"
1739
1833
 
@@ -1772,22 +1866,27 @@ msgid "With Account Name"
1772
1866
  msgstr "Com Nome de Conta"
1773
1867
 
1774
1868
  #. module: account_financial_report
1869
+ #. odoo-python
1870
+ #: code:addons/account_financial_report/report/trial_balance.py:0
1871
+ msgid "Without analytic account"
1872
+ msgstr ""
1873
+
1874
+ #. module: account_financial_report
1875
+ #. odoo-python
1775
1876
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
1776
1877
  #: code:addons/account_financial_report/report/open_items_xlsx.py:0
1777
1878
  #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
1778
1879
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
1779
- #, python-format
1780
1880
  msgid "Yes"
1781
1881
  msgstr "Sim"
1782
1882
 
1783
1883
  #. module: account_financial_report
1884
+ #. odoo-python
1784
1885
  #: code:addons/account_financial_report/report/general_ledger.py:0
1785
- #, python-format
1786
1886
  msgid "future"
1787
1887
  msgstr "futuro"
1788
1888
 
1789
1889
  #. module: account_financial_report
1790
- #: model_terms:ir.ui.view,arch_db:account_financial_report.aged_partner_balance_wizard
1791
1890
  #: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
1792
1891
  #: model_terms:ir.ui.view,arch_db:account_financial_report.journal_ledger_wizard
1793
1892
  #: model_terms:ir.ui.view,arch_db:account_financial_report.open_items_wizard
@@ -1836,6 +1935,94 @@ msgstr "largura: 38.92%;"
1836
1935
  msgid "width: 8.11%;"
1837
1936
  msgstr "largura: 8.11%;"
1838
1937
 
1938
+ #~ msgid ""
1939
+ #~ "Age ??? 120\n"
1940
+ #~ " d."
1941
+ #~ msgstr "Antiguidade ??? 120 d."
1942
+
1943
+ #, python-format
1944
+ #~ msgid "Age ??? 120 d."
1945
+ #~ msgstr "Antiguidade ??? 120 d."
1946
+
1947
+ #~ msgid ""
1948
+ #~ "Age ??? 30\n"
1949
+ #~ " d."
1950
+ #~ msgstr "Antiguidade ??? 30 d."
1951
+
1952
+ #, python-format
1953
+ #~ msgid "Age ??? 30 d."
1954
+ #~ msgstr "Antiguidade ??? 30 d."
1955
+
1956
+ #~ msgid ""
1957
+ #~ "Age ??? 60\n"
1958
+ #~ " d."
1959
+ #~ msgstr "Antiguidade ??? 60 d."
1960
+
1961
+ #, python-format
1962
+ #~ msgid "Age ??? 60 d."
1963
+ #~ msgstr "Antiguidade ??? 60 d."
1964
+
1965
+ #~ msgid ""
1966
+ #~ "Age ??? 90\n"
1967
+ #~ " d."
1968
+ #~ msgstr "Antiguidade ??? 90 d."
1969
+
1970
+ #, python-format
1971
+ #~ msgid "Age ??? 90 d."
1972
+ #~ msgstr "Antiguidade ??? 90 d."
1973
+
1974
+ #~ msgid "Last Modified on"
1975
+ #~ msgstr "??ltima modifica????o em"
1976
+
1977
+ #~ msgid "Filter analytic tags"
1978
+ #~ msgstr "Filtrar etiquetas anal??ticas"
1979
+
1980
+ #, python-format
1981
+ #~ msgid "Print"
1982
+ #~ msgstr "Imprimir"
1983
+
1984
+ #, python-format
1985
+ #~ msgid "Show analytic tags"
1986
+ #~ msgstr "Exibir etiquetas anal??ticas"
1987
+
1988
+ #~ msgid "Child Accounts"
1989
+ #~ msgstr "Contas Descendentes"
1990
+
1991
+ #~ msgid "Computed Accounts"
1992
+ #~ msgstr "Calcular Contas"
1993
+
1994
+ #~ msgid ""
1995
+ #~ "Computed Accounts: Use when the account group have codes\n"
1996
+ #~ " that represent prefixes of the actual accounts.\n"
1997
+ #~ "\n"
1998
+ #~ " Child Accounts: Use when your account groups are hierarchical.\n"
1999
+ #~ "\n"
2000
+ #~ " No hierarchy: Use to display just the accounts, without any "
2001
+ #~ "grouping.\n"
2002
+ #~ " "
2003
+ #~ msgstr ""
2004
+ #~ "Contas Calculadas: Usar quando o grupo de contas tem c??digos\n"
2005
+ #~ " que representam prefixos das contas reais.\n"
2006
+ #~ "\n"
2007
+ #~ " Contas Descendentes: Usar quando o grupo de contas tem estrutura "
2008
+ #~ "hier??rquica.\n"
2009
+ #~ "\n"
2010
+ #~ " Sem hierarquia: Usar para exibir apenas as contas, sem qualquer "
2011
+ #~ "agrupmento.\n"
2012
+ #~ " "
2013
+
2014
+ #~ msgid "Hierarchy On"
2015
+ #~ msgstr "Hierarquia em"
2016
+
2017
+ #~ msgid "No hierarchy"
2018
+ #~ msgstr "Sem hierarquia"
2019
+
2020
+ #~ msgid "From: %s To: %s"
2021
+ #~ msgstr "De: %s A: %s"
2022
+
2023
+ #~ msgid "Not only one unaffected earnings account"
2024
+ #~ msgstr "Mais que uma conta de lucros n??o distribu??dos"
2025
+
1839
2026
  #, fuzzy
1840
2027
  #~| msgid "Account"
1841
2028
  #~ msgid "Account ID"