@nocobase/client 2.0.0-alpha.6 → 2.0.0-alpha.60

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 (210) hide show
  1. package/.dumirc.ts +4 -4
  2. package/es/application/Application.d.ts +2 -1
  3. package/es/block-configs/BlockConfigsProvider.d.ts +1 -1
  4. package/es/block-provider/hooks/index.d.ts +2 -1
  5. package/es/block-provider/index.d.ts +4 -3
  6. package/es/collection-manager/Configuration/SetPrimaryKeyAction.d.ts +10 -0
  7. package/es/collection-manager/Configuration/components/CollectionCategory.d.ts +1 -1
  8. package/es/collection-manager/Configuration/components/CollectionFieldInterfaceTag.d.ts +1 -1
  9. package/es/collection-manager/Configuration/components/CollectionTemplateTag.d.ts +1 -1
  10. package/es/collection-manager/Configuration/components/Summary.d.ts +1 -1
  11. package/es/collection-manager/Configuration/interfaces.d.ts +1 -0
  12. package/es/collection-manager/action-hooks.d.ts +1 -1
  13. package/es/collection-manager/interfaces/color.d.ts +0 -1
  14. package/es/collection-manager/interfaces/index.d.ts +1 -0
  15. package/es/collection-manager/interfaces/input.d.ts +1 -0
  16. package/es/collection-manager/interfaces/integer.d.ts +1 -0
  17. package/es/collection-manager/interfaces/nanoid.d.ts +1 -0
  18. package/es/collection-manager/interfaces/number.d.ts +44 -0
  19. package/es/collection-manager/interfaces/snowflake-id.d.ts +117 -0
  20. package/es/collection-manager/interfaces/uuid.d.ts +1 -0
  21. package/es/collection-manager/templates/properties/index.d.ts +1 -0
  22. package/es/data-source/collection-field-interface/CollectionFieldInterface.d.ts +1 -0
  23. package/es/data-source/data-source/DataSourceManager.d.ts +1 -0
  24. package/es/flow/FlowModelRepository.d.ts +4 -0
  25. package/es/flow/FlowPage.d.ts +2 -1
  26. package/es/flow/actions/columnFixed.d.ts +9 -0
  27. package/es/flow/actions/customVariable.d.ts +9 -0
  28. package/es/flow/actions/displayFieldComponent.d.ts +1 -1
  29. package/es/flow/actions/index.d.ts +8 -1
  30. package/es/flow/actions/linkageRules.d.ts +4 -0
  31. package/es/flow/actions/navigateToURL.d.ts +9 -0
  32. package/es/flow/actions/openView.d.ts +2 -13
  33. package/es/flow/actions/refreshTargetBlocks.d.ts +9 -0
  34. package/es/flow/actions/setTargetDataScope.d.ts +10 -0
  35. package/es/flow/actions/showMessage.d.ts +9 -0
  36. package/es/flow/actions/showNotification.d.ts +9 -0
  37. package/es/flow/actions/titleField.d.ts +0 -1
  38. package/es/flow/common/Liquid.d.ts +33 -0
  39. package/es/flow/common/Markdown/Display.d.ts +9 -0
  40. package/es/flow/common/Markdown/Edit.d.ts +23 -0
  41. package/es/flow/common/Markdown/Markdown.d.ts +24 -0
  42. package/es/flow/{components/code-editor/completions/index.d.ts → common/Markdown/style.d.ts} +1 -2
  43. package/es/flow/common/Markdown/useCDN.d.ts +9 -0
  44. package/es/flow/components/BlockItemCard.d.ts +2 -0
  45. package/es/flow/components/FieldAssignValueInput.d.ts +1 -0
  46. package/es/flow/components/code-editor/extension/CodeEditorExtension.d.ts +14 -0
  47. package/es/flow/components/code-editor/extension/index.d.ts +9 -0
  48. package/es/flow/components/code-editor/hooks/useRunJSDocCompletions.d.ts +1 -1
  49. package/es/flow/components/code-editor/index.d.ts +6 -4
  50. package/es/flow/components/code-editor/jsxCompletion.d.ts +10 -0
  51. package/es/flow/components/code-editor/linter.d.ts +2 -0
  52. package/es/flow/components/code-editor/panels/RightExtra.d.ts +3 -1
  53. package/es/flow/components/code-editor/runjsCompletions.d.ts +3 -1
  54. package/es/flow/components/code-editor/types.d.ts +16 -0
  55. package/es/flow/components/filter/FilterContainer.d.ts +4 -4
  56. package/es/flow/components/filter/FilterGroup.d.ts +2 -1
  57. package/es/flow/components/filter/LinkageFilterItem.d.ts +1 -0
  58. package/es/flow/components/filter/VariableFilterItem.d.ts +4 -1
  59. package/es/flow/components/index.d.ts +1 -1
  60. package/es/flow/components/placeholders/BlockPlaceholder.d.ts +1 -0
  61. package/es/flow/flows/editMarkdownFlow.d.ts +10 -0
  62. package/es/flow/getViewDiffAndUpdateHidden.d.ts +1 -0
  63. package/es/flow/index.d.ts +5 -0
  64. package/es/flow/internal/utils/associationValueCoercion.d.ts +15 -0
  65. package/es/flow/internal/utils/enumOptionsUtils.d.ts +7 -7
  66. package/es/flow/internal/utils/operatorSchemaHelper.d.ts +15 -0
  67. package/es/flow/internal/utils/rebuildFieldSubModel.d.ts +33 -0
  68. package/es/flow/models/actions/AddChildActionModel.d.ts +15 -0
  69. package/es/flow/models/actions/AddNewActionModel.d.ts +1 -0
  70. package/es/flow/models/actions/EditActionModel.d.ts +1 -0
  71. package/es/flow/models/actions/{UpdateActionModel.d.ts → ExpandCollapseActionModel.d.ts} +8 -10
  72. package/es/flow/models/actions/FilterActionModel.d.ts +5 -59
  73. package/es/flow/models/actions/JSActionModel.d.ts +13 -0
  74. package/es/flow/models/actions/LinkActionModel.d.ts +18 -0
  75. package/es/flow/models/actions/UpdateRecordActionModel.d.ts +27 -0
  76. package/es/flow/models/actions/index.d.ts +5 -1
  77. package/es/flow/models/base/ActionModel.d.ts +15 -5
  78. package/es/flow/models/base/BlockModel.d.ts +4 -1
  79. package/es/flow/models/base/CollectionBlockModel.d.ts +12 -25
  80. package/es/flow/models/base/FieldModel.d.ts +6 -0
  81. package/es/flow/models/base/GridModel.d.ts +27 -4
  82. package/es/flow/models/base/PageModel/ChildPageModel.d.ts +1 -0
  83. package/es/flow/models/base/PageModel/PageModel.d.ts +3 -0
  84. package/es/flow/models/base/PageModel/PageTabModel.d.ts +2 -0
  85. package/es/flow/models/base/PageModel/RootPageModel.d.ts +2 -0
  86. package/es/flow/models/blocks/assign-form/AssignFormModel.d.ts +2 -0
  87. package/es/flow/models/blocks/details/DetailsBlockModel.d.ts +1 -0
  88. package/es/flow/models/blocks/details/DetailsCustomItemModel.d.ts +2 -2
  89. package/es/flow/models/blocks/details/DetailsGridModel.d.ts +1 -0
  90. package/es/flow/models/blocks/details/DetailsItemModel.d.ts +2 -2
  91. package/es/flow/models/blocks/details/DetailsJSFieldItemModel.d.ts +2 -2
  92. package/es/flow/models/blocks/filter-form/FieldModelSelect.d.ts +10 -0
  93. package/es/flow/models/blocks/filter-form/FilterFormBlockModel.d.ts +4 -0
  94. package/es/flow/models/blocks/filter-form/FilterFormCustomItemModel.d.ts +13 -0
  95. package/es/flow/models/blocks/filter-form/FilterFormGridModel.d.ts +1 -0
  96. package/es/flow/models/blocks/filter-form/FilterFormItemModel.d.ts +5 -4
  97. package/es/flow/models/blocks/filter-form/FilterFormSubmitActionModel.d.ts +1 -1
  98. package/es/flow/models/blocks/filter-form/SourceCascader.d.ts +10 -0
  99. package/es/flow/models/blocks/filter-form/fields/FieldComponentProps.d.ts +13 -0
  100. package/es/flow/models/blocks/filter-form/fields/FilterFormCustomFieldModel.d.ts +36 -0
  101. package/es/flow/models/blocks/filter-form/fields/date-time/DateTimeFilterFieldModel.d.ts +8 -0
  102. package/es/flow/models/blocks/filter-form/fields/date-time/index.d.ts +1 -0
  103. package/es/flow/models/blocks/filter-form/fields/index.d.ts +1 -0
  104. package/es/flow/models/blocks/filter-form/index.d.ts +1 -0
  105. package/es/flow/models/blocks/filter-manager/flow-actions/customizeFilterRender.d.ts +10 -0
  106. package/es/flow/models/blocks/filter-manager/flow-actions/index.d.ts +2 -0
  107. package/es/flow/models/blocks/filter-manager/flow-actions/operatorComponentProps.d.ts +10 -0
  108. package/es/flow/models/blocks/form/CreateFormModel.d.ts +2 -1
  109. package/es/flow/models/blocks/form/EditFormModel.d.ts +1 -0
  110. package/es/flow/models/blocks/form/FormBlockModel.d.ts +13 -2
  111. package/es/flow/models/blocks/form/FormGridModel.d.ts +1 -0
  112. package/es/flow/models/blocks/form/FormItemModel.d.ts +1 -1
  113. package/es/flow/models/blocks/form/FormJSFieldItemModel.d.ts +1 -1
  114. package/es/flow/models/blocks/form/submitHandler.d.ts +9 -0
  115. package/es/flow/models/blocks/js-block/JSBlock.d.ts +1 -0
  116. package/es/flow/models/blocks/table/JSColumnModel.d.ts +0 -1
  117. package/es/flow/models/blocks/table/TableActionsColumnModel.d.ts +0 -1
  118. package/es/flow/models/blocks/table/TableBlockModel.d.ts +15 -2
  119. package/es/flow/models/blocks/table/TableColumnModel.d.ts +9 -2
  120. package/es/flow/models/blocks/table/TableJSFieldItemModel.d.ts +2 -2
  121. package/es/flow/models/blocks/table/utils.d.ts +9 -0
  122. package/es/flow/models/blocks/utils/transformChildrenToJS.d.ts +42 -0
  123. package/es/flow/models/fields/AssociationFieldModel/AssociationFieldModel.d.ts +1 -0
  124. package/es/flow/models/fields/AssociationFieldModel/CascadeSelectFieldModel.d.ts +29 -0
  125. package/es/flow/models/fields/AssociationFieldModel/RecordPickerFieldModel.d.ts +2 -0
  126. package/es/flow/models/fields/AssociationFieldModel/RecordSelectFieldModel.d.ts +8 -2
  127. package/es/flow/models/fields/AssociationFieldModel/SubFormFieldModel.d.ts +7 -0
  128. package/es/flow/models/fields/AssociationFieldModel/SubTableFieldModel/SubTableColumnModel.d.ts +3 -3
  129. package/es/flow/models/fields/AssociationFieldModel/SubTableFieldModel/index.d.ts +2 -0
  130. package/es/flow/models/fields/AssociationFieldModel/index.d.ts +1 -0
  131. package/es/flow/models/fields/AssociationFieldModel/recordSelectShared.d.ts +49 -0
  132. package/es/flow/models/fields/ClickableFieldModel.d.ts +3 -2
  133. package/es/flow/models/fields/DisplayAssociationField/DisplaySubItemFieldModel.d.ts +1 -0
  134. package/es/flow/models/fields/DisplayAssociationField/DisplaySubListFieldModel.d.ts +1 -0
  135. package/es/flow/models/fields/DisplayAssociationField/DisplaySubTableFieldModel.d.ts +3 -1
  136. package/es/flow/models/fields/DisplayEnumFieldModel.d.ts +1 -0
  137. package/es/flow/models/fields/DisplayJSONFieldModel.d.ts +3 -3
  138. package/es/flow/models/fields/DisplayNumberFieldModel.d.ts +4 -2
  139. package/es/flow/models/fields/DisplayTextFieldModel.d.ts +1 -1
  140. package/es/flow/models/fields/JSEditableFieldModel.d.ts +8 -0
  141. package/es/flow/models/fields/JSFieldModel.d.ts +1 -1
  142. package/es/flow/models/fields/JSItemModel.d.ts +1 -2
  143. package/es/flow/models/fields/JsonFieldModel.d.ts +1 -0
  144. package/es/flow/models/fields/MarkdownItemModel.d.ts +1 -0
  145. package/es/flow/models/fields/TimeFieldModel.d.ts +0 -1
  146. package/es/flow/models/fields/mobile-components/MobileDatePicker.d.ts +10 -0
  147. package/es/flow/models/fields/mobile-components/MobileLazySelect.d.ts +11 -0
  148. package/es/flow/{components/JsonInput.d.ts → models/fields/mobile-components/MobileSelect.d.ts} +1 -1
  149. package/es/flow/models/fields/mobile-components/MobileTimePicker.d.ts +10 -0
  150. package/es/flow/resolveViewParamsToViewList.d.ts +4 -2
  151. package/es/flow/{components/decorator → utils}/index.d.ts +1 -1
  152. package/es/global-theme/type.d.ts +1 -0
  153. package/es/hooks/useFullscreenOverlay.d.ts +20 -0
  154. package/es/index.d.ts +1 -0
  155. package/es/index.mjs +25991 -18546
  156. package/es/modules/menu/FlowPageMenuItem.d.ts +1 -3
  157. package/es/modules/menu/index.d.ts +9 -0
  158. package/es/nocobase-buildin-plugin/plugins/LocalePlugin.d.ts +0 -1
  159. package/es/schema-component/antd/association-select/ReadPretty.d.ts +1 -1
  160. package/es/schema-component/antd/filter/FilterItem.d.ts +1 -1
  161. package/es/schema-component/antd/input/EllipsisWithTooltip.d.ts +1 -0
  162. package/es/schema-component/antd/linkageFilter/LinkageFilterItem.d.ts +1 -1
  163. package/es/schema-component/antd/remote-select/RemoteSelect.d.ts +1 -3
  164. package/es/schema-component/antd/table/Table.Column.ActionBar.d.ts +1 -1
  165. package/es/schema-component/antd/table/Table.Void.d.ts +1 -0
  166. package/es/schema-component/antd/table-v2/Table.Column.ActionBar.d.ts +1 -1
  167. package/es/schema-component/antd/upload/shared.d.ts +1 -1
  168. package/es/schema-settings/LinkageRules/LinkageRuleAction.d.ts +2 -2
  169. package/es/schema-settings/LinkageRules/components/BlockLinkageRuleAction.d.ts +1 -1
  170. package/es/schema-settings/LinkageRules/components/FieldStyleLinkageRuleAction.d.ts +1 -1
  171. package/lib/index-C3fHjsMw-CiyrLQdu.js +2237 -0
  172. package/lib/index.js +449 -293
  173. package/lib/locale/cron/zh-CN.json +33 -0
  174. package/lib/locale/cron/zh-TW.json +33 -0
  175. package/lib/locale/de-DE.json +1545 -0
  176. package/lib/locale/en-US.json +1553 -0
  177. package/lib/locale/es-ES.json +1573 -0
  178. package/lib/locale/fr-FR.json +1549 -0
  179. package/lib/locale/hu-HU.json +1545 -0
  180. package/lib/locale/id-ID.json +1546 -0
  181. package/lib/locale/{it-IT.js → it-IT.json} +1496 -1054
  182. package/lib/locale/ja-JP.json +1564 -0
  183. package/lib/locale/ko-KR.json +1558 -0
  184. package/lib/locale/{nl-NL.js → nl-NL.json} +1493 -1018
  185. package/lib/locale/pt-BR.json +1617 -0
  186. package/lib/locale/ru-RU.json +1551 -0
  187. package/lib/locale/tr-TR.json +1553 -0
  188. package/lib/locale/uk-UA.json +1570 -0
  189. package/lib/locale/vi-VN.json +1545 -0
  190. package/lib/locale/zh-CN.json +1571 -0
  191. package/lib/locale/zh-TW.json +1549 -0
  192. package/package.json +10 -7
  193. package/es/flow/components/code-editor/snippets/loader.d.ts +0 -19
  194. package/es/flow/components/decorator/injectable.d.ts +0 -19
  195. package/lib/index-C3fHjsMw-BwUYFnGr.js +0 -2081
  196. package/lib/locale/cron/zh-CN.js +0 -33
  197. package/lib/locale/cron/zh-TW.js +0 -33
  198. package/lib/locale/de-DE.js +0 -904
  199. package/lib/locale/en-US.js +0 -996
  200. package/lib/locale/es-ES.js +0 -824
  201. package/lib/locale/fr-FR.js +0 -844
  202. package/lib/locale/ja-JP.js +0 -1062
  203. package/lib/locale/ko-KR.js +0 -935
  204. package/lib/locale/pt-BR.js +0 -804
  205. package/lib/locale/ru-RU.js +0 -633
  206. package/lib/locale/tr-TR.js +0 -631
  207. package/lib/locale/uk-UA.js +0 -847
  208. package/lib/locale/zh-CN.js +0 -1396
  209. package/lib/locale/zh-TW.js +0 -938
  210. /package/es/flow/{internal/utils → utils}/blockUtils.d.ts +0 -0
@@ -0,0 +1,1553 @@
1
+ {
2
+ "\"Content-Type\" only support \"application/json\", and no need to specify": "\"Content-Type\" only support \"application/json\", and no need to specify",
3
+ "(Fields only)": "(Sadece alanlar)",
4
+ "(currently not effective in sub-forms/sub-tables)": "(currently not effective in sub-forms/sub-tables)",
5
+ "12 hour": "12 saat",
6
+ "24 hour": "24 saat",
7
+ "<": "<",
8
+ "=": "=",
9
+ ">": ">",
10
+ "ACL": "ACL",
11
+ "ASC": "Artan",
12
+ "Access": "Erişim",
13
+ "Access control": "Access control",
14
+ "Accessible": "Erişilebilir",
15
+ "Accuracy": "Accuracy",
16
+ "Action": "Action",
17
+ "Action after successful submission": "Action after successful submission",
18
+ "Action column": "İşlem sütunu",
19
+ "Action display name": "İşlem görünen adı",
20
+ "Action logs": "Eylem günlükleri",
21
+ "Action name": "İşlem adı",
22
+ "Action on existing records": "Var olan kayıtlarda işlem",
23
+ "Action on new records": "Yeni kayıtlarda işlem",
24
+ "Action permission": "İşlem yetkisi",
25
+ "Action permissions": "İşlem yetkileri",
26
+ "Action scope": "İşlem kapsamı",
27
+ "Action type": "İşlem Türü",
28
+ "Actions": "İşlemler",
29
+ "Actions column": "Actions column",
30
+ "Add": "Add",
31
+ "Add & Update": "Add & Update",
32
+ "Add Markdown": "Add Markdown",
33
+ "Add action": "Add action",
34
+ "Add attach": "Add attach",
35
+ "Add block": "Blok ekle",
36
+ "Add card": "Kart Ekle",
37
+ "Add category": "Add category",
38
+ "Add child": "Add child",
39
+ "Add child route": "Alt rota ekle",
40
+ "Add condition": "Koşul ekle",
41
+ "Add condition group": "Koşul grubu ekle",
42
+ "Add event flow": "Add event flow",
43
+ "Add exportable field": "Dışa aktarılabilir alan ekle",
44
+ "Add field": "Alan ekle",
45
+ "Add filter": "Filtre ekle",
46
+ "Add filter group": "Filtre grubu ekle",
47
+ "Add group": "Grup ekle",
48
+ "Add link": "Link ekle",
49
+ "Add linkage rule": "Add linkage rule",
50
+ "Add menu item": "Menüye öğe ekle",
51
+ "Add new": "Yeni Ekle",
52
+ "Add new mode": "Add new mode",
53
+ "Add option": "Seçenek ekle",
54
+ "Add page": "Sayfa Ekle",
55
+ "Add parameter": "Add parameter",
56
+ "Add plugin": "Add plugin",
57
+ "Add property": "Add property",
58
+ "Add record": "Kayıt Ekle",
59
+ "Add request header": "Add request header",
60
+ "Add role": "Rol ekle",
61
+ "Add rule": "Add rule",
62
+ "Add sort field": "Sıralama alanı ekle",
63
+ "Add step": "Add step",
64
+ "Add tab": "Sekme ekle",
65
+ "Add target block": "Add target block",
66
+ "Add template": "Şablon ekle",
67
+ "Add text": "Metin ekle",
68
+ "Add type": "Tür ekle",
69
+ "Add validation rule": "Add validation rule",
70
+ "Add variable": "Add variable",
71
+ "Add {{type}} after \"{{title}}\"": "\"{{title}}\" başlığından sonra {{type}} ekle",
72
+ "Add {{type}} before \"{{title}}\"": "\"{{title}}\" başlığından önce {{type}} ekle",
73
+ "Add {{type}} in \"{{title}}\"": "\"{{title}}\" başlığının içine {{type}} ekle",
74
+ "Advanced type": "Gelişmiş",
75
+ "After": "Sonra",
76
+ "After change": "Değiştirdikten sonra",
77
+ "After clicking the custom button, the following field values will be assigned according to the following form.": "Özel butona tıklandıktan sonra aşağıdaki forma göre aşağıdaki alan değerleri atanacaktır.",
78
+ "After clicking the custom button, the following fields of the current record will be saved according to the following form.": "Özel butona tıklandıktan sonra mevcut kaydın aşağıdaki alanları aşağıdaki forma göre kaydedilecektir.",
79
+ "After hiding, this menu will no longer appear in the menu bar. To show it again, you need to go to the route management page to configure it.": "Gizlendikten sonra, bu menü artık menü çubuğunda görünmeyecektir. Tekrar görüntülemek için, yönlendirme yönetimi sayfasına gidip onu yapılandırmanız gerekecektir.",
80
+ "After hiding, this tab will no longer appear in the tab bar. To show it again, you need to go to the route management page to set it.": "Gizlendikten sonra, bu sekme artık sekme çubuğunda görünmeyecek. Onu tekrar göstermek için, rotayı yönetim sayfasına gidip ayarlamanız gerekiyor.",
81
+ "After successful bulk update": "After successful bulk update",
82
+ "After successful request": "Başarılı istekten sonra",
83
+ "After successful save": "Başarılı kaydetmeden sonra",
84
+ "After successful submission": "Başarılı gönderimden sonra",
85
+ "After successful submission, the selected data blocks will be automatically refreshed.": "Başarılı bir şekilde gönderildikten sonra, seçilen veri blokları otomatik olarak yenilenecektir.",
86
+ "After successful update": "Başarılı güncellemeden sonra",
87
+ "Agenda": "Ajanda",
88
+ "All": "All",
89
+ "All collections": "All collections",
90
+ "All collections use general action permissions by default; permission configured individually will override the default one.": "Tüm koleksiyonlar, varsayılan olarak genel eylem izinlerini kullanır; ayrı ayrı yapılandırılan izin, varsayılanı geçersiz kılar.",
91
+ "All events": "All events",
92
+ "All plugin settings": "All plugin settings",
93
+ "All records": "Tüm kayıtlar",
94
+ "Allow": "İzin ver",
95
+ "Allow access": "Erişime izin ver",
96
+ "Allow action": "İşleme izin ver",
97
+ "Allow add new": "Allow add new",
98
+ "Allow add new data": "Allow add new data",
99
+ "Allow add new, update and delete actions": "Allow add new, update and delete actions",
100
+ "Allow adding records to the current collection": "Allow adding records to the current collection",
101
+ "Allow disassociation": "Allow disassociation",
102
+ "Allow dissociate": "Allow dissociate",
103
+ "Allow linking to multiple records": "Birden çok kayda bağlanmaya izin ver",
104
+ "Allow list": "Allow list",
105
+ "Allow multiple": "Birden çok izin ver",
106
+ "Allow multiple selection": "Çoklu seçim izni",
107
+ "Allow relative URIs": "Allow relative URIs",
108
+ "Allow selection of existing file": "Allow selection of existing file",
109
+ "Allow selection of existing records": "Allow selection of existing records",
110
+ "Allow sign up": "Kayıt olmaya izin ver",
111
+ "Allow to configure plugins": "Allow to configure plugins",
112
+ "Allow to desgin pages": "Allow to desgin pages",
113
+ "Allow to manage plugins": "Allow to manage plugins",
114
+ "Allow uploading multiple files": "Allow uploading multiple files",
115
+ "Allows configuration of the whole system, including UI, collections, permissions, etc.": "UI, koleksiyonlar, izinler vb. dahil olmak üzere tüm sistemin yapılandırılmasına izin verir.",
116
+ "Allows to clear cache, reboot application": "Allows to clear cache, reboot application",
117
+ "Allows to configure interface": "Allows to configure interface",
118
+ "Allows to configure plugins": "Allows to configure plugins",
119
+ "Allows to install, activate, disable plugins": "Allows to install, activate, disable plugins",
120
+ "Allows unencoded square brackets inside the query string": "Allows unencoded square brackets inside the query string",
121
+ "Alphabet": "Alphabet",
122
+ "Any": "Any",
123
+ "App error": "App error",
124
+ "Application reloading": "Application reloading",
125
+ "Are you sure to delete this plugin?": "Bu eklentiyi silmek istediğinizden emin misiniz?",
126
+ "Are you sure to disable this plugin?": "Are you sure to disable this plugin?",
127
+ "Are you sure you don't want to save?": "kaydetmek istemediğinizden emin misiniz??",
128
+ "Are you sure you want to clear cache ?": "Are you sure you want to clear cache ?",
129
+ "Are you sure you want to delete it?": "Silmek istediğinizden emin misiniz?",
130
+ "Are you sure you want to delete this variable?": "Are you sure you want to delete this variable?",
131
+ "Are you sure you want to disassociate it?": "Bağlantıyı kesmek istediğinizden emin misiniz?",
132
+ "Are you sure you want to hide these routes in menu?": "Bu rotaları menüde gizlemek istediğinizden emin misiniz?",
133
+ "Are you sure you want to hide this menu?": "Bu menüyü gizlemek istediğinizden emin misiniz?",
134
+ "Are you sure you want to hide this tab?": "Bu sekmeyi gizlemek istediğinizden emin misiniz?",
135
+ "Are you sure you want to load {{count}} collection(s)?": "Are you sure you want to load {{count}} collection(s)?",
136
+ "Are you sure you want to perform the Custom request action": "Are you sure you want to perform the Custom request action",
137
+ "Are you sure you want to perform the Refresh action?": "Are you sure you want to perform the Refresh action?",
138
+ "Are you sure you want to perform the Submit action?": "Are you sure you want to perform the Submit action?",
139
+ "Are you sure you want to perform the Trigger workflow action?": "Are you sure you want to perform the Trigger workflow action?",
140
+ "Are you sure you want to perform the Update record action?": "Are you sure you want to perform the Update record action?",
141
+ "Are you sure you want to perform the {{title}} action?": "Are you sure you want to perform the {{title}} action?",
142
+ "Are you sure you want to save it?": "Are you sure you want to save it?",
143
+ "Are you sure you want to show these routes in menu?": "Bu rotaları menüde göstermek istediğinizden emin misiniz?",
144
+ "Area": "Alan",
145
+ "Area chart": "Alan grafiği",
146
+ "Assign data scope for the template": "Assign data scope for the template",
147
+ "Assign field values": "Alan değerleri ata",
148
+ "Assign value": "Assign value",
149
+ "Assignment mode": "Assignment mode",
150
+ "Associate": "Associate",
151
+ "Associated records": "İlişkili kayıtlar",
152
+ "Association field settings": "Association field settings",
153
+ "Association fields": "Association fields",
154
+ "Association fields filter": "Association fields filter",
155
+ "Association select settings": "Association select settings",
156
+ "Association table settings": "Association table settings",
157
+ "Association tag settings": "Association tag settings",
158
+ "AssociationField component": "AssociationField component",
159
+ "Attempts to encode the URI using encodeURI before validating it again": "Attempts to encode the URI using encodeURI before validating it again",
160
+ "Audit logs": "Denetim günlükleri",
161
+ "Authentication": "Authentication",
162
+ "Author": "Yazar",
163
+ "Auto": "Auto",
164
+ "Auto focus": "Auto focus",
165
+ "Auto increment": "Auto increment",
166
+ "AutoGenId": "Auto-generated ID field",
167
+ "Automatic close": "Otomatik kapat",
168
+ "Automatically drop objects that depend on the collection (such as views), and in turn all objects that depend on those objects": "Automatically drop objects that depend on the collection (such as views), and in turn all objects that depend on those objects",
169
+ "Automatically generate default values": "Automatically generate default values",
170
+ "Automatically remove heading and tailing spaces": "Automatically remove heading and tailing spaces",
171
+ "Automatically update timestamp on update": "Automatically update timestamp on update",
172
+ "Automatically update timestamp to the current server time on update": "Automatically update timestamp to the current server time on update",
173
+ "Available \"target blocks\" are all data blocks on the current page": "Available \"target blocks\" are all data blocks on the current page",
174
+ "Available Collections": "Available Collections",
175
+ "Background Color": "Background Color",
176
+ "Bar chart": "Grafik çubuğu",
177
+ "Base": "Base",
178
+ "Basic": "Temel",
179
+ "Basic configuration": "Basic configuration",
180
+ "Before": "Önce",
181
+ "Before change": "Değiştirmeden önce",
182
+ "Before render": "Before render",
183
+ "Blank block": "Boş blok",
184
+ "Block": "Block",
185
+ "Block Linkage rules": "Block Linkage rules",
186
+ "Block linkage rules": "Block linkage rules",
187
+ "Block list": "Block list",
188
+ "Block template": "Blok şablonu",
189
+ "Block templates": "Blok şablonları",
190
+ "Block title": "Blok başlığı",
191
+ "Block type": "Blok türü",
192
+ "Blocks": "Blocks",
193
+ "Blue": "Mavi",
194
+ "Bookmark": "Bookmark",
195
+ "Boolean": "Boolean",
196
+ "Bottom left": "Bottom left",
197
+ "Bottom right": "Bottom right",
198
+ "Built-in": "Built-in",
199
+ "Bulk edit": "Bulk edit",
200
+ "Bulk enable": "Bulk enable",
201
+ "Bulk update": "Bulk update",
202
+ "Button background color": "Buton arkaplan rengi",
203
+ "Button icon": "Buton ikonu",
204
+ "Button settings": "Button settings",
205
+ "Button title": "Buton etiketi",
206
+ "Button type": "Button type",
207
+ "Calculation engine": "Calculation engine",
208
+ "Calendar": "Takvim",
209
+ "Calendar Month": "Calendar Month",
210
+ "Calendar Year": "Calendar Year",
211
+ "Calendar collection": "Calendar collection",
212
+ "Calendar week": "Calendar week",
213
+ "Cancel": "İptal",
214
+ "Cannot find the model instance with UID": "Cannot find the model instance with UID",
215
+ "Card settings": "Card settings",
216
+ "Cascade Select": "Cascade Select",
217
+ "Cascade select": "Cascade select",
218
+ "Cascade select settings": "Cascade select settings",
219
+ "Categories": "Categories",
220
+ "Category name": "Category name",
221
+ "Center": "Center",
222
+ "Change password": "Şifre değiştir",
223
+ "Changed to": "Changed to",
224
+ "Changelog": "Değişiklik günlüğü",
225
+ "Chart blocks": "Grafik blokları",
226
+ "Chart config": "Grafik yapılandırması",
227
+ "Chart title": "Grafik başlığı",
228
+ "Chart type": "Grafik türü",
229
+ "Check strength": "Check strength",
230
+ "Checkbox": "Checkbox",
231
+ "Checkbox group": "Checkbox grup",
232
+ "Children": "Children",
233
+ "China region": "Çin bölgesi",
234
+ "Choices": "Seçimler",
235
+ "Choices fields": "Choices fields",
236
+ "City": "Şehir",
237
+ "Classic page (v1)": "Classic page (v1)",
238
+ "Clear": "Clear",
239
+ "Clear cache": "Clear cache",
240
+ "Clear default value": "Varsayılan değeri temizle",
241
+ "Click": "Click",
242
+ "Click event": "Click event",
243
+ "Click or drag file to this area to upload": "Dosyayı yüklemek için buraya tıklayın veya sürükleyin",
244
+ "Click the \"UI Editor\" icon in the upper right corner to enter the UI Editor mode": "Kullanıcı arayüzü düzenleyici moduna girmek için sağ üst köşedeki \"Kullanıcı Arayüzü Düzenleyici\" simgesine tıklayın",
245
+ "Clicked row record": "Clicked row record",
246
+ "Close": "Kapat",
247
+ "Collapse": "Daralt",
248
+ "Collapse all": "Collapse all",
249
+ "Collapse button": "Collapse",
250
+ "Collapse settings": "Collapse settings",
251
+ "Collapsed rows": "Collapsed rows",
252
+ "Collection": "Koleksiyonlar",
253
+ "Collection category": "Collection category",
254
+ "Collection display name": "Koleksiyon görünen adı",
255
+ "Collection fields": "Collection fields",
256
+ "Collection manager": "Collection manager",
257
+ "Collection name": "Koleksiyon adı",
258
+ "Collection selector": "Collection selector",
259
+ "Collection template": "Collection template",
260
+ "Collections": "Collections",
261
+ "Collections & Fields": "Koleksiyonlar & Alanlar",
262
+ "Colon": "Colon",
263
+ "Color": "Renk",
264
+ "Column": "Column",
265
+ "Column Settings": "Sütun ayarları",
266
+ "Column chart": "Sütun grafiği",
267
+ "Column title": "Sütun başlığı",
268
+ "Column width": "Column width",
269
+ "Coming soon...": "Coming soon...",
270
+ "Compact theme": "Compact theme",
271
+ "Comparision": "Karşılaştırma",
272
+ "Comparison": "Comparison",
273
+ "Component properties": "Component properties",
274
+ "Compressed file url": "Sıkıştırılmış dosya bağlantısı",
275
+ "Computer": "Computer",
276
+ "Condition": "Condition",
277
+ "Conditional assignment": "Conditional assignment",
278
+ "Configuration saved": "Configuration saved",
279
+ "Configuration:": "Configuration:",
280
+ "Configure": "Yapılandır",
281
+ "Configure actions": "İşlemleri yapılandır",
282
+ "Configure calendar": "Takvimi yapılandır",
283
+ "Configure columns": "Sütunları yapılandır",
284
+ "Configure field": "Configure field",
285
+ "Configure fields": "Alanları düzenle",
286
+ "Configure fields of {{title}}": "{{title}} alanlarını düzenle",
287
+ "Configure page": "Configure page",
288
+ "Configure permission": "İzin yapılandırma",
289
+ "Configure permissions": "Yetkileri yapılandır",
290
+ "Configure rows": "Configure rows",
291
+ "Configure the rows and columns of the grid.": "Configure the rows and columns of the grid.",
292
+ "Configure the sizes of each row. The value is an array of numbers representing the width of each column in the row.": "Configure the sizes of each row. The value is an array of numbers representing the width of each column in the row.",
293
+ "Confirm": "Confirm",
294
+ "Confirm Load Collections": "Confirm Load Collections",
295
+ "Confirm password": "Şifre doğrulama",
296
+ "Confirmation": "Confirmation",
297
+ "Connect data blocks": "Veri bloklarını bağla",
298
+ "Connect fields": "Connect fields",
299
+ "Connect to database view": "Connect to database view",
300
+ "Console": "Console",
301
+ "Constant": "Constant",
302
+ "Constant value": "Sabit değer",
303
+ "Contain": "Contain",
304
+ "Content": "Content",
305
+ "Content overflow display mode": "Content overflow display mode",
306
+ "Content settings": "Content settings",
307
+ "Controls whether the current document is allowed to autoplay media requested through the HTMLMediaElement interface. When this policy is disabled and there were no user gestures, the Promise returned by HTMLMediaElement.play() will reject with a NotAllowedError DOMException. The autoplay attribute on <audio> and <video> elements will be ignored.": "Controls whether the current document is allowed to autoplay media requested through the HTMLMediaElement interface. When this policy is disabled and there were no user gestures, the Promise returned by HTMLMediaElement.play() will reject with a NotAllowedError DOMException. The autoplay attribute on <audio> and <video> elements will be ignored.",
308
+ "Controls whether the current document is allowed to set document.domain. When this policy is disabled, attempting to set document.domain will fail and cause a SecurityError DOMException to be thrown.": "Controls whether the current document is allowed to set document.domain. When this policy is disabled, attempting to set document.domain will fail and cause a SecurityError DOMException to be thrown.",
309
+ "Controls whether the current document is allowed to use Element.requestFullscreen(). When this policy is disabled, the returned Promise rejects with a TypeError.": "Controls whether the current document is allowed to use Element.requestFullscreen(). When this policy is disabled, the returned Promise rejects with a TypeError.",
310
+ "Controls whether the current document is allowed to use audio input devices. When this policy is disabled, the Promise returned by MediaDevices.getUserMedia() will reject with a NotAllowedError DOMException.": "Controls whether the current document is allowed to use audio input devices. When this policy is disabled, the Promise returned by MediaDevices.getUserMedia() will reject with a NotAllowedError DOMException.",
311
+ "Controls whether the current document is allowed to use the Encrypted Media Extensions API (EME). When this policy is disabled, the Promise returned by Navigator.requestMediaKeySystemAccess() will reject with a SecurityError DOMException.": "Controls whether the current document is allowed to use the Encrypted Media Extensions API (EME). When this policy is disabled, the Promise returned by Navigator.requestMediaKeySystemAccess() will reject with a SecurityError DOMException.",
312
+ "Controls whether the current document is allowed to use the Geolocation Interface. When this policy is disabled, calls to getCurrentPosition() and watchPosition() will cause those functions callbacks to be invoked with a GeolocationPositionError code of PERMISSION_DENIED.": "Controls whether the current document is allowed to use the Geolocation Interface. When this policy is disabled, calls to getCurrentPosition() and watchPosition() will cause those functions callbacks to be invoked with a GeolocationPositionError code of PERMISSION_DENIED.",
313
+ "Controls whether the current document is allowed to use the Payment Request API. When this policy is enabled, the PaymentRequest() constructor will throw a SecurityError DOMException.": "Controls whether the current document is allowed to use the Payment Request API. When this policy is enabled, the PaymentRequest() constructor will throw a SecurityError DOMException.",
314
+ "Controls whether the current document is allowed to use the Web MIDI API. When this policy is disabled, the Promise returned by Navigator.requestMIDIAccess() will reject with a SecurityError DOMException.": "Controls whether the current document is allowed to use the Web MIDI API. When this policy is disabled, the Promise returned by Navigator.requestMIDIAccess() will reject with a SecurityError DOMException.",
315
+ "Controls whether the current document is allowed to use video input devices. When this policy is disabled, the Promise returned by getUserMedia() will reject with a NotAllowedError DOMException.": "Controls whether the current document is allowed to use video input devices. When this policy is disabled, the Promise returned by getUserMedia() will reject with a NotAllowedError DOMException.",
316
+ "Convert reference to duplicate": "Referansı kopyaya dönüştür",
317
+ "Convert template to duplicate": "Convert template to duplicate",
318
+ "Copy": "Copy",
319
+ "Copy into the form and continue to fill in": "Copy into the form and continue to fill in",
320
+ "Cover": "Cover",
321
+ "Create": "Create",
322
+ "Create an account": "Hesap oluştur",
323
+ "Create calendar block": "Takvim bloğu oluştur",
324
+ "Create collection": "Koleksiyon oluştur",
325
+ "Create form": "Form oluştur",
326
+ "Create gantt block": "Create gantt block",
327
+ "Create inverse field in the target collection": "Create inverse field in the target collection",
328
+ "Create kanban block": "Kanban bloğu oluştur",
329
+ "Create template": "Şablon oluştur",
330
+ "Created at": "Oluşturulma zamanı",
331
+ "Created by": "Oluşturan kişi",
332
+ "CreatedAt": "CreatedAt",
333
+ "CreatedBy": "CreatedBy",
334
+ "Current action": "Current action",
335
+ "Current block": "Current block",
336
+ "Current collection": "Seçili koleksiyon",
337
+ "Current device type": "Current device type",
338
+ "Current form": "Current form",
339
+ "Current object": "Current object",
340
+ "Current popup": "Current popup",
341
+ "Current popup parent record": "Current popup parent record",
342
+ "Current popup record": "Açılır pencere kaydı",
343
+ "Current record": "Seçili kayıt",
344
+ "Current record blocks": "Mevcut kayıt blokları",
345
+ "Current role": "Seçili rol",
346
+ "Current time": "Current time",
347
+ "Current user": "Seçili kullanıcı",
348
+ "Custom": "Custom",
349
+ "Custom Title": "Özel Başlık",
350
+ "Custom column name": "Özel sütun adı",
351
+ "Custom column title": "Özel sütun başlığı",
352
+ "Custom field": "Custom field",
353
+ "Custom field display name": "Özel alan görünen adı",
354
+ "Custom name": "Özel isim",
355
+ "Custom request": "Özel istek",
356
+ "Custom title": "Custom title",
357
+ "Custom variable": "Custom variable",
358
+ "Customize": "Özelleştir",
359
+ "Cyan": "Camgöbeği",
360
+ "DESC": "Azalan",
361
+ "Daily": "Daily",
362
+ "Danger action": "Danger action",
363
+ "Danger red": "Tehlikeli kırmızı",
364
+ "Dashed": "Dashed",
365
+ "Data Model": "Data Model",
366
+ "Data blocks": "Veri Blokları",
367
+ "Data changes": "Veri değişiklikleri",
368
+ "Data fields": "Veri alanları",
369
+ "Data loading mode": "Veri yükleme modu",
370
+ "Data model": "Data model",
371
+ "Data model tools": "Data model tools",
372
+ "Data refreshed successfully": "Data refreshed successfully",
373
+ "Data scope": "Veri kapsamı",
374
+ "Data source": "veri kaynağı",
375
+ "Data source key": "Data source key",
376
+ "Data source permissions": "Data source permissions",
377
+ "Data sources": "Data sources",
378
+ "Data template": "Veri şablonu",
379
+ "Data will be updated": "Data will be updated",
380
+ "DataSource": "Veri Kaynağı",
381
+ "Date": "Tarih",
382
+ "Date & Time": "Tarih & Saat",
383
+ "Date display format": "Date display format",
384
+ "Date format": "Tarih formatı",
385
+ "Date range limit": "Date range limit",
386
+ "Date scope": "Date scope",
387
+ "Date variables": "Date variables",
388
+ "Date variables(Deprecated)": "Date variables(Deprecated)",
389
+ "DateOnly": "DateOnly",
390
+ "Datetime": "Datetime",
391
+ "Datetime (with time zone)": "Datetime (with time zone)",
392
+ "Datetime (without time zone)": "Datetime (without time zone)",
393
+ "Datetime settings": "Datetime settings",
394
+ "Day": "Gün",
395
+ "Day before yesterday": "Day before yesterday",
396
+ "Day/Month/Year": "Gün/Ay/Yıl",
397
+ "Default": "Varsayılan",
398
+ "Default collapse": "Default collapse",
399
+ "Default collapsed": "Default collapsed",
400
+ "Default expand all": "Default expand all",
401
+ "Default filter conditions": "Default filter conditions",
402
+ "Default is the ID field": "Varsayılan ID alanıdır",
403
+ "Default operator": "Default operator",
404
+ "Default role": "Varsayılan rol",
405
+ "Default sorting": "Default sorting",
406
+ "Default theme": "Default theme",
407
+ "Default title for each record": "Her kayıt için varsayılan başlık",
408
+ "Default value": "Default value",
409
+ "Default value to current server time": "Default value to current server time",
410
+ "Default value to current time": "Default value to current time",
411
+ "Delete": "Sil",
412
+ "Delete Event": "Delete Event",
413
+ "Delete action": "İşlemi sil",
414
+ "Delete block": "Bloğu sil",
415
+ "Delete category": "Delete category",
416
+ "Delete collection": "Delete collection",
417
+ "Delete events": "Delete events",
418
+ "Delete field": "Alanı sil",
419
+ "Delete menu item": "Menü öğesini sil",
420
+ "Delete record": "Kaydı sil",
421
+ "Delete role": "Rol sil",
422
+ "Delete route": "Rota sil",
423
+ "Delete routes": "Rotaları sil",
424
+ "Delete settings": "Delete settings",
425
+ "Delete step": "Delete step",
426
+ "Delete table column": "Tablo sütununu sil",
427
+ "Delete this event?": "Delete this event?",
428
+ "Delete this target block": "Delete this target block",
429
+ "Delete variable": "Delete variable",
430
+ "Deny list": "Deny list",
431
+ "Department name": "Department name",
432
+ "Departments": "Departments",
433
+ "Dependencies check": "Bağımlılıkların kontrolü",
434
+ "Dependencies check failed": "Bağımlılıkların kontrolü başarısız oldu",
435
+ "Dependencies check failed, can't enable.": "Bağımlılık kontrolü başarısız oldu, etkinleştirilemiyor.",
436
+ "Dependencies compatibility check": "Bağımlılık uyumluluğu kontrolü",
437
+ "Deprecated": "Kullanımdan kaldırıldı",
438
+ "Description": "Açıklama",
439
+ "Desktop device": "Desktop device",
440
+ "Desktop routes": "Masaüstü rotalar",
441
+ "Detail item settings": "Detail item settings",
442
+ "Details": "Detaylar",
443
+ "Details settings": "Details settings",
444
+ "Determine whether a record exists by the following fields": "Determine whether a record exists by the following fields",
445
+ "Dialog": "Pencere",
446
+ "Direct assignment": "Direct assignment",
447
+ "Direct duplicate": "Direct duplicate",
448
+ "Disable": "Disable",
449
+ "Disable manual input": "Disable manual input",
450
+ "Disable tabs": "Sekmeleri pasifleştir",
451
+ "Disable validation": "Disable validation",
452
+ "Disabled": "Disabled",
453
+ "Disassociate": "Bağlantıyı kes",
454
+ "Disassociate record": "Kaydı bağlantıyı kes",
455
+ "Display <1><0>10</0><1>20</1><2>50</2><3>100</3></1> items per page": "Her sayfada <1><0>10</0><1>20</1><2>50</2><3>100</3></1> adet gösterim",
456
+ "Display <icon></icon> when unchecked": "Display <icon></icon> when unchecked",
457
+ "Display Field settings": "Display Field settings",
458
+ "Display association fields": "Display association fields",
459
+ "Display data template selector": "Veri şablonu seçicisini görüntüle",
460
+ "Display field title": "Display field title",
461
+ "Display fields": "Koleksiyon alanlarını görüntüle",
462
+ "Display label": "Display label",
463
+ "Display mode": "Display mode",
464
+ "Display name": "Görünen ad",
465
+ "Display only": "Display only",
466
+ "Display order number": "Sıra numarasını göster",
467
+ "Display page title": "Display page title",
468
+ "Display style": "Display style",
469
+ "Display title": "Display title",
470
+ "DisplayName": "Görünen Ad",
471
+ "Divide by": "Divide by",
472
+ "Divider line color": "Divider line color",
473
+ "Do not concatenate search params in the URL": "Do not concatenate search params in the URL",
474
+ "Do not load data when filter is empty": "Filtre boş olduğunda veri yükleme",
475
+ "Docs": "Docs",
476
+ "Domains ending with a . character are permitted": "Domains ending with a . character are permitted",
477
+ "Done": "Done",
478
+ "Double click": "Double click",
479
+ "Double click to choose entire object": "Double click to choose entire object",
480
+ "Download": "Download",
481
+ "Download logs": "Download logs",
482
+ "Drag and drop sorting field": "Drag and drop sorting field",
483
+ "Drag and drop the file here or click to upload, file size should not exceed 30M": "Dosyayı buraya sürükleyin veya yüklemek için tıklayın, dosya boyutu 30M'i geçmemelidir",
484
+ "Dragging": "Sürükleme",
485
+ "Drawer": "Çekmece",
486
+ "Dropdown": "Dropdown",
487
+ "Dropdown select": "Dropdown select",
488
+ "Duplicate": "Duplicate",
489
+ "Duplicate and continue": "Duplicate and continue",
490
+ "Duplicate mode": "Duplicate mode",
491
+ "Duplicate template": "Şablonun kopyasını oluştur",
492
+ "Duplicating": "Duplicating",
493
+ "Duration (seconds, 0 = no auto close)": "Duration (seconds, 0 = no auto close)",
494
+ "Dynamic value": "Dinamik değer",
495
+ "Easy reading": "Easy reading",
496
+ "Easy-reading": "Easy-reading",
497
+ "Edit": "Düzenle",
498
+ "Edit Title": "Edit Title",
499
+ "Edit block title": "Blok başlığını düzenle",
500
+ "Edit block title & description": "Edit block title & description",
501
+ "Edit button": "Düzenle butonu",
502
+ "Edit category": "Edit category",
503
+ "Edit chart": "Grafiği düzenle",
504
+ "Edit collection": "Koleksiyon düzenle",
505
+ "Edit description": "Açıklamayı düzenle",
506
+ "Edit event flows": "Edit event flows",
507
+ "Edit field": "Alan düzenle",
508
+ "Edit field title": "Alan başlığını düzenle",
509
+ "Edit form": "Formu düzenle",
510
+ "Edit group title": "Edit group title",
511
+ "Edit link": "Edit link",
512
+ "Edit markdown": "İşaretlemeyi düzenle",
513
+ "Edit menu item": "Menü öğesi düzenle",
514
+ "Edit page size": "Edit page size",
515
+ "Edit page title": "Edit page title",
516
+ "Edit popup": "Edit popup",
517
+ "Edit profile": "Profil düzenle",
518
+ "Edit record": "Kaydı düzenle",
519
+ "Edit role": "Rol düzenle",
520
+ "Edit tab": "Sekme düzenle",
521
+ "Edit tooltip": "İpucunu düzenle",
522
+ "Edit variable": "Edit variable",
523
+ "Editable": "Editable",
524
+ "Ellipsis": "Ellipsis",
525
+ "Ellipsis overflow content": "Üç nokta ile taşan içerik",
526
+ "Email": "Eposta",
527
+ "Embedded": "Embedded",
528
+ "Empty": "Empty",
529
+ "Enable": "Enable",
530
+ "Enable SMS authentication": "Enable SMS authentication",
531
+ "Enable Scan": "Enable Scan",
532
+ "Enable actions": "İşlemleri aktifleştir",
533
+ "Enable child collections": "Enable child collections",
534
+ "Enable click-to-open": "Enable click-to-open",
535
+ "Enable drag and drop sorting": "Sürükle-Bırak sıralamayı aktif et",
536
+ "Enable form data template": "Enable form data template",
537
+ "Enable index column": "Enable index column",
538
+ "Enable link": "Enable link",
539
+ "Enable page header": "Enable page header",
540
+ "Enable page tabs": "Enable page tabs",
541
+ "Enable quick edit": "Enable quick edit",
542
+ "Enable refresh": "Enable refresh",
543
+ "Enable secondary confirmation": "Enable secondary confirmation",
544
+ "Enable tabs": "Enable tabs",
545
+ "Enable tree table": "Enable tree table",
546
+ "Enable virtual scrolling": "Enable virtual scrolling",
547
+ "Enabled": "Enabled",
548
+ "Enabled languages": "Aktif diller",
549
+ "End": "End",
550
+ "End accessor": "End accessor",
551
+ "End date field": "Bitiş tarihi alanı",
552
+ "Enter collection name": "Enter collection name",
553
+ "Enter end accessor": "Enter end accessor",
554
+ "Enter field title": "Enter field title",
555
+ "Enter number of rows to display": "Enter number of rows to display",
556
+ "Enter page title": "Enter page title",
557
+ "Enter placeholder text": "Enter placeholder text",
558
+ "Enter start accessor": "Enter start accessor",
559
+ "Enter title accessor": "Enter title accessor",
560
+ "Enter value": "Enter value",
561
+ "Error message": "Error message",
562
+ "Event": "Olay",
563
+ "Event flow": "Event flow",
564
+ "Event selected": "Event selected",
565
+ "Event settings": "Event settings",
566
+ "Exact day": "Exact day",
567
+ "Execute": "Execute",
568
+ "Execute JavaScript": "Execute JavaScript",
569
+ "Exists": "Var olanlar",
570
+ "Expand All": "Tümünü genişlet",
571
+ "Expand all": "Expand all",
572
+ "Expand all rows by default": "Expand all rows by default",
573
+ "Expand button": "Expand",
574
+ "Expand/Collapse": "Expand/Collapse",
575
+ "Export": "Dışarı aktar",
576
+ "Exportable fields": "Dışa aktarılabilir alanlar",
577
+ "Expression": "Expression",
578
+ "Expression collection": "Expression collection",
579
+ "FORMULAJS_DOC_URL": "https://v2.docs.nocobase.com/calculation-engine/formula",
580
+ "Failed to load plugin": "Failed to load plugin",
581
+ "False": "False",
582
+ "Feedback": "Geri bildirim",
583
+ "Field": "Alan",
584
+ "Field Linkage rules": "Field Linkage rules",
585
+ "Field assignment": "Field assignment",
586
+ "Field component": "Alan bileşeni",
587
+ "Field display name": "Alan görünen adı",
588
+ "Field interface": "Alan arayüzü",
589
+ "Field linkage rules": "Field linkage rules",
590
+ "Field mode": "Field mode",
591
+ "Field model": "Field model",
592
+ "Field name": "Alan adı",
593
+ "Field permission": "Alan yetkisi",
594
+ "Field settings": "Field settings",
595
+ "Field source": "Field source",
596
+ "Field title": "Alan başlığı",
597
+ "Field type": "Alan türü",
598
+ "Field value changes": "Alan değeri değişiklikleri",
599
+ "Field value do not meet the requirements": "Field value do not meet the requirements",
600
+ "Field value size is": "Field value size is",
601
+ "Field values must be unique.": "Field values must be unique.",
602
+ "Fields": "Alanlar",
603
+ "Fields can only be used correctly if they are defined with an interface.": "Fields can only be used correctly if they are defined with an interface.",
604
+ "Fields values": "Alanların değerleri",
605
+ "File manager": "File manager",
606
+ "File size exceeds the limit": "File size exceeds the limit",
607
+ "File size should not exceed {{size}}.": "File size should not exceed {{size}}.",
608
+ "File type is not allowed": "File type is not allowed",
609
+ "File type is not supported for previewing, please download it to preview.": "File type is not supported for previewing, please download it to preview.",
610
+ "Fill": "Fill",
611
+ "Filled": "Filled",
612
+ "Filter": "Filtre",
613
+ "Filter blocks": "Filtre blokları",
614
+ "Filter configuration": "Filter configuration",
615
+ "Filter data based on the specific field, with the requirement that the field value must be unique.": "Filter data based on the specific field, with the requirement that the field value must be unique.",
616
+ "Filter out a single piece or a group of records as a template": "Filter out a single piece or a group of records as a template",
617
+ "Filter target key": "Filter target key",
618
+ "Filterable fields": "Filtrelenebilir alanlar",
619
+ "Find by the following fields": "Find by the following fields",
620
+ "First or create": "First or create",
621
+ "Fix block": "Fix block",
622
+ "Fixed": "Fixed",
623
+ "Fixed to the left": "Soluna sabitlenmiş",
624
+ "Fixed to the right": "Sağına sabitlenmiş",
625
+ "Flexible popup": "Esnek popup",
626
+ "Flow Page": "Modern page (v2)",
627
+ "Font Size(px)": "Font Size(px)",
628
+ "Font Style": "Font Style",
629
+ "Font Weight": "Font Weight",
630
+ "Foreign key": "Yabancı anahtar",
631
+ "Foreign key 1": "Yabancı anahtar 1",
632
+ "Foreign key 2": "Yabancı anahtar 2",
633
+ "Form": "Form",
634
+ "Form (Add new)": "Form (Yeni ekle)",
635
+ "Form (Edit)": "Form (Düzenle)",
636
+ "Form UID": "Form UID",
637
+ "Form data templates": "Form veri şablonları",
638
+ "Form duplicate": "Form duplicate",
639
+ "Form field assignment": "Form field assignment",
640
+ "Form item settings": "Form item settings",
641
+ "Form settings": "Form settings",
642
+ "Form values": "Form değerleri",
643
+ "Form values change": "Form values change",
644
+ "Form variable": "Form variable",
645
+ "Format": "Format",
646
+ "Formula": "Formül",
647
+ "Formula description": "Aynı kayıttaki diğer alanlara dayalı olarak her kayıtta bir değer hesaplayın.",
648
+ "Formula error.": "Formül hatalı.",
649
+ "Formula mode": "Formül modu",
650
+ "Formula.js supports most Microsoft Excel formula functions.": "Formula.js supports most Microsoft Excel formula functions.",
651
+ "Full height": "Full height",
652
+ "Full permissions": "Tüm izinler",
653
+ "Function": "Fonksiyon",
654
+ "Gantt": "Gantt",
655
+ "Geek blue": "Geek blue",
656
+ "General": "Genel",
657
+ "General action permissions": "Genel işlem izinleri",
658
+ "General collection": "General collection",
659
+ "General configuration": "General configuration",
660
+ "General fields": "General fields",
661
+ "General permissions": "Genel izinler",
662
+ "Generated automatically if left blank": "Generated automatically if left blank",
663
+ "Generic properties": "Generic properties",
664
+ "Global action permissions": "Sistem geneli işlem izinleri",
665
+ "Global permissions": "Sistem geneli izinler",
666
+ "Gold": "Altın",
667
+ "Greater than": "Greater than",
668
+ "Green": "Yeşil",
669
+ "Grid Card": "Grid Card",
670
+ "Group": "Grup",
671
+ "Grouped sorting": "Grouped sorting",
672
+ "Grouping field": "Alan gruplandırma",
673
+ "HTML content": "HTML content",
674
+ "Half of day": "Half of day",
675
+ "Handbook": "Kullanıcı kılavuzu",
676
+ "Hidden": "Hidden",
677
+ "Hidden (reserved value)": "Hidden (reserved value)",
678
+ "Hidden text": "Hidden text",
679
+ "Hidden(reserved value)": "Hidden(reserved value)",
680
+ "Hide": "Gizle",
681
+ "Hide column": "Sütunu gizle",
682
+ "Hide in menu": "Menüde gizle",
683
+ "Highlight": "Vurgulu",
684
+ "Home page": "Anasayfa",
685
+ "Homepage": "Anasayfa",
686
+ "Horizontal": "Horizontal",
687
+ "Hour": "Hour",
688
+ "Html settings": "Html settings",
689
+ "IANA registry": "IANA registry",
690
+ "ID": "ID",
691
+ "Icon": "İkon",
692
+ "Icon only": "Icon only",
693
+ "Identifier for program usage. Support letters, numbers and underscores, must start with an letter.": "Identifier for program usage. Support letters, numbers and underscores, must start with an letter.",
694
+ "If a collection lacks a primary key, you must configure a unique record key to locate row records within a block, failure to configure this will prevent the creation of data blocks for the collection.": "If a collection lacks a primary key, you must configure a unique record key to locate row records within a block, failure to configure this will prevent the creation of data blocks for the collection.",
695
+ "If collection inherits, choose inherited collections as templates": "Koleksiyon miras alırsa, kalıtılan koleksiyonları şablon olarak seçin",
696
+ "If selected, the page will display Tab pages.": "Seçildiğinde, sayfa Tab sayfalarını görüntüleyecektir.",
697
+ "If selected, the route will be displayed in the menu.": "Seçildiğinde, yol menüde görüntülenecektir.",
698
+ "If the compatibility check fails, you should change the dependent version to meet the version requirements.": "Uyumluluk kontrolü başarısız olursa, bağımlı olan sürümü değiştirmeniz gerekmektedir.",
699
+ "Ignore invalid email length errors": "Ignore invalid email length errors",
700
+ "Imperative Drawer": "Imperative Drawer",
701
+ "Import": "Import",
702
+ "Importable fields": "Importable fields",
703
+ "In configuration": "Yapılandırmada",
704
+ "In configuration mode, the entire column becomes transparent. In non-configuration mode, the entire column will be hidden. Even if the entire column is hidden, its configured default values and other settings will still take effect.": "Yapılandırma modunda, tüm sütun tamamen saydamlık alır. Yapılandırma modu olmayan durumda, tüm sütun gizlenir. Tamamen sütun gizlendiğinde bile, yapılandırılmış varsayılan değerleri ve diğer ayarları hâlâ etkin olur.",
705
+ "Incomplete uploading files need to be resolved": "Incomplete uploading files need to be resolved",
706
+ "Index": "Index",
707
+ "Individual": "Bireysel",
708
+ "Inherited fields": "Inherited fields",
709
+ "Inherited template": "Kalıtım şablonu",
710
+ "Inherits": "Inherits",
711
+ "Inner": "Inner",
712
+ "Input": "Input",
713
+ "Input +, -, *, /, ( ) to calculate, input @ to open field variables.": "Input +, -, *, /, ( ) to calculate, input @ to open field variables.",
714
+ "Input request data": "Input request data",
715
+ "Insert": "Ekle",
716
+ "Insert above": "Yukarıya ekle",
717
+ "Insert after": "Sonrasına ekle",
718
+ "Insert before": "Öncesine ekle",
719
+ "Insert below": "Aşağıya ekle",
720
+ "Insert if not exists": "Insert if not exists",
721
+ "Insert if not exists, or update": "Insert if not exists, or update",
722
+ "Insert inner": "İçine yerleştir",
723
+ "Insert left": "Sola yerleştir",
724
+ "Insert right": "Sağa yerleştir",
725
+ "Installing": "Yükleniyor",
726
+ "Integer": "Tamsayı",
727
+ "Invalid JSON format": "Hatalı JSON formatı",
728
+ "Inverse field display name": "Inverse field display name",
729
+ "Inverse field name": "Inverse field name",
730
+ "Inverse relationship type": "Inverse relationship type",
731
+ "Italic": "Italic",
732
+ "Junction collection": "Bağlantı koleksiyonu",
733
+ "Kanban": "Kanban",
734
+ "Label": "Label",
735
+ "Label align": "Label align",
736
+ "Label field": "Etiket alanı",
737
+ "Label width": "Label width",
738
+ "Language": "Dil",
739
+ "Large": "Large",
740
+ "Large screen device": "Large screen device",
741
+ "Last 30 days": "Son 30 Gün",
742
+ "Last 7 days": "Son 7 Gün",
743
+ "Last 90 days": "Son 90 Gün",
744
+ "Last Month": "Last Month",
745
+ "Last Quarter": "Last Quarter",
746
+ "Last Week": "Last Week",
747
+ "Last Year": "Last Year",
748
+ "Last month": "Geçen Ay",
749
+ "Last quarter": "Geçen Çeyrek",
750
+ "Last updated": "Son güncelleme",
751
+ "Last updated at": "Son güncelleme zamanı",
752
+ "Last updated by": "Son güncelleyen kişi",
753
+ "Last week": "Geçen Hafta",
754
+ "Last year": "Geçen Yıl",
755
+ "Layout": "Layout",
756
+ "Leave it blank, unless you need a custom intermediate table": "Özel bir ara tabloya ihtiyacınız yoksa boş bırakın",
757
+ "Left": "Left",
758
+ "Left fixed": "Left fixed",
759
+ "Length": "Length",
760
+ "Less than": "Less than",
761
+ "License": "Lisans",
762
+ "Lime": "Limon sarısı",
763
+ "Limit": "Limit",
764
+ "Line break": "Line break",
765
+ "Line chart": "Çizgi grafik",
766
+ "Link": "Link",
767
+ "Link action settings": "Link action settings",
768
+ "Link to": "Link to",
769
+ "Link to description": "Used to create collection relationships quickly and compatible with most common scenarios. Suitable for non-developer use. When present as a field, it is a drop-down selection used to select records from the target collection. Once created, it will simultaneously generate the associated fields of the current collection in the target collection.",
770
+ "Linkage rule": "Linkage rule",
771
+ "Linkage rules": "Linkage rules",
772
+ "Linkage with form fields": "Linkage with form fields",
773
+ "List": "List",
774
+ "Load all data when filter is empty": "Filtre boş olduğunda tüm verileri yükle",
775
+ "Load collections": "Load collections",
776
+ "Local": "Local",
777
+ "Log in with an existing account": "Mevcut bir hesapla giriş yapın",
778
+ "Logging and monitoring": "Logging and monitoring",
779
+ "Logo": "Logo",
780
+ "Long text": "Uzun metin",
781
+ "MATHJS_DOC_URL": "https://v2.docs.nocobase.com/calculation-engine/math",
782
+ "Magenta": "Macenta",
783
+ "Main": "Main",
784
+ "Main department": "Main department",
785
+ "Manage all settings": "Manage all settings",
786
+ "Manually close": "Manuel kapat",
787
+ "Many to many": "Çoka-Çok",
788
+ "Many to many description": "Çoktan çoğa ilişkiler oluşturmak için kullanılır. Örneğin, bir öğrencinin birçok öğretmeni olacak ve bir öğretmenin birçok öğrencisi olacaktır. Bir alan olarak mevcut olduğunda, ilişkili koleksiyondan kayıtları seçmek için kullanılan bir açılır seçimdir.",
789
+ "Many to one": "Çoka-Bir",
790
+ "Many to one description": "Çoktan bire ilişkiler oluşturmak için kullanılır. Örneğin, bir şehir sadece bir ülkeye ait olabilir ve bir ülkenin birçok şehri olabilir. Bir alan olarak mevcut olduğunda, ilişkili koleksiyondan kayıt seçmek için kullanılan bir açılır seçimdir. Oluşturulduktan sonra, ilişkili koleksiyonda bire çok alanı otomatik olarak oluşturulur.",
791
+ "Markdown": "İşaretle",
792
+ "Marketplace": "Marketplace",
793
+ "Math.js comes with a large set of built-in functions and constants, and offers an integrated solution to work with different data types.": "Math.js comes with a large set of built-in functions and constants, and offers an integrated solution to work with different data types.",
794
+ "Max Domain Segments": "Max Domain Segments",
795
+ "Max length": "Max length",
796
+ "Max length must greater than min length": "Max length must greater than min length",
797
+ "Max value": "Max value",
798
+ "MaxDate": "MaxDate",
799
+ "Maximum": "Maximum",
800
+ "Maximum must greater than minimum": "Maximum must greater than minimum",
801
+ "Media": "Medya",
802
+ "Medium": "Medium",
803
+ "Meet": "Meet",
804
+ "Meet <1><0>All</0><1>Any</1></1> conditions in the group": "Meet <1><0>All</0><1>Any</1></1> conditions in the group",
805
+ "Menu": "Menu",
806
+ "Menu item icon": "Menü öğe ikonu",
807
+ "Menu item name": "Menü öğe adı",
808
+ "Menu item title": "Menü öğe başlığı",
809
+ "Menu permissions": "Menü yetkileri",
810
+ "Message content": "Message content",
811
+ "Message popup close method": "Message popup close method",
812
+ "Message type": "Message type",
813
+ "Middle": "Middle",
814
+ "Millisecond": "Millisecond",
815
+ "Min Domain Segments": "Min Domain Segments",
816
+ "Min length": "Min length",
817
+ "Min length must less than max length": "Min length must less than max length",
818
+ "Min value": "Min value",
819
+ "MinDate": "MinDate",
820
+ "Minimum": "Minimum",
821
+ "Minimum must less than maximum": "Minimum must less than maximum",
822
+ "Mobile": "Mobile",
823
+ "Mobile routes": "Mobil rotalar",
824
+ "Modal": "Modal",
825
+ "Modal add": "Modal add",
826
+ "Mode": "Mode",
827
+ "Modern page (v2)": "Modern page (v2)",
828
+ "Month": "Ay",
829
+ "Monthly": "Monthly",
830
+ "More details": "Daha fazla detay",
831
+ "More options": "More options",
832
+ "Move down": "Move down",
833
+ "Move to": "Taşınacak yer",
834
+ "Move up": "Move up",
835
+ "Move {{title}} to": "{{title}} başlığını taşınacağı yer",
836
+ "Multiple": "Multiple",
837
+ "Multiple select": "Multi Select",
838
+ "Multiply by": "Multiply by",
839
+ "Must be 1-50 characters in length (excluding @.<>\"'/)": "Must be 1-50 characters in length (excluding @.<>\"'/)",
840
+ "Must select to the last level": "Son seviyeye kadar seçilmelidir",
841
+ "Must use `-` and `:`": "Must use `-` and `:`",
842
+ "N/A": "N/A",
843
+ "Name": "Adı",
844
+ "Navigate": "Navigate",
845
+ "Navigate to URL": "Navigate to URL",
846
+ "New menu items are allowed to be accessed by default.": "Yeni menü öğelerine varsayılan olarak erişilmesine izin verilir.",
847
+ "New password": "Yeni şifre",
848
+ "New plugin": "Yeni eklenti",
849
+ "New routes are allowed to be accessed by default": "Yeni rotalar varsayılan olarak erişilebilir",
850
+ "Next": "Next",
851
+ "Next 30 days": "Sonraki 30 Gün",
852
+ "Next 7 days": "Sonraki 7 Gün",
853
+ "Next 90 days": "Sonraki 90 Gün",
854
+ "Next Month": "Next Month",
855
+ "Next Quarter": "Next Quarter",
856
+ "Next Week": "Next Week",
857
+ "Next Year": "Next Year",
858
+ "Next month": "Gelecek Ay",
859
+ "Next quarter": "Gelecek Çeyrek",
860
+ "Next week": "Gelecek Hafta",
861
+ "Next year": "Gelecek Yıl",
862
+ "Nickname": "Rumuz",
863
+ "No": "Hayır",
864
+ "No CHANGELOG.md file": "CHANGELOG.md dosyası bulunmamaktadır",
865
+ "No README.md file": "README.md dosyası bulunmamaktadır",
866
+ "No allow `-` and `:`": "No allow `-` and `:`",
867
+ "No assigned fields configured": "No assigned fields configured",
868
+ "No blocks to connect": "Bağlanacak blok yok",
869
+ "No configuration available.": "No configuration available.",
870
+ "No data": "No data",
871
+ "No event flows": "No event flows",
872
+ "No form available for reset.": "No form available for reset.",
873
+ "No form available for submission.": "No form available for submission.",
874
+ "No linkage rules": "No linkage rules",
875
+ "No pages yet, please configure first": "Henüz sayfa yok, lütfen önce yapılandırın",
876
+ "No parent popup": "No parent popup",
877
+ "No records selected for bulk edit": "No records selected for bulk edit",
878
+ "No records selected for deletion": "No records selected for deletion",
879
+ "No resource or record selected for deletion": "No resource or record selected for deletion",
880
+ "No resource selected for bulk edit": "No resource selected for bulk edit",
881
+ "No resource selected for deletion": "No resource selected for deletion",
882
+ "No resource selected for refresh": "No resource selected for refresh",
883
+ "None": "Boş",
884
+ "Normal": "Normal",
885
+ "Not Fixed": "Sabitlenmemiş",
886
+ "Not enabled": "Etkin değil",
887
+ "Not fixed": "Not fixed",
888
+ "Not required": "Not required",
889
+ "Notification": "Notification",
890
+ "Notification description": "Notification description",
891
+ "Notification title": "Notification title",
892
+ "Notification type": "Notification type",
893
+ "Now": "Now",
894
+ "Npm package": "Npm paketi",
895
+ "Npm package name": "Npm paket adı",
896
+ "Null": "Null",
897
+ "Number": "Numara",
898
+ "Number settings": "Number settings",
899
+ "Object Fit": "Object Fit",
900
+ "Off": "Off",
901
+ "Official plugin": "Resmi eklenti",
902
+ "Old password": "Eski şifre",
903
+ "On": "On",
904
+ "One to many": "Bire-Çok",
905
+ "One to many description": "Bire çok ilişkisi oluşturmak için kullanılır. Örneğin, bir ülkenin birçok şehri olacaktır ve bir şehir yalnızca bir ülkede olabilir. Alan olarak mevcut olduğunda, ilişkili koleksiyonun kayıtlarını görüntüleyen bir alt tablodur. Oluşturulduğunda, ilişkili koleksiyonda bir Çoktan bire alanı otomatik olarak oluşturulur.",
906
+ "One to one": "Bire-Bir",
907
+ "One to one (belongs to)": "Bire-Bir (ait)",
908
+ "One to one (has one)": "Bire-Bir (bir tane var)",
909
+ "One to one description": "Bire bir ilişkiler oluşturmak için kullanılır. Örneğin, bir kullanıcının bir profili vardır.",
910
+ "Only support standard JSON data": "Only support standard JSON data",
911
+ "Only the selected fields will be used as the initialization data for the form": "Yalnızca seçilen alanlar, formun başlangıç ​​verileri olarak kullanılacaktır",
912
+ "Only use `-`": "Only use `-`",
913
+ "Only use `.`": "Only use `.`",
914
+ "Only use `_`": "Only use `_`",
915
+ "Open in new window": "Yeni pencerede aç",
916
+ "Open in<1><0>Modal</0><1>Drawer</1><2>Window</2></1>": "Açılış Şekli<1><0>Popup Ekran</0><1>Yan Çekmece</1><2>Sayfa</2></1>",
917
+ "Open mode": "Açılış türü",
918
+ "Open mode configuration": "Open mode configuration",
919
+ "Operate on existing data": "Var olan verilerle çalış",
920
+ "Operate on new data": "Yeni verilerle çalış",
921
+ "Operation failed": "Operasyon başarısız",
922
+ "Operation succeeded": "Operasyon başarılı",
923
+ "Operator": "Operator",
924
+ "Option label": "Seçenek etiketi",
925
+ "Option value": "Seçenek değeri",
926
+ "Options": "Seçenekler",
927
+ "Orange": "Turuncu",
928
+ "Original field title: ": "Orijinal alan başlığı: ",
929
+ "Original name": "Orjinal isim",
930
+ "Original title: ": "Orjinal başlık: ",
931
+ "Other": "Other",
932
+ "Other action": "Other action",
933
+ "Other block": "Other block",
934
+ "Other blocks": "Diğer bloklar",
935
+ "Other chart": "Diğer grafik",
936
+ "Other collections": "Diğer koleksiyonlar",
937
+ "Other column": "Other column",
938
+ "Other form": "Other form",
939
+ "Other records": "Diğer kayıtlar",
940
+ "Others": "Diğerleri",
941
+ "Outlined": "Outlined",
942
+ "Override": "Override",
943
+ "Override field": "Override field",
944
+ "Oversized": "Oversized",
945
+ "Own records": "Kendi kayıtları",
946
+ "Owners": "Owners",
947
+ "PK & FK fields": "PK & FK fields",
948
+ "Package name": "Package name",
949
+ "PackageName": "Paket Adı",
950
+ "Page": "Sayfa",
951
+ "Page (v2)": "Page (v2)",
952
+ "Page Title": "Page Title",
953
+ "Page number": "Page number",
954
+ "Page settings": "Page settings",
955
+ "Page size": "Page size",
956
+ "Parent": "Parent",
957
+ "Parent ID": "Parent ID",
958
+ "Parent collection fields": "Parent collection fields",
959
+ "Parent object": "Üst nesne",
960
+ "Parent popup": "Parent popup",
961
+ "Parent popup record": "Üst açılır pencere kaydı",
962
+ "Parent record": "Üst kayıt",
963
+ "Password": "Şifre",
964
+ "Password Options": "Password Options",
965
+ "Password mismatch": "Şifre eşleşmiyor",
966
+ "Past": "Past",
967
+ "Path": "Yol",
968
+ "Pattern": "Pattern",
969
+ "Percent": "Yüzde",
970
+ "Perform the Custom request": "Perform the Custom request",
971
+ "Perform the Refresh": "Perform the Refresh",
972
+ "Perform the Submit": "Perform the Submit",
973
+ "Perform the Trigger workflow": "Perform the Trigger workflow",
974
+ "Perform the Update record": "Perform the Update record",
975
+ "Perform the {{title}}": "Perform the {{title}}",
976
+ "Permission deined": "Permission denied",
977
+ "Permission denied": "Permission denied",
978
+ "Permission policy": "İzin politikası",
979
+ "Phone": "Telefon",
980
+ "Phone device": "Phone device",
981
+ "Picker": "Picker",
982
+ "Pie chart": "Pasta grafik",
983
+ "Pin to left": "Soluna sabitle",
984
+ "Pin to right": "Sağına sabitle",
985
+ "Placeholder": "Placeholder",
986
+ "Placement": "Placement",
987
+ "Please add a data block on the page first": "Please add a data block on the page first",
988
+ "Please add or select record": "Please add or select record",
989
+ "Please configure the URL": "Please configure the URL",
990
+ "Please configure the duplicate fields": "Please configure the duplicate fields",
991
+ "Please confirm the SQL statement first": "Please confirm the SQL statement first",
992
+ "Please enter form uid": "Please enter form uid",
993
+ "Please enter the target block UID": "Please enter the target block UID",
994
+ "Please enter variable identifier": "Please enter variable identifier",
995
+ "Please enter variable title": "Please enter variable title",
996
+ "Please fill in the iframe URL": "Please fill in the iframe URL",
997
+ "Please input message content": "Please input message content",
998
+ "Please input notification description": "Please input notification description",
999
+ "Please input notification title": "Please input notification title",
1000
+ "Please input target action uid": "Please input target action uid",
1001
+ "Please input target block uid": "Please input target block uid",
1002
+ "Please input target form uid": "Please input target form uid",
1003
+ "Please select": "Please select",
1004
+ "Please select field": "Please select field",
1005
+ "Please select fields": "Please select fields",
1006
+ "Please select fields to filter": "Please select fields to filter",
1007
+ "Please select filterable fields": "Please select filterable fields",
1008
+ "Please select state": "Please select state",
1009
+ "Please select the records to be updated": "Please select the records to be updated",
1010
+ "Please select time or variable": "Please select time or variable",
1011
+ "Please use a valid SELECT or WITH AS statement": "Please use a valid SELECT or WITH AS statement",
1012
+ "Plugin": "Plugin",
1013
+ "Plugin Zip File": "Eklenti Zip Dosyası",
1014
+ "Plugin dependencies check failed": "Plugin dependencies check failed",
1015
+ "Plugin dependencies check failed, you should change the dependent version to meet the version requirements.": "Plugin dependencies check failed, you should change the dependent version to meet the version requirements.",
1016
+ "Plugin dependency version mismatch": "Plugin dependency version mismatch",
1017
+ "Plugin loading failed. Please check the server logs.": "Eklenti yüklenemedi. Lütfen sunucu günlüklerini kontrol edin.",
1018
+ "Plugin manager": "Plugin manager",
1019
+ "Plugin name": "Plugin name",
1020
+ "Plugin settings": "Plugin settings",
1021
+ "Plugin settings permissions": "Plugin settings permissions",
1022
+ "Plugin source": "Plugin source",
1023
+ "Plugin starting...": "Eklenti başlatılıyor...",
1024
+ "Plugin stopping...": "Eklenti durduruluyor...",
1025
+ "Plugin tab name": "Plugin tab name",
1026
+ "Plugin's version": "Eklentinin sürümü",
1027
+ "Pop-up": "Pop-up",
1028
+ "Popup": "Açılır Pencere",
1029
+ "Popup close method": "Açılır pencere kapatma metodu",
1030
+ "Popup form": "Popup form",
1031
+ "Popup message": "Açılır mesaj",
1032
+ "Popup record": "Popup record",
1033
+ "Popup settings": "Popup settings",
1034
+ "Popup size": "Popup size",
1035
+ "Popup uid": "Popup UID",
1036
+ "Position": "Pozisyon",
1037
+ "Precision": "Kesinlik",
1038
+ "Precision(UI)": "Precision(UI)",
1039
+ "Prefix": "Prefix",
1040
+ "Preset fields": "Preset fields",
1041
+ "Prettify": "Prettify",
1042
+ "Preview": "Preview",
1043
+ "Preview Settings": "Preview Settings",
1044
+ "Preview field component": "Preview field component",
1045
+ "Primary": "Primary",
1046
+ "Primary key, unique identifier, self growth": "Primary key, unique identifier, self growth",
1047
+ "Print": "Yazdır",
1048
+ "Problematic": "Problematic",
1049
+ "Progress field": "Progress field",
1050
+ "Properties": "Properties",
1051
+ "Providing certain collections as options for users, typically used in polymorphic or inheritance scenarios": "Providing certain collections as options for users, typically used in polymorphic or inheritance scenarios",
1052
+ "Province": "Bölge",
1053
+ "Province/city/area name": "Semt/şehir/bölge adı",
1054
+ "Purple": "Mor",
1055
+ "Quarter": "Quarter",
1056
+ "Quarter of day": "Quarter of day",
1057
+ "QuarterYear": "QuarterYear",
1058
+ "Quick add": "Quick add",
1059
+ "Quick create": "Quick create",
1060
+ "Quick duplicate": "Quick duplicate",
1061
+ "Quick upload": "Hızlı yükleme",
1062
+ "Radio group": "Radio Seçim grup",
1063
+ "Randomly generated and can be modified. Support letters, numbers and underscores, must start with an letter.": "Rastgele oluşturulur ve değiştirilebilir. Desteklenen içerik; harfler, sayılar ve alt çizgiler. Bir harfle başlamalıdır.",
1064
+ "Read only": "Read only",
1065
+ "ReadOnly": "ReadOnly",
1066
+ "ReadPretty": "ReadPretty",
1067
+ "Readme": "Okuma Dosyası",
1068
+ "Readonly": "Readonly",
1069
+ "Recommended": "Recommended",
1070
+ "Record ID": "Kayıt ID",
1071
+ "Record deleted successfully": "Record deleted successfully",
1072
+ "Record picker": "Record picker",
1073
+ "Record unique key": "Record unique key",
1074
+ "RecordPicker settings": "RecordPicker settings",
1075
+ "Records can be sorted": "Records can be sorted",
1076
+ "Records per page": "Sayfa başına kayıt",
1077
+ "Red": "Kırmızı",
1078
+ "Redirect to": "Yönlendirilecek yer",
1079
+ "Reference template": "Referans şablon",
1080
+ "References": "References",
1081
+ "Refresh": "Yenile",
1082
+ "Refresh data after execution": "Refresh data after execution",
1083
+ "Refresh data blocks": "Yenile veri blokları",
1084
+ "Refresh data on action": "Refresh data on action",
1085
+ "Refresh data on close": "Refresh data on close",
1086
+ "Refresh target blocks": "Refresh target blocks",
1087
+ "Regular Expression": "Regular Expression",
1088
+ "Regular expression": "Model(Pattern)",
1089
+ "Related collection": "Bağlantılı koleksiyon",
1090
+ "Relation": "Relation",
1091
+ "Relationship blocks": "İlişki blokları",
1092
+ "Relationship type": "Bağlantı türü",
1093
+ "Reload application": "Reload application",
1094
+ "Remains the same": "Remains the same",
1095
+ "Remove": "Remove",
1096
+ "Render Failed": "Oluşturma başarısız",
1097
+ "Render mode": "Render mode",
1098
+ "Repeats": "Repeats",
1099
+ "Request API": "API İsteği",
1100
+ "Request URL": "İstek URL adresi",
1101
+ "Request body": "İstek gövde",
1102
+ "Request headers": "İstek başlıkları",
1103
+ "Request method": "İstek türü",
1104
+ "Request query parameters": "İstek sorgusu parametreleri",
1105
+ "Request settings": "İstek ayarları",
1106
+ "Request success": "İstek başarılı",
1107
+ "Required": "Zorunlu",
1108
+ "Reset": "Sıfırla",
1109
+ "Reset link expiration": "Bağlantı süresini sıfırla",
1110
+ "Response record": "Response record",
1111
+ "Response type": "Response type",
1112
+ "Restart": "Restart",
1113
+ "Restart application": "Restart application",
1114
+ "Restrict only relative URIs": "Restrict only relative URIs",
1115
+ "Result": "Sonuç",
1116
+ "Retry after {{count}} seconds": "Retry after {{count}} seconds",
1117
+ "Return to the main application": "Return to the main application",
1118
+ "Return to the previous popup or page": "Return to the previous popup or page",
1119
+ "Rich Text": "Zengin Metin",
1120
+ "Right": "Right",
1121
+ "Right fixed": "Right fixed",
1122
+ "Role UID": "Rol UID",
1123
+ "Role display name": "Rol görünen adı",
1124
+ "Role name": "Rol adı",
1125
+ "Roles": "Roller",
1126
+ "Roles & Permissions": "Roller & Yetkilendirmeler",
1127
+ "Route name": "Rota adı",
1128
+ "Route permissions": "Rota izinleri",
1129
+ "Routes": "Rotalar",
1130
+ "Row click": "Row click",
1131
+ "Rows": "Rows",
1132
+ "SQL collection": "SQL collection",
1133
+ "Save": "Kaydet",
1134
+ "Save action": "Kaydet işlemi",
1135
+ "Save as block template": "Blok şablonu olarak kaydet",
1136
+ "Save as inherited template": "Kalıtım şablonu olarak kaydet",
1137
+ "Save as reference template": "Referans şablonu olarak kaydet",
1138
+ "Save as template": "Şablon olarak kaydet",
1139
+ "Save conditions": "Koşulları kaydet",
1140
+ "Save failed": "Save failed",
1141
+ "Save mode": "Save mode",
1142
+ "Save record": "Kaydı kaydet",
1143
+ "Saved successfully": "Başarıyla kaydedildi",
1144
+ "Scale": "Scale",
1145
+ "Scale Down": "Scale Down",
1146
+ "Scan to input": "Scan to input",
1147
+ "Scheme": "Scheme",
1148
+ "Scientifix notation": "Scientifix notation",
1149
+ "Scope name": "Kapsam adı",
1150
+ "Screen size": "Screen size",
1151
+ "Search": "Search",
1152
+ "Search and select collection": "Koleksiyon ara ve seç",
1153
+ "Search collections...": "Search collections...",
1154
+ "Search parameters": "Search parameters",
1155
+ "Search plugin": "Eklenti ara",
1156
+ "Search plugin...": "Search plugin...",
1157
+ "Second": "Second",
1158
+ "Secondary confirmation": "Secondary confirmation",
1159
+ "Security": "Security",
1160
+ "Select": "Select",
1161
+ "Select a source field to use metadata of the field": "Select a source field to use metadata of the field",
1162
+ "Select a variable": "Select a variable",
1163
+ "Select all": "Select all",
1164
+ "Select an existing piece of data as the initialization data for the form": "Formun başlangıç ​​verileri olarak mevcut bir veri parçasını seçin",
1165
+ "Select collection": "Koleksiyon seçin",
1166
+ "Select data blocks to refresh": "Veri bloklarını yenilemek için seçin",
1167
+ "Select data source": "Veri kaynağını seç",
1168
+ "Select date": "Select date",
1169
+ "Select field": "Select field",
1170
+ "Select file": "Dosya seç",
1171
+ "Select form fields": "Select form fields",
1172
+ "Select grouping field": "Gruplandırma alanını seç",
1173
+ "Select icon": "İkon seç",
1174
+ "Select level": "Seviye seç",
1175
+ "Select mode": "Select mode",
1176
+ "Select record": "Kayıt seç",
1177
+ "Select target action": "Select target action",
1178
+ "Select target block": "Select target block",
1179
+ "Select target form block": "Select target form block",
1180
+ "Select template": "Şablon seç",
1181
+ "Select trigger event": "Select trigger event",
1182
+ "Select variable": "Select variable",
1183
+ "Select view": "Görünüm seç",
1184
+ "Selected": "Selected",
1185
+ "Selected Collections": "Selected Collections",
1186
+ "Selected records deleted successfully": "Selected records deleted successfully",
1187
+ "Selector": "Selector",
1188
+ "Selector mode": "Selector mode",
1189
+ "Selector setting": "Selector setting",
1190
+ "Send code": "Send code",
1191
+ "Separate multiple values with comma or Enter": "Separate multiple values with comma or Enter",
1192
+ "Separator": "Separator",
1193
+ "Set Template Engine": "Set Template Engine",
1194
+ "Set action state": "Set action state",
1195
+ "Set block height": "Set block height",
1196
+ "Set block layout": "Set block layout",
1197
+ "Set block state": "Set block state",
1198
+ "Set button state": "Set button state",
1199
+ "Set condition": "Set condition",
1200
+ "Set data loading mode": "Veri yükleme modunu ayarla",
1201
+ "Set data scope": "Set data scope",
1202
+ "Set default sorting rules": "Varsayılan sıralama kurallarını ayarla",
1203
+ "Set default value": "Set default value",
1204
+ "Set details field state": "Set details field state",
1205
+ "Set field state": "Set field state",
1206
+ "Set field value": "Set field value",
1207
+ "Set form field state": "Set form field state",
1208
+ "Set form field value": "Set form field value",
1209
+ "Set state": "Set state",
1210
+ "Set the count of columns displayed in a row": "Set the count of columns displayed in a row",
1211
+ "Set the data scope": "Veri kapsamını ayarla",
1212
+ "Set validation rules": "Set validation rules",
1213
+ "Set value": "Set value",
1214
+ "Setting": "Setting",
1215
+ "Settings": "Settings",
1216
+ "Show date range": "Show date range",
1217
+ "Show file name": "Show file name",
1218
+ "Show in menu": "Menüde göster",
1219
+ "Show label": "Show label",
1220
+ "Show lunar": "Show lunar",
1221
+ "Show message": "Show message",
1222
+ "Show notification": "Show notification",
1223
+ "Show row numbers": "Show row numbers",
1224
+ "Show time": "Zamanı göster",
1225
+ "Sign in": "Giriş yap",
1226
+ "Sign in via account": "Sign in via account",
1227
+ "Sign in via phone": "Sign in via phone",
1228
+ "Sign in with another account": "Sign in with another account",
1229
+ "Sign out": "Çıkış yap",
1230
+ "Sign up": "Hesap aç",
1231
+ "Sign up successfully, and automatically jump to the sign in page": "Başarılı bir şekilde kaydolun ve otomatik olarak oturum açma sayfasına geçin",
1232
+ "Signed up successfully. It will jump to the login page.": "Başarıyla kaydoldu. Giriş sayfasına yönlendirileceksiniz.",
1233
+ "Simple string replacement, can be used to interpolate variables in a string.": "Simple string replacement, can be used to interpolate variables in a string.",
1234
+ "Single line text": "Tek satırlık metin",
1235
+ "Single select": "Selectbox",
1236
+ "Single select and radio fields can be used as the grouping field": "Gruplama alanı olarak tek seçim ve radyo alanları kullanılabilir",
1237
+ "Size": "Size",
1238
+ "Sizes": "Sizes",
1239
+ "Skip getting the total number of table records during paging to speed up loading. It is recommended to enable this option for data tables with a large amount of data": "Skip getting the total number of table records during paging to speed up loading. It is recommended to enable this option for data tables with a large amount of data",
1240
+ "Skip required validation": "Zorunlu alan kontrollerini atla",
1241
+ "Small": "Small",
1242
+ "SmartTv": "SmartTv",
1243
+ "Some files are not uploaded correctly, please check.": "Some files are not uploaded correctly, please check.",
1244
+ "Sorry, the page you visited does not exist.": "Üzgünüz, ziyaret ettiğiniz sayfa mevcut değil.",
1245
+ "Sort": "Sort",
1246
+ "Sortable": "Sortable",
1247
+ "Source collection": "Kaynak koleksiyon",
1248
+ "Source collections": "Source collections",
1249
+ "Source key": "Kaynak anahtarı",
1250
+ "Specific properties": "Specific properties",
1251
+ "Specifies a Permissions Policy for the <iframe>. The policy defines what features are available to the <iframe> (for example, access to the microphone, camera, battery, web-share, etc.) based on the origin of the request.": "Specifies a Permissions Policy for the <iframe>. The policy defines what features are available to the <iframe> (for example, access to the microphone, camera, battery, web-share, etc.) based on the origin of the request.",
1252
+ "Specify height": "Specify height",
1253
+ "Start": "Start",
1254
+ "Start accessor": "Start accessor",
1255
+ "Start date field": "Başlangıç tarihi alanı",
1256
+ "State": "State",
1257
+ "Stay on current page": "Geçerli sayfada kal",
1258
+ "Stay on the current popup or page": "Stay on the current popup or page",
1259
+ "Steps": "Steps",
1260
+ "Store the creation time of each record": "Store the creation time of each record",
1261
+ "Store the creation user of each record": "Store the creation user of each record",
1262
+ "Store the last update time of each record": "Store the last update time of each record",
1263
+ "Store the last update user of each record": "Store the last update user of each record",
1264
+ "Street": "Cadde",
1265
+ "String": "String",
1266
+ "String template": "String template",
1267
+ "Style": "Style",
1268
+ "Sub-detail": "Sub-detail",
1269
+ "Sub-details": "Sub-details",
1270
+ "Sub-form": "Sub-form",
1271
+ "Sub-form(Popover)": "Sub-form(Popover)",
1272
+ "Sub-table": "Alt-tablo",
1273
+ "Subform": "Altform",
1274
+ "Subform mode": "Sub-form mode",
1275
+ "Submit": "Gönder",
1276
+ "Submit action settings": "Submit action settings",
1277
+ "Submit record": "Submit record",
1278
+ "Submitted successfully": "Başarıyla gönderildi",
1279
+ "Subtable": "Alttablo",
1280
+ "Subtable mode": "Sub-table mode",
1281
+ "Successfully": "Successfully",
1282
+ "Suffix": "Suffix",
1283
+ "Super admin": "Süper admin",
1284
+ "Superior department": "Superior department",
1285
+ "Support filtering multiple blocks simultaneously, support deep selection of relationship fields (e.g.: User/Department/Name)": "Support filtering multiple blocks simultaneously, support deep selection of relationship fields (e.g.: User/Department/Name)",
1286
+ "Support for a single or bulk upload, file size should not exceed": "Tek veya toplu yükleme destekler, dosya boyutu aşmamalıdır",
1287
+ "Support for a single or bulk upload.": "Support for a single or bulk upload.",
1288
+ "Switch role": "Rol değiştir",
1289
+ "Switching the picker, the value and default value will be cleared": "Switching the picker, the value and default value will be cleared",
1290
+ "Sync from database": "Sync from database",
1291
+ "Sync from form fields": "Sync from form fields",
1292
+ "Sync successfully": "Sync successfully",
1293
+ "Syntax references": "Syntax references",
1294
+ "System": "System",
1295
+ "System & security": "System & security",
1296
+ "System fields": "System fields",
1297
+ "System info": "Sistem bilgisi",
1298
+ "System management": "System management",
1299
+ "System settings": "Sistem ayarları",
1300
+ "System title": "Sistem başlığı",
1301
+ "System variables": "System variables",
1302
+ "Tab": "Sekme",
1303
+ "Tab name": "Sekme adı",
1304
+ "Table": "Tablo",
1305
+ "Table OID(Inheritance)": "Table OID(Inheritance)",
1306
+ "Table column settings": "Table column settings",
1307
+ "Table density": "Table density",
1308
+ "Table selected records": "Table selected records",
1309
+ "Table settings": "Table settings",
1310
+ "Table size": "Table size",
1311
+ "Tablet": "Tablet",
1312
+ "Tablet device": "Tablet device",
1313
+ "Tag": "Tag",
1314
+ "Tag color field": "Tag color field",
1315
+ "Target": "Hedef",
1316
+ "Target block UID": "Target block UID",
1317
+ "Target block uid": "Target block uid",
1318
+ "Target collection": "Hedef koleksiyon",
1319
+ "Target form block": "Target form block",
1320
+ "Target key": "Hedef anahtarı",
1321
+ "Target position": "Hedef pozisyon",
1322
+ "Template": "Şablon",
1323
+ "Template Data": "Şablon Verisi",
1324
+ "Template engine": "Template engine",
1325
+ "Template fields": "Template fields",
1326
+ "Template name": "Şablon adı",
1327
+ "Templates": "Şablonlar",
1328
+ "Text": "Text",
1329
+ "Text Align": "Text Align",
1330
+ "Text input": "Text input",
1331
+ "Text only": "Text only",
1332
+ "The application is reloading, please do not close the page.": "The application is reloading, please do not close the page.",
1333
+ "The current button is hidden and cannot be clicked (this message is only visible when the UI Editor is active).": "The current button is hidden and cannot be clicked (this message is only visible when the UI Editor is active).",
1334
+ "The current dependency version of the plugin does not match the version of the application and may not work properly. Are you sure you want to continue enabling the plugin?": "The current dependency version of the plugin does not match the version of the application and may not work properly. Are you sure you want to continue enabling the plugin?",
1335
+ "The current user only has the UI configuration permission, but don't have \"{{actionName}}\" permission for collection \"{{name}}\"": "The current user only has the UI configuration permission, but don't have \"{{actionName}}\" permission for collection \"{{name}}\"",
1336
+ "The current user only has the UI configuration permission, but don't have \"{{actionName}}\" permission for field \"{{name}}\"": "The current user only has the UI configuration permission, but don't have \"{{actionName}}\" permission for field \"{{name}}\"",
1337
+ "The current user only has the UI configuration permission, but don't have view permission for collection \"{{name}}\"": "The current user only has the UI configuration permission, but don't have view permission for collection \"{{name}}\"",
1338
+ "The deletion was successful.": "Silme başarılı.",
1339
+ "The field has been deleted": "Alan silindi",
1340
+ "The field value cannot be greater than ": "The field value cannot be greater than ",
1341
+ "The field value cannot be less than ": "The field value cannot be less than ",
1342
+ "The field value is not a email format": "The field value is not a email format",
1343
+ "The field value is not an integer number": "The field value is not an integer number",
1344
+ "The field value is required": "The field value is required",
1345
+ "The following field types are not compatible and do not support output and display": "The following field types are not compatible and do not support output and display",
1346
+ "The selected fields will automatically populate the form": "The selected fields will automatically populate the form",
1347
+ "The title field is used to identify the template record": "The title field is used to identify the template record",
1348
+ "The value of this variable is derived from the query string of the page URL. This variable can only be used normally when the page has a query string.": "Bu değişkenin değeri sayfa URL'sinin sorgu dizgisinden türetilir. Bu değişken, sayfanın bir sorgu dizgisi olduğunda yalnızca normal olarak kullanılabilir.",
1349
+ "The will interrupt service, it may take a few seconds to restart. Are you sure to continue?": "The will interrupt service, it may take a few seconds to restart. Are you sure to continue?",
1350
+ "The {{type}} \"{{name}}\" may have been deleted. Please remove this {{blockType}}.": "{{type}} \"{{name}}\" silinmiş olabilir. Lütfen bu {{blockType}}'yi kaldırın.",
1351
+ "Theme": "Theme",
1352
+ "Then": "Then",
1353
+ "Third party services": "Third party services",
1354
+ "This Month": "This Month",
1355
+ "This Quarter": "This Quarter",
1356
+ "This Week": "This Week",
1357
+ "This Year": "This Year",
1358
+ "This and following events": "This and following events",
1359
+ "This event": "This event",
1360
+ "This field has been hidden and you cannot view it (this content is only visible when the UI Editor is activated).": "This field has been hidden and you cannot view it (this content is only visible when the UI Editor is activated).",
1361
+ "This field is required": "This field is required",
1362
+ "This is a demo text, **supports Markdown syntax**.": "Bu bir örnek yazıdır, **işaretleme yazısı destekleniyor**.",
1363
+ "This is likely a NocoBase internals bug. Please open an issue at <1>here</1>": "Bu, NocoBase iç işlevleri hatası olabilir. Lütfen <1>burada</1> bir sorun açın",
1364
+ "This month": "Bu Ay",
1365
+ "This quarter": "Bu Çeyrek",
1366
+ "This variable has been deprecated and can be replaced with \"Current form\"": "Değişken kullanımdan kaldırıldı; \"Geçerli form\" yerine kullanılabilir",
1367
+ "This week": "Bu Hafta",
1368
+ "This year": "Bu Yıl",
1369
+ "Through collection": "Toplama koleksiyon",
1370
+ "Time": "Saat",
1371
+ "Time format": "Zaman formatı",
1372
+ "Time scale": "Time scale",
1373
+ "Timeout config": "Timeout config",
1374
+ "Timestamp": "Timestamp",
1375
+ "Title": "Başlık",
1376
+ "Title & description": "Title & description",
1377
+ "Title accessor": "Title accessor",
1378
+ "Title field": "Başlık alanı",
1379
+ "Title field component": "Title field component",
1380
+ "Title position": "Title position",
1381
+ "Today": "Bugün",
1382
+ "Toggles the subfield mode": "Toggles the subfield mode",
1383
+ "Tomorrow": "Yarın",
1384
+ "Tooltip": "Tooltip",
1385
+ "Top left": "Top left",
1386
+ "Top right": "Top right",
1387
+ "Total {{count}} items": "Toplam {{count}} adet öğe",
1388
+ "Tree collection": "Tree collection",
1389
+ "Tree table": "Tree table",
1390
+ "Trigger condition": "Trigger condition",
1391
+ "Trigger event": "Trigger event",
1392
+ "Trigger workflow": "İş akışını tetikle",
1393
+ "Triggered when the row is clicked": "Satır tıklandığında tetiklenir",
1394
+ "True": "True",
1395
+ "Try again": "Tekrar dene",
1396
+ "Turn pages": "Sayfaları çevir",
1397
+ "Two tone": "Two tone",
1398
+ "Type": "Tip",
1399
+ "UI Editor": "UI Editor",
1400
+ "UI editor": "UI editor",
1401
+ "URL": "URL",
1402
+ "URL search params": "URL arama parametreleri",
1403
+ "UnSelect all": "UnSelect all",
1404
+ "Unauthenticated. Please sign in to continue.": "Unauthenticated. Please sign in to continue.",
1405
+ "Unconnected": "Bağlantı yok",
1406
+ "Unicode characters are permitted": "Unicode characters are permitted",
1407
+ "Unique": "Unique",
1408
+ "Unit conversion": "Unit conversion",
1409
+ "Unix Timestamp": "Unix Timestamp",
1410
+ "Unknown field type": "Unknown field type",
1411
+ "Unnamed": "Unnamed",
1412
+ "Unpinned": "Sabitlenmemiş",
1413
+ "Unsafe integer": "Unsafe integer",
1414
+ "Unsaved changes": "Değişiklikler kaydedilmedi",
1415
+ "Update": "Güncelle",
1416
+ "Update all data?": "Update all data?",
1417
+ "Update or create": "Update or create",
1418
+ "Update plugin": "Eklentiyi yükselt",
1419
+ "Update record": "Update record",
1420
+ "Update record action": "Update record",
1421
+ "Update selected data?": "Update selected data?",
1422
+ "Updated successfully": "Başarıyla güncellendi",
1423
+ "UpdatedAt": "UpdatedAt",
1424
+ "UpdatedBy": "UpdatedBy",
1425
+ "Upgrade": "Yükselt",
1426
+ "Upload": "Yükle",
1427
+ "Upload file settings": "Upload file settings",
1428
+ "Upload new version": "Yeni sürüm yükle",
1429
+ "Upload plugin": "Eklenti yükle",
1430
+ "Uploading": "Uploading",
1431
+ "Use simple pagination mode": "Use simple pagination mode",
1432
+ "Use the same time zone (GMT) for all users": "Tüm kullanıcılar için aynı saat dilimini (GMT) kullanın",
1433
+ "Used for drag and drop sorting scenarios, supporting grouping sorting": "Used for drag and drop sorting scenarios, supporting grouping sorting",
1434
+ "User": "Kullanıcı",
1435
+ "User not found. Please sign in again to continue.": "User not found. Please sign in again to continue.",
1436
+ "User password changed, please signin again.": "User password changed, please signin again.",
1437
+ "Username": "Username",
1438
+ "Users": "Kullanıcılar",
1439
+ "Users & permissions": "Users & permissions",
1440
+ "Valid range: 10-40": "Valid range: 10-40",
1441
+ "Valid range: 100-900": "Valid range: 100-900",
1442
+ "Validation": "Validation",
1443
+ "Validation rule": "Validation rule",
1444
+ "Value": "Value",
1445
+ "Variable identifier": "Variable identifier",
1446
+ "Variable title": "Variable title",
1447
+ "Verification code": "Verification code",
1448
+ "Version": "Sürüm",
1449
+ "Version range": "Sürüm aralığı",
1450
+ "Vertical": "Vertical",
1451
+ "View": "Görüntüle",
1452
+ "View all plugins": "Tüm eklentileri görüntüle",
1453
+ "View record": "Görüntüle",
1454
+ "Village": "Köy",
1455
+ "Visible": "Visible",
1456
+ "Volcano": "Volkan",
1457
+ "Wearable": "Wearable",
1458
+ "Week": "Hafta",
1459
+ "Weekly": "Weekly",
1460
+ "When a field is selected for grouping, it will be grouped first before sorting.": "When a field is selected for grouping, it will be grouped first before sorting.",
1461
+ "When condition is met": "When condition is met",
1462
+ "When condition is not met": "When condition is not met",
1463
+ "When submitting the following fields, the saved values are": "Aşağıdaki alanlar gönderilirken kaydedilen değerler",
1464
+ "When the HTTP method is Post, Put or Patch, and this custom request inside the form, the request body will be automatically filled in with the form data": "When the HTTP method is Post, Put or Patch, and this custom request inside the form, the request body will be automatically filled in with the form data",
1465
+ "When the Label exceeds the width": "When the Label exceeds the width",
1466
+ "With condition": "With condition",
1467
+ "Without condition": "Without condition",
1468
+ "Work week": "Çalışma Haftası",
1469
+ "Workflow": "Workflow",
1470
+ "Wrap": "Wrap",
1471
+ "Wysiwyg": "Wysiwyg",
1472
+ "Year": "Year",
1473
+ "Year-Month-Day": "Yıl-Ay-Gün",
1474
+ "Year/Month/Day": "Yıl/Ay/Gün",
1475
+ "Yearly": "Yearly",
1476
+ "Yes": "Evet",
1477
+ "Yesterday": "Dün",
1478
+ "Your session has expired. Please sign in again.": "Your session has expired. Please sign in again.",
1479
+ "conditions in the group": "conditions in the group",
1480
+ "contains": "içerir",
1481
+ "data source": "veri kaynağı",
1482
+ "does not contain": "içermez",
1483
+ "edit title": "başlığı düzenle",
1484
+ "ends with": "ile biter",
1485
+ "exists": "var olanlar",
1486
+ "is": "eşittir",
1487
+ "is after": "sonra",
1488
+ "is any of": "is any of",
1489
+ "is before": "önce",
1490
+ "is between": "aralık",
1491
+ "is empty": "boş",
1492
+ "is none of": "is none of",
1493
+ "is not": "eşit değildir",
1494
+ "is not empty": "boş değil",
1495
+ "is on or after": "açık veya sonra",
1496
+ "is on or before": "açık veya önce",
1497
+ "item": "item",
1498
+ "items": "items",
1499
+ "loading": "yükleniyor",
1500
+ "name is required": "ad gereklidir",
1501
+ "not ends with": "ile bitmez",
1502
+ "not exists": "var olmayanlar",
1503
+ "not starts with": "ile başlamaz",
1504
+ "operater": "operatör",
1505
+ "pixels": "pixels",
1506
+ "re-download file": "dosyayı yeniden indir",
1507
+ "starts with": "ile başlar",
1508
+ "tlds": "tlds",
1509
+ "visible": "görünür",
1510
+ "{{#label}} email address doesn’t meet the required format": "{{#label}} email address doesn’t meet the required format",
1511
+ "{{#label}} is not allowed to be empty": "{{#label}} is not allowed to be empty",
1512
+ "{{#label}} is required": "{{#label}} is required",
1513
+ "{{#label}} length must be at least {{#limit}} characters long": "{{#label}} length must be at least {{#limit}} characters long",
1514
+ "{{#label}} length must be less than or equal to {{#limit}} characters long": "{{#label}} length must be less than or equal to {{#limit}} characters long",
1515
+ "{{#label}} length must be {{#limit}} characters long": "{{#label}} length must be {{#limit}} characters long",
1516
+ "{{#label}} must be a credit card": "{{#label}} must be a credit card",
1517
+ "{{#label}} must be a float or double": "{{#label}} must be a float or double",
1518
+ "{{#label}} must be a multiple of {{#multiple}}": "{{#label}} must be a multiple of {{#multiple}}",
1519
+ "{{#label}} must be a negative number": "{{#label}} must be a negative number",
1520
+ "{{#label}} must be a number": "{{#label}} must be a number",
1521
+ "{{#label}} must be a positive number": "{{#label}} must be a positive number",
1522
+ "{{#label}} must be a safe number": "{{#label}} must be a safe number",
1523
+ "{{#label}} must be a string": "{{#label}} must be a string",
1524
+ "{{#label}} must be a valid ISO 8601 date": "{{#label}} must be a valid ISO 8601 date",
1525
+ "{{#label}} must be a valid UUID": "{{#label}} must be a valid UUID",
1526
+ "{{#label}} must be a valid date": "{{#label}} must be a valid date",
1527
+ "{{#label}} must be a valid hostname": "{{#label}} must be a valid hostname",
1528
+ "{{#label}} must be a valid port": "{{#label}} must be a valid port",
1529
+ "{{#label}} must be a valid uri": "{{#label}} must be a valid uri",
1530
+ "{{#label}} must be a valid uri with a scheme matching the {{#scheme}} pattern": "{{#label}} must be a valid uri with a scheme matching the {{#scheme}} pattern",
1531
+ "{{#label}} must be an integer": "{{#label}} must be an integer",
1532
+ "{{#label}} must be greater than or equal to {{#limit}}": "{{#label}} must be greater than or equal to {{#limit}}",
1533
+ "{{#label}} must be greater than {{#limit}}": "{{#label}} must be greater than {{#limit}}",
1534
+ "{{#label}} must be in {{#format}} format": "{{#label}} must be in {{#format}} format",
1535
+ "{{#label}} must be less than or equal to {{#limit}}": "{{#label}} must be less than or equal to {{#limit}}",
1536
+ "{{#label}} must be less than {{#limit}}": "{{#label}} must be less than {{#limit}}",
1537
+ "{{#label}} must not have leading or trailing whitespace": "{{#label}} must not have leading or trailing whitespace",
1538
+ "{{#label}} must not have more than {{#limit}} decimal places": "{{#label}} must not have more than {{#limit}} decimal places",
1539
+ "{{#label}} must only contain alpha-numeric and underscore characters": "{{#label}} must only contain alpha-numeric and underscore characters",
1540
+ "{{#label}} must only contain alpha-numeric characters": "{{#label}} must only contain alpha-numeric characters",
1541
+ "{{#label}} must only contain hexadecimal characters": "{{#label}} must only contain hexadecimal characters",
1542
+ "{{#label}} must only contain lowercase characters": "{{#label}} must only contain lowercase characters",
1543
+ "{{#label}} must only contain uppercase characters": "{{#label}} must only contain uppercase characters",
1544
+ "{{#label}} with value \"{{#value}}\" fails to match the required pattern": "{{#label}} with value \"{{#value}}\" fails to match the required pattern",
1545
+ "{{#label}} with value \"{{#value}}\" fails to match the {{#name}} pattern": "{{#label}} with value \"{{#value}}\" fails to match the {{#name}} pattern",
1546
+ "{{#label}} with value \"{{#value}}\" matches the inverted pattern": "{{#label}} with value \"{{#value}}\" matches the inverted pattern",
1547
+ "{{#label}} with value \"{{#value}}\" matches the inverted {{#name}} pattern": "{{#label}} with value \"{{#value}}\" matches the inverted {{#name}} pattern",
1548
+ "{{count}} filter items": "{{count}} filtrelenmiş öğe",
1549
+ "{{count}} more items": "{{count}} öğe daha",
1550
+ "≠": "≠",
1551
+ "≤": "≤",
1552
+ "≥": "≥"
1553
+ }