odoo-addon-account-financial-report 17.0.1.6.1.1__py3-none-any.whl → 18.0.1.0.0.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.
Potentially problematic release.
This version of odoo-addon-account-financial-report might be problematic. Click here for more details.
- odoo/addons/account_financial_report/README.rst +15 -8
- odoo/addons/account_financial_report/__manifest__.py +3 -2
- odoo/addons/account_financial_report/i18n/account_financial_report.pot +1 -124
- odoo/addons/account_financial_report/i18n/ar.po +3 -100
- odoo/addons/account_financial_report/i18n/ca.po +1 -100
- odoo/addons/account_financial_report/i18n/de.po +3 -100
- odoo/addons/account_financial_report/i18n/es.po +0 -100
- odoo/addons/account_financial_report/i18n/es_AR.po +0 -100
- odoo/addons/account_financial_report/i18n/es_MX.po +0 -100
- odoo/addons/account_financial_report/i18n/fr.po +0 -100
- odoo/addons/account_financial_report/i18n/fr_CH.po +1 -100
- odoo/addons/account_financial_report/i18n/fr_FR.po +0 -100
- odoo/addons/account_financial_report/i18n/hr.po +0 -100
- odoo/addons/account_financial_report/i18n/hr_HR.po +3 -100
- odoo/addons/account_financial_report/i18n/it.po +3 -107
- odoo/addons/account_financial_report/i18n/ja.po +3 -100
- odoo/addons/account_financial_report/i18n/nl.po +1 -100
- odoo/addons/account_financial_report/i18n/nl_NL.po +2 -100
- odoo/addons/account_financial_report/i18n/pt.po +0 -100
- odoo/addons/account_financial_report/i18n/pt_BR.po +0 -100
- odoo/addons/account_financial_report/i18n/ro.po +1 -100
- odoo/addons/account_financial_report/i18n/sv.po +0 -100
- odoo/addons/account_financial_report/i18n/tr.po +0 -100
- odoo/addons/account_financial_report/models/account.py +1 -1
- odoo/addons/account_financial_report/models/account_age_report_configuration.py +6 -4
- odoo/addons/account_financial_report/models/account_group.py +3 -3
- odoo/addons/account_financial_report/readme/CONFIGURE.md +1 -1
- odoo/addons/account_financial_report/readme/CONTRIBUTORS.md +2 -1
- odoo/addons/account_financial_report/readme/CREDITS.md +1 -0
- odoo/addons/account_financial_report/report/__init__.py +3 -3
- odoo/addons/account_financial_report/report/abstract_report.py +3 -1
- odoo/addons/account_financial_report/report/abstract_report_xlsx.py +5 -5
- odoo/addons/account_financial_report/report/aged_partner_balance.py +16 -20
- odoo/addons/account_financial_report/report/aged_partner_balance_xlsx.py +30 -30
- odoo/addons/account_financial_report/report/general_ledger.py +26 -14
- odoo/addons/account_financial_report/report/general_ledger_xlsx.py +3 -3
- odoo/addons/account_financial_report/report/journal_ledger.py +9 -9
- odoo/addons/account_financial_report/report/journal_ledger_xlsx.py +1 -1
- odoo/addons/account_financial_report/report/open_items.py +1 -1
- odoo/addons/account_financial_report/report/open_items_xlsx.py +1 -1
- odoo/addons/account_financial_report/report/templates/aged_partner_balance.xml +29 -27
- odoo/addons/account_financial_report/report/templates/general_ledger.xml +2 -2
- odoo/addons/account_financial_report/report/templates/journal_ledger.xml +58 -66
- odoo/addons/account_financial_report/report/templates/layouts.xml +3 -9
- odoo/addons/account_financial_report/report/templates/trial_balance.xml +3 -5
- odoo/addons/account_financial_report/report/trial_balance.py +27 -30
- odoo/addons/account_financial_report/report/trial_balance_xlsx.py +1 -1
- odoo/addons/account_financial_report/report/vat_report.py +8 -4
- odoo/addons/account_financial_report/report/vat_report_xlsx.py +1 -1
- odoo/addons/account_financial_report/static/description/index.html +15 -8
- odoo/addons/account_financial_report/static/src/js/report.esm.js +1 -2
- odoo/addons/account_financial_report/static/src/js/report_action.esm.js +0 -1
- odoo/addons/account_financial_report/static/src/{css/report.css → scss/report.scss} +74 -42
- odoo/addons/account_financial_report/static/src/scss/report_html.scss +10 -0
- odoo/addons/account_financial_report/tests/__init__.py +1 -1
- odoo/addons/account_financial_report/tests/test_general_ledger.py +3 -3
- odoo/addons/account_financial_report/tests/test_journal_ledger.py +3 -4
- odoo/addons/account_financial_report/tests/test_open_items.py +2 -2
- odoo/addons/account_financial_report/tests/test_trial_balance.py +15 -8
- odoo/addons/account_financial_report/tests/test_vat_report.py +4 -5
- odoo/addons/account_financial_report/view/account_age_report_configuration_views.xml +6 -6
- odoo/addons/account_financial_report/wizard/aged_partner_balance_wizard.py +6 -4
- odoo/addons/account_financial_report/wizard/general_ledger_wizard.py +5 -5
- odoo/addons/account_financial_report/wizard/general_ledger_wizard_view.xml +14 -14
- odoo/addons/account_financial_report/wizard/journal_ledger_wizard.py +8 -4
- odoo/addons/account_financial_report/wizard/journal_ledger_wizard_view.xml +14 -14
- odoo/addons/account_financial_report/wizard/open_items_wizard.py +1 -1
- odoo/addons/account_financial_report/wizard/open_items_wizard_view.xml +14 -14
- odoo/addons/account_financial_report/wizard/trial_balance_wizard.py +10 -8
- odoo/addons/account_financial_report/wizard/trial_balance_wizard_view.xml +14 -14
- odoo/addons/account_financial_report/wizard/vat_report_wizard.py +2 -2
- odoo/addons/account_financial_report/wizard/vat_report_wizard_view.xml +14 -14
- {odoo_addon_account_financial_report-17.0.1.6.1.1.dist-info → odoo_addon_account_financial_report-18.0.1.0.0.3.dist-info}/METADATA +20 -13
- {odoo_addon_account_financial_report-17.0.1.6.1.1.dist-info → odoo_addon_account_financial_report-18.0.1.0.0.3.dist-info}/RECORD +76 -75
- odoo/addons/account_financial_report/static/src/css/report_html.css +0 -7
- {odoo_addon_account_financial_report-17.0.1.6.1.1.dist-info → odoo_addon_account_financial_report-18.0.1.0.0.3.dist-info}/WHEEL +0 -0
- {odoo_addon_account_financial_report-17.0.1.6.1.1.dist-info → odoo_addon_account_financial_report-18.0.1.0.0.3.dist-info}/top_level.txt +0 -0
|
@@ -101,7 +101,6 @@ msgstr ""
|
|
|
101
101
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
102
102
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
103
103
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
104
|
-
#, python-format
|
|
105
104
|
msgid "Account"
|
|
106
105
|
msgstr "Hesap"
|
|
107
106
|
|
|
@@ -134,7 +133,6 @@ msgstr "Hesap Grubu"
|
|
|
134
133
|
#. module: account_financial_report
|
|
135
134
|
#. odoo-python
|
|
136
135
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
137
|
-
#, python-format
|
|
138
136
|
msgid "Account Name"
|
|
139
137
|
msgstr "Hesap Adı"
|
|
140
138
|
|
|
@@ -142,7 +140,6 @@ msgstr "Hesap Adı"
|
|
|
142
140
|
#. odoo-python
|
|
143
141
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
144
142
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
145
|
-
#, python-format
|
|
146
143
|
msgid "Account at 0 filter"
|
|
147
144
|
msgstr "0 filtresindeki hesap"
|
|
148
145
|
|
|
@@ -152,7 +149,6 @@ msgstr "0 filtresindeki hesap"
|
|
|
152
149
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
153
150
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
154
151
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
155
|
-
#, python-format
|
|
156
152
|
msgid "Account balance at 0 filter"
|
|
157
153
|
msgstr "0 Filtrelenen Hesap Bakiyesi"
|
|
158
154
|
|
|
@@ -186,7 +182,6 @@ msgstr ""
|
|
|
186
182
|
#. module: account_financial_report
|
|
187
183
|
#. odoo-python
|
|
188
184
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
189
|
-
#, python-format
|
|
190
185
|
msgid "Age ≤ 120 d."
|
|
191
186
|
msgstr ""
|
|
192
187
|
|
|
@@ -200,7 +195,6 @@ msgstr ""
|
|
|
200
195
|
#. module: account_financial_report
|
|
201
196
|
#. odoo-python
|
|
202
197
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
203
|
-
#, python-format
|
|
204
198
|
msgid "Age ≤ 30 d."
|
|
205
199
|
msgstr ""
|
|
206
200
|
|
|
@@ -214,7 +208,6 @@ msgstr ""
|
|
|
214
208
|
#. module: account_financial_report
|
|
215
209
|
#. odoo-python
|
|
216
210
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
217
|
-
#, python-format
|
|
218
211
|
msgid "Age ≤ 60 d."
|
|
219
212
|
msgstr ""
|
|
220
213
|
|
|
@@ -228,7 +221,6 @@ msgstr ""
|
|
|
228
221
|
#. module: account_financial_report
|
|
229
222
|
#. odoo-python
|
|
230
223
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
231
|
-
#, python-format
|
|
232
224
|
msgid "Age ≤ 90 d."
|
|
233
225
|
msgstr ""
|
|
234
226
|
|
|
@@ -239,7 +231,6 @@ msgstr ""
|
|
|
239
231
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_aged_partner_balance_html
|
|
240
232
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_aged_partner_balance_qweb
|
|
241
233
|
#: model:ir.ui.menu,name:account_financial_report.menu_aged_partner_balance_wizard
|
|
242
|
-
#, python-format
|
|
243
234
|
msgid "Aged Partner Balance"
|
|
244
235
|
msgstr "Yaşlandırılmış İş Ortağı Bakiyesi"
|
|
245
236
|
|
|
@@ -271,7 +262,6 @@ msgstr "Yaşlandırılmış İş Ortağı Bakiye XLS"
|
|
|
271
262
|
#. module: account_financial_report
|
|
272
263
|
#. odoo-python
|
|
273
264
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
274
|
-
#, python-format
|
|
275
265
|
msgid "All"
|
|
276
266
|
msgstr "Hepsi"
|
|
277
267
|
|
|
@@ -303,7 +293,6 @@ msgstr "İşlenen Tüm Girişler"
|
|
|
303
293
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
304
294
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
305
295
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
306
|
-
#, python-format
|
|
307
296
|
msgid "All entries"
|
|
308
297
|
msgstr "Tüm Kayıtlar"
|
|
309
298
|
|
|
@@ -317,7 +306,6 @@ msgstr "Tüm Kayıtlar"
|
|
|
317
306
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
318
307
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
319
308
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
320
|
-
#, python-format
|
|
321
309
|
msgid "All posted entries"
|
|
322
310
|
msgstr "Tüm onaylı kayıtlar"
|
|
323
311
|
|
|
@@ -329,7 +317,6 @@ msgstr ""
|
|
|
329
317
|
#. module: account_financial_report
|
|
330
318
|
#. odoo-python
|
|
331
319
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
332
|
-
#, python-format
|
|
333
320
|
msgid "Amount Currency"
|
|
334
321
|
msgstr "Tutar Para Birimi"
|
|
335
322
|
|
|
@@ -337,7 +324,6 @@ msgstr "Tutar Para Birimi"
|
|
|
337
324
|
#. odoo-python
|
|
338
325
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
339
326
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
340
|
-
#, python-format
|
|
341
327
|
msgid "Amount cur."
|
|
342
328
|
msgstr ""
|
|
343
329
|
|
|
@@ -351,7 +337,6 @@ msgstr "Analitik Hesap"
|
|
|
351
337
|
#. odoo-python
|
|
352
338
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
353
339
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
354
|
-
#, python-format
|
|
355
340
|
msgid "Analytic Distribution"
|
|
356
341
|
msgstr "Analitik Dağılım"
|
|
357
342
|
|
|
@@ -370,21 +355,18 @@ msgstr ""
|
|
|
370
355
|
#. module: account_financial_report
|
|
371
356
|
#. odoo-python
|
|
372
357
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
373
|
-
#, python-format
|
|
374
358
|
msgid "Base Balance"
|
|
375
359
|
msgstr ""
|
|
376
360
|
|
|
377
361
|
#. module: account_financial_report
|
|
378
362
|
#. odoo-python
|
|
379
363
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
380
|
-
#, python-format
|
|
381
364
|
msgid "Base Credit"
|
|
382
365
|
msgstr ""
|
|
383
366
|
|
|
384
367
|
#. module: account_financial_report
|
|
385
368
|
#. odoo-python
|
|
386
369
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
387
|
-
#, python-format
|
|
388
370
|
msgid "Base Debit"
|
|
389
371
|
msgstr ""
|
|
390
372
|
|
|
@@ -397,7 +379,6 @@ msgstr ""
|
|
|
397
379
|
#. module: account_financial_report
|
|
398
380
|
#. odoo-python
|
|
399
381
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
400
|
-
#, python-format
|
|
401
382
|
msgid "Based on"
|
|
402
383
|
msgstr ""
|
|
403
384
|
|
|
@@ -415,7 +396,6 @@ msgstr "İptal"
|
|
|
415
396
|
#. odoo-python
|
|
416
397
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
417
398
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
418
|
-
#, python-format
|
|
419
399
|
msgid "Centralize filter"
|
|
420
400
|
msgstr "Merkezi Filtre"
|
|
421
401
|
|
|
@@ -435,7 +415,6 @@ msgstr "Alt Gruplar"
|
|
|
435
415
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
436
416
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
437
417
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
438
|
-
#, python-format
|
|
439
418
|
msgid "Code"
|
|
440
419
|
msgstr "Kod"
|
|
441
420
|
|
|
@@ -450,7 +429,6 @@ msgstr "Kod"
|
|
|
450
429
|
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__company_id
|
|
451
430
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__company_id
|
|
452
431
|
#: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__company_id
|
|
453
|
-
#, python-format
|
|
454
432
|
msgid "Company"
|
|
455
433
|
msgstr "Firma"
|
|
456
434
|
|
|
@@ -503,7 +481,6 @@ msgstr "Oluşturulma"
|
|
|
503
481
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
504
482
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
505
483
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
506
|
-
#, python-format
|
|
507
484
|
msgid "Credit"
|
|
508
485
|
msgstr "Alacak"
|
|
509
486
|
|
|
@@ -511,7 +488,6 @@ msgstr "Alacak"
|
|
|
511
488
|
#. odoo-python
|
|
512
489
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
513
490
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
514
|
-
#, python-format
|
|
515
491
|
msgid "Cumul cur."
|
|
516
492
|
msgstr ""
|
|
517
493
|
|
|
@@ -519,7 +495,6 @@ msgstr ""
|
|
|
519
495
|
#. odoo-python
|
|
520
496
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
521
497
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
522
|
-
#, python-format
|
|
523
498
|
msgid "Cumul. Bal."
|
|
524
499
|
msgstr "Cumul. Bal."
|
|
525
500
|
|
|
@@ -528,7 +503,6 @@ msgstr "Cumul. Bal."
|
|
|
528
503
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
529
504
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
530
505
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
531
|
-
#, python-format
|
|
532
506
|
msgid "Cur."
|
|
533
507
|
msgstr ""
|
|
534
508
|
|
|
@@ -536,7 +510,6 @@ msgstr ""
|
|
|
536
510
|
#. odoo-python
|
|
537
511
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
538
512
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
539
|
-
#, python-format
|
|
540
513
|
msgid "Cur. Original"
|
|
541
514
|
msgstr ""
|
|
542
515
|
|
|
@@ -544,14 +517,12 @@ msgstr ""
|
|
|
544
517
|
#. odoo-python
|
|
545
518
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
546
519
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
547
|
-
#, python-format
|
|
548
520
|
msgid "Cur. Residual"
|
|
549
521
|
msgstr ""
|
|
550
522
|
|
|
551
523
|
#. module: account_financial_report
|
|
552
524
|
#. odoo-python
|
|
553
525
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
554
|
-
#, python-format
|
|
555
526
|
msgid "Currency"
|
|
556
527
|
msgstr "Para Birimi"
|
|
557
528
|
|
|
@@ -559,7 +530,6 @@ msgstr "Para Birimi"
|
|
|
559
530
|
#. odoo-python
|
|
560
531
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
561
532
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
562
|
-
#, python-format
|
|
563
533
|
msgid "Current"
|
|
564
534
|
msgstr ""
|
|
565
535
|
|
|
@@ -574,7 +544,6 @@ msgstr ""
|
|
|
574
544
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
575
545
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
576
546
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
577
|
-
#, python-format
|
|
578
547
|
msgid "Date"
|
|
579
548
|
msgstr "Tarih"
|
|
580
549
|
|
|
@@ -606,14 +575,12 @@ msgstr "Tarihine"
|
|
|
606
575
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
607
576
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_filters
|
|
608
577
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
609
|
-
#, python-format
|
|
610
578
|
msgid "Date at filter"
|
|
611
579
|
msgstr "Filtre Tarihi"
|
|
612
580
|
|
|
613
581
|
#. module: account_financial_report
|
|
614
582
|
#. odoo-python
|
|
615
583
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
616
|
-
#, python-format
|
|
617
584
|
msgid "Date from"
|
|
618
585
|
msgstr "Tarihinden"
|
|
619
586
|
|
|
@@ -632,14 +599,12 @@ msgstr "Tarih Aralığı"
|
|
|
632
599
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
633
600
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
634
601
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
635
|
-
#, python-format
|
|
636
602
|
msgid "Date range filter"
|
|
637
603
|
msgstr "Tarih Aralığı Filtre"
|
|
638
604
|
|
|
639
605
|
#. module: account_financial_report
|
|
640
606
|
#. odoo-python
|
|
641
607
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
642
|
-
#, python-format
|
|
643
608
|
msgid "Date to"
|
|
644
609
|
msgstr "Tarihine"
|
|
645
610
|
|
|
@@ -653,7 +618,6 @@ msgstr "Tarihine"
|
|
|
653
618
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
654
619
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
655
620
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
656
|
-
#, python-format
|
|
657
621
|
msgid "Debit"
|
|
658
622
|
msgstr "Borç"
|
|
659
623
|
|
|
@@ -662,7 +626,6 @@ msgstr "Borç"
|
|
|
662
626
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
663
627
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
|
|
664
628
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
665
|
-
#, python-format
|
|
666
629
|
msgid "Description"
|
|
667
630
|
msgstr "Açıklama"
|
|
668
631
|
|
|
@@ -723,7 +686,6 @@ msgstr ""
|
|
|
723
686
|
#. odoo-python
|
|
724
687
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
725
688
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
726
|
-
#, python-format
|
|
727
689
|
msgid "Due date"
|
|
728
690
|
msgstr "Vade Tarihi"
|
|
729
691
|
|
|
@@ -761,7 +723,6 @@ msgstr "Hesabı bir aralıkta sonlandırma"
|
|
|
761
723
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
762
724
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_ending_cumul
|
|
763
725
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
764
|
-
#, python-format
|
|
765
726
|
msgid "Ending balance"
|
|
766
727
|
msgstr "Kapanış Bakiyesi"
|
|
767
728
|
|
|
@@ -775,7 +736,6 @@ msgstr ""
|
|
|
775
736
|
#. module: account_financial_report
|
|
776
737
|
#. odoo-python
|
|
777
738
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
778
|
-
#, python-format
|
|
779
739
|
msgid "Entries sorted by"
|
|
780
740
|
msgstr "Girişler Göre Sırala"
|
|
781
741
|
|
|
@@ -789,21 +749,18 @@ msgstr "Girişler Göre Sırala"
|
|
|
789
749
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
790
750
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
791
751
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
792
|
-
#, python-format
|
|
793
752
|
msgid "Entry"
|
|
794
753
|
msgstr "Yevmiye Girişi"
|
|
795
754
|
|
|
796
755
|
#. module: account_financial_report
|
|
797
756
|
#. odoo-python
|
|
798
757
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
799
|
-
#, python-format
|
|
800
758
|
msgid "Entry number"
|
|
801
759
|
msgstr "Giriş Numarası"
|
|
802
760
|
|
|
803
761
|
#. module: account_financial_report
|
|
804
762
|
#. odoo-javascript
|
|
805
763
|
#: code:addons/account_financial_report/static/src/xml/report.xml:0
|
|
806
|
-
#, python-format
|
|
807
764
|
msgid "Export"
|
|
808
765
|
msgstr "Dışa Aktar"
|
|
809
766
|
|
|
@@ -884,7 +841,6 @@ msgstr "İtibaren:"
|
|
|
884
841
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
885
842
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
886
843
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
887
|
-
#, python-format
|
|
888
844
|
msgid "From: %(date_from)s To: %(date_to)s"
|
|
889
845
|
msgstr "Den: %(date_from)s To: %(date_to)s"
|
|
890
846
|
|
|
@@ -912,7 +868,6 @@ msgstr ""
|
|
|
912
868
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_general_ledger_html
|
|
913
869
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_general_ledger_qweb
|
|
914
870
|
#: model:ir.ui.menu,name:account_financial_report.menu_general_ledger_wizard
|
|
915
|
-
#, python-format
|
|
916
871
|
msgid "General Ledger"
|
|
917
872
|
msgstr "Büyük Defter"
|
|
918
873
|
|
|
@@ -976,7 +931,6 @@ msgstr ""
|
|
|
976
931
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
977
932
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
978
933
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
979
|
-
#, python-format
|
|
980
934
|
msgid "Hide"
|
|
981
935
|
msgstr "Gizle"
|
|
982
936
|
|
|
@@ -1023,7 +977,6 @@ msgstr ""
|
|
|
1023
977
|
#. module: account_financial_report
|
|
1024
978
|
#. odoo-python
|
|
1025
979
|
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1026
|
-
#, python-format
|
|
1027
980
|
msgid "Inferior Limit must be greather than zero"
|
|
1028
981
|
msgstr ""
|
|
1029
982
|
|
|
@@ -1048,7 +1001,6 @@ msgstr ""
|
|
|
1048
1001
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1049
1002
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1050
1003
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1051
|
-
#, python-format
|
|
1052
1004
|
msgid "Initial balance"
|
|
1053
1005
|
msgstr "Açılış Bakiyesi"
|
|
1054
1006
|
|
|
@@ -1068,7 +1020,6 @@ msgstr ""
|
|
|
1068
1020
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
1069
1021
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1070
1022
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1071
|
-
#, python-format
|
|
1072
1023
|
msgid "Journal"
|
|
1073
1024
|
msgstr "Yevmiye"
|
|
1074
1025
|
|
|
@@ -1088,7 +1039,6 @@ msgstr "Yevmiye Öğeleri Alanı"
|
|
|
1088
1039
|
#: model:ir.actions.act_window,name:account_financial_report.action_journal_ledger_wizard
|
|
1089
1040
|
#: model:ir.actions.report,name:account_financial_report.action_print_journal_ledger_wizard_html
|
|
1090
1041
|
#: model:ir.ui.menu,name:account_financial_report.menu_journal_ledger_wizard
|
|
1091
|
-
#, python-format
|
|
1092
1042
|
msgid "Journal Ledger"
|
|
1093
1043
|
msgstr "Yevmiye Defteri"
|
|
1094
1044
|
|
|
@@ -1122,7 +1072,6 @@ msgstr "Yevmiye Defteri XLSX Rapor"
|
|
|
1122
1072
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1123
1073
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__journal_ids
|
|
1124
1074
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.journal_ledger_wizard
|
|
1125
|
-
#, python-format
|
|
1126
1075
|
msgid "Journals"
|
|
1127
1076
|
msgstr "Yevmiyeler"
|
|
1128
1077
|
|
|
@@ -1159,7 +1108,6 @@ msgstr "Seviye"
|
|
|
1159
1108
|
#. module: account_financial_report
|
|
1160
1109
|
#. odoo-python
|
|
1161
1110
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1162
|
-
#, python-format
|
|
1163
1111
|
msgid "Level %s"
|
|
1164
1112
|
msgstr "Seviye %s"
|
|
1165
1113
|
|
|
@@ -1168,7 +1116,6 @@ msgstr "Seviye %s"
|
|
|
1168
1116
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1169
1117
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__limit_hierarchy_level
|
|
1170
1118
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1171
|
-
#, python-format
|
|
1172
1119
|
msgid "Limit hierarchy levels"
|
|
1173
1120
|
msgstr "Hiyerarşi düzeylerini sınırlayın"
|
|
1174
1121
|
|
|
@@ -1182,7 +1129,6 @@ msgstr ""
|
|
|
1182
1129
|
#: code:addons/account_financial_report/report/general_ledger.py:0
|
|
1183
1130
|
#: code:addons/account_financial_report/report/open_items.py:0
|
|
1184
1131
|
#: code:addons/account_financial_report/report/trial_balance.py:0
|
|
1185
|
-
#, python-format
|
|
1186
1132
|
msgid "Missing Partner"
|
|
1187
1133
|
msgstr ""
|
|
1188
1134
|
|
|
@@ -1209,7 +1155,6 @@ msgstr "Hareketler"
|
|
|
1209
1155
|
#. module: account_financial_report
|
|
1210
1156
|
#. odoo-python
|
|
1211
1157
|
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1212
|
-
#, python-format
|
|
1213
1158
|
msgid "Must complete Configuration Lines"
|
|
1214
1159
|
msgstr ""
|
|
1215
1160
|
|
|
@@ -1222,15 +1167,11 @@ msgstr ""
|
|
|
1222
1167
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
|
|
1223
1168
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
1224
1169
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
1225
|
-
#, python-format
|
|
1226
1170
|
msgid "Name"
|
|
1227
1171
|
msgstr "Adı"
|
|
1228
1172
|
|
|
1229
1173
|
#. module: account_financial_report
|
|
1230
|
-
#. odoo-python
|
|
1231
|
-
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1232
1174
|
#: model:ir.model.constraint,message:account_financial_report.constraint_account_age_report_configuration_line_unique_name_config_combination
|
|
1233
|
-
#, python-format
|
|
1234
1175
|
msgid "Name must be unique per report configuration"
|
|
1235
1176
|
msgstr ""
|
|
1236
1177
|
|
|
@@ -1238,7 +1179,6 @@ msgstr ""
|
|
|
1238
1179
|
#. odoo-python
|
|
1239
1180
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1240
1181
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
1241
|
-
#, python-format
|
|
1242
1182
|
msgid "Net"
|
|
1243
1183
|
msgstr "Net"
|
|
1244
1184
|
|
|
@@ -1248,14 +1188,12 @@ msgstr "Net"
|
|
|
1248
1188
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1249
1189
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1250
1190
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1251
|
-
#, python-format
|
|
1252
1191
|
msgid "No"
|
|
1253
1192
|
msgstr "Yok"
|
|
1254
1193
|
|
|
1255
1194
|
#. module: account_financial_report
|
|
1256
1195
|
#. odoo-python
|
|
1257
1196
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
1258
|
-
#, python-format
|
|
1259
1197
|
msgid "No group"
|
|
1260
1198
|
msgstr "Grupsuz"
|
|
1261
1199
|
|
|
@@ -1263,7 +1201,6 @@ msgstr "Grupsuz"
|
|
|
1263
1201
|
#. odoo-python
|
|
1264
1202
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1265
1203
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1266
|
-
#, python-format
|
|
1267
1204
|
msgid "No limit"
|
|
1268
1205
|
msgstr "Limitsiz"
|
|
1269
1206
|
|
|
@@ -1275,7 +1212,6 @@ msgstr "Hiçbiri"
|
|
|
1275
1212
|
#. module: account_financial_report
|
|
1276
1213
|
#. odoo-python
|
|
1277
1214
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
1278
|
-
#, python-format
|
|
1279
1215
|
msgid "Not Posted"
|
|
1280
1216
|
msgstr "Onaylanmamış"
|
|
1281
1217
|
|
|
@@ -1298,7 +1234,6 @@ msgstr "OCA Muhasebe Raporları"
|
|
|
1298
1234
|
#. odoo-python
|
|
1299
1235
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1300
1236
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
1301
|
-
#, python-format
|
|
1302
1237
|
msgid "Older"
|
|
1303
1238
|
msgstr "Daha Eski"
|
|
1304
1239
|
|
|
@@ -1315,7 +1250,6 @@ msgstr ""
|
|
|
1315
1250
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_open_items_html
|
|
1316
1251
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_open_items_qweb
|
|
1317
1252
|
#: model:ir.ui.menu,name:account_financial_report.menu_open_items_wizard
|
|
1318
|
-
#, python-format
|
|
1319
1253
|
msgid "Open Items"
|
|
1320
1254
|
msgstr "Açık Pozisyonlar"
|
|
1321
1255
|
|
|
@@ -1358,7 +1292,6 @@ msgstr "Seçenekler"
|
|
|
1358
1292
|
#. odoo-python
|
|
1359
1293
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1360
1294
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1361
|
-
#, python-format
|
|
1362
1295
|
msgid "Original"
|
|
1363
1296
|
msgstr "Orijinal"
|
|
1364
1297
|
|
|
@@ -1375,7 +1308,6 @@ msgstr "Orijinal"
|
|
|
1375
1308
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1376
1309
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1377
1310
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
1378
|
-
#, python-format
|
|
1379
1311
|
msgid "Partner"
|
|
1380
1312
|
msgstr "İş Ortağı"
|
|
1381
1313
|
|
|
@@ -1389,14 +1321,12 @@ msgstr ""
|
|
|
1389
1321
|
#. module: account_financial_report
|
|
1390
1322
|
#. odoo-python
|
|
1391
1323
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1392
|
-
#, python-format
|
|
1393
1324
|
msgid "Partner Initial balance"
|
|
1394
1325
|
msgstr "İş Ortağı Başlangıç bakiyesi"
|
|
1395
1326
|
|
|
1396
1327
|
#. module: account_financial_report
|
|
1397
1328
|
#. odoo-python
|
|
1398
1329
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1399
|
-
#, python-format
|
|
1400
1330
|
msgid "Partner cumul aged balance"
|
|
1401
1331
|
msgstr "İş ortağı kümülatif yaşlandırılmış bakiyesi"
|
|
1402
1332
|
|
|
@@ -1406,7 +1336,6 @@ msgstr "İş ortağı kümülatif yaşlandırılmış bakiyesi"
|
|
|
1406
1336
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1407
1337
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_ending_cumul
|
|
1408
1338
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_ending_cumul
|
|
1409
|
-
#, python-format
|
|
1410
1339
|
msgid "Partner ending balance"
|
|
1411
1340
|
msgstr "İş ortağı kapanış bakiyesi"
|
|
1412
1341
|
|
|
@@ -1437,7 +1366,6 @@ msgstr "Yüzdeler"
|
|
|
1437
1366
|
#. odoo-python
|
|
1438
1367
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1439
1368
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
1440
|
-
#, python-format
|
|
1441
1369
|
msgid "Period balance"
|
|
1442
1370
|
msgstr "Dönem Bakiyesi"
|
|
1443
1371
|
|
|
@@ -1449,7 +1377,6 @@ msgstr "Dönemler"
|
|
|
1449
1377
|
#. module: account_financial_report
|
|
1450
1378
|
#. odoo-python
|
|
1451
1379
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
1452
|
-
#, python-format
|
|
1453
1380
|
msgid "Posted"
|
|
1454
1381
|
msgstr "İşlenmiş"
|
|
1455
1382
|
|
|
@@ -1457,7 +1384,6 @@ msgstr "İşlenmiş"
|
|
|
1457
1384
|
#. odoo-python
|
|
1458
1385
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1459
1386
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1460
|
-
#, python-format
|
|
1461
1387
|
msgid "Rec."
|
|
1462
1388
|
msgstr ""
|
|
1463
1389
|
|
|
@@ -1495,7 +1421,6 @@ msgstr ""
|
|
|
1495
1421
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1496
1422
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1497
1423
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1498
|
-
#, python-format
|
|
1499
1424
|
msgid "Ref - Label"
|
|
1500
1425
|
msgstr "Ref - Etiketi"
|
|
1501
1426
|
|
|
@@ -1511,7 +1436,6 @@ msgstr ""
|
|
|
1511
1436
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_lines_header
|
|
1512
1437
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
1513
1438
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1514
|
-
#, python-format
|
|
1515
1439
|
msgid "Residual"
|
|
1516
1440
|
msgstr "Kalan"
|
|
1517
1441
|
|
|
@@ -1519,7 +1443,6 @@ msgstr "Kalan"
|
|
|
1519
1443
|
#. odoo-python
|
|
1520
1444
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1521
1445
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1522
|
-
#, python-format
|
|
1523
1446
|
msgid "Sequence"
|
|
1524
1447
|
msgstr "Sıra"
|
|
1525
1448
|
|
|
@@ -1531,7 +1454,6 @@ msgstr "Sıra"
|
|
|
1531
1454
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1532
1455
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
1533
1456
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1534
|
-
#, python-format
|
|
1535
1457
|
msgid "Show"
|
|
1536
1458
|
msgstr "Göster"
|
|
1537
1459
|
|
|
@@ -1564,7 +1486,6 @@ msgstr "İş Ortağı Ayrıntılarını Göster"
|
|
|
1564
1486
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__foreign_currency
|
|
1565
1487
|
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__foreign_currency
|
|
1566
1488
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__foreign_currency
|
|
1567
|
-
#, python-format
|
|
1568
1489
|
msgid "Show foreign currency"
|
|
1569
1490
|
msgstr "Yabancı Para Birimini Göster"
|
|
1570
1491
|
|
|
@@ -1599,7 +1520,6 @@ msgstr ""
|
|
|
1599
1520
|
#. odoo-python
|
|
1600
1521
|
#: code:addons/account_financial_report/report/trial_balance.py:0
|
|
1601
1522
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1602
|
-
#, python-format
|
|
1603
1523
|
msgid "TOTAL"
|
|
1604
1524
|
msgstr ""
|
|
1605
1525
|
|
|
@@ -1628,7 +1548,6 @@ msgstr "Hedef Harketler"
|
|
|
1628
1548
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1629
1549
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
1630
1550
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1631
|
-
#, python-format
|
|
1632
1551
|
msgid "Target moves filter"
|
|
1633
1552
|
msgstr "Hedef Hareket Filtresi"
|
|
1634
1553
|
|
|
@@ -1636,7 +1555,6 @@ msgstr "Hedef Hareket Filtresi"
|
|
|
1636
1555
|
#. odoo-python
|
|
1637
1556
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1638
1557
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
1639
|
-
#, python-format
|
|
1640
1558
|
msgid "Tax"
|
|
1641
1559
|
msgstr "Vergi"
|
|
1642
1560
|
|
|
@@ -1649,21 +1567,18 @@ msgstr "Vergi Tutarı"
|
|
|
1649
1567
|
#. module: account_financial_report
|
|
1650
1568
|
#. odoo-python
|
|
1651
1569
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1652
|
-
#, python-format
|
|
1653
1570
|
msgid "Tax Balance"
|
|
1654
1571
|
msgstr "Vergi Bakiyesi"
|
|
1655
1572
|
|
|
1656
1573
|
#. module: account_financial_report
|
|
1657
1574
|
#. odoo-python
|
|
1658
1575
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1659
|
-
#, python-format
|
|
1660
1576
|
msgid "Tax Credit"
|
|
1661
1577
|
msgstr "Vergi İndirimi"
|
|
1662
1578
|
|
|
1663
1579
|
#. module: account_financial_report
|
|
1664
1580
|
#. odoo-python
|
|
1665
1581
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1666
|
-
#, python-format
|
|
1667
1582
|
msgid "Tax Debit"
|
|
1668
1583
|
msgstr "Vergi Borcu"
|
|
1669
1584
|
|
|
@@ -1671,14 +1586,12 @@ msgstr "Vergi Borcu"
|
|
|
1671
1586
|
#. odoo-python
|
|
1672
1587
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1673
1588
|
#: model:ir.model.fields.selection,name:account_financial_report.selection__vat_report_wizard__based_on__taxgroups
|
|
1674
|
-
#, python-format
|
|
1675
1589
|
msgid "Tax Groups"
|
|
1676
1590
|
msgstr "Vergi Grupları"
|
|
1677
1591
|
|
|
1678
1592
|
#. module: account_financial_report
|
|
1679
1593
|
#. odoo-python
|
|
1680
1594
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1681
|
-
#, python-format
|
|
1682
1595
|
msgid "Tax Initial balance"
|
|
1683
1596
|
msgstr "Vergi Açılış Bakiyesi"
|
|
1684
1597
|
|
|
@@ -1686,7 +1599,6 @@ msgstr "Vergi Açılış Bakiyesi"
|
|
|
1686
1599
|
#. odoo-python
|
|
1687
1600
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1688
1601
|
#: model:ir.model.fields.selection,name:account_financial_report.selection__vat_report_wizard__based_on__taxtags
|
|
1689
|
-
#, python-format
|
|
1690
1602
|
msgid "Tax Tags"
|
|
1691
1603
|
msgstr "Vergi Etiketleri"
|
|
1692
1604
|
|
|
@@ -1694,7 +1606,6 @@ msgstr "Vergi Etiketleri"
|
|
|
1694
1606
|
#. odoo-python
|
|
1695
1607
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1696
1608
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_ending_cumul
|
|
1697
|
-
#, python-format
|
|
1698
1609
|
msgid "Tax ending balance"
|
|
1699
1610
|
msgstr "Vergi Kapanş Bakiyesi"
|
|
1700
1611
|
|
|
@@ -1710,14 +1621,12 @@ msgstr "Vergi Açılış Bakiyesi"
|
|
|
1710
1621
|
#: model:ir.model.fields.selection,name:account_financial_report.selection__general_ledger_report_wizard__grouped_by__taxes
|
|
1711
1622
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1712
1623
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1713
|
-
#, python-format
|
|
1714
1624
|
msgid "Taxes"
|
|
1715
1625
|
msgstr "Vergiler"
|
|
1716
1626
|
|
|
1717
1627
|
#. module: account_financial_report
|
|
1718
1628
|
#. odoo-python
|
|
1719
1629
|
#: code:addons/account_financial_report/wizard/general_ledger_wizard.py:0
|
|
1720
|
-
#, python-format
|
|
1721
1630
|
msgid ""
|
|
1722
1631
|
"The Company in the General Ledger Report Wizard and in Date Range must be "
|
|
1723
1632
|
"the same."
|
|
@@ -1726,7 +1635,6 @@ msgstr ""
|
|
|
1726
1635
|
#. module: account_financial_report
|
|
1727
1636
|
#. odoo-python
|
|
1728
1637
|
#: code:addons/account_financial_report/wizard/trial_balance_wizard.py:0
|
|
1729
|
-
#, python-format
|
|
1730
1638
|
msgid ""
|
|
1731
1639
|
"The Company in the Trial Balance Report Wizard and in Date Range must be the "
|
|
1732
1640
|
"same."
|
|
@@ -1735,7 +1643,6 @@ msgstr ""
|
|
|
1735
1643
|
#. module: account_financial_report
|
|
1736
1644
|
#. odoo-python
|
|
1737
1645
|
#: code:addons/account_financial_report/wizard/vat_report_wizard.py:0
|
|
1738
|
-
#, python-format
|
|
1739
1646
|
msgid ""
|
|
1740
1647
|
"The Company in the Vat Report Wizard and in Date Range must be the same."
|
|
1741
1648
|
msgstr ""
|
|
@@ -1743,7 +1650,6 @@ msgstr ""
|
|
|
1743
1650
|
#. module: account_financial_report
|
|
1744
1651
|
#. odoo-python
|
|
1745
1652
|
#: code:addons/account_financial_report/wizard/trial_balance_wizard.py:0
|
|
1746
|
-
#, python-format
|
|
1747
1653
|
msgid "The hierarchy level to filter on must be greater than 0."
|
|
1748
1654
|
msgstr ""
|
|
1749
1655
|
|
|
@@ -1766,7 +1672,6 @@ msgstr ""
|
|
|
1766
1672
|
#. odoo-python
|
|
1767
1673
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1768
1674
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_account_ending_cumul
|
|
1769
|
-
#, python-format
|
|
1770
1675
|
msgid "Total"
|
|
1771
1676
|
msgstr "Toplam"
|
|
1772
1677
|
|
|
@@ -1777,7 +1682,6 @@ msgstr "Toplam"
|
|
|
1777
1682
|
#: model:ir.actions.report,name:account_financial_report.action_report_trial_balance_html
|
|
1778
1683
|
#: model:ir.actions.report,name:account_financial_report.action_report_trial_balance_qweb
|
|
1779
1684
|
#: model:ir.ui.menu,name:account_financial_report.menu_trial_balance_wizard
|
|
1780
|
-
#, python-format
|
|
1781
1685
|
msgid "Trial Balance"
|
|
1782
1686
|
msgstr "Geçici Mizan"
|
|
1783
1687
|
|
|
@@ -1866,7 +1770,6 @@ msgstr "KDV Raporu XLSX"
|
|
|
1866
1770
|
#. module: account_financial_report
|
|
1867
1771
|
#. odoo-python
|
|
1868
1772
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1869
|
-
#, python-format
|
|
1870
1773
|
msgid "Vat Report"
|
|
1871
1774
|
msgstr "KDV Raporu"
|
|
1872
1775
|
|
|
@@ -1905,7 +1808,6 @@ msgstr "Hesap Adıyla"
|
|
|
1905
1808
|
#. module: account_financial_report
|
|
1906
1809
|
#. odoo-python
|
|
1907
1810
|
#: code:addons/account_financial_report/report/trial_balance.py:0
|
|
1908
|
-
#, python-format
|
|
1909
1811
|
msgid "Without analytic account"
|
|
1910
1812
|
msgstr ""
|
|
1911
1813
|
|
|
@@ -1915,14 +1817,12 @@ msgstr ""
|
|
|
1915
1817
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1916
1818
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1917
1819
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1918
|
-
#, python-format
|
|
1919
1820
|
msgid "Yes"
|
|
1920
1821
|
msgstr "Evet"
|
|
1921
1822
|
|
|
1922
1823
|
#. module: account_financial_report
|
|
1923
1824
|
#. odoo-python
|
|
1924
1825
|
#: code:addons/account_financial_report/report/general_ledger.py:0
|
|
1925
|
-
#, python-format
|
|
1926
1826
|
msgid "future"
|
|
1927
1827
|
msgstr ""
|
|
1928
1828
|
|