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
@@ -0,0 +1,1947 @@
1
+ # Translation of Odoo Server.
2
+ # This file contains the translation of the following modules:
3
+ # * account_financial_report
4
+ #
5
+ msgid ""
6
+ msgstr ""
7
+ "Project-Id-Version: Odoo Server 16.0\n"
8
+ "Report-Msgid-Bugs-To: \n"
9
+ "PO-Revision-Date: 2025-10-06 17:42+0000\n"
10
+ "Last-Translator: Betül Öğmen <betulo@eska.biz>\n"
11
+ "Language-Team: none\n"
12
+ "Language: tr\n"
13
+ "MIME-Version: 1.0\n"
14
+ "Content-Type: text/plain; charset=UTF-8\n"
15
+ "Content-Transfer-Encoding: \n"
16
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
17
+ "X-Generator: Weblate 5.10.4\n"
18
+
19
+ #. module: account_financial_report
20
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_lines_header
21
+ msgid "&gt; 120 d."
22
+ msgstr "&gt; 120 gün."
23
+
24
+ #. module: account_financial_report
25
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_lines_header
26
+ msgid "1 - 30 d."
27
+ msgstr "1 - 30 gün."
28
+
29
+ #. module: account_financial_report
30
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
31
+ msgid "10"
32
+ msgstr "10"
33
+
34
+ #. module: account_financial_report
35
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_lines_header
36
+ msgid "31 - 60 d."
37
+ msgstr "31 - 60 gün."
38
+
39
+ #. module: account_financial_report
40
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_lines_header
41
+ msgid "61 - 90 d."
42
+ msgstr "61 - 90 gün."
43
+
44
+ #. module: account_financial_report
45
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_lines_header
46
+ msgid "91 - 120 d."
47
+ msgstr "91 - 120 gün."
48
+
49
+ #. module: account_financial_report
50
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
51
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
52
+ msgid "<b>Taxes summary</b>"
53
+ msgstr "<b>Vergi Özeti</b>"
54
+
55
+ #. module: account_financial_report
56
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.trial_balance_wizard
57
+ msgid ""
58
+ "<i class=\"fa fa-exclamation-triangle mr-3\"/>\n"
59
+ " Duplicate amounts may be shown because more than one "
60
+ "analytical account may be defined in the journal items."
61
+ msgstr ""
62
+ "<i class=\"fa fa-exclamation-triangle mr-3\"/>\n"
63
+ " Yevmiye kalemlerinde birden fazla analitik hesap "
64
+ "tanımlanmış olabileceğinden dolayı mükerrer tutarlar gösterilebilir."
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\">Aralıklar yapılandırması</span>"
70
+
71
+ #. module: account_financial_report
72
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.aged_partner_balance_wizard
73
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
74
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.open_items_wizard
75
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.trial_balance_wizard
76
+ msgid "<span class=\"oe_inline\">To</span>"
77
+ msgstr "<span class=\"oe_inline\">Bitiş</span>"
78
+
79
+ #. module: account_financial_report
80
+ #: model:ir.model,name:account_financial_report.model_report_account_financial_report_abstract_report
81
+ msgid "Abstract Report"
82
+ msgstr "Temel Rapor"
83
+
84
+ #. module: account_financial_report
85
+ #: model:ir.model,name:account_financial_report.model_account_financial_report_abstract_wizard
86
+ msgid "Abstract Wizard"
87
+ msgstr "Temel Sihirbaz"
88
+
89
+ #. module: account_financial_report
90
+ #: model:ir.model,name:account_financial_report.model_report_account_financial_report_abstract_report_xlsx
91
+ msgid "Abstract XLSX Account Financial Report"
92
+ msgstr "Temel XLSX Mali Hesap Raporu"
93
+
94
+ #. module: account_financial_report
95
+ #. odoo-python
96
+ #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
97
+ #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
98
+ #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
99
+ #: code:addons/account_financial_report/report/open_items_xlsx.py:0
100
+ #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
101
+ #: model:ir.model,name:account_financial_report.model_account_account
102
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
103
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
104
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
105
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
106
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
107
+ msgid "Account"
108
+ msgstr "Hesap"
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 "Hesap Yaş Raporu Yapılandırması"
114
+
115
+ #. module: account_financial_report
116
+ #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__account_code_from
117
+ #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__account_code_from
118
+ #: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__account_code_from
119
+ #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__account_code_from
120
+ msgid "Account Code From"
121
+ msgstr "Hesap Kodu"
122
+
123
+ #. module: account_financial_report
124
+ #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__account_code_to
125
+ #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__account_code_to
126
+ #: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__account_code_to
127
+ #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__account_code_to
128
+ msgid "Account Code To"
129
+ msgstr "Hesap Kodu İle"
130
+
131
+ #. module: account_financial_report
132
+ #: model:ir.model,name:account_financial_report.model_account_group
133
+ msgid "Account Group"
134
+ msgstr "Hesap Grubu"
135
+
136
+ #. module: account_financial_report
137
+ #. odoo-python
138
+ #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
139
+ msgid "Account Name"
140
+ msgstr "Hesap Adı"
141
+
142
+ #. module: account_financial_report
143
+ #. odoo-python
144
+ #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
145
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
146
+ msgid "Account at 0 filter"
147
+ msgstr "0 filtresindeki hesap"
148
+
149
+ #. module: account_financial_report
150
+ #. odoo-python
151
+ #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
152
+ #: code:addons/account_financial_report/report/open_items_xlsx.py:0
153
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
154
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
155
+ msgid "Account balance at 0 filter"
156
+ msgstr "0 Filtrelenen Hesap Bakiyesi"
157
+
158
+ #. module: account_financial_report
159
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_group__account_ids
160
+ msgid "Accounts"
161
+ msgstr "Hesaplar"
162
+
163
+ #. module: account_financial_report
164
+ #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__centralize
165
+ msgid "Activate centralization"
166
+ msgstr "Merkezileştirmeyi Etkinleştir"
167
+
168
+ #. module: account_financial_report
169
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
170
+ msgid "Additional Filtering"
171
+ msgstr "Ek Filtreleme"
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 "Yaşlandırılmış İş Ortağı Raporu Yapılandırması"
177
+
178
+ #. module: account_financial_report
179
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
180
+ msgid ""
181
+ "Age ≤ 120\n"
182
+ " d."
183
+ msgstr ""
184
+ "Yaş ≤ 120\n"
185
+ " gün."
186
+
187
+ #. module: account_financial_report
188
+ #. odoo-python
189
+ #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
190
+ msgid "Age ≤ 120 d."
191
+ msgstr "Yaş ≤ 120 gün."
192
+
193
+ #. module: account_financial_report
194
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
195
+ msgid ""
196
+ "Age ≤ 30\n"
197
+ " d."
198
+ msgstr ""
199
+ "Yaş ≤ 30\n"
200
+ " gün."
201
+
202
+ #. module: account_financial_report
203
+ #. odoo-python
204
+ #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
205
+ msgid "Age ≤ 30 d."
206
+ msgstr "Yaş ≤ 30 gün."
207
+
208
+ #. module: account_financial_report
209
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
210
+ msgid ""
211
+ "Age ≤ 60\n"
212
+ " d."
213
+ msgstr ""
214
+ "Yaş ≤ 60\n"
215
+ " gün."
216
+
217
+ #. module: account_financial_report
218
+ #. odoo-python
219
+ #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
220
+ msgid "Age ≤ 60 d."
221
+ msgstr "Yaş ≤ 60 gün."
222
+
223
+ #. module: account_financial_report
224
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
225
+ msgid ""
226
+ "Age ≤ 90\n"
227
+ " d."
228
+ msgstr ""
229
+ "Yaş ≤ 90\n"
230
+ " gün."
231
+
232
+ #. module: account_financial_report
233
+ #. odoo-python
234
+ #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
235
+ msgid "Age ≤ 90 d."
236
+ msgstr "Yaş ≤ 90 d."
237
+
238
+ #. module: account_financial_report
239
+ #. odoo-python
240
+ #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
241
+ #: model:ir.actions.act_window,name:account_financial_report.action_aged_partner_balance_wizard
242
+ #: model:ir.actions.report,name:account_financial_report.action_print_report_aged_partner_balance_html
243
+ #: model:ir.actions.report,name:account_financial_report.action_print_report_aged_partner_balance_qweb
244
+ #: model:ir.ui.menu,name:account_financial_report.menu_aged_partner_balance_wizard
245
+ msgid "Aged Partner Balance"
246
+ msgstr "Yaşlandırılmış İş Ortağı Bakiyesi"
247
+
248
+ #. module: account_financial_report
249
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_base
250
+ msgid "Aged Partner Balance -"
251
+ msgstr "Yaşlandırılmış İş Ortağı Bakiyesi -"
252
+
253
+ #. module: account_financial_report
254
+ #: model:ir.model,name:account_financial_report.model_report_account_financial_report_aged_partner_balance
255
+ msgid "Aged Partner Balance Report"
256
+ msgstr "Yaşlandırılmış İş Ortağı Bakiyesi Raporu"
257
+
258
+ #. module: account_financial_report
259
+ #: model:ir.model,name:account_financial_report.model_aged_partner_balance_report_wizard
260
+ msgid "Aged Partner Balance Wizard"
261
+ msgstr "Yaşlandırılmış İş Ortağı Bakiyesi Raporu"
262
+
263
+ #. module: account_financial_report
264
+ #: model:ir.model,name:account_financial_report.model_report_a_f_r_report_aged_partner_balance_xlsx
265
+ msgid "Aged Partner Balance XLSL Report"
266
+ msgstr "Yaşlandırılmış İş Ortağı Bakiye XLSL Raporu"
267
+
268
+ #. module: account_financial_report
269
+ #: model:ir.actions.report,name:account_financial_report.action_report_aged_partner_balance_xlsx
270
+ msgid "Aged Partner Balance XLSX"
271
+ msgstr "Yaşlandırılmış İş Ortağı Bakiye XLS"
272
+
273
+ #. module: account_financial_report
274
+ #. odoo-python
275
+ #: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
276
+ msgid "All"
277
+ msgstr "Hepsi"
278
+
279
+ #. module: account_financial_report
280
+ #: model:ir.model.fields.selection,name:account_financial_report.selection__aged_partner_balance_report_wizard__target_move__all
281
+ #: model:ir.model.fields.selection,name:account_financial_report.selection__general_ledger_report_wizard__target_move__all
282
+ #: model:ir.model.fields.selection,name:account_financial_report.selection__open_items_report_wizard__target_move__all
283
+ #: model:ir.model.fields.selection,name:account_financial_report.selection__trial_balance_report_wizard__target_move__all
284
+ #: model:ir.model.fields.selection,name:account_financial_report.selection__vat_report_wizard__target_move__all
285
+ msgid "All Entries"
286
+ msgstr "Tüm Kayıtlar"
287
+
288
+ #. module: account_financial_report
289
+ #: model:ir.model.fields.selection,name:account_financial_report.selection__aged_partner_balance_report_wizard__target_move__posted
290
+ #: model:ir.model.fields.selection,name:account_financial_report.selection__general_ledger_report_wizard__target_move__posted
291
+ #: model:ir.model.fields.selection,name:account_financial_report.selection__open_items_report_wizard__target_move__posted
292
+ #: model:ir.model.fields.selection,name:account_financial_report.selection__trial_balance_report_wizard__target_move__posted
293
+ #: model:ir.model.fields.selection,name:account_financial_report.selection__vat_report_wizard__target_move__posted
294
+ msgid "All Posted Entries"
295
+ msgstr "İşlenen Tüm Girişler"
296
+
297
+ #. module: account_financial_report
298
+ #. odoo-python
299
+ #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
300
+ #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
301
+ #: code:addons/account_financial_report/report/open_items_xlsx.py:0
302
+ #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
303
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_filters
304
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
305
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
306
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
307
+ msgid "All entries"
308
+ msgstr "Tüm Kayıtlar"
309
+
310
+ #. module: account_financial_report
311
+ #. odoo-python
312
+ #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
313
+ #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
314
+ #: code:addons/account_financial_report/report/open_items_xlsx.py:0
315
+ #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
316
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_filters
317
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
318
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
319
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
320
+ msgid "All posted entries"
321
+ msgstr "Tüm onaylı kayıtlar"
322
+
323
+ #. module: account_financial_report
324
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
325
+ msgid "Amount Cur."
326
+ msgstr "Döviz tutar."
327
+
328
+ #. module: account_financial_report
329
+ #. odoo-python
330
+ #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
331
+ msgid "Amount Currency"
332
+ msgstr "Tutar Para Birimi"
333
+
334
+ #. module: account_financial_report
335
+ #. odoo-python
336
+ #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
337
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
338
+ msgid "Amount cur."
339
+ msgstr "Döviz tutar."
340
+
341
+ #. module: account_financial_report
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
344
+ msgid "Analytic Account"
345
+ msgstr "Analitik Hesap"
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 "Analitik Dağılım"
353
+
354
+ #. module: account_financial_report
355
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
356
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
357
+ msgid "Balance"
358
+ msgstr "Bakiye"
359
+
360
+ #. module: account_financial_report
361
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
362
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
363
+ msgid "Base Amount"
364
+ msgstr "Matrah Tutarı"
365
+
366
+ #. module: account_financial_report
367
+ #. odoo-python
368
+ #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
369
+ msgid "Base Balance"
370
+ msgstr "Matrah Bakiyesi"
371
+
372
+ #. module: account_financial_report
373
+ #. odoo-python
374
+ #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
375
+ msgid "Base Credit"
376
+ msgstr "Matrah Alacak"
377
+
378
+ #. module: account_financial_report
379
+ #. odoo-python
380
+ #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
381
+ msgid "Base Debit"
382
+ msgstr "Matrah Borç"
383
+
384
+ #. module: account_financial_report
385
+ #: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__based_on
386
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_filters
387
+ msgid "Based On"
388
+ msgstr "Esas"
389
+
390
+ #. module: account_financial_report
391
+ #. odoo-python
392
+ #: code:addons/account_financial_report/report/vat_report_xlsx.py:0
393
+ msgid "Based on"
394
+ msgstr "Esas"
395
+
396
+ #. module: account_financial_report
397
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.aged_partner_balance_wizard
398
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
399
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.journal_ledger_wizard
400
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.open_items_wizard
401
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.trial_balance_wizard
402
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.vat_report_wizard
403
+ msgid "Cancel"
404
+ msgstr "İptal"
405
+
406
+ #. module: account_financial_report
407
+ #. odoo-python
408
+ #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
409
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
410
+ msgid "Centralize filter"
411
+ msgstr "Merkezi Filtre"
412
+
413
+ #. module: account_financial_report
414
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_account__centralized
415
+ msgid "Centralized"
416
+ msgstr "Merkezileştirilmiş"
417
+
418
+ #. module: account_financial_report
419
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_group__group_child_ids
420
+ msgid "Child Groups"
421
+ msgstr "Alt Gruplar"
422
+
423
+ #. module: account_financial_report
424
+ #. odoo-python
425
+ #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
426
+ #: code:addons/account_financial_report/report/vat_report_xlsx.py:0
427
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
428
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
429
+ msgid "Code"
430
+ msgstr "Kod"
431
+
432
+ #. module: account_financial_report
433
+ #. odoo-python
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
436
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_financial_report_abstract_wizard__company_id
437
+ #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__company_id
438
+ #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__company_id
439
+ #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__company_id
440
+ #: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__company_id
441
+ #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__company_id
442
+ #: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__company_id
443
+ msgid "Company"
444
+ msgstr "Firma"
445
+
446
+ #. module: account_financial_report
447
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_group__compute_account_ids
448
+ msgid "Compute accounts"
449
+ msgstr "Grup hesapları"
450
+
451
+ #. module: account_financial_report
452
+ #: model:ir.model,name:account_financial_report.model_res_config_settings
453
+ msgid "Config Settings"
454
+ msgstr "Yapılandırma Ayarları"
455
+
456
+ #. module: account_financial_report
457
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
458
+ msgid "Configurations"
459
+ msgstr "Yapılandırmalar"
460
+
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
464
+ #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__create_uid
465
+ #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__create_uid
466
+ #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__create_uid
467
+ #: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__create_uid
468
+ #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__create_uid
469
+ #: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__create_uid
470
+ msgid "Created by"
471
+ msgstr "Oluşturan"
472
+
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
476
+ #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__create_date
477
+ #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__create_date
478
+ #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__create_date
479
+ #: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__create_date
480
+ #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__create_date
481
+ #: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__create_date
482
+ msgid "Created on"
483
+ msgstr "Oluşturulma"
484
+
485
+ #. module: account_financial_report
486
+ #. odoo-python
487
+ #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
488
+ #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
489
+ #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
490
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
491
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
492
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
493
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
494
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
495
+ msgid "Credit"
496
+ msgstr "Alacak"
497
+
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 "Kümüle Bak."
504
+
505
+ #. module: account_financial_report
506
+ #. odoo-python
507
+ #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
508
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
509
+ msgid "Cumul. Bal."
510
+ msgstr "Cumul. Bal."
511
+
512
+ #. module: account_financial_report
513
+ #. odoo-python
514
+ #: code:addons/account_financial_report/report/open_items_xlsx.py:0
515
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
516
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
517
+ msgid "Cur."
518
+ msgstr "Döviz"
519
+
520
+ #. module: account_financial_report
521
+ #. odoo-python
522
+ #: code:addons/account_financial_report/report/open_items_xlsx.py:0
523
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
524
+ msgid "Cur. Original"
525
+ msgstr "Döviz Orjinal"
526
+
527
+ #. module: account_financial_report
528
+ #. odoo-python
529
+ #: code:addons/account_financial_report/report/open_items_xlsx.py:0
530
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
531
+ msgid "Cur. Residual"
532
+ msgstr "Döviz Kalan"
533
+
534
+ #. module: account_financial_report
535
+ #. odoo-python
536
+ #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
537
+ msgid "Currency"
538
+ msgstr "Para Birimi"
539
+
540
+ #. module: account_financial_report
541
+ #. odoo-python
542
+ #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
543
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
544
+ msgid "Current"
545
+ msgstr "Güncel"
546
+
547
+ #. module: account_financial_report
548
+ #. odoo-python
549
+ #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
550
+ #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
551
+ #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
552
+ #: code:addons/account_financial_report/report/open_items_xlsx.py:0
553
+ #: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
554
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
555
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
556
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
557
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
558
+ msgid "Date"
559
+ msgstr "Tarih"
560
+
561
+ #. module: account_financial_report
562
+ #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__date_at
563
+ #: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__date_at
564
+ msgid "Date At"
565
+ msgstr "Tarihden"
566
+
567
+ #. module: account_financial_report
568
+ #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__date_from
569
+ #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__date_from
570
+ #: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__date_from
571
+ #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__date_from
572
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_filters
573
+ msgid "Date From"
574
+ msgstr "Tarihinden"
575
+
576
+ #. module: account_financial_report
577
+ #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__date_to
578
+ #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__date_to
579
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_filters
580
+ msgid "Date To"
581
+ msgstr "Tarihine"
582
+
583
+ #. module: account_financial_report
584
+ #. odoo-python
585
+ #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
586
+ #: code:addons/account_financial_report/report/open_items_xlsx.py:0
587
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_filters
588
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
589
+ msgid "Date at filter"
590
+ msgstr "Filtre Tarihi"
591
+
592
+ #. module: account_financial_report
593
+ #. odoo-python
594
+ #: code:addons/account_financial_report/report/vat_report_xlsx.py:0
595
+ msgid "Date from"
596
+ msgstr "Tarihinden"
597
+
598
+ #. module: account_financial_report
599
+ #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__date_range_id
600
+ #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__date_range_id
601
+ #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__date_range_id
602
+ #: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__date_range_id
603
+ msgid "Date range"
604
+ msgstr "Tarih Aralığı"
605
+
606
+ #. module: account_financial_report
607
+ #. odoo-python
608
+ #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
609
+ #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
610
+ #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
611
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
612
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
613
+ msgid "Date range filter"
614
+ msgstr "Tarih Aralığı Filtre"
615
+
616
+ #. module: account_financial_report
617
+ #. odoo-python
618
+ #: code:addons/account_financial_report/report/vat_report_xlsx.py:0
619
+ msgid "Date to"
620
+ msgstr "Tarihine"
621
+
622
+ #. module: account_financial_report
623
+ #. odoo-python
624
+ #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
625
+ #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
626
+ #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
627
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
628
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
629
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
630
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
631
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
632
+ msgid "Debit"
633
+ msgstr "Borç"
634
+
635
+ #. module: account_financial_report
636
+ #. odoo-python
637
+ #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
638
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
639
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
640
+ msgid "Description"
641
+ msgstr "Açıklama"
642
+
643
+ #. module: account_financial_report
644
+ #: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__tax_detail
645
+ msgid "Detail Taxes"
646
+ msgstr "Vergi Detayları"
647
+
648
+ #. module: account_financial_report
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
651
+ #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__display_name
652
+ #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__display_name
653
+ #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__display_name
654
+ #: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__display_name
655
+ #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__display_name
656
+ #: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__display_name
657
+ msgid "Display Name"
658
+ msgstr "Ad Görünümü"
659
+
660
+ #. module: account_financial_report
661
+ #: model:ir.model.fields,help:account_financial_report.field_general_ledger_report_wizard__foreign_currency
662
+ #: model:ir.model.fields,help:account_financial_report.field_open_items_report_wizard__foreign_currency
663
+ #: model:ir.model.fields,help:account_financial_report.field_trial_balance_report_wizard__foreign_currency
664
+ msgid ""
665
+ "Display foreign currency for move lines, unless account currency is not "
666
+ "setup through chart of accounts will display initial and final balance in "
667
+ "that currency."
668
+ msgstr ""
669
+ "Hesap planı aracılığıyla hesap para birimi ayarlanmadığı sürece, hareket "
670
+ "satırları için yabancı para birimini görüntüleyin, ilk ve son bakiyeyi o "
671
+ "para biriminde görüntüleyecektir."
672
+
673
+ #. module: account_financial_report
674
+ #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__hide_parent_hierarchy_level
675
+ msgid "Do not display parent levels"
676
+ msgstr "Üst düzeylerini gösterme"
677
+
678
+ #. module: account_financial_report
679
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
680
+ msgid ""
681
+ "Due\n"
682
+ " date"
683
+ msgstr ""
684
+ "Vade\n"
685
+ " Tarihi"
686
+
687
+ #. module: account_financial_report
688
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
689
+ msgid ""
690
+ "Due\n"
691
+ " date"
692
+ msgstr ""
693
+ "Vade\n"
694
+ " Tarihi"
695
+
696
+ #. module: account_financial_report
697
+ #. odoo-python
698
+ #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
699
+ #: code:addons/account_financial_report/report/open_items_xlsx.py:0
700
+ msgid "Due date"
701
+ msgstr "Vade Tarihi"
702
+
703
+ #. module: account_financial_report
704
+ #: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__date_to
705
+ msgid "End Date"
706
+ msgstr "Bitiş Tarihi"
707
+
708
+ #. module: account_financial_report
709
+ #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__date_to
710
+ msgid "End date"
711
+ msgstr "Bitiş Tarihi"
712
+
713
+ #. module: account_financial_report
714
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_ending_cumul
715
+ msgid ""
716
+ "Ending\n"
717
+ " balance"
718
+ msgstr ""
719
+ "Son\n"
720
+ " Bakiye"
721
+
722
+ #. module: account_financial_report
723
+ #: model:ir.model.fields,help:account_financial_report.field_aged_partner_balance_report_wizard__account_code_to
724
+ #: model:ir.model.fields,help:account_financial_report.field_general_ledger_report_wizard__account_code_to
725
+ #: model:ir.model.fields,help:account_financial_report.field_open_items_report_wizard__account_code_to
726
+ #: model:ir.model.fields,help:account_financial_report.field_trial_balance_report_wizard__account_code_to
727
+ msgid "Ending account in a range"
728
+ msgstr "Hesabı bir aralıkta sonlandırma"
729
+
730
+ #. module: account_financial_report
731
+ #. odoo-python
732
+ #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
733
+ #: code:addons/account_financial_report/report/open_items_xlsx.py:0
734
+ #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
735
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_ending_cumul
736
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
737
+ msgid "Ending balance"
738
+ msgstr "Kapanış Bakiyesi"
739
+
740
+ #. module: account_financial_report
741
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
742
+ msgid ""
743
+ "Ending balance\n"
744
+ " cur."
745
+ msgstr ""
746
+ "Kapanış döviz\n"
747
+ " bak."
748
+
749
+ #. module: account_financial_report
750
+ #. odoo-python
751
+ #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
752
+ msgid "Entries sorted by"
753
+ msgstr "Girişler Göre Sırala"
754
+
755
+ #. module: account_financial_report
756
+ #. odoo-python
757
+ #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
758
+ #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
759
+ #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
760
+ #: code:addons/account_financial_report/report/open_items_xlsx.py:0
761
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
762
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
763
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
764
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
765
+ msgid "Entry"
766
+ msgstr "Yevmiye Girişi"
767
+
768
+ #. module: account_financial_report
769
+ #. odoo-python
770
+ #: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
771
+ msgid "Entry number"
772
+ msgstr "Giriş Numarası"
773
+
774
+ #. module: account_financial_report
775
+ #. odoo-javascript
776
+ #: code:addons/account_financial_report/static/src/xml/report.xml:0
777
+ msgid "Export"
778
+ msgstr "Dışa Aktar"
779
+
780
+ #. module: account_financial_report
781
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.aged_partner_balance_wizard
782
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
783
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.journal_ledger_wizard
784
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.open_items_wizard
785
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.trial_balance_wizard
786
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.vat_report_wizard
787
+ msgid "Export PDF"
788
+ msgstr "Dışa Aktar PDF"
789
+
790
+ #. module: account_financial_report
791
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.aged_partner_balance_wizard
792
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
793
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.journal_ledger_wizard
794
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.open_items_wizard
795
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.trial_balance_wizard
796
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.vat_report_wizard
797
+ msgid "Export XLSX"
798
+ msgstr "Dışa Aktar XLSX"
799
+
800
+ #. module: account_financial_report
801
+ #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__account_ids
802
+ #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__account_ids
803
+ #: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__account_ids
804
+ #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__account_ids
805
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
806
+ msgid "Filter accounts"
807
+ msgstr "Hesapları Filtrele"
808
+
809
+ #. module: account_financial_report
810
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
811
+ msgid "Filter analytic accounts"
812
+ msgstr "Analitik Hesapları Filtreleme"
813
+
814
+ #. module: account_financial_report
815
+ #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__cost_center_ids
816
+ msgid "Filter cost centers"
817
+ msgstr "Merkezi Maliyetleri Filtreleme"
818
+
819
+ #. module: account_financial_report
820
+ #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__account_journal_ids
821
+ msgid "Filter journals"
822
+ msgstr "Yevmiyeleri Filtreleyin"
823
+
824
+ #. module: account_financial_report
825
+ #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__partner_ids
826
+ #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__partner_ids
827
+ #: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__partner_ids
828
+ #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__partner_ids
829
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
830
+ msgid "Filter partners"
831
+ msgstr "İş Ortakları filtrele"
832
+
833
+ #. module: account_financial_report
834
+ #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__foreign_currency
835
+ msgid "Foreign Currency"
836
+ msgstr "Yabancı Para Birimi"
837
+
838
+ #. module: account_financial_report
839
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
840
+ msgid "Format"
841
+ msgstr ""
842
+
843
+ #. module: account_financial_report
844
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.aged_partner_balance_wizard
845
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
846
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.open_items_wizard
847
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.trial_balance_wizard
848
+ msgid "From Code"
849
+ msgstr "Koddan"
850
+
851
+ #. module: account_financial_report
852
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
853
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
854
+ msgid "From:"
855
+ msgstr "İtibaren:"
856
+
857
+ #. module: account_financial_report
858
+ #. odoo-python
859
+ #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
860
+ #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
861
+ #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
862
+ msgid "From: %(date_from)s To: %(date_to)s"
863
+ msgstr "Den: %(date_from)s To: %(date_to)s"
864
+
865
+ #. module: account_financial_report
866
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_group__complete_code
867
+ msgid "Full Code"
868
+ msgstr "Full Kod"
869
+
870
+ #. module: account_financial_report
871
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_group__complete_name
872
+ msgid "Full Name"
873
+ msgstr "Tam Ad"
874
+
875
+ #. module: account_financial_report
876
+ #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__fy_start_date
877
+ #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__fy_start_date
878
+ msgid "Fy Start Date"
879
+ msgstr "Mali Yıl Başlangıç Tarihi"
880
+
881
+ #. module: account_financial_report
882
+ #. odoo-python
883
+ #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
884
+ #: model:ir.actions.act_window,name:account_financial_report.act_action_general_ledger_wizard_partner_relation
885
+ #: model:ir.actions.act_window,name:account_financial_report.action_general_ledger_wizard
886
+ #: model:ir.actions.report,name:account_financial_report.action_print_report_general_ledger_html
887
+ #: model:ir.actions.report,name:account_financial_report.action_print_report_general_ledger_qweb
888
+ #: model:ir.ui.menu,name:account_financial_report.menu_general_ledger_wizard
889
+ msgid "General Ledger"
890
+ msgstr "Büyük Defter"
891
+
892
+ #. module: account_financial_report
893
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_base
894
+ msgid "General Ledger -"
895
+ msgstr "Büyük Defter -"
896
+
897
+ #. module: account_financial_report
898
+ #: model:ir.model,name:account_financial_report.model_report_account_financial_report_general_ledger
899
+ msgid "General Ledger Report"
900
+ msgstr "Büyük Defter Raporu"
901
+
902
+ #. module: account_financial_report
903
+ #: model:ir.model,name:account_financial_report.model_general_ledger_report_wizard
904
+ msgid "General Ledger Report Wizard"
905
+ msgstr "Büyük Defter Rapor Sihirbazı"
906
+
907
+ #. module: account_financial_report
908
+ #: model:ir.model,name:account_financial_report.model_report_a_f_r_report_general_ledger_xlsx
909
+ msgid "General Ledger XLSL Report"
910
+ msgstr "Büyük Defter XLSL Raporu"
911
+
912
+ #. module: account_financial_report
913
+ #: model:ir.actions.report,name:account_financial_report.action_report_general_ledger_xlsx
914
+ msgid "General Ledger XLSX"
915
+ msgstr "Büyük Defter XLSL"
916
+
917
+ #. module: account_financial_report
918
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
919
+ msgid ""
920
+ "General Ledger can be computed only if selected company have\n"
921
+ " only one unaffected earnings account."
922
+ msgstr ""
923
+ "Büyük Defter yalnızca seçilen şirketin sahip olması durumunda "
924
+ "hesaplanabilir..\n"
925
+ " etkilenmeyen tek bir kazanç hesabı."
926
+
927
+ #. module: account_financial_report
928
+ #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__group_option
929
+ msgid "Group entries by"
930
+ msgstr "Giriş gruplama"
931
+
932
+ #. module: account_financial_report
933
+ #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__grouped_by
934
+ #: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__grouped_by
935
+ #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__grouped_by
936
+ msgid "Grouped By"
937
+ msgstr "Gruplanma"
938
+
939
+ #. module: account_financial_report
940
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
941
+ msgid ""
942
+ "Here you can set the intervals that will appear on the Aged Partner Balance."
943
+ msgstr "Burada İş Ortağı Bakiyesinde görünecek aralıkları ayarlayabilirsiniz."
944
+
945
+ #. module: account_financial_report
946
+ #. odoo-python
947
+ #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
948
+ #: code:addons/account_financial_report/report/open_items_xlsx.py:0
949
+ #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
950
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
951
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
952
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
953
+ msgid "Hide"
954
+ msgstr "Gizle"
955
+
956
+ #. module: account_financial_report
957
+ #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__hide_account_at_0
958
+ #: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__hide_account_at_0
959
+ msgid "Hide account ending balance at 0"
960
+ msgstr "Hesap 0 biten bakiyeyi gizle"
961
+
962
+ #. module: account_financial_report
963
+ #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__hide_account_at_0
964
+ msgid "Hide accounts at 0"
965
+ msgstr "0 Bakiye Hesapları Gizle"
966
+
967
+ #. module: account_financial_report
968
+ #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__show_hierarchy_level
969
+ msgid "Hierarchy Levels to display"
970
+ msgstr "Görüntülenecek Hiyerarşi Düzeyleri"
971
+
972
+ #. module: account_financial_report
973
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__id
974
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__id
975
+ #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__id
976
+ #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__id
977
+ #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__id
978
+ #: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__id
979
+ #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__id
980
+ #: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__id
981
+ msgid "ID"
982
+ msgstr "ID"
983
+
984
+ #. module: account_financial_report
985
+ #: model:ir.model.fields,help:account_financial_report.field_account_account__centralized
986
+ msgid ""
987
+ "If flagged, no details will be displayed in the General Ledger report (the "
988
+ "webkit one only), only centralized amounts per period."
989
+ msgstr ""
990
+ "İşaretlenirse Büyük Defter raporunda ayrıntılar gösterilmez, sadece "
991
+ "merkezileştirilmiş dönem tutarları gösterilir."
992
+
993
+ #. module: account_financial_report
994
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__inferior_limit
995
+ msgid "Inferior Limit"
996
+ msgstr "Alt Limit"
997
+
998
+ #. module: account_financial_report
999
+ #. odoo-python
1000
+ #: code:addons/account_financial_report/models/account_age_report_configuration.py:0
1001
+ msgid "Inferior Limit must be greather than zero"
1002
+ msgstr "Alt Limit sıfırdan büyük olmalıdır"
1003
+
1004
+ #. module: account_financial_report
1005
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
1006
+ msgid ""
1007
+ "Initial\n"
1008
+ " balance cur."
1009
+ msgstr ""
1010
+ "Başlangıç\n"
1011
+ " bakiye döviz."
1012
+
1013
+ #. module: account_financial_report
1014
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
1015
+ msgid ""
1016
+ "Initial\n"
1017
+ " balance"
1018
+ msgstr ""
1019
+ "Açılış\n"
1020
+ " Bakiyesi"
1021
+
1022
+ #. module: account_financial_report
1023
+ #. odoo-python
1024
+ #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
1025
+ #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
1026
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
1027
+ msgid "Initial balance"
1028
+ msgstr "Açılış Bakiyesi"
1029
+
1030
+ #. module: account_financial_report
1031
+ #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__age_partner_config_id
1032
+ #: model:ir.model.fields,field_description:account_financial_report.field_res_config_settings__age_partner_config_id
1033
+ msgid "Intervals configuration"
1034
+ msgstr "Aralıklar yapılandırması"
1035
+
1036
+ #. module: account_financial_report
1037
+ #. odoo-python
1038
+ #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
1039
+ #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
1040
+ #: code:addons/account_financial_report/report/open_items_xlsx.py:0
1041
+ #: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
1042
+ #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__journal_ids
1043
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
1044
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
1045
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
1046
+ msgid "Journal"
1047
+ msgstr "Yevmiye"
1048
+
1049
+ #. module: account_financial_report
1050
+ #: model:ir.model,name:account_financial_report.model_account_move_line
1051
+ msgid "Journal Item"
1052
+ msgstr "Yevmiye Kalemi"
1053
+
1054
+ #. module: account_financial_report
1055
+ #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__domain
1056
+ msgid "Journal Items Domain"
1057
+ msgstr "Yevmiye Öğeleri Alanı"
1058
+
1059
+ #. module: account_financial_report
1060
+ #. odoo-python
1061
+ #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
1062
+ #: model:ir.actions.act_window,name:account_financial_report.action_journal_ledger_wizard
1063
+ #: model:ir.actions.report,name:account_financial_report.action_print_journal_ledger_wizard_html
1064
+ #: model:ir.ui.menu,name:account_financial_report.menu_journal_ledger_wizard
1065
+ msgid "Journal Ledger"
1066
+ msgstr "Yevmiye Defteri"
1067
+
1068
+ #. module: account_financial_report
1069
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_base
1070
+ msgid "Journal Ledger -"
1071
+ msgstr "Yevmiye Defteri -"
1072
+
1073
+ #. module: account_financial_report
1074
+ #: model:ir.model,name:account_financial_report.model_report_account_financial_report_journal_ledger
1075
+ msgid "Journal Ledger Report"
1076
+ msgstr "Yevmiye Defteri Raporu"
1077
+
1078
+ #. module: account_financial_report
1079
+ #: model:ir.model,name:account_financial_report.model_journal_ledger_report_wizard
1080
+ msgid "Journal Ledger Report Wizard"
1081
+ msgstr "Yevmiye Defteri Rapor Sihirbazı"
1082
+
1083
+ #. module: account_financial_report
1084
+ #: model:ir.actions.report,name:account_financial_report.action_report_journal_ledger_xlsx
1085
+ msgid "Journal Ledger XLSX"
1086
+ msgstr "Yevmiye Defteri XLSX"
1087
+
1088
+ #. module: account_financial_report
1089
+ #: model:ir.model,name:account_financial_report.model_report_a_f_r_report_journal_ledger_xlsx
1090
+ msgid "Journal Ledger XLSX Report"
1091
+ msgstr "Yevmiye Defteri XLSX Rapor"
1092
+
1093
+ #. module: account_financial_report
1094
+ #. odoo-python
1095
+ #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
1096
+ #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__journal_ids
1097
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.journal_ledger_wizard
1098
+ msgid "Journals"
1099
+ msgstr "Yevmiyeler"
1100
+
1101
+ #. module: account_financial_report
1102
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_financial_report_abstract_wizard__label_text_limit
1103
+ #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__label_text_limit
1104
+ #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__label_text_limit
1105
+ #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__label_text_limit
1106
+ #: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__label_text_limit
1107
+ #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__label_text_limit
1108
+ #: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__label_text_limit
1109
+ msgid "Label Text Limit"
1110
+ msgstr ""
1111
+
1112
+ #. module: account_financial_report
1113
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__write_uid
1114
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__write_uid
1115
+ #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__write_uid
1116
+ #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__write_uid
1117
+ #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__write_uid
1118
+ #: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__write_uid
1119
+ #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__write_uid
1120
+ #: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__write_uid
1121
+ msgid "Last Updated by"
1122
+ msgstr "Son Güncelleyen"
1123
+
1124
+ #. module: account_financial_report
1125
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__write_date
1126
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__write_date
1127
+ #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__write_date
1128
+ #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__write_date
1129
+ #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__write_date
1130
+ #: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__write_date
1131
+ #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__write_date
1132
+ #: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__write_date
1133
+ msgid "Last Updated on"
1134
+ msgstr "Son Güncelleme"
1135
+
1136
+ #. module: account_financial_report
1137
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_group__level
1138
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
1139
+ msgid "Level"
1140
+ msgstr "Seviye"
1141
+
1142
+ #. module: account_financial_report
1143
+ #. odoo-python
1144
+ #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
1145
+ msgid "Level %s"
1146
+ msgstr "Seviye %s"
1147
+
1148
+ #. module: account_financial_report
1149
+ #. odoo-python
1150
+ #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
1151
+ #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__limit_hierarchy_level
1152
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
1153
+ msgid "Limit hierarchy levels"
1154
+ msgstr "Hiyerarşi düzeylerini sınırlayın"
1155
+
1156
+ #. module: account_financial_report
1157
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__line_ids
1158
+ msgid "Line"
1159
+ msgstr "Satır"
1160
+
1161
+ #. module: account_financial_report
1162
+ #. odoo-python
1163
+ #: code:addons/account_financial_report/report/general_ledger.py:0
1164
+ #: code:addons/account_financial_report/report/open_items.py:0
1165
+ #: code:addons/account_financial_report/report/open_items_xlsx.py:0
1166
+ #: code:addons/account_financial_report/report/trial_balance.py:0
1167
+ msgid "Missing Partner"
1168
+ msgstr "Eksik İş Ortağı"
1169
+
1170
+ #. module: account_financial_report
1171
+ #. odoo-python
1172
+ #: code:addons/account_financial_report/report/open_items.py:0
1173
+ msgid "Missing Salesperson"
1174
+ msgstr "Eksik Satış Temsilcisi"
1175
+
1176
+ #. module: account_financial_report
1177
+ #: model:ir.model,name:account_financial_report.model_account_age_report_configuration_line
1178
+ msgid "Model to set interval lines for Age partner balance report"
1179
+ msgstr "İş Ortağı Bakiye Raporu için aralık satırlarını ayarlamak için model"
1180
+
1181
+ #. module: account_financial_report
1182
+ #: model:ir.model,name:account_financial_report.model_account_age_report_configuration
1183
+ msgid "Model to set intervals for Age partner balance report"
1184
+ msgstr "İş Ortağı Bakiye Raporu için aralıkları ayarlamak için model"
1185
+
1186
+ #. module: account_financial_report
1187
+ #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__move_target
1188
+ msgid "Move Target"
1189
+ msgstr "Hedef Harketler"
1190
+
1191
+ #. module: account_financial_report
1192
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal
1193
+ msgid "Moves"
1194
+ msgstr "Hareketler"
1195
+
1196
+ #. module: account_financial_report
1197
+ #. odoo-python
1198
+ #: code:addons/account_financial_report/models/account_age_report_configuration.py:0
1199
+ msgid "Must complete Configuration Lines"
1200
+ msgstr "Yapılandırma Satırlarını Tamamlamalısınız"
1201
+
1202
+ #. module: account_financial_report
1203
+ #. odoo-python
1204
+ #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
1205
+ #: code:addons/account_financial_report/report/vat_report_xlsx.py:0
1206
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__name
1207
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__name
1208
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
1209
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
1210
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
1211
+ msgid "Name"
1212
+ msgstr "Adı"
1213
+
1214
+ #. module: account_financial_report
1215
+ #: model:ir.model.constraint,message:account_financial_report.constraint_account_age_report_configuration_line_unique_name_config_combination
1216
+ msgid "Name must be unique per report configuration"
1217
+ msgstr "İsim rapor yapılandırması için benzersiz olmalıdır"
1218
+
1219
+ #. module: account_financial_report
1220
+ #. odoo-python
1221
+ #: code:addons/account_financial_report/report/vat_report_xlsx.py:0
1222
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
1223
+ msgid "Net"
1224
+ msgstr "Net"
1225
+
1226
+ #. module: account_financial_report
1227
+ #. odoo-python
1228
+ #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
1229
+ #: code:addons/account_financial_report/report/open_items_xlsx.py:0
1230
+ #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
1231
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
1232
+ msgid "No"
1233
+ msgstr "Yok"
1234
+
1235
+ #. module: account_financial_report
1236
+ #. odoo-python
1237
+ #: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
1238
+ msgid "No group"
1239
+ msgstr "Grupsuz"
1240
+
1241
+ #. module: account_financial_report
1242
+ #. odoo-python
1243
+ #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
1244
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
1245
+ msgid "No limit"
1246
+ msgstr "Limitsiz"
1247
+
1248
+ #. module: account_financial_report
1249
+ #: model:ir.model.fields.selection,name:account_financial_report.selection__general_ledger_report_wizard__grouped_by__none
1250
+ msgid "None"
1251
+ msgstr "Hiçbiri"
1252
+
1253
+ #. module: account_financial_report
1254
+ #. odoo-python
1255
+ #: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
1256
+ msgid "Not Posted"
1257
+ msgstr "Onaylanmamış"
1258
+
1259
+ #. module: account_financial_report
1260
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_lines_header
1261
+ msgid "Not due"
1262
+ msgstr "Vadesi Gelmemiş"
1263
+
1264
+ #. module: account_financial_report
1265
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
1266
+ msgid "OCA Aged Report Configuration"
1267
+ msgstr "OCA Yaşlandırılmış Rapor Yapılandırması"
1268
+
1269
+ #. module: account_financial_report
1270
+ #: model:ir.ui.menu,name:account_financial_report.menu_oca_reports
1271
+ msgid "OCA accounting reports"
1272
+ msgstr "OCA Muhasebe Raporları"
1273
+
1274
+ #. module: account_financial_report
1275
+ #. odoo-python
1276
+ #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
1277
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
1278
+ msgid "Older"
1279
+ msgstr "Daha Eski"
1280
+
1281
+ #. module: account_financial_report
1282
+ #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__only_one_unaffected_earnings_account
1283
+ #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__only_one_unaffected_earnings_account
1284
+ msgid "Only One Unaffected Earnings Account"
1285
+ msgstr "Sadece Bir Etkilenmemiş Net Kar Zarar Hesabı"
1286
+
1287
+ #. module: account_financial_report
1288
+ #. odoo-python
1289
+ #: code:addons/account_financial_report/report/open_items_xlsx.py:0
1290
+ #: model:ir.actions.act_window,name:account_financial_report.action_open_items_wizard
1291
+ #: model:ir.actions.report,name:account_financial_report.action_print_report_open_items_html
1292
+ #: model:ir.actions.report,name:account_financial_report.action_print_report_open_items_qweb
1293
+ #: model:ir.ui.menu,name:account_financial_report.menu_open_items_wizard
1294
+ msgid "Open Items"
1295
+ msgstr "Açık Pozisyonlar"
1296
+
1297
+ #. module: account_financial_report
1298
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_base
1299
+ msgid "Open Items -"
1300
+ msgstr "Açık Pozisyonlar -"
1301
+
1302
+ #. module: account_financial_report
1303
+ #: model:ir.actions.act_window,name:account_financial_report.act_action_open_items_wizard_partner_relation
1304
+ msgid "Open Items Partner"
1305
+ msgstr "İş Ortağı Açık İşlemleri"
1306
+
1307
+ #. module: account_financial_report
1308
+ #: model:ir.model,name:account_financial_report.model_report_account_financial_report_open_items
1309
+ msgid "Open Items Report"
1310
+ msgstr "Açık Pozisyon Raporu"
1311
+
1312
+ #. module: account_financial_report
1313
+ #: model:ir.model,name:account_financial_report.model_open_items_report_wizard
1314
+ msgid "Open Items Report Wizard"
1315
+ msgstr "Açık İşlemler Rapor Sihirbazı"
1316
+
1317
+ #. module: account_financial_report
1318
+ #: model:ir.actions.report,name:account_financial_report.action_report_open_items_xlsx
1319
+ msgid "Open Items XLSX"
1320
+ msgstr "Açık Pozisyon XLSX"
1321
+
1322
+ #. module: account_financial_report
1323
+ #: model:ir.model,name:account_financial_report.model_report_a_f_r_report_open_items_xlsx
1324
+ msgid "Open Items XLSX Report"
1325
+ msgstr "Açık Pozisyon XLSX Raporu"
1326
+
1327
+ #. module: account_financial_report
1328
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.journal_ledger_wizard
1329
+ msgid "Options"
1330
+ msgstr "Seçenekler"
1331
+
1332
+ #. module: account_financial_report
1333
+ #. odoo-python
1334
+ #: code:addons/account_financial_report/report/open_items_xlsx.py:0
1335
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
1336
+ msgid "Original"
1337
+ msgstr "Orijinal"
1338
+
1339
+ #. module: account_financial_report
1340
+ #. odoo-python
1341
+ #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
1342
+ #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
1343
+ #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
1344
+ #: code:addons/account_financial_report/report/open_items_xlsx.py:0
1345
+ #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
1346
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_lines_header
1347
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
1348
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
1349
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
1350
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
1351
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
1352
+ msgid "Partner"
1353
+ msgstr "İş Ortağı"
1354
+
1355
+ #. module: account_financial_report
1356
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_partner_ending_cumul
1357
+ msgid ""
1358
+ "Partner\n"
1359
+ " cumul aged balance"
1360
+ msgstr ""
1361
+ "İş ortağı\n"
1362
+ " kümülatif yaşlandırılmış bakiyesi"
1363
+
1364
+ #. module: account_financial_report
1365
+ #. odoo-python
1366
+ #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
1367
+ msgid "Partner Initial balance"
1368
+ msgstr "İş Ortağı Başlangıç bakiyesi"
1369
+
1370
+ #. module: account_financial_report
1371
+ #: model:ir.model.fields.selection,name:account_financial_report.selection__open_items_report_wizard__grouped_by__salesperson
1372
+ msgid "Partner Salesperson"
1373
+ msgstr "İş Ortağı Satış Temsilcisi"
1374
+
1375
+ #. module: account_financial_report
1376
+ #. odoo-python
1377
+ #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
1378
+ msgid "Partner cumul aged balance"
1379
+ msgstr "İş ortağı kümülatif yaşlandırılmış bakiyesi"
1380
+
1381
+ #. module: account_financial_report
1382
+ #. odoo-python
1383
+ #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
1384
+ #: code:addons/account_financial_report/report/open_items_xlsx.py:0
1385
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_ending_cumul
1386
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_ending_cumul
1387
+ msgid "Partner ending balance"
1388
+ msgstr "İş ortağı kapanış bakiyesi"
1389
+
1390
+ #. module: account_financial_report
1391
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
1392
+ msgid "Partner initial balance"
1393
+ msgstr "Ortak başlangıç bakiyesi"
1394
+
1395
+ #. module: account_financial_report
1396
+ #: model:ir.model.fields.selection,name:account_financial_report.selection__general_ledger_report_wizard__grouped_by__partners
1397
+ #: model:ir.model.fields.selection,name:account_financial_report.selection__open_items_report_wizard__grouped_by__partners
1398
+ msgid "Partners"
1399
+ msgstr "İş Ortakları"
1400
+
1401
+ #. module: account_financial_report
1402
+ #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__payable_accounts_only
1403
+ #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__payable_accounts_only
1404
+ #: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__payable_accounts_only
1405
+ #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__payable_accounts_only
1406
+ msgid "Payable Accounts Only"
1407
+ msgstr "Sadece Borç Hesapları"
1408
+
1409
+ #. module: account_financial_report
1410
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_account_ending_cumul
1411
+ msgid "Percents"
1412
+ msgstr "Yüzdeler"
1413
+
1414
+ #. module: account_financial_report
1415
+ #. odoo-python
1416
+ #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
1417
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
1418
+ msgid "Period balance"
1419
+ msgstr "Dönem Bakiyesi"
1420
+
1421
+ #. module: account_financial_report
1422
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.journal_ledger_wizard
1423
+ msgid "Periods"
1424
+ msgstr "Dönemler"
1425
+
1426
+ #. module: account_financial_report
1427
+ #. odoo-python
1428
+ #: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
1429
+ msgid "Posted"
1430
+ msgstr "İşlenmiş"
1431
+
1432
+ #. module: account_financial_report
1433
+ #. odoo-python
1434
+ #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
1435
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
1436
+ msgid "Rec."
1437
+ msgstr "Uzl."
1438
+
1439
+ #. module: account_financial_report
1440
+ #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__receivable_accounts_only
1441
+ #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__receivable_accounts_only
1442
+ #: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__receivable_accounts_only
1443
+ #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__receivable_accounts_only
1444
+ msgid "Receivable Accounts Only"
1445
+ msgstr "Sadece Alacak Hesapları"
1446
+
1447
+ #. module: account_financial_report
1448
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
1449
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
1450
+ msgid ""
1451
+ "Ref -\n"
1452
+ " Label"
1453
+ msgstr ""
1454
+ "Ref -\n"
1455
+ " Etiketi"
1456
+
1457
+ #. module: account_financial_report
1458
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
1459
+ msgid ""
1460
+ "Ref -\n"
1461
+ " Label"
1462
+ msgstr ""
1463
+ "Ref -\n"
1464
+ " Etiketi"
1465
+
1466
+ #. module: account_financial_report
1467
+ #. odoo-python
1468
+ #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
1469
+ #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
1470
+ #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
1471
+ #: code:addons/account_financial_report/report/open_items_xlsx.py:0
1472
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
1473
+ msgid "Ref - Label"
1474
+ msgstr "Ref - Etiketi"
1475
+
1476
+ #. module: account_financial_report
1477
+ #: model:ir.model,name:account_financial_report.model_ir_actions_report
1478
+ msgid "Report Action"
1479
+ msgstr "Rapor İşlemi"
1480
+
1481
+ #. module: account_financial_report
1482
+ #. odoo-python
1483
+ #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
1484
+ #: code:addons/account_financial_report/report/open_items_xlsx.py:0
1485
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_lines_header
1486
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
1487
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
1488
+ msgid "Residual"
1489
+ msgstr "Kalan"
1490
+
1491
+ #. module: account_financial_report
1492
+ #. odoo-python
1493
+ #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
1494
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
1495
+ msgid "Sequence"
1496
+ msgstr "Sıra"
1497
+
1498
+ #. module: account_financial_report
1499
+ #. odoo-python
1500
+ #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
1501
+ #: code:addons/account_financial_report/report/open_items_xlsx.py:0
1502
+ #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
1503
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
1504
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
1505
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
1506
+ msgid "Show"
1507
+ msgstr "Göster"
1508
+
1509
+ #. module: account_financial_report
1510
+ #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__show_cost_center
1511
+ msgid "Show Analytic Account"
1512
+ msgstr "Analitik Hesabı Göster"
1513
+
1514
+ #. module: account_financial_report
1515
+ #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__with_auto_sequence
1516
+ msgid "Show Auto Sequence"
1517
+ msgstr "Otomatik Sıralamayı Göster"
1518
+
1519
+ #. module: account_financial_report
1520
+ #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__show_move_line_details
1521
+ msgid "Show Move Line Details"
1522
+ msgstr "Hareket Satırı Ayrıntılarını Göster"
1523
+
1524
+ #. module: account_financial_report
1525
+ #: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__show_partner_details
1526
+ #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__show_partner_details
1527
+ msgid "Show Partner Details"
1528
+ msgstr "İş Ortağı Ayrıntılarını Göster"
1529
+
1530
+ #. module: account_financial_report
1531
+ #. odoo-python
1532
+ #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
1533
+ #: code:addons/account_financial_report/report/open_items_xlsx.py:0
1534
+ #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
1535
+ #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__foreign_currency
1536
+ #: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__foreign_currency
1537
+ #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__foreign_currency
1538
+ msgid "Show foreign currency"
1539
+ msgstr "Yabancı Para Birimini Göster"
1540
+
1541
+ #. module: account_financial_report
1542
+ #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__show_hierarchy
1543
+ msgid "Show hierarchy"
1544
+ msgstr "Hiyerarşiyi Göster"
1545
+
1546
+ #. module: account_financial_report
1547
+ #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__sort_option
1548
+ msgid "Sort entries by"
1549
+ msgstr "Girişler Göre Sırala"
1550
+
1551
+ #. module: account_financial_report
1552
+ #: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__date_from
1553
+ msgid "Start Date"
1554
+ msgstr "Başlama Tarihi"
1555
+
1556
+ #. module: account_financial_report
1557
+ #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__date_from
1558
+ msgid "Start date"
1559
+ msgstr "Başlama Tarihi"
1560
+
1561
+ #. module: account_financial_report
1562
+ #: model:ir.model.fields,help:account_financial_report.field_aged_partner_balance_report_wizard__account_code_from
1563
+ #: model:ir.model.fields,help:account_financial_report.field_general_ledger_report_wizard__account_code_from
1564
+ #: model:ir.model.fields,help:account_financial_report.field_trial_balance_report_wizard__account_code_from
1565
+ msgid "Starting account in a range"
1566
+ msgstr "Hesap kod aralığı başlangıcı"
1567
+
1568
+ #. module: account_financial_report
1569
+ #. odoo-python
1570
+ #: code:addons/account_financial_report/report/trial_balance.py:0
1571
+ #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
1572
+ msgid "TOTAL"
1573
+ msgstr "TOPLAM"
1574
+
1575
+ #. module: account_financial_report
1576
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
1577
+ msgid "Tags"
1578
+ msgstr "Etiketler"
1579
+
1580
+ #. module: account_financial_report
1581
+ #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__target_move
1582
+ #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__target_move
1583
+ #: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__target_move
1584
+ #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__target_move
1585
+ #: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__target_move
1586
+ msgid "Target Moves"
1587
+ msgstr "Hedef Harketler"
1588
+
1589
+ #. module: account_financial_report
1590
+ #. odoo-python
1591
+ #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
1592
+ #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
1593
+ #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
1594
+ #: code:addons/account_financial_report/report/open_items_xlsx.py:0
1595
+ #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
1596
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_filters
1597
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
1598
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
1599
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
1600
+ msgid "Target moves filter"
1601
+ msgstr "Hedef Hareket Filtresi"
1602
+
1603
+ #. module: account_financial_report
1604
+ #. odoo-python
1605
+ #: code:addons/account_financial_report/report/vat_report_xlsx.py:0
1606
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
1607
+ msgid "Tax"
1608
+ msgstr "Vergi"
1609
+
1610
+ #. module: account_financial_report
1611
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
1612
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
1613
+ msgid "Tax Amount"
1614
+ msgstr "Vergi Tutarı"
1615
+
1616
+ #. module: account_financial_report
1617
+ #. odoo-python
1618
+ #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
1619
+ msgid "Tax Balance"
1620
+ msgstr "Vergi Bakiyesi"
1621
+
1622
+ #. module: account_financial_report
1623
+ #. odoo-python
1624
+ #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
1625
+ msgid "Tax Credit"
1626
+ msgstr "Vergi İndirimi"
1627
+
1628
+ #. module: account_financial_report
1629
+ #. odoo-python
1630
+ #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
1631
+ msgid "Tax Debit"
1632
+ msgstr "Vergi Borcu"
1633
+
1634
+ #. module: account_financial_report
1635
+ #. odoo-python
1636
+ #: code:addons/account_financial_report/report/vat_report_xlsx.py:0
1637
+ #: model:ir.model.fields.selection,name:account_financial_report.selection__vat_report_wizard__based_on__taxgroups
1638
+ msgid "Tax Groups"
1639
+ msgstr "Vergi Grupları"
1640
+
1641
+ #. module: account_financial_report
1642
+ #. odoo-python
1643
+ #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
1644
+ msgid "Tax Initial balance"
1645
+ msgstr "Vergi Açılış Bakiyesi"
1646
+
1647
+ #. module: account_financial_report
1648
+ #. odoo-python
1649
+ #: code:addons/account_financial_report/report/vat_report_xlsx.py:0
1650
+ #: model:ir.model.fields.selection,name:account_financial_report.selection__vat_report_wizard__based_on__taxtags
1651
+ msgid "Tax Tags"
1652
+ msgstr "Vergi Etiketleri"
1653
+
1654
+ #. module: account_financial_report
1655
+ #. odoo-python
1656
+ #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
1657
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_ending_cumul
1658
+ msgid "Tax ending balance"
1659
+ msgstr "Vergi Kapanş Bakiyesi"
1660
+
1661
+ #. module: account_financial_report
1662
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
1663
+ msgid "Tax initial balance"
1664
+ msgstr "Vergi Açılış Bakiyesi"
1665
+
1666
+ #. module: account_financial_report
1667
+ #. odoo-python
1668
+ #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
1669
+ #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
1670
+ #: model:ir.model.fields.selection,name:account_financial_report.selection__general_ledger_report_wizard__grouped_by__taxes
1671
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
1672
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
1673
+ msgid "Taxes"
1674
+ msgstr "Vergiler"
1675
+
1676
+ #. module: account_financial_report
1677
+ #. odoo-python
1678
+ #: code:addons/account_financial_report/wizard/general_ledger_wizard.py:0
1679
+ msgid ""
1680
+ "The Company in the General Ledger Report Wizard and in Date Range must be "
1681
+ "the same."
1682
+ msgstr ""
1683
+ "Büyük Defter Rapor Sihirbazı ve Tarih Aralığının şirketi aynı olmalıdır."
1684
+
1685
+ #. module: account_financial_report
1686
+ #. odoo-python
1687
+ #: code:addons/account_financial_report/wizard/trial_balance_wizard.py:0
1688
+ msgid ""
1689
+ "The Company in the Trial Balance Report Wizard and in Date Range must be the "
1690
+ "same."
1691
+ msgstr ""
1692
+ "Geçici Mizan Rapor Sihirbazı ve Tarih Aralığının şirketi aynı olmalıdır."
1693
+
1694
+ #. module: account_financial_report
1695
+ #. odoo-python
1696
+ #: code:addons/account_financial_report/wizard/vat_report_wizard.py:0
1697
+ msgid ""
1698
+ "The Company in the Vat Report Wizard and in Date Range must be the same."
1699
+ msgstr "Vergi Rapor Sihirbazı ve Tarih Aralığının şirketi aynı olmalıdır."
1700
+
1701
+ #. module: account_financial_report
1702
+ #. odoo-python
1703
+ #: code:addons/account_financial_report/wizard/trial_balance_wizard.py:0
1704
+ msgid "The hierarchy level to filter on must be greater than 0."
1705
+ msgstr "Filtrelenecek Hiyerarşi seviyesi sıfırdan büyük olmalıdır."
1706
+
1707
+ #. module: account_financial_report
1708
+ #. odoo-python
1709
+ #: code:addons/account_financial_report/report/trial_balance.py:0
1710
+ msgid ""
1711
+ "There is a problem in the structure of the account groups. You may need to "
1712
+ "create some child group of %s."
1713
+ msgstr ""
1714
+ "Hesap grupları yapısında bir sorun var. %s'nin bazı alt gruplarını "
1715
+ "oluşturmanız gerekebilir."
1716
+
1717
+ #. module: account_financial_report
1718
+ #: model:ir.model.fields,help:account_financial_report.field_general_ledger_report_wizard__domain
1719
+ msgid "This domain will be used to select specific domain for Journal Items"
1720
+ msgstr ""
1721
+ "Bu alan adı Yevmiye Kalemleri için özel bir alan adı seçmek için "
1722
+ "kullanılacaktır"
1723
+
1724
+ #. module: account_financial_report
1725
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
1726
+ msgid "To"
1727
+ msgstr "Bitiş"
1728
+
1729
+ #. module: account_financial_report
1730
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
1731
+ msgid "To:"
1732
+ msgstr "Bitiş:"
1733
+
1734
+ #. module: account_financial_report
1735
+ #. odoo-python
1736
+ #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
1737
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_account_ending_cumul
1738
+ msgid "Total"
1739
+ msgstr "Toplam"
1740
+
1741
+ #. module: account_financial_report
1742
+ #. odoo-python
1743
+ #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
1744
+ #: model:ir.actions.act_window,name:account_financial_report.action_trial_balance_wizard
1745
+ #: model:ir.actions.report,name:account_financial_report.action_report_trial_balance_html
1746
+ #: model:ir.actions.report,name:account_financial_report.action_report_trial_balance_qweb
1747
+ #: model:ir.ui.menu,name:account_financial_report.menu_trial_balance_wizard
1748
+ msgid "Trial Balance"
1749
+ msgstr "Geçici Mizan"
1750
+
1751
+ #. module: account_financial_report
1752
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_base
1753
+ msgid "Trial Balance -"
1754
+ msgstr "Geçici Mizan -"
1755
+
1756
+ #. module: account_financial_report
1757
+ #: model:ir.model,name:account_financial_report.model_report_account_financial_report_trial_balance
1758
+ msgid "Trial Balance Report"
1759
+ msgstr "Geçici Mizan Raporu"
1760
+
1761
+ #. module: account_financial_report
1762
+ #: model:ir.model,name:account_financial_report.model_trial_balance_report_wizard
1763
+ msgid "Trial Balance Report Wizard"
1764
+ msgstr "Mizan Raporu Sihirbazı"
1765
+
1766
+ #. module: account_financial_report
1767
+ #: model:ir.actions.report,name:account_financial_report.action_report_trial_balance_xlsx
1768
+ msgid "Trial Balance XLSX"
1769
+ msgstr "Geçici Mizan XLSX"
1770
+
1771
+ #. module: account_financial_report
1772
+ #: model:ir.model,name:account_financial_report.model_report_a_f_r_report_trial_balance_xlsx
1773
+ msgid "Trial Balance XLSX Report"
1774
+ msgstr "Geçici Mizan XLSX Raporu"
1775
+
1776
+ #. module: account_financial_report
1777
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.trial_balance_wizard
1778
+ msgid ""
1779
+ "Trial Balance can be computed only if selected company have only\n"
1780
+ " one unaffected earnings account."
1781
+ msgstr ""
1782
+ "Mizan, Bakiyesi yalnızca seçilen şirketin yalnızca\n"
1783
+ " etkilenmemiş bir kazanı hesabı."
1784
+
1785
+ #. module: account_financial_report
1786
+ #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__unaffected_earnings_account
1787
+ #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__unaffected_earnings_account
1788
+ msgid "Unaffected Earnings Account"
1789
+ msgstr "Etkilenmeyen Kazanç Hesabı"
1790
+
1791
+ #. module: account_financial_report
1792
+ #: model:ir.model.fields,help:account_financial_report.field_general_ledger_report_wizard__hide_account_at_0
1793
+ #: model:ir.model.fields,help:account_financial_report.field_open_items_report_wizard__hide_account_at_0
1794
+ msgid ""
1795
+ "Use this filter to hide an account or a partner with an ending balance at 0. "
1796
+ "If partners are filtered, debits and credits totals will not match the trial "
1797
+ "balance."
1798
+ msgstr ""
1799
+ "Bu filtreyi başlangıç bakiyesi 0 olan iş ortaklarını gizlemek için kullanın. "
1800
+ "Eğer iş ortakları filtrelenirse, borç alacak toplamları geçici mizanla "
1801
+ "tutmayacaktır."
1802
+
1803
+ #. module: account_financial_report
1804
+ #: model:ir.model.fields,help:account_financial_report.field_trial_balance_report_wizard__show_hierarchy
1805
+ msgid "Use when your account groups are hierarchical"
1806
+ msgstr "Hesap gruplarınız hiyerarşik ise kullanın"
1807
+
1808
+ #. module: account_financial_report
1809
+ #: model:ir.actions.act_window,name:account_financial_report.action_vat_report_wizard
1810
+ #: model:ir.actions.report,name:account_financial_report.action_print_report_vat_report_html
1811
+ #: model:ir.actions.report,name:account_financial_report.action_print_report_vat_report_qweb
1812
+ #: model:ir.ui.menu,name:account_financial_report.menu_vat_report_wizard
1813
+ msgid "VAT Report"
1814
+ msgstr "KDV Raporu"
1815
+
1816
+ #. module: account_financial_report
1817
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
1818
+ msgid "VAT Report -"
1819
+ msgstr "KDV Raporu -"
1820
+
1821
+ #. module: account_financial_report
1822
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.vat_report_wizard
1823
+ msgid "VAT Report Options"
1824
+ msgstr "KDV Raporu Se??enekleri"
1825
+
1826
+ #. module: account_financial_report
1827
+ #: model:ir.model,name:account_financial_report.model_vat_report_wizard
1828
+ msgid "VAT Report Wizard"
1829
+ msgstr "KDV Raporu Sihirbazı"
1830
+
1831
+ #. module: account_financial_report
1832
+ #: model:ir.actions.report,name:account_financial_report.action_report_vat_report_xlsx
1833
+ msgid "VAT Report XLSX"
1834
+ msgstr "KDV Raporu XLSX"
1835
+
1836
+ #. module: account_financial_report
1837
+ #. odoo-python
1838
+ #: code:addons/account_financial_report/report/vat_report_xlsx.py:0
1839
+ msgid "Vat Report"
1840
+ msgstr "KDV Raporu"
1841
+
1842
+ #. module: account_financial_report
1843
+ #: model:ir.model,name:account_financial_report.model_report_account_financial_report_vat_report
1844
+ msgid "Vat Report Report"
1845
+ msgstr "KDV Raporu Raporu"
1846
+
1847
+ #. module: account_financial_report
1848
+ #: model:ir.model,name:account_financial_report.model_report_a_f_r_report_vat_report_xlsx
1849
+ msgid "Vat Report XLSX Report"
1850
+ msgstr "KDV Raporu XLSX Raporu"
1851
+
1852
+ #. module: account_financial_report
1853
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.aged_partner_balance_wizard
1854
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
1855
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.journal_ledger_wizard
1856
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.open_items_wizard
1857
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.trial_balance_wizard
1858
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.vat_report_wizard
1859
+ msgid "View"
1860
+ msgstr "Görünüm"
1861
+
1862
+ #. module: account_financial_report
1863
+ #: model:ir.model.fields,help:account_financial_report.field_trial_balance_report_wizard__hide_account_at_0
1864
+ msgid ""
1865
+ "When this option is enabled, the trial balance will not display accounts "
1866
+ "that have initial balance = debit = credit = end balance = 0"
1867
+ msgstr ""
1868
+ "Bu seçenek açılırsa, geçici mizan başlangıç bakiyesi = borç = alacak = bitiş "
1869
+ "bakiyesi = 0 olan hesapları göstermeyecektir"
1870
+
1871
+ #. module: account_financial_report
1872
+ #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__with_account_name
1873
+ msgid "With Account Name"
1874
+ msgstr "Hesap Adıyla"
1875
+
1876
+ #. module: account_financial_report
1877
+ #. odoo-python
1878
+ #: code:addons/account_financial_report/report/trial_balance.py:0
1879
+ msgid "Without analytic account"
1880
+ msgstr "Analitik Hesap olmadan"
1881
+
1882
+ #. module: account_financial_report
1883
+ #. odoo-python
1884
+ #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
1885
+ #: code:addons/account_financial_report/report/open_items_xlsx.py:0
1886
+ #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
1887
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
1888
+ msgid "Yes"
1889
+ msgstr "Evet"
1890
+
1891
+ #. module: account_financial_report
1892
+ #. odoo-python
1893
+ #: code:addons/account_financial_report/report/general_ledger.py:0
1894
+ msgid "future"
1895
+ msgstr "gelecek"
1896
+
1897
+ #. module: account_financial_report
1898
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
1899
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.journal_ledger_wizard
1900
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.open_items_wizard
1901
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.trial_balance_wizard
1902
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.vat_report_wizard
1903
+ msgid "or"
1904
+ msgstr "veya"
1905
+
1906
+ #. module: account_financial_report
1907
+ #: model:ir.actions.report,name:account_financial_report.action_print_journal_ledger_wizard_qweb
1908
+ msgid "ournal Ledger"
1909
+ msgstr "Yevmiye Defteri"
1910
+
1911
+ #. module: account_financial_report
1912
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal
1913
+ msgid "to"
1914
+ msgstr "-"
1915
+
1916
+ #. module: account_financial_report
1917
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
1918
+ msgid "width: 16.21%;"
1919
+ msgstr "genişlik: 16.21%;"
1920
+
1921
+ #. module: account_financial_report
1922
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
1923
+ msgid "width: 23.24%;"
1924
+ msgstr "genişlik: 23.24%;"
1925
+
1926
+ #. module: account_financial_report
1927
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
1928
+ msgid "width: 23.78%;"
1929
+ msgstr "genişlik: 23.78%;"
1930
+
1931
+ #. module: account_financial_report
1932
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
1933
+ msgid "width: 31.35%;"
1934
+ msgstr "enişlik: 31.35%;"
1935
+
1936
+ #. module: account_financial_report
1937
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
1938
+ msgid "width: 38.92%;"
1939
+ msgstr "genişlik: 38.92%;"
1940
+
1941
+ #. module: account_financial_report
1942
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
1943
+ msgid "width: 8.11%;"
1944
+ msgstr "genişlik: 8.11%;"
1945
+
1946
+ #~ msgid "Last Modified on"
1947
+ #~ msgstr "Son D??zenleme"