@nocobase/client 2.0.0-alpha.9 → 2.1.0-alpha.1

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 (194) hide show
  1. package/.dumirc.ts +4 -0
  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 +1 -2
  27. package/es/flow/actions/displayFieldComponent.d.ts +1 -1
  28. package/es/flow/actions/index.d.ts +5 -1
  29. package/es/flow/actions/linkageRules.d.ts +4 -0
  30. package/es/flow/actions/navigateToURL.d.ts +9 -0
  31. package/es/flow/actions/openView.d.ts +2 -13
  32. package/es/flow/actions/setTargetDataScope.d.ts +10 -0
  33. package/es/flow/actions/showMessage.d.ts +9 -0
  34. package/es/flow/actions/showNotification.d.ts +9 -0
  35. package/es/flow/actions/titleField.d.ts +0 -1
  36. package/es/flow/common/Liquid.d.ts +33 -0
  37. package/es/flow/common/Markdown/Display.d.ts +9 -0
  38. package/es/flow/common/Markdown/Edit.d.ts +23 -0
  39. package/es/flow/common/Markdown/Markdown.d.ts +24 -0
  40. package/es/flow/common/Markdown/style.d.ts +10 -0
  41. package/es/flow/common/Markdown/useCDN.d.ts +9 -0
  42. package/es/flow/components/BlockItemCard.d.ts +2 -0
  43. package/es/flow/components/FieldAssignValueInput.d.ts +1 -0
  44. package/es/flow/components/code-editor/extension/CodeEditorExtension.d.ts +14 -0
  45. package/es/flow/components/code-editor/extension/index.d.ts +9 -0
  46. package/es/flow/components/code-editor/index.d.ts +5 -4
  47. package/es/flow/components/code-editor/jsxCompletion.d.ts +10 -0
  48. package/es/flow/components/code-editor/linter.d.ts +2 -0
  49. package/es/flow/components/code-editor/panels/RightExtra.d.ts +3 -1
  50. package/es/flow/components/code-editor/types.d.ts +16 -0
  51. package/es/flow/components/filter/FilterContainer.d.ts +4 -4
  52. package/es/flow/components/filter/FilterGroup.d.ts +2 -1
  53. package/es/flow/components/filter/LinkageFilterItem.d.ts +1 -0
  54. package/es/flow/components/filter/VariableFilterItem.d.ts +4 -1
  55. package/es/flow/components/index.d.ts +1 -1
  56. package/es/flow/components/placeholders/BlockPlaceholder.d.ts +1 -0
  57. package/es/flow/flows/editMarkdownFlow.d.ts +10 -0
  58. package/es/flow/getViewDiffAndUpdateHidden.d.ts +1 -0
  59. package/es/flow/index.d.ts +5 -0
  60. package/es/flow/internal/utils/associationValueCoercion.d.ts +15 -0
  61. package/es/flow/internal/utils/enumOptionsUtils.d.ts +7 -7
  62. package/es/flow/internal/utils/operatorSchemaHelper.d.ts +15 -0
  63. package/es/flow/internal/utils/rebuildFieldSubModel.d.ts +33 -0
  64. package/es/flow/models/actions/AddChildActionModel.d.ts +15 -0
  65. package/es/flow/models/actions/AddNewActionModel.d.ts +1 -0
  66. package/es/flow/models/actions/EditActionModel.d.ts +1 -0
  67. package/es/flow/models/actions/ExpandCollapseActionModel.d.ts +19 -0
  68. package/es/flow/models/actions/FilterActionModel.d.ts +5 -59
  69. package/es/flow/models/actions/JSActionModel.d.ts +13 -0
  70. package/es/flow/models/actions/LinkActionModel.d.ts +18 -0
  71. package/es/flow/models/actions/UpdateRecordActionModel.d.ts +6 -0
  72. package/es/flow/models/actions/index.d.ts +4 -0
  73. package/es/flow/models/base/ActionModel.d.ts +15 -5
  74. package/es/flow/models/base/BlockModel.d.ts +4 -1
  75. package/es/flow/models/base/CollectionBlockModel.d.ts +12 -25
  76. package/es/flow/models/base/FieldModel.d.ts +6 -0
  77. package/es/flow/models/base/GridModel.d.ts +27 -4
  78. package/es/flow/models/base/PageModel/ChildPageModel.d.ts +1 -0
  79. package/es/flow/models/base/PageModel/PageModel.d.ts +3 -0
  80. package/es/flow/models/base/PageModel/PageTabModel.d.ts +2 -0
  81. package/es/flow/models/base/PageModel/RootPageModel.d.ts +2 -0
  82. package/es/flow/models/blocks/details/DetailsBlockModel.d.ts +1 -0
  83. package/es/flow/models/blocks/details/DetailsCustomItemModel.d.ts +2 -2
  84. package/es/flow/models/blocks/details/DetailsGridModel.d.ts +1 -0
  85. package/es/flow/models/blocks/details/DetailsItemModel.d.ts +2 -2
  86. package/es/flow/models/blocks/details/DetailsJSFieldItemModel.d.ts +2 -2
  87. package/es/flow/models/blocks/filter-form/FilterFormBlockModel.d.ts +4 -0
  88. package/es/flow/models/blocks/filter-form/FilterFormGridModel.d.ts +1 -0
  89. package/es/flow/models/blocks/filter-form/FilterFormItemModel.d.ts +5 -4
  90. package/es/flow/models/blocks/filter-form/FilterFormSubmitActionModel.d.ts +1 -1
  91. package/es/flow/models/blocks/filter-form/fields/FilterFormCustomFieldModel.d.ts +2 -1
  92. package/es/flow/models/blocks/filter-manager/flow-actions/customizeFilterRender.d.ts +10 -0
  93. package/es/flow/models/blocks/filter-manager/flow-actions/index.d.ts +2 -0
  94. package/es/flow/models/blocks/filter-manager/flow-actions/operatorComponentProps.d.ts +10 -0
  95. package/es/flow/models/blocks/form/CreateFormModel.d.ts +1 -0
  96. package/es/flow/models/blocks/form/EditFormModel.d.ts +1 -0
  97. package/es/flow/models/blocks/form/FormBlockModel.d.ts +11 -1
  98. package/es/flow/models/blocks/form/FormGridModel.d.ts +1 -0
  99. package/es/flow/models/blocks/form/FormItemModel.d.ts +1 -1
  100. package/es/flow/models/blocks/form/FormJSFieldItemModel.d.ts +1 -1
  101. package/es/flow/models/blocks/form/submitHandler.d.ts +9 -0
  102. package/es/flow/models/blocks/js-block/JSBlock.d.ts +1 -0
  103. package/es/flow/models/blocks/table/JSColumnModel.d.ts +0 -1
  104. package/es/flow/models/blocks/table/TableActionsColumnModel.d.ts +0 -1
  105. package/es/flow/models/blocks/table/TableBlockModel.d.ts +14 -1
  106. package/es/flow/models/blocks/table/TableColumnModel.d.ts +9 -2
  107. package/es/flow/models/blocks/table/TableJSFieldItemModel.d.ts +2 -2
  108. package/es/flow/models/blocks/table/utils.d.ts +8 -0
  109. package/es/flow/models/blocks/utils/transformChildrenToJS.d.ts +42 -0
  110. package/es/flow/models/fields/AssociationFieldModel/AssociationFieldModel.d.ts +1 -0
  111. package/es/flow/models/fields/AssociationFieldModel/CascadeSelectFieldModel.d.ts +29 -0
  112. package/es/flow/models/fields/AssociationFieldModel/RecordPickerFieldModel.d.ts +2 -0
  113. package/es/flow/models/fields/AssociationFieldModel/RecordSelectFieldModel.d.ts +8 -2
  114. package/es/flow/models/fields/AssociationFieldModel/SubFormFieldModel.d.ts +7 -0
  115. package/es/flow/models/fields/AssociationFieldModel/SubTableFieldModel/SubTableColumnModel.d.ts +3 -3
  116. package/es/flow/models/fields/AssociationFieldModel/SubTableFieldModel/index.d.ts +2 -0
  117. package/es/flow/models/fields/AssociationFieldModel/index.d.ts +1 -0
  118. package/es/flow/models/fields/AssociationFieldModel/recordSelectShared.d.ts +49 -0
  119. package/es/flow/models/fields/ClickableFieldModel.d.ts +3 -2
  120. package/es/flow/models/fields/DisplayAssociationField/DisplaySubItemFieldModel.d.ts +1 -0
  121. package/es/flow/models/fields/DisplayAssociationField/DisplaySubListFieldModel.d.ts +1 -0
  122. package/es/flow/models/fields/DisplayAssociationField/DisplaySubTableFieldModel.d.ts +3 -1
  123. package/es/flow/models/fields/DisplayEnumFieldModel.d.ts +1 -0
  124. package/es/flow/models/fields/DisplayJSONFieldModel.d.ts +3 -3
  125. package/es/flow/models/fields/DisplayNumberFieldModel.d.ts +4 -2
  126. package/es/flow/models/fields/DisplayTextFieldModel.d.ts +1 -1
  127. package/es/flow/models/fields/JSItemModel.d.ts +0 -1
  128. package/es/flow/models/fields/JsonFieldModel.d.ts +1 -0
  129. package/es/flow/models/fields/MarkdownItemModel.d.ts +1 -0
  130. package/es/flow/models/fields/TimeFieldModel.d.ts +0 -1
  131. package/es/flow/models/fields/mobile-components/MobileDatePicker.d.ts +10 -0
  132. package/es/flow/models/fields/mobile-components/MobileLazySelect.d.ts +11 -0
  133. package/es/flow/{components/JsonInput.d.ts → models/fields/mobile-components/MobileSelect.d.ts} +1 -1
  134. package/es/flow/models/fields/mobile-components/MobileTimePicker.d.ts +10 -0
  135. package/es/flow/resolveViewParamsToViewList.d.ts +4 -2
  136. package/es/flow/{components/decorator → utils}/index.d.ts +1 -1
  137. package/es/global-theme/type.d.ts +1 -0
  138. package/es/hooks/useFullscreenOverlay.d.ts +20 -0
  139. package/es/index.d.ts +1 -0
  140. package/es/index.mjs +28903 -22307
  141. package/es/modules/menu/FlowPageMenuItem.d.ts +1 -3
  142. package/es/modules/menu/index.d.ts +9 -0
  143. package/es/nocobase-buildin-plugin/plugins/LocalePlugin.d.ts +0 -1
  144. package/es/schema-component/antd/association-select/ReadPretty.d.ts +1 -1
  145. package/es/schema-component/antd/filter/FilterItem.d.ts +1 -1
  146. package/es/schema-component/antd/input/EllipsisWithTooltip.d.ts +1 -0
  147. package/es/schema-component/antd/linkageFilter/LinkageFilterItem.d.ts +1 -1
  148. package/es/schema-component/antd/remote-select/RemoteSelect.d.ts +1 -3
  149. package/es/schema-component/antd/table/Table.Column.ActionBar.d.ts +1 -1
  150. package/es/schema-component/antd/table/Table.Void.d.ts +1 -0
  151. package/es/schema-component/antd/table-v2/Table.Column.ActionBar.d.ts +1 -1
  152. package/es/schema-component/antd/upload/shared.d.ts +1 -1
  153. package/es/schema-settings/LinkageRules/LinkageRuleAction.d.ts +2 -2
  154. package/es/schema-settings/LinkageRules/components/BlockLinkageRuleAction.d.ts +1 -1
  155. package/es/schema-settings/LinkageRules/components/FieldStyleLinkageRuleAction.d.ts +1 -1
  156. package/lib/index-C3fHjsMw-CDWZlvuM.js +2237 -0
  157. package/lib/index.js +453 -239
  158. package/lib/locale/cron/zh-CN.json +33 -0
  159. package/lib/locale/cron/zh-TW.json +33 -0
  160. package/lib/locale/de-DE.json +1545 -0
  161. package/lib/locale/en-US.json +1553 -0
  162. package/lib/locale/es-ES.json +1573 -0
  163. package/lib/locale/fr-FR.json +1549 -0
  164. package/lib/locale/hu-HU.json +1545 -0
  165. package/lib/locale/id-ID.json +1546 -0
  166. package/lib/locale/{it-IT.js → it-IT.json} +1496 -1054
  167. package/lib/locale/ja-JP.json +1564 -0
  168. package/lib/locale/ko-KR.json +1558 -0
  169. package/lib/locale/{nl-NL.js → nl-NL.json} +1493 -1018
  170. package/lib/locale/pt-BR.json +1617 -0
  171. package/lib/locale/ru-RU.json +1551 -0
  172. package/lib/locale/tr-TR.json +1553 -0
  173. package/lib/locale/uk-UA.json +1570 -0
  174. package/lib/locale/vi-VN.json +1545 -0
  175. package/lib/locale/zh-CN.json +1571 -0
  176. package/lib/locale/zh-TW.json +1549 -0
  177. package/package.json +10 -7
  178. package/es/flow/components/decorator/injectable.d.ts +0 -19
  179. package/lib/index-C3fHjsMw-BTweCpKS.js +0 -2023
  180. package/lib/locale/cron/zh-CN.js +0 -33
  181. package/lib/locale/cron/zh-TW.js +0 -33
  182. package/lib/locale/de-DE.js +0 -904
  183. package/lib/locale/en-US.js +0 -1001
  184. package/lib/locale/es-ES.js +0 -824
  185. package/lib/locale/fr-FR.js +0 -844
  186. package/lib/locale/ja-JP.js +0 -1062
  187. package/lib/locale/ko-KR.js +0 -935
  188. package/lib/locale/pt-BR.js +0 -804
  189. package/lib/locale/ru-RU.js +0 -633
  190. package/lib/locale/tr-TR.js +0 -631
  191. package/lib/locale/uk-UA.js +0 -847
  192. package/lib/locale/zh-CN.js +0 -1436
  193. package/lib/locale/zh-TW.js +0 -938
  194. /package/es/flow/{internal/utils → utils}/blockUtils.d.ts +0 -0
@@ -0,0 +1,1546 @@
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)": "(Fields only)",
4
+ "(currently not effective in sub-forms/sub-tables)": "(currently not effective in sub-forms/sub-tables)",
5
+ "12 hour": "12 jam",
6
+ "24 hour": "24 jam",
7
+ "<": "<",
8
+ "=": "=",
9
+ ">": ">",
10
+ "ACL": "ACL",
11
+ "ASC": "ASC",
12
+ "Access": "Akses",
13
+ "Access control": "Kontrol Akses",
14
+ "Accessible": "Dapat Diakses",
15
+ "Accuracy": "Akurasi",
16
+ "Action": "Aksi",
17
+ "Action after successful submission": "Aksi setelah pengiriman berhasil",
18
+ "Action column": "Kolom Aksi",
19
+ "Action display name": "Nama tampilan aksi",
20
+ "Action logs": "Log aksi",
21
+ "Action name": "Nama aksi",
22
+ "Action on existing records": "Aksi pada catatan yang ada",
23
+ "Action on new records": "Aksi pada catatan baru",
24
+ "Action permission": "Izin aksi",
25
+ "Action permissions": "Izin aksi",
26
+ "Action scope": "Lingkup aksi",
27
+ "Action type": "Tipe aksi",
28
+ "Actions": "Aksi",
29
+ "Actions column": "Actions column",
30
+ "Add": "Tambah",
31
+ "Add & Update": "Tambah & Perbarui",
32
+ "Add Markdown": "Tambah Markdown",
33
+ "Add action": "Add action",
34
+ "Add attach": "Tambah lampiran",
35
+ "Add block": "Tambah blok",
36
+ "Add card": "Tambah kartu",
37
+ "Add category": "Tambah kategori",
38
+ "Add child": "Tambah anak",
39
+ "Add child route": "Tambah rute anak",
40
+ "Add condition": "Tambah kondisi",
41
+ "Add condition group": "Tambah grup kondisi",
42
+ "Add event flow": "Add event flow",
43
+ "Add exportable field": "Tambah bidang yang dapat diekspor",
44
+ "Add field": "Tambah bidang",
45
+ "Add filter": "Tambah filter",
46
+ "Add filter group": "Tambah grup filter",
47
+ "Add group": "Tambah grup",
48
+ "Add link": "Tambah tautan",
49
+ "Add linkage rule": "Tambah aturan keterkaitan",
50
+ "Add menu item": "Tambah item menu",
51
+ "Add new": "Tambah baru",
52
+ "Add new mode": "Tambah mode baru",
53
+ "Add option": "Tambah opsi",
54
+ "Add page": "Tambah halaman",
55
+ "Add parameter": "Tambah parameter",
56
+ "Add plugin": "Tambah plugin",
57
+ "Add property": "Tambah properti",
58
+ "Add record": "Tambah catatan",
59
+ "Add request header": "Add request header",
60
+ "Add role": "Tambah peran",
61
+ "Add rule": "Add rule",
62
+ "Add sort field": "Tambah bidang urut",
63
+ "Add step": "Add step",
64
+ "Add tab": "Tambah tab",
65
+ "Add target block": "Add target block",
66
+ "Add template": "Tambah templat",
67
+ "Add text": "Tambah teks",
68
+ "Add type": "Tambah tipe",
69
+ "Add validation rule": "Tambah aturan validasi",
70
+ "Add variable": "Add variable",
71
+ "Add {{type}} after \"{{title}}\"": "Tambah {{type}} setelah \"{{title}}\"",
72
+ "Add {{type}} before \"{{title}}\"": "Tambah {{type}} sebelum \"{{title}}\"",
73
+ "Add {{type}} in \"{{title}}\"": "Tambah {{type}} di \"{{title}}\"",
74
+ "Advanced type": "Tingkat Lanjut",
75
+ "After": "Setelah",
76
+ "After change": "Setelah perubahan",
77
+ "After clicking the custom button, the following field values will be assigned according to the following form.": "Setelah mengklik tombol khusus, nilai bidang berikut akan ditetapkan sesuai dengan formulir berikut.",
78
+ "After clicking the custom button, the following fields of the current record will be saved according to the following form.": "Setelah mengklik tombol khusus, bidang-bidang berikut dari catatan saat ini akan disimpan sesuai dengan formulir berikut.",
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.": "Setelah disembunyikan, menu ini tidak akan lagi muncul di bilah menu. Untuk menampilkannya lagi, Anda perlu pergi ke halaman manajemen rute untuk mengkonfigurasinya.",
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.": "Setelah disembunyikan, tab ini tidak akan lagi muncul di bilah tab. Untuk menampilkannya lagi, Anda perlu pergi ke halaman manajemen rute untuk mengaturnya.",
81
+ "After successful bulk update": "Setelah pembaruan massal berhasil",
82
+ "After successful request": "Setelah permintaan berhasil",
83
+ "After successful save": "Setelah penyimpanan berhasil",
84
+ "After successful submission": "Setelah pengiriman berhasil",
85
+ "After successful submission, the selected data blocks will be automatically refreshed.": "After successful submission, the selected data blocks will be automatically refreshed.",
86
+ "After successful update": "Setelah pembaruan berhasil",
87
+ "Agenda": "Agenda",
88
+ "All": "Semua",
89
+ "All collections": "Semua koleksi",
90
+ "All collections use general action permissions by default; permission configured individually will override the default one.": "Semua koleksi menggunakan izin aksi umum secara default; izin yang dikonfigurasi secara individual akan menggantikan yang default.",
91
+ "All events": "Semua acara",
92
+ "All plugin settings": "Semua pengaturan plugin",
93
+ "All records": "Semua catatan",
94
+ "Allow": "Izinkan",
95
+ "Allow access": "Izinkan akses",
96
+ "Allow action": "Izinkan aksi",
97
+ "Allow add new": "Izinkan tambah baru",
98
+ "Allow add new data": "Izinkan tambah data baru",
99
+ "Allow add new, update and delete actions": "Izinkan tambah baru, perbarui, dan hapus aksi",
100
+ "Allow adding records to the current collection": "Izinkan menambahkan catatan ke koleksi saat ini",
101
+ "Allow disassociation": "Izinkan pemutusan asosiasi",
102
+ "Allow dissociate": "Izinkan pemisahan",
103
+ "Allow linking to multiple records": "Izinkan menautkan ke beberapa catatan",
104
+ "Allow list": "Allow list",
105
+ "Allow multiple": "Izinkan beberapa",
106
+ "Allow multiple selection": "Izinkan pemilihan ganda",
107
+ "Allow relative URIs": "Allow relative URIs",
108
+ "Allow selection of existing file": "Allow selection of existing file",
109
+ "Allow selection of existing records": "Izinkan pemilihan catatan yang ada",
110
+ "Allow sign up": "Izinkan pendaftaran",
111
+ "Allow to configure plugins": "Izinkan untuk mengkonfigurasi plugin",
112
+ "Allow to desgin pages": "Izinkan untuk mendesain halaman",
113
+ "Allow to manage plugins": "Izinkan untuk mengelola plugin",
114
+ "Allow uploading multiple files": "Izinkan mengunggah beberapa file",
115
+ "Allows configuration of the whole system, including UI, collections, permissions, etc.": "Memungkinkan konfigurasi seluruh sistem, termasuk UI, koleksi, izin, dll.",
116
+ "Allows to clear cache, reboot application": "Memungkinkan untuk menghapus cache, me-reboot aplikasi",
117
+ "Allows to configure interface": "Memungkinkan untuk mengkonfigurasi antarmuka",
118
+ "Allows to configure plugins": "Memungkinkan untuk mengkonfigurasi plugin",
119
+ "Allows to install, activate, disable plugins": "Memungkinkan untuk menginstal, mengaktifkan, menonaktifkan plugin",
120
+ "Allows unencoded square brackets inside the query string": "Allows unencoded square brackets inside the query string",
121
+ "Alphabet": "Alfabet",
122
+ "Any": "Any",
123
+ "App error": "Kesalahan aplikasi",
124
+ "Application reloading": "Aplikasi sedang memuat ulang",
125
+ "Are you sure to delete this plugin?": "Anda yakin ingin menghapus plugin ini?",
126
+ "Are you sure to disable this plugin?": "Anda yakin ingin menonaktifkan plugin ini?",
127
+ "Are you sure you don't want to save?": "Anda yakin tidak ingin menyimpan?",
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?": "Anda yakin ingin menghapusnya?",
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?": "Anda yakin ingin memutus asosiasinya?",
132
+ "Are you sure you want to hide these routes in menu?": "Anda yakin ingin menyembunyikan rute ini di menu?",
133
+ "Are you sure you want to hide this menu?": "Anda yakin ingin menyembunyikan menu ini?",
134
+ "Are you sure you want to hide this tab?": "Anda yakin ingin menyembunyikan tab ini?",
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": "Anda yakin ingin melakukan aksi permintaan Kustom",
137
+ "Are you sure you want to perform the Refresh action?": "Anda yakin ingin melakukan aksi Refresh?",
138
+ "Are you sure you want to perform the Submit action?": "Anda yakin ingin melakukan aksi Submit?",
139
+ "Are you sure you want to perform the Trigger workflow action?": "Anda yakin ingin melakukan aksi Picu alur kerja?",
140
+ "Are you sure you want to perform the Update record action?": "Anda yakin ingin melakukan aksi Perbarui catatan?",
141
+ "Are you sure you want to perform the {{title}} action?": "Anda yakin ingin melakukan aksi {{title}}?",
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?": "Anda yakin ingin menampilkan rute ini di menu?",
144
+ "Area": "Area",
145
+ "Area chart": "Bagan area",
146
+ "Assign data scope for the template": "Assign data scope for the template",
147
+ "Assign data scope for the template": "Tetapkan cakupan data untuk templat",
148
+ "Assign field values": "Tetapkan nilai bidang",
149
+ "Assign value": "Assign value",
150
+ "Assignment mode": "Assignment mode",
151
+ "Associate": "Asosiasikan",
152
+ "Associated records": "Catatan terkait",
153
+ "Association field settings": "Association field settings",
154
+ "Association fields": "Bidang asosiasi",
155
+ "Association fields filter": "Filter bidang asosiasi",
156
+ "Association select settings": "Association select settings",
157
+ "Association table settings": "Association table settings",
158
+ "Association tag settings": "Association tag settings",
159
+ "AssociationField component": "AssociationField component",
160
+ "Attempts to encode the URI using encodeURI before validating it again": "Attempts to encode the URI using encodeURI before validating it again",
161
+ "Audit logs": "Log audit",
162
+ "Authentication": "Autentikasi",
163
+ "Author": "Penulis",
164
+ "Auto": "Otomatis",
165
+ "Auto focus": "Auto focus",
166
+ "Auto increment": "Penambahan otomatis",
167
+ "AutoGenId": "Bidang ID yang dibuat otomatis",
168
+ "Automatic close": "Tutup otomatis",
169
+ "Automatically drop objects that depend on the collection (such as views), and in turn all objects that depend on those objects": "Secara otomatis menghapus objek yang bergantung pada koleksi (seperti tampilan), dan pada gilirannya semua objek yang bergantung pada objek tersebut",
170
+ "Automatically generate default values": "Secara otomatis menghasilkan nilai default",
171
+ "Automatically remove heading and tailing spaces": "Automatically remove heading and tailing spaces",
172
+ "Automatically update timestamp on update": "Perbarui stempel waktu secara otomatis saat pembaruan",
173
+ "Automatically update timestamp to the current server time on update": "Perbarui stempel waktu secara otomatis ke waktu server saat ini saat pembaruan",
174
+ "Available \"target blocks\" are all data blocks on the current page": "Available \"target blocks\" are all data blocks on the current page",
175
+ "Available Collections": "Available Collections",
176
+ "Background Color": "Warna Latar Belakang",
177
+ "Bar chart": "Bagan batang",
178
+ "Base": "Base",
179
+ "Basic": "Dasar",
180
+ "Basic configuration": "Basic configuration",
181
+ "Before": "Sebelum",
182
+ "Before change": "Sebelum perubahan",
183
+ "Before render": "Before render",
184
+ "Blank block": "Blok kosong",
185
+ "Block": "Blok",
186
+ "Block Linkage rules": "Block Linkage rules",
187
+ "Block linkage rules": "Block linkage rules",
188
+ "Block list": "Block list",
189
+ "Block template": "Templat blok",
190
+ "Block templates": "Templat blok",
191
+ "Block title": "Judul blok",
192
+ "Block type": "Tipe blok",
193
+ "Blocks": "Blok",
194
+ "Blue": "Biru",
195
+ "Bookmark": "Markah buku",
196
+ "Boolean": "Boolean",
197
+ "Bottom left": "Bottom left",
198
+ "Bottom right": "Bottom right",
199
+ "Built-in": "Bawaan",
200
+ "Bulk edit": "Edit massal",
201
+ "Bulk enable": "Aktifkan massal",
202
+ "Bulk update": "Pembaruan massal",
203
+ "Button background color": "Warna latar belakang tombol",
204
+ "Button icon": "Ikon tombol",
205
+ "Button settings": "Button settings",
206
+ "Button title": "Judul tombol",
207
+ "Button type": "Button type",
208
+ "Calculation engine": "Mesin kalkulasi",
209
+ "Calendar": "Kalender",
210
+ "Calendar Month": "Calendar Month",
211
+ "Calendar Year": "Calendar Year",
212
+ "Calendar collection": "Koleksi kalender",
213
+ "Calendar week": "Calendar week",
214
+ "Cancel": "Batal",
215
+ "Cannot find the model instance with UID": "Cannot find the model instance with UID",
216
+ "Card settings": "Card settings",
217
+ "Cascade Select": "Pilih Bertingkat",
218
+ "Cascade select": "Cascade select",
219
+ "Cascade select settings": "Cascade select settings",
220
+ "Categories": "Kategori",
221
+ "Category name": "Nama kategori",
222
+ "Center": "Tengah",
223
+ "Change password": "Ganti kata sandi",
224
+ "Changed to": "Berubah menjadi",
225
+ "Changelog": "Log perubahan",
226
+ "Chart blocks": "Blok bagan",
227
+ "Chart config": "Konfigurasi bagan",
228
+ "Chart title": "Judul bagan",
229
+ "Chart type": "Tipe bagan",
230
+ "Check strength": "Check strength",
231
+ "Checkbox": "Kotak centang",
232
+ "Checkbox group": "Grup kotak centang",
233
+ "Children": "Anak-anak",
234
+ "China region": "Wilayah Tiongkok",
235
+ "Choices": "Pilihan",
236
+ "Choices fields": "Bidang pilihan",
237
+ "City": "Kota",
238
+ "Classic page (v1)": "Classic page (v1)",
239
+ "Clear": "Bersihkan",
240
+ "Clear cache": "Bersihkan cache",
241
+ "Clear default value": "Bersihkan nilai default",
242
+ "Click": "Click",
243
+ "Click event": "Click event",
244
+ "Click or drag file to this area to upload": "Klik atau seret file ke area ini untuk mengunggah",
245
+ "Click the \"UI Editor\" icon in the upper right corner to enter the UI Editor mode": "Click the \"UI Editor\" icon in the upper right corner to enter the UI Editor mode",
246
+ "Clicked row record": "Clicked row record",
247
+ "Close": "Tutup",
248
+ "Collapse": "Ciutkan",
249
+ "Collapse all": "Ciutkan semua",
250
+ "Collapse button": "Collapse",
251
+ "Collapse settings": "Collapse settings",
252
+ "Collapsed rows": "Collapsed rows",
253
+ "Collection": "Koleksi",
254
+ "Collection category": "Kategori koleksi",
255
+ "Collection display name": "Nama tampilan koleksi",
256
+ "Collection fields": "Bidang koleksi",
257
+ "Collection manager": "Manajer koleksi",
258
+ "Collection name": "Nama koleksi",
259
+ "Collection selector": "Pemilih koleksi",
260
+ "Collection template": "Templat koleksi",
261
+ "Collections": "Koleksi",
262
+ "Collections & Fields": "Koleksi & Bidang",
263
+ "Colon": "Colon",
264
+ "Color": "Warna",
265
+ "Column": "Kolom",
266
+ "Column Settings": "Column Settings",
267
+ "Column chart": "Bagan kolom",
268
+ "Column title": "Judul kolom",
269
+ "Column width": "Lebar kolom",
270
+ "Coming soon...": "Segera hadir...",
271
+ "Compact theme": "Tema kompak",
272
+ "Comparision": "Perbandingan",
273
+ "Comparison": "Comparison",
274
+ "Component properties": "Component properties",
275
+ "Compressed file url": "URL file terkompresi",
276
+ "Computer": "Computer",
277
+ "Condition": "Kondisi",
278
+ "Conditional assignment": "Conditional assignment",
279
+ "Configuration saved": "Configuration saved",
280
+ "Configuration:": "Configuration:",
281
+ "Configure": "Konfigurasi",
282
+ "Configure actions": "Konfigurasi aksi",
283
+ "Configure calendar": "Konfigurasi kalender",
284
+ "Configure columns": "Konfigurasi kolom",
285
+ "Configure field": "Konfigurasi bidang",
286
+ "Configure fields": "Konfigurasi bidang",
287
+ "Configure fields of {{title}}": "Konfigurasi bidang dari {{title}}",
288
+ "Configure page": "Configure page",
289
+ "Configure permission": "Konfigurasi izin",
290
+ "Configure permissions": "Konfigurasi izin",
291
+ "Configure rows": "Configure rows",
292
+ "Configure the rows and columns of the grid.": "Configure the rows and columns of the grid.",
293
+ "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.",
294
+ "Confirm": "Konfirmasi",
295
+ "Confirm Load Collections": "Confirm Load Collections",
296
+ "Confirm password": "Konfirmasi kata sandi",
297
+ "Confirmation": "Confirmation",
298
+ "Connect data blocks": "Hubungkan blok data",
299
+ "Connect fields": "Connect fields",
300
+ "Connect to database view": "Hubungkan ke tampilan database",
301
+ "Console": "Console",
302
+ "Constant": "Konstan",
303
+ "Constant value": "Nilai konstan",
304
+ "Contain": "Berisi",
305
+ "Content": "Konten",
306
+ "Content overflow display mode": "Content overflow display mode",
307
+ "Content settings": "Content settings",
308
+ "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.",
309
+ "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.",
310
+ "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.",
311
+ "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.",
312
+ "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.",
313
+ "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.",
314
+ "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.",
315
+ "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.",
316
+ "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.",
317
+ "Convert reference to duplicate": "Ubah referensi menjadi duplikat",
318
+ "Convert template to duplicate": "Convert template to duplicate",
319
+ "Copy": "Copy",
320
+ "Copy into the form and continue to fill in": "Salin ke formulir dan lanjutkan mengisi",
321
+ "Cover": "Sampul",
322
+ "Create": "Buat",
323
+ "Create an account": "Buat akun",
324
+ "Create calendar block": "Buat blok kalender",
325
+ "Create collection": "Buat koleksi",
326
+ "Create form": "Buat formulir",
327
+ "Create gantt block": "Buat blok gantt",
328
+ "Create inverse field in the target collection": "Buat bidang invers di koleksi target",
329
+ "Create kanban block": "Buat blok kanban",
330
+ "Create template": "Buat templat",
331
+ "Created at": "Dibuat pada",
332
+ "Created by": "Dibuat oleh",
333
+ "CreatedAt": "Dibuat pada",
334
+ "CreatedBy": "Dibuat oleh",
335
+ "Current action": "Current action",
336
+ "Current block": "Current block",
337
+ "Current collection": "Koleksi saat ini",
338
+ "Current device type": "Current device type",
339
+ "Current form": "Formulir saat ini",
340
+ "Current object": "Objek saat ini",
341
+ "Current popup": "Current popup",
342
+ "Current popup parent record": "Current popup parent record",
343
+ "Current popup record": "Catatan pop-up saat ini",
344
+ "Current record": "Catatan saat ini",
345
+ "Current record blocks": "Blok catatan saat ini",
346
+ "Current role": "Peran saat ini",
347
+ "Current time": "Waktu saat ini",
348
+ "Current user": "Pengguna saat ini",
349
+ "Custom": "Kustom",
350
+ "Custom Title": "Judul Kustom",
351
+ "Custom column name": "Nama kolom kustom",
352
+ "Custom column title": "Judul kolom kustom",
353
+ "Custom field": "Custom field",
354
+ "Custom field display name": "Nama tampilan bidang kustom",
355
+ "Custom name": "Nama kustom",
356
+ "Custom request": "Permintaan kustom",
357
+ "Custom title": "Judul kustom",
358
+ "Custom variable": "Custom variable",
359
+ "Customize": "Sesuaikan",
360
+ "Cyan": "Sian",
361
+ "DESC": "DESC",
362
+ "Daily": "Harian",
363
+ "Danger action": "Danger action",
364
+ "Danger red": "Merah bahaya",
365
+ "Dashed": "Garis putus-putus",
366
+ "Data Model": "Model Data",
367
+ "Data blocks": "Blok data",
368
+ "Data changes": "Perubahan data",
369
+ "Data fields": "Bidang data",
370
+ "Data loading mode": "Mode pemuatan data",
371
+ "Data model": "Model data",
372
+ "Data model tools": "Alat model data",
373
+ "Data refreshed successfully": "Data refreshed successfully",
374
+ "Data scope": "Cakupan data",
375
+ "Data source": "Sumber data",
376
+ "Data source key": "Data source key",
377
+ "Data source permissions": "Izin sumber data",
378
+ "Data sources": "Sumber data",
379
+ "Data template": "Templat data",
380
+ "Data will be updated": "Data akan diperbarui",
381
+ "DataSource": "Sumber Data",
382
+ "Date": "Tanggal",
383
+ "Date & Time": "Tanggal & Waktu",
384
+ "Date display format": "Format tampilan tanggal",
385
+ "Date format": "Format tanggal",
386
+ "Date range limit": "Batas rentang tanggal",
387
+ "Date scope": "Date scope",
388
+ "Date variables": "Variabel tanggal",
389
+ "Date variables(Deprecated)": "Date variables(Deprecated)",
390
+ "DateOnly": "Hanya Tanggal",
391
+ "Datetime": "Waktu",
392
+ "Datetime (with time zone)": "Waktu (dengan zona waktu)",
393
+ "Datetime (without time zone)": "Waktu (tanpa zona waktu)",
394
+ "Datetime settings": "Datetime settings",
395
+ "Day": "Hari",
396
+ "Day before yesterday": "Day before yesterday",
397
+ "Day/Month/Year": "Hari/Bulan/Tahun",
398
+ "Default": "Default",
399
+ "Default collapse": "Ciutkan default",
400
+ "Default collapsed": "Default collapsed",
401
+ "Default expand all": "Default expand all",
402
+ "Default filter conditions": "Default filter conditions",
403
+ "Default is the ID field": "Default adalah bidang ID",
404
+ "Default operator": "Default operator",
405
+ "Default role": "Peran default",
406
+ "Default sorting": "Default sorting",
407
+ "Default theme": "Tema default",
408
+ "Default title for each record": "Judul default untuk setiap catatan",
409
+ "Default value": "Nilai default",
410
+ "Default value to current server time": "Nilai default ke waktu server saat ini",
411
+ "Default value to current time": "Nilai default ke waktu saat ini",
412
+ "Delete": "Hapus",
413
+ "Delete Event": "Hapus Acara",
414
+ "Delete action": "Hapus aksi",
415
+ "Delete block": "Hapus blok",
416
+ "Delete category": "Hapus kategori",
417
+ "Delete collection": "Hapus koleksi",
418
+ "Delete events": "Hapus acara",
419
+ "Delete field": "Hapus bidang",
420
+ "Delete menu item": "Hapus item menu",
421
+ "Delete record": "Hapus catatan",
422
+ "Delete role": "Hapus peran",
423
+ "Delete route": "Hapus rute",
424
+ "Delete routes": "Hapus rute",
425
+ "Delete settings": "Delete settings",
426
+ "Delete step": "Delete step",
427
+ "Delete table column": "Hapus kolom tabel",
428
+ "Delete this event?": "Hapus acara ini?",
429
+ "Delete this target block": "Delete this target block",
430
+ "Delete variable": "Delete variable",
431
+ "Deny list": "Deny list",
432
+ "Department name": "Nama departemen",
433
+ "Departments": "Departemen",
434
+ "Dependencies check": "Pemeriksaan ketergantungan",
435
+ "Dependencies check failed, can't enable.": "Pemeriksaan ketergantungan gagal, tidak dapat diaktifkan.",
436
+ "Dependencies compatibility check": "Pemeriksaan kompatibilitas ketergantungan",
437
+ "Deprecated": "Deprecated",
438
+ "Description": "Deskripsi",
439
+ "Desktop device": "Perangkat desktop",
440
+ "Desktop routes": "Rute desktop",
441
+ "Detail item settings": "Detail item settings",
442
+ "Details": "Detail",
443
+ "Details settings": "Details settings",
444
+ "Determine whether a record exists by the following fields": "Tentukan apakah suatu catatan ada berdasarkan bidang-bidang berikut",
445
+ "Dialog": "Dialog",
446
+ "Direct assignment": "Direct assignment",
447
+ "Direct duplicate": "Duplikat langsung",
448
+ "Disable": "Nonaktifkan",
449
+ "Disable manual input": "Disable manual input",
450
+ "Disable tabs": "Nonaktifkan tab",
451
+ "Disable validation": "Disable validation",
452
+ "Disabled": "Dinonaktifkan",
453
+ "Disassociate": "Putuskan asosiasi",
454
+ "Disassociate record": "Putuskan asosiasi catatan",
455
+ "Display <1><0>10</0><1>20</1><2>50</2><3>100</3></1> items per page": "Tampilkan <1><0>10</0><1>20</1><2>50</2><3>100</3></1> item per halaman",
456
+ "Display <icon></icon> when unchecked": "Tampilkan <icon></icon> saat tidak dicentang",
457
+ "Display Field settings": "Display Field settings",
458
+ "Display association fields": "Tampilkan bidang asosiasi",
459
+ "Display field title": "Tampilkan judul bidang",
460
+ "Display fields": "Tampilkan bidang koleksi",
461
+ "Display label": "Display label",
462
+ "Display mode": "Display mode",
463
+ "Display name": "Nama tampilan",
464
+ "Display only": "Display only",
465
+ "Display order number": "Tampilkan nomor urut",
466
+ "Display page title": "Tampilkan judul halaman",
467
+ "Display style": "Display style",
468
+ "Display title": "Tampilkan judul",
469
+ "DisplayName": "Nama Tampilan",
470
+ "Divide by": "Bagi dengan",
471
+ "Divider line color": "Warna garis pemisah",
472
+ "Do not concatenate search params in the URL": "Jangan menggabungkan parameter pencarian di URL",
473
+ "Do not load data when filter is empty": "Jangan memuat data ketika filter kosong",
474
+ "Docs": "Dokumen",
475
+ "Domains ending with a . character are permitted": "Domains ending with a . character are permitted",
476
+ "Done": "Selesai",
477
+ "Double click": "Double click",
478
+ "Double click to choose entire object": "Klik dua kali untuk memilih seluruh objek",
479
+ "Download": "Unduh",
480
+ "Download logs": "Unduh log",
481
+ "Drag and drop sorting field": "Seret dan lepas bidang pengurutan",
482
+ "Drag and drop the file here or click to upload, file size should not exceed 30M": "Seret dan lepas file di sini atau klik untuk mengunggah, ukuran file tidak boleh melebihi 30M",
483
+ "Dragging": "Menyeret",
484
+ "Drawer": "Laci",
485
+ "Dropdown": "Dropdown",
486
+ "Dropdown select": "Dropdown select",
487
+ "Duplicate": "Duplikat",
488
+ "Duplicate and continue": "Duplikat dan lanjutkan",
489
+ "Duplicate mode": "Mode duplikat",
490
+ "Duplicate template": "Duplikat templat",
491
+ "Duplicating": "Menduplikasi",
492
+ "Duration (seconds, 0 = no auto close)": "Duration (seconds, 0 = no auto close)",
493
+ "Dynamic value": "Nilai dinamis",
494
+ "Easy reading": "Mudah dibaca",
495
+ "Easy-reading": "Mudah dibaca",
496
+ "Edit": "Edit",
497
+ "Edit Title": "Edit Title",
498
+ "Edit block title": "Edit judul blok",
499
+ "Edit block title & description": "Edit judul & deskripsi blok",
500
+ "Edit button": "Edit tombol",
501
+ "Edit category": "Edit kategori",
502
+ "Edit chart": "Edit bagan",
503
+ "Edit collection": "Edit koleksi",
504
+ "Edit description": "Edit deskripsi",
505
+ "Edit event flows": "Edit event flows",
506
+ "Edit field": "Edit bidang",
507
+ "Edit field title": "Edit judul bidang",
508
+ "Edit form": "Edit formulir",
509
+ "Edit group title": "Edit judul grup",
510
+ "Edit link": "Edit tautan",
511
+ "Edit markdown": "Edit markdown",
512
+ "Edit menu item": "Edit item menu",
513
+ "Edit page size": "Edit page size",
514
+ "Edit page title": "Edit judul halaman",
515
+ "Edit popup": "Edit popup",
516
+ "Edit profile": "Edit profil",
517
+ "Edit record": "Edit catatan",
518
+ "Edit role": "Edit peran",
519
+ "Edit tab": "Edit tab",
520
+ "Edit tooltip": "Edit tooltip",
521
+ "Edit variable": "Edit variable",
522
+ "Editable": "Dapat diedit",
523
+ "Ellipsis": "Elipsis",
524
+ "Ellipsis overflow content": "Konten meluap elipsis",
525
+ "Email": "Email",
526
+ "Embedded": "Embedded",
527
+ "Empty": "Kosong",
528
+ "Enable": "Aktifkan",
529
+ "Enable SMS authentication": "Aktifkan autentikasi SMS",
530
+ "Enable Scan": "Enable Scan",
531
+ "Enable actions": "Aktifkan aksi",
532
+ "Enable child collections": "Aktifkan koleksi anak",
533
+ "Enable click-to-open": "Enable click-to-open",
534
+ "Enable drag and drop sorting": "Aktifkan pengurutan seret dan lepas",
535
+ "Enable form data template": "Aktifkan templat data formulir",
536
+ "Enable index column": "Enable index column",
537
+ "Enable link": "Aktifkan tautan",
538
+ "Enable page header": "Aktifkan header halaman",
539
+ "Enable page tabs": "Aktifkan tab halaman",
540
+ "Enable quick edit": "Enable quick edit",
541
+ "Enable refresh": "Enable refresh",
542
+ "Enable secondary confirmation": "Aktifkan konfirmasi sekunder",
543
+ "Enable tabs": "Enable tabs",
544
+ "Enable tree table": "Enable tree table",
545
+ "Enable virtual scrolling": "Enable virtual scrolling",
546
+ "Enabled": "Diaktifkan",
547
+ "Enabled languages": "Bahasa yang diaktifkan",
548
+ "End": "End",
549
+ "End accessor": "End accessor",
550
+ "End date field": "Bidang tanggal akhir",
551
+ "Enter collection name": "Enter collection name",
552
+ "Enter end accessor": "Enter end accessor",
553
+ "Enter field title": "Enter field title",
554
+ "Enter number of rows to display": "Enter number of rows to display",
555
+ "Enter page title": "Enter page title",
556
+ "Enter placeholder text": "Enter placeholder text",
557
+ "Enter start accessor": "Enter start accessor",
558
+ "Enter title accessor": "Enter title accessor",
559
+ "Enter value": "Enter value",
560
+ "Error message": "Pesan kesalahan",
561
+ "Event": "Acara",
562
+ "Event flow": "Event flow",
563
+ "Event selected": "Event selected",
564
+ "Event settings": "Event settings",
565
+ "Exact day": "Exact day",
566
+ "Execute": "Jalankan",
567
+ "Execute JavaScript": "Execute JavaScript",
568
+ "Exists": "Ada",
569
+ "Expand All": "Perluas Semua",
570
+ "Expand all": "Perluas semua",
571
+ "Expand all rows by default": "Expand all rows by default",
572
+ "Expand button": "Expand",
573
+ "Expand/Collapse": "Perluas/Ciutkan",
574
+ "Export": "Ekspor",
575
+ "Exportable fields": "Bidang yang dapat diekspor",
576
+ "Expression": "Ekspresi",
577
+ "Expression collection": "Koleksi ekspresi",
578
+ "FORMULAJS_DOC_URL": "https://v2.docs.nocobase.com/calculation-engine/formula",
579
+ "Failed to load plugin": "Gagal memuat plugin",
580
+ "False": "Salah",
581
+ "Feedback": "Umpan balik",
582
+ "Field": "Bidang",
583
+ "Field Linkage rules": "Field Linkage rules",
584
+ "Field assignment": "Field assignment",
585
+ "Field component": "Komponen bidang",
586
+ "Field display name": "Nama tampilan bidang",
587
+ "Field interface": "Antarmuka bidang",
588
+ "Field linkage rules": "Field linkage rules",
589
+ "Field mode": "Mode bidang",
590
+ "Field model": "Field model",
591
+ "Field name": "Nama bidang",
592
+ "Field permission": "Izin bidang",
593
+ "Field settings": "Field settings",
594
+ "Field source": "Sumber bidang",
595
+ "Field title": "Judul bidang",
596
+ "Field type": "Tipe bidang",
597
+ "Field value changes": "Perubahan nilai bidang",
598
+ "Field value do not meet the requirements": "Nilai bidang tidak memenuhi persyaratan",
599
+ "Field value size is": "Ukuran nilai bidang adalah",
600
+ "Field values must be unique.": "Nilai bidang harus unik.",
601
+ "Fields": "Bidang",
602
+ "Fields can only be used correctly if they are defined with an interface.": "Bidang hanya dapat digunakan dengan benar jika didefinisikan dengan antarmuka.",
603
+ "Fields values": "Nilai bidang",
604
+ "File manager": "Manajer file",
605
+ "File size exceeds the limit": "Ukuran file melebihi batas",
606
+ "File size should not exceed {{size}}.": "Ukuran file tidak boleh melebihi {{size}}.",
607
+ "File type is not allowed": "Tipe file tidak diizinkan",
608
+ "File type is not supported for previewing, please download it to preview.": "Tipe file tidak didukung untuk pratinjau, silakan unduh untuk pratinjau.",
609
+ "Fill": "Isi",
610
+ "Filled": "Terisi",
611
+ "Filter": "Filter",
612
+ "Filter blocks": "Blok filter",
613
+ "Filter configuration": "Filter configuration",
614
+ "Filter data based on the specific field, with the requirement that the field value must be unique.": "Filter data berdasarkan bidang tertentu, dengan persyaratan bahwa nilai bidang harus unik.",
615
+ "Filter out a single piece or a group of records as a template": "Saring satu bagian atau sekelompok catatan sebagai templat",
616
+ "Filter target key": "Kunci target filter",
617
+ "Filterable fields": "Bidang yang dapat difilter",
618
+ "Find by the following fields": "Temukan berdasarkan bidang-bidang berikut",
619
+ "First or create": "Pertama atau buat",
620
+ "Fix block": "Perbaiki blok",
621
+ "Fixed": "Tetap",
622
+ "Fixed to the left": "Fixed to the left",
623
+ "Fixed to the right": "Fixed to the right",
624
+ "Flexible popup": "Pop-up fleksibel",
625
+ "Flow Page": "Modern page (v2)",
626
+ "Font Size(px)": "Font Size(px)",
627
+ "Font Style": "Font Style",
628
+ "Font Weight": "Font Weight",
629
+ "Foreign key": "Kunci asing",
630
+ "Foreign key 1": "Kunci asing 1",
631
+ "Foreign key 2": "Kunci asing 2",
632
+ "Form": "Formulir",
633
+ "Form (Add new)": "Formulir (Tambah baru)",
634
+ "Form (Edit)": "Formulir (Edit)",
635
+ "Form UID": "Form UID",
636
+ "Form data templates": "Templat data formulir",
637
+ "Form duplicate": "Form duplicate",
638
+ "Form field assignment": "Form field assignment",
639
+ "Form item settings": "Form item settings",
640
+ "Form settings": "Form settings",
641
+ "Form values": "Nilai formulir",
642
+ "Form values change": "Form values change",
643
+ "Form variable": "Form variable",
644
+ "Format": "Format",
645
+ "Formula": "Rumus",
646
+ "Formula description": "Hitung nilai di setiap catatan berdasarkan bidang lain dalam catatan yang sama.",
647
+ "Formula error.": "Kesalahan rumus.",
648
+ "Formula mode": "Mode rumus",
649
+ "Formula.js supports most Microsoft Excel formula functions.": "Formula.js mendukung sebagian besar fungsi rumus Microsoft Excel.",
650
+ "Full height": "Tinggi penuh",
651
+ "Full permissions": "Full permissions",
652
+ "Function": "Fungsi",
653
+ "Gantt": "Gantt",
654
+ "Geek blue": "Biru geek",
655
+ "General": "Umum",
656
+ "General action permissions": "Izin aksi umum",
657
+ "General collection": "Koleksi umum",
658
+ "General configuration": "General configuration",
659
+ "General fields": "Bidang umum",
660
+ "General permissions": "Izin umum",
661
+ "Generated automatically if left blank": "Dihasilkan secara otomatis jika dibiarkan kosong",
662
+ "Generic properties": "Properti generik",
663
+ "Global action permissions": "Izin aksi global",
664
+ "Global permissions": "Izin global",
665
+ "Gold": "Emas",
666
+ "Greater than": "Greater than",
667
+ "Green": "Hijau",
668
+ "Grid Card": "Kartu Grid",
669
+ "Group": "Grup",
670
+ "Grouped sorting": "Pengurutan kelompok",
671
+ "Grouping field": "Bidang pengelompokan",
672
+ "HTML content": "HTML content",
673
+ "Half of day": "Setengah hari",
674
+ "Handbook": "Buku pegangan",
675
+ "Hidden": "Tersembunyi",
676
+ "Hidden (reserved value)": "Hidden (reserved value)",
677
+ "Hidden text": "Hidden text",
678
+ "Hidden(reserved value)": "Tersembunyi (nilai cadangan)",
679
+ "Hide": "Sembunyikan",
680
+ "Hide column": "Sembunyikan kolom",
681
+ "Hide in menu": "Sembunyikan di menu",
682
+ "Highlight": "Sorot",
683
+ "Home page": "Halaman utama",
684
+ "Homepage": "Halaman beranda",
685
+ "Horizontal": "Horizontal",
686
+ "Hour": "Jam",
687
+ "Html settings": "Html settings",
688
+ "IANA registry": "IANA registry",
689
+ "ID": "ID",
690
+ "Icon": "Ikon",
691
+ "Icon only": "Icon only",
692
+ "Identifier for program usage. Support letters, numbers and underscores, must start with an letter.": "Pengenal untuk penggunaan program. Mendukung huruf, angka, dan garis bawah, harus diawali dengan huruf.",
693
+ "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.": "Jika sebuah koleksi tidak memiliki kunci utama, Anda harus mengkonfigurasi kunci catatan unik untuk menemukan catatan baris dalam sebuah blok, kegagalan untuk mengkonfigurasi ini akan mencegah pembuatan blok data untuk koleksi tersebut.",
694
+ "If collection inherits, choose inherited collections as templates": "Jika koleksi diwarisi, pilih koleksi yang diwarisi sebagai templat",
695
+ "If selected, the page will display Tab pages.": "Jika dipilih, halaman akan menampilkan halaman Tab.",
696
+ "If selected, the route will be displayed in the menu.": "Jika dipilih, rute akan ditampilkan di menu.",
697
+ "Ignore invalid email length errors": "Ignore invalid email length errors",
698
+ "Imperative Drawer": "Imperative Drawer",
699
+ "Import": "Impor",
700
+ "Importable fields": "Bidang yang dapat diimpor",
701
+ "In configuration": "Dalam konfigurasi",
702
+ "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.": "Dalam mode konfigurasi, seluruh kolom menjadi transparan. Dalam mode non-konfigurasi, seluruh kolom akan disembunyikan. Bahkan jika seluruh kolom disembunyikan, nilai default yang dikonfigurasi dan pengaturan lainnya akan tetap berlaku.",
703
+ "Incomplete uploading files need to be resolved": "File yang diunggah tidak lengkap perlu diselesaikan",
704
+ "Index": "Indeks",
705
+ "Individual": "Individual",
706
+ "Inherited fields": "Bidang yang diwarisi",
707
+ "Inherited template": "Inherited template",
708
+ "Inherits": "Mewarisi",
709
+ "Inner": "Dalam",
710
+ "Input": "Input",
711
+ "Input +, -, *, /, ( ) to calculate, input @ to open field variables.": "Masukkan +, -, *, /, ( ) untuk menghitung, masukkan @ untuk membuka variabel bidang.",
712
+ "Input request data": "Input request data",
713
+ "Insert": "Sisipkan",
714
+ "Insert above": "Sisipkan di atas",
715
+ "Insert after": "Sisipkan setelah",
716
+ "Insert before": "Sisipkan sebelum",
717
+ "Insert below": "Sisipkan di bawah",
718
+ "Insert if not exists": "Sisipkan jika tidak ada",
719
+ "Insert if not exists, or update": "Sisipkan jika tidak ada, atau perbarui",
720
+ "Insert inner": "Sisipkan dalam",
721
+ "Insert left": "Sisipkan kiri",
722
+ "Insert right": "Sisipkan kanan",
723
+ "Installing": "Menginstal",
724
+ "Integer": "Bilangan bulat",
725
+ "Invalid JSON format": "Format JSON tidak valid",
726
+ "Inverse field display name": "Nama tampilan bidang invers",
727
+ "Inverse field name": "Nama bidang invers",
728
+ "Inverse relationship type": "Tipe hubungan invers",
729
+ "Italic": "Italic",
730
+ "Junction collection": "Koleksi persimpangan",
731
+ "Kanban": "Kanban",
732
+ "Label": "Label",
733
+ "Label align": "Penyelarasan label",
734
+ "Label field": "Bidang label",
735
+ "Label width": "Lebar label",
736
+ "Language": "Bahasa",
737
+ "Large": "Besar",
738
+ "Large screen device": "Perangkat layar besar",
739
+ "Last 30 days": "30 hari terakhir",
740
+ "Last 7 days": "7 hari terakhir",
741
+ "Last 90 days": "90 hari terakhir",
742
+ "Last Month": "Last Month",
743
+ "Last Quarter": "Last Quarter",
744
+ "Last Week": "Last Week",
745
+ "Last Year": "Last Year",
746
+ "Last month": "Bulan lalu",
747
+ "Last quarter": "Kuartal terakhir",
748
+ "Last updated": "Terakhir diperbarui",
749
+ "Last updated at": "Terakhir diperbarui pada",
750
+ "Last updated by": "Terakhir diperbarui oleh",
751
+ "Last week": "Minggu lalu",
752
+ "Last year": "Tahun lalu",
753
+ "Layout": "Tata Letak",
754
+ "Leave it blank, unless you need a custom intermediate table": "Biarkan kosong, kecuali Anda membutuhkan tabel perantara kustom",
755
+ "Left": "Kiri",
756
+ "Left fixed": "Kiri tetap",
757
+ "Length": "Panjang",
758
+ "Less than": "Less than",
759
+ "License": "Lisensi",
760
+ "Lime": "Jeruk nipis",
761
+ "Limit": "Limit",
762
+ "Line break": "Garis baru",
763
+ "Line chart": "Bagan garis",
764
+ "Link": "Tautan",
765
+ "Link action settings": "Link action settings",
766
+ "Link to": "Tautkan ke",
767
+ "Link to description": "Digunakan untuk membuat hubungan koleksi dengan cepat dan kompatibel dengan sebagian besar skenario umum. Cocok untuk penggunaan non-pengembang. Ketika hadir sebagai bidang, itu adalah pilihan dropdown yang digunakan untuk memilih catatan dari koleksi target. Setelah dibuat, itu akan secara bersamaan menghasilkan bidang-bidang terkait dari koleksi saat ini di koleksi target.",
768
+ "Linkage rule": "Aturan keterkaitan",
769
+ "Linkage rules": "Aturan keterkaitan",
770
+ "Linkage with form fields": "Keterkaitan dengan bidang formulir",
771
+ "List": "Daftar",
772
+ "Load all data when filter is empty": "Muat semua data ketika filter kosong",
773
+ "Load collections": "Load collections",
774
+ "Local": "Lokal",
775
+ "Log in with an existing account": "Masuk dengan akun yang sudah ada",
776
+ "Logging and monitoring": "Pencatatan dan pemantauan",
777
+ "Logo": "Logo",
778
+ "Long text": "Teks panjang",
779
+ "MATHJS_DOC_URL": "https://v2.docs.nocobase.com/calculation-engine/math",
780
+ "Magenta": "Magenta",
781
+ "Main": "Utama",
782
+ "Main department": "Departemen utama",
783
+ "Manage all settings": "Kelola semua pengaturan",
784
+ "Manually close": "Tutup manual",
785
+ "Many to many": "Banyak ke banyak",
786
+ "Many to many description": "Digunakan untuk membuat hubungan banyak-ke-banyak. Misalnya, seorang siswa akan memiliki banyak guru dan seorang guru akan memiliki banyak siswa. Ketika hadir sebagai bidang, itu adalah pilihan dropdown yang digunakan untuk memilih catatan dari koleksi terkait.",
787
+ "Many to one": "Banyak ke satu",
788
+ "Many to one description": "Digunakan untuk membuat hubungan banyak-ke-satu. Misalnya, sebuah kota hanya dapat dimiliki oleh satu negara dan sebuah negara dapat memiliki banyak kota. Ketika hadir sebagai bidang, itu adalah pilihan dropdown yang digunakan untuk memilih catatan dari koleksi terkait. Setelah dibuat, bidang Satu-ke-banyak secara otomatis dihasilkan dalam koleksi terkait.",
789
+ "Markdown": "Markdown",
790
+ "Marketplace": "Pasar",
791
+ "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 hadir dengan serangkaian besar fungsi dan konstanta bawaan, dan menawarkan solusi terintegrasi untuk bekerja dengan berbagai tipe data.",
792
+ "Max Domain Segments": "Max Domain Segments",
793
+ "Max length": "Panjang maksimum",
794
+ "Max length must greater than min length": "Panjang maksimum harus lebih besar dari panjang minimum",
795
+ "Max value": "Max value",
796
+ "MaxDate": "Tanggal Maksimum",
797
+ "Maximum": "Maksimum",
798
+ "Maximum must greater than minimum": "Maksimum harus lebih besar dari minimum",
799
+ "Media": "Media",
800
+ "Medium": "Medium",
801
+ "Meet": "Meet",
802
+ "Meet <1><0>All</0><1>Any</1></1> conditions in the group": "Penuhi <1><0>Semua</0><1>Salah Satu</1></1> kondisi dalam grup",
803
+ "Menu": "Menu",
804
+ "Menu item icon": "Ikon item menu",
805
+ "Menu item name": "Nama item menu",
806
+ "Menu item title": "Judul item menu",
807
+ "Menu permissions": "Izin menu",
808
+ "Message content": "Message content",
809
+ "Message popup close method": "Metode tutup pop-up pesan",
810
+ "Message type": "Message type",
811
+ "Middle": "Tengah",
812
+ "Millisecond": "Milidetik",
813
+ "Min Domain Segments": "Min Domain Segments",
814
+ "Min length": "Panjang minimum",
815
+ "Min length must less than max length": "Panjang minimum harus kurang dari panjang maksimum",
816
+ "Min value": "Min value",
817
+ "MinDate": "Tanggal Minimum",
818
+ "Minimum": "Minimum",
819
+ "Minimum must less than maximum": "Minimum harus kurang dari maksimum",
820
+ "Mobile": "Mobile",
821
+ "Mobile routes": "Rute seluler",
822
+ "Modal": "Modal",
823
+ "Modal add": "Modal tambah",
824
+ "Mode": "Mode",
825
+ "Modern page (v2)": "Modern page (v2)",
826
+ "Month": "Bulan",
827
+ "Monthly": "Bulanan",
828
+ "More details": "Detail lebih lanjut",
829
+ "More options": "Opsi lainnya",
830
+ "Move down": "Move down",
831
+ "Move to": "Pindah ke",
832
+ "Move up": "Move up",
833
+ "Move {{title}} to": "Pindahkan {{title}} ke",
834
+ "Multiple": "Multiple",
835
+ "Multiple select": "Pilih beberapa",
836
+ "Multiply by": "Kalikan dengan",
837
+ "Must be 1-50 characters in length (excluding @.<>\"'/)": "Harus 1-50 karakter (tidak termasuk @.<>\"'/)",
838
+ "Must select to the last level": "Harus memilih sampai level terakhir",
839
+ "Must use `-` and `:`": "Must use `-` and `:`",
840
+ "N/A": "N/A",
841
+ "Name": "Nama",
842
+ "Navigate": "Navigasi",
843
+ "Navigate to URL": "Navigate to URL",
844
+ "New menu items are allowed to be accessed by default.": "Item menu baru diizinkan untuk diakses secara default.",
845
+ "New password": "Kata sandi baru",
846
+ "New routes are allowed to be accessed by default": "Rute baru diizinkan untuk diakses secara default",
847
+ "Next": "Next",
848
+ "Next 30 days": "30 hari ke depan",
849
+ "Next 7 days": "7 hari ke depan",
850
+ "Next 90 days": "90 hari ke depan",
851
+ "Next Month": "Next Month",
852
+ "Next Quarter": "Next Quarter",
853
+ "Next Week": "Next Week",
854
+ "Next Year": "Next Year",
855
+ "Next month": "Bulan depan",
856
+ "Next quarter": "Kuartal depan",
857
+ "Next week": "Minggu depan",
858
+ "Next year": "Tahun depan",
859
+ "Nickname": "Nama panggilan",
860
+ "No": "Tidak",
861
+ "No CHANGELOG.md file": "Tidak ada file CHANGELOG.md",
862
+ "No README.md file": "Tidak ada file README.md",
863
+ "No allow `-` and `:`": "No allow `-` and `:`",
864
+ "No assigned fields configured": "No assigned fields configured",
865
+ "No blocks to connect": "Tidak ada blok untuk dihubungkan",
866
+ "No configuration available.": "Tidak ada konfigurasi yang tersedia.",
867
+ "No data": "Tidak ada data",
868
+ "No event flows": "No event flows",
869
+ "No form available for reset.": "No form available for reset.",
870
+ "No form available for submission.": "No form available for submission.",
871
+ "No linkage rules": "No linkage rules",
872
+ "No pages yet, please configure first": "No pages yet, please configure first",
873
+ "No parent popup": "No parent popup",
874
+ "No records selected for bulk edit": "No records selected for bulk edit",
875
+ "No records selected for deletion": "No records selected for deletion",
876
+ "No resource or record selected for deletion": "No resource or record selected for deletion",
877
+ "No resource selected for bulk edit": "No resource selected for bulk edit",
878
+ "No resource selected for deletion": "No resource selected for deletion",
879
+ "No resource selected for refresh": "No resource selected for refresh",
880
+ "None": "Tidak ada",
881
+ "Normal": "Normal",
882
+ "Not Fixed": "Not fixed",
883
+ "Not enabled": "Tidak diaktifkan",
884
+ "Not fixed": "Tidak diperbaiki",
885
+ "Not required": "Tidak wajib",
886
+ "Notification": "Notifikasi",
887
+ "Notification description": "Notification description",
888
+ "Notification title": "Notification title",
889
+ "Notification type": "Notification type",
890
+ "Now": "Sekarang",
891
+ "Npm package": "Paket Npm",
892
+ "Npm package name": "Nama paket Npm",
893
+ "Null": "Null",
894
+ "Number": "Angka",
895
+ "Number settings": "Number settings",
896
+ "Object Fit": "Ukuran Objek",
897
+ "Off": "Mati",
898
+ "Official plugin": "Plugin resmi",
899
+ "Old password": "Kata sandi lama",
900
+ "On": "Hidup",
901
+ "One to many": "Satu ke banyak",
902
+ "One to many description": "Digunakan untuk membuat hubungan satu-ke-banyak. Misalnya, sebuah negara akan memiliki banyak kota dan sebuah kota hanya dapat berada di satu negara. Ketika hadir sebagai bidang, itu adalah sub-tabel yang menampilkan catatan dari koleksi terkait. Ketika dibuat, bidang Banyak-ke-satu secara otomatis dihasilkan dalam koleksi terkait.",
903
+ "One to one": "Satu ke satu",
904
+ "One to one (belongs to)": "Satu ke satu (milik)",
905
+ "One to one (has one)": "Satu ke satu (memiliki satu)",
906
+ "One to one description": "Digunakan untuk membuat hubungan satu-ke-satu. Misalnya, seorang pengguna memiliki profil.",
907
+ "Only support standard JSON data": "Only support standard JSON data",
908
+ "Only the selected fields will be used as the initialization data for the form": "Hanya bidang yang dipilih yang akan digunakan sebagai data inisialisasi untuk formulir",
909
+ "Only use `-`": "Only use `-`",
910
+ "Only use `.`": "Only use `.`",
911
+ "Only use `_`": "Only use `_`",
912
+ "Open in new window": "Buka di jendela baru",
913
+ "Open in<1><0>Modal</0><1>Drawer</1><2>Window</2></1>": "Buka di<1><0>Modal</0><1>Laci</1><2>Jendela</2></1>",
914
+ "Open mode": "Mode buka",
915
+ "Open mode configuration": "Open mode configuration",
916
+ "Operate on existing data": "Operasikan pada data yang ada",
917
+ "Operate on new data": "Operasikan pada data baru",
918
+ "Operation failed": "Operasi gagal",
919
+ "Operation succeeded": "Operasi berhasil",
920
+ "Operator": "Operator",
921
+ "Option label": "Label opsi",
922
+ "Option value": "Nilai opsi",
923
+ "Options": "Opsi",
924
+ "Orange": "Oranye",
925
+ "Original field title: ": "Judul bidang asli: ",
926
+ "Original name": "Nama asli",
927
+ "Original title: ": "Judul asli: ",
928
+ "Other": "Lainnya",
929
+ "Other action": "Other action",
930
+ "Other block": "Other block",
931
+ "Other blocks": "Blok lainnya",
932
+ "Other chart": "Bagan lainnya",
933
+ "Other collections": "Koleksi lainnya",
934
+ "Other column": "Other column",
935
+ "Other form": "Other form",
936
+ "Other records": "Catatan lainnya",
937
+ "Others": "Lain-lain",
938
+ "Outlined": "Garis luar",
939
+ "Override": "Timpa",
940
+ "Override field": "Timpa bidang",
941
+ "Oversized": "Terlalu besar",
942
+ "Own records": "Catatan sendiri",
943
+ "Owners": "Pemilik",
944
+ "PK & FK fields": "Bidang PK & FK",
945
+ "Package name": "Nama paket",
946
+ "PackageName": "Nama Paket",
947
+ "Page": "Halaman",
948
+ "Page (v2)": "Page (v2)",
949
+ "Page Title": "Page Title",
950
+ "Page number": "Nomor halaman",
951
+ "Page settings": "Page settings",
952
+ "Page size": "Ukuran halaman",
953
+ "Parent": "Induk",
954
+ "Parent ID": "ID Induk",
955
+ "Parent collection fields": "Bidang koleksi induk",
956
+ "Parent object": "Objek induk",
957
+ "Parent popup": "Parent popup",
958
+ "Parent popup record": "Catatan pop-up induk",
959
+ "Parent record": "Catatan induk",
960
+ "Password": "Kata sandi",
961
+ "Password Options": "Password Options",
962
+ "Password mismatch": "Kata sandi tidak cocok",
963
+ "Past": "Past",
964
+ "Path": "Jalur",
965
+ "Pattern": "Pola",
966
+ "Percent": "Persen",
967
+ "Perform the Custom request": "Lakukan permintaan Kustom",
968
+ "Perform the Refresh": "Lakukan Refresh",
969
+ "Perform the Submit": "Lakukan Submit",
970
+ "Perform the Trigger workflow": "Lakukan Picu alur kerja",
971
+ "Perform the Update record": "Lakukan Perbarui catatan",
972
+ "Perform the {{title}}": "Lakukan {{title}}",
973
+ "Permission deined": "Izin ditolak",
974
+ "Permission denied": "Izin ditolak",
975
+ "Permission policy": "Kebijakan izin",
976
+ "Phone": "Telepon",
977
+ "Phone device": "Perangkat telepon",
978
+ "Picker": "Pemilih",
979
+ "Pie chart": "Bagan pai",
980
+ "Pin to left": "Pin to left",
981
+ "Pin to right": "Pin to right",
982
+ "Placeholder": "Placeholder",
983
+ "Placement": "Placement",
984
+ "Please add a data block on the page first": "Please add a data block on the page first",
985
+ "Please add or select record": "Harap tambahkan atau pilih catatan",
986
+ "Please configure the URL": "Harap konfigurasikan URL",
987
+ "Please configure the duplicate fields": "Harap konfigurasikan bidang duplikat",
988
+ "Please confirm the SQL statement first": "Harap konfirmasi pernyataan SQL terlebih dahulu",
989
+ "Please enter form uid": "Please enter form uid",
990
+ "Please enter the target block UID": "Please enter the target block UID",
991
+ "Please enter variable identifier": "Please enter variable identifier",
992
+ "Please enter variable title": "Please enter variable title",
993
+ "Please fill in the iframe URL": "Harap isi URL iframe",
994
+ "Please input message content": "Please input message content",
995
+ "Please input notification description": "Please input notification description",
996
+ "Please input notification title": "Please input notification title",
997
+ "Please input target action uid": "Please input target action uid",
998
+ "Please input target block uid": "Please input target block uid",
999
+ "Please input target form uid": "Please input target form uid",
1000
+ "Please select": "Please select",
1001
+ "Please select field": "Please select field",
1002
+ "Please select fields": "Please select fields",
1003
+ "Please select fields to filter": "Please select fields to filter",
1004
+ "Please select filterable fields": "Please select filterable fields",
1005
+ "Please select state": "Please select state",
1006
+ "Please select the records to be updated": "Harap pilih catatan yang akan diperbarui",
1007
+ "Please select time or variable": "Harap pilih waktu atau variabel",
1008
+ "Please use a valid SELECT or WITH AS statement": "Harap gunakan pernyataan SELECT atau WITH AS yang valid",
1009
+ "Plugin": "Plugin",
1010
+ "Plugin Zip File": "File Zip Plugin",
1011
+ "Plugin dependencies check failed": "Pemeriksaan ketergantungan plugin gagal",
1012
+ "Plugin dependencies check failed, you should change the dependent version to meet the version requirements.": "Pemeriksaan ketergantungan plugin gagal, Anda harus mengubah versi dependen untuk memenuhi persyaratan versi.",
1013
+ "Plugin dependency version mismatch": "Versi ketergantungan plugin tidak cocok",
1014
+ "Plugin loading failed. Please check the server logs.": "Pemuatan plugin gagal. Harap periksa log server.",
1015
+ "Plugin manager": "Manajer plugin",
1016
+ "Plugin name": "Nama plugin",
1017
+ "Plugin settings": "Pengaturan plugin",
1018
+ "Plugin settings permissions": "Izin pengaturan plugin",
1019
+ "Plugin source": "Sumber plugin",
1020
+ "Plugin starting...": "Plugin sedang dimulai...",
1021
+ "Plugin stopping...": "Plugin sedang dihentikan...",
1022
+ "Plugin tab name": "Nama tab plugin",
1023
+ "Plugin's version": "Versi plugin",
1024
+ "Pop-up": "Pop-up",
1025
+ "Popup": "Pop-up",
1026
+ "Popup form": "Formulir pop-up",
1027
+ "Popup message": "Pesan pop-up",
1028
+ "Popup record": "Popup record",
1029
+ "Popup settings": "Popup settings",
1030
+ "Popup size": "Ukuran pop-up",
1031
+ "Popup uid": "Popup UID",
1032
+ "Position": "Posisi",
1033
+ "Precision": "Presisi",
1034
+ "Precision(UI)": "Precision(UI)",
1035
+ "Prefix": "Awalan",
1036
+ "Preset fields": "Bidang prasetel",
1037
+ "Prettify": "Perindah",
1038
+ "Preview": "Pratinjau",
1039
+ "Preview Settings": "Preview Settings",
1040
+ "Preview field component": "Preview field component",
1041
+ "Primary": "Primer",
1042
+ "Primary key, unique identifier, self growth": "Kunci utama, pengenal unik, pertumbuhan otomatis",
1043
+ "Print": "Cetak",
1044
+ "Problematic": "Bermasalah",
1045
+ "Progress field": "Bidang progres",
1046
+ "Properties": "Properti",
1047
+ "Providing certain collections as options for users, typically used in polymorphic or inheritance scenarios": "Menyediakan koleksi tertentu sebagai opsi untuk pengguna, biasanya digunakan dalam skenario polimorfik atau pewarisan",
1048
+ "Province": "Provinsi",
1049
+ "Province/city/area name": "Nama provinsi/kota/area",
1050
+ "Purple": "Ungu",
1051
+ "Quarter": "Kuartal",
1052
+ "Quarter of day": "Seperempat hari",
1053
+ "QuarterYear": "Tahun Kuartal",
1054
+ "Quick add": "Tambah cepat",
1055
+ "Quick create": "Buat cepat",
1056
+ "Quick duplicate": "Duplikat cepat",
1057
+ "Quick upload": "Unggah cepat",
1058
+ "Radio group": "Grup radio",
1059
+ "Randomly generated and can be modified. Support letters, numbers and underscores, must start with an letter.": "Dihasilkan secara acak dan dapat dimodifikasi. Mendukung huruf, angka, dan garis bawah, harus diawali dengan huruf.",
1060
+ "Read only": "Hanya baca",
1061
+ "ReadOnly": "ReadOnly",
1062
+ "ReadPretty": "ReadPretty",
1063
+ "Readme": "Readme",
1064
+ "Readonly": "Hanya baca",
1065
+ "Recommended": "Recommended",
1066
+ "Record ID": "ID catatan",
1067
+ "Record deleted successfully": "Record deleted successfully",
1068
+ "Record picker": "Pemilih catatan",
1069
+ "Record unique key": "Kunci unik catatan",
1070
+ "RecordPicker settings": "RecordPicker settings",
1071
+ "Records can be sorted": "Catatan dapat diurutkan",
1072
+ "Records per page": "Catatan per halaman",
1073
+ "Red": "Merah",
1074
+ "Redirect to": "Alihkan ke",
1075
+ "Reference template": "Templat referensi",
1076
+ "References": "References",
1077
+ "Refresh": "Segarkan",
1078
+ "Refresh data after execution": "Refresh data after execution",
1079
+ "Refresh data blocks": "Refresh data blocks",
1080
+ "Refresh data on action": "Segarkan data pada aksi",
1081
+ "Refresh data on close": "Segarkan data saat tutup",
1082
+ "Refresh target blocks": "Refresh target blocks",
1083
+ "Regular Expression": "Regular Expression",
1084
+ "Regular expression": "Pola",
1085
+ "Related collection": "Koleksi terkait",
1086
+ "Relation": "Relasi",
1087
+ "Relationship blocks": "Blok hubungan",
1088
+ "Relationship type": "Tipe hubungan",
1089
+ "Reload application": "Muat ulang aplikasi",
1090
+ "Remains the same": "Tetap sama",
1091
+ "Remove": "Hapus",
1092
+ "Render Failed": "Gagal Merender",
1093
+ "Render mode": "Render mode",
1094
+ "Repeats": "Berulang",
1095
+ "Request API": "Permintaan API",
1096
+ "Request URL": "URL permintaan",
1097
+ "Request body": "Isi permintaan",
1098
+ "Request headers": "Header permintaan",
1099
+ "Request method": "Metode permintaan",
1100
+ "Request query parameters": "Parameter kueri permintaan",
1101
+ "Request settings": "Pengaturan permintaan",
1102
+ "Request success": "Permintaan berhasil",
1103
+ "Required": "Wajib",
1104
+ "Reset": "Atur ulang",
1105
+ "Reset link expiration": "Reset link expiration",
1106
+ "Response record": "Response record",
1107
+ "Response type": "Response type",
1108
+ "Restart": "Mulai ulang",
1109
+ "Restart application": "Mulai ulang aplikasi",
1110
+ "Restrict only relative URIs": "Restrict only relative URIs",
1111
+ "Result": "Hasil",
1112
+ "Retry after {{count}} seconds": "Coba lagi setelah {{count}} detik",
1113
+ "Return to the main application": "Kembali ke aplikasi utama",
1114
+ "Return to the previous popup or page": "Kembali ke pop-up atau halaman sebelumnya",
1115
+ "Rich Text": "Teks Kaya",
1116
+ "Right": "Kanan",
1117
+ "Right fixed": "Kanan tetap",
1118
+ "Role UID": "UID Peran",
1119
+ "Role display name": "Nama tampilan peran",
1120
+ "Role name": "Nama peran",
1121
+ "Roles": "Peran",
1122
+ "Roles & Permissions": "Peran & Izin",
1123
+ "Route name": "Nama rute",
1124
+ "Route permissions": "Izin rute",
1125
+ "Routes": "Rute",
1126
+ "Row click": "Row click",
1127
+ "Rows": "Rows",
1128
+ "SQL collection": "Koleksi SQL",
1129
+ "Save": "Simpan",
1130
+ "Save action": "Simpan aksi",
1131
+ "Save as block template": "Simpan sebagai templat blok",
1132
+ "Save as inherited template": "Save as inherited template",
1133
+ "Save as reference template": "Save as reference template",
1134
+ "Save as template": "Simpan sebagai templat",
1135
+ "Save conditions": "Simpan kondisi",
1136
+ "Save failed": "Save failed",
1137
+ "Save mode": "Mode simpan",
1138
+ "Save record": "Simpan catatan",
1139
+ "Saved successfully": "Berhasil disimpan",
1140
+ "Scale": "Scale",
1141
+ "Scale Down": "Perkecil",
1142
+ "Scan to input": "Scan to input",
1143
+ "Scheme": "Scheme",
1144
+ "Scientifix notation": "Notasi ilmiah",
1145
+ "Scope name": "Nama lingkup",
1146
+ "Screen size": "Ukuran layar",
1147
+ "Search": "Cari",
1148
+ "Search and select collection": "Cari dan pilih koleksi",
1149
+ "Search collections...": "Search collections...",
1150
+ "Search parameters": "Parameter pencarian",
1151
+ "Search plugin": "Cari plugin",
1152
+ "Search plugin...": "Cari plugin...",
1153
+ "Second": "Detik",
1154
+ "Secondary confirmation": "Konfirmasi sekunder",
1155
+ "Security": "Keamanan",
1156
+ "Select": "Pilih",
1157
+ "Select a source field to use metadata of the field": "Select a source field to use metadata of the field",
1158
+ "Select a variable": "Pilih variabel",
1159
+ "Select all": "Pilih semua",
1160
+ "Select an existing piece of data as the initialization data for the form": "Pilih bagian data yang ada sebagai data inisialisasi untuk formulir",
1161
+ "Select collection": "Pilih koleksi",
1162
+ "Select data blocks to refresh": "Select data blocks to refresh",
1163
+ "Select data source": "Pilih sumber data",
1164
+ "Select date": "Select date",
1165
+ "Select field": "Pilih bidang",
1166
+ "Select file": "Pilih file",
1167
+ "Select form fields": "Select form fields",
1168
+ "Select grouping field": "Pilih bidang pengelompokan",
1169
+ "Select icon": "Pilih ikon",
1170
+ "Select level": "Pilih level",
1171
+ "Select mode": "Select mode",
1172
+ "Select record": "Pilih catatan",
1173
+ "Select target action": "Select target action",
1174
+ "Select target block": "Select target block",
1175
+ "Select target form block": "Select target form block",
1176
+ "Select template": "Pilih templat",
1177
+ "Select trigger event": "Select trigger event",
1178
+ "Select variable": "Select variable",
1179
+ "Select view": "Pilih tampilan",
1180
+ "Selected": "Terpilih",
1181
+ "Selected Collections": "Selected Collections",
1182
+ "Selected records deleted successfully": "Selected records deleted successfully",
1183
+ "Selector": "Pemilih",
1184
+ "Selector mode": "Mode pemilih",
1185
+ "Selector setting": "Selector setting",
1186
+ "Send code": "Kirim kode",
1187
+ "Separate multiple values with comma or Enter": "Separate multiple values with comma or Enter",
1188
+ "Separator": "Pemisah",
1189
+ "Set Template Engine": "Atur Mesin Templat",
1190
+ "Set action state": "Set action state",
1191
+ "Set block height": "Atur tinggi blok",
1192
+ "Set block layout": "Atur tata letak blok",
1193
+ "Set block state": "Set block state",
1194
+ "Set button state": "Set button state",
1195
+ "Set condition": "Set condition",
1196
+ "Set data loading mode": "Atur mode pemuatan data",
1197
+ "Set data scope": "Set data scope",
1198
+ "Set default sorting rules": "Atur aturan pengurutan default",
1199
+ "Set default value": "Atur nilai default",
1200
+ "Set details field state": "Set details field state",
1201
+ "Set field state": "Set field state",
1202
+ "Set field value": "Set field value",
1203
+ "Set form field state": "Set form field state",
1204
+ "Set form field value": "Set form field value",
1205
+ "Set state": "Set state",
1206
+ "Set the count of columns displayed in a row": "Atur jumlah kolom yang ditampilkan dalam satu baris",
1207
+ "Set the data scope": "Atur cakupan data",
1208
+ "Set validation rules": "Atur aturan validasi",
1209
+ "Set value": "Set value",
1210
+ "Setting": "Pengaturan",
1211
+ "Settings": "Pengaturan",
1212
+ "Show date range": "Show date range",
1213
+ "Show file name": "Tampilkan nama file",
1214
+ "Show in menu": "Tampilkan di menu",
1215
+ "Show label": "Show label",
1216
+ "Show lunar": "Tampilkan kalender lunar",
1217
+ "Show message": "Show message",
1218
+ "Show notification": "Show notification",
1219
+ "Show row numbers": "Show row numbers",
1220
+ "Show time": "Tampilkan waktu",
1221
+ "Sign in": "Masuk",
1222
+ "Sign in via account": "Masuk melalui akun",
1223
+ "Sign in via phone": "Masuk melalui telepon",
1224
+ "Sign in with another account": "Masuk dengan akun lain",
1225
+ "Sign out": "Keluar",
1226
+ "Sign up": "Daftar",
1227
+ "Sign up successfully, and automatically jump to the sign in page": "Berhasil mendaftar, dan otomatis melompat ke halaman masuk",
1228
+ "Signed up successfully. It will jump to the login page.": "Berhasil mendaftar. Akan melompat ke halaman login.",
1229
+ "Simple string replacement, can be used to interpolate variables in a string.": "Penggantian string sederhana, dapat digunakan untuk menginterpolasi variabel dalam string.",
1230
+ "Single line text": "Teks satu baris",
1231
+ "Single select": "Pilih satu",
1232
+ "Single select and radio fields can be used as the grouping field": "Bidang pilihan tunggal dan radio dapat digunakan sebagai bidang pengelompokan",
1233
+ "Size": "Ukuran",
1234
+ "Sizes": "Sizes",
1235
+ "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": "Lewati pengambilan jumlah total catatan tabel selama paging untuk mempercepat pemuatan. Disarankan untuk mengaktifkan opsi ini untuk tabel data dengan jumlah data yang besar",
1236
+ "Skip required validation": "Lewati validasi wajib",
1237
+ "Small": "Kecil",
1238
+ "SmartTv": "SmartTv",
1239
+ "Some files are not uploaded correctly, please check.": "Some files are not uploaded correctly, please check.",
1240
+ "Sorry, the page you visited does not exist.": "Maaf, halaman yang Anda kunjungi tidak ada.",
1241
+ "Sort": "Urutkan",
1242
+ "Sortable": "Dapat diurutkan",
1243
+ "Source collection": "Koleksi sumber",
1244
+ "Source collections": "Koleksi sumber",
1245
+ "Source key": "Kunci sumber",
1246
+ "Specific properties": "Properti spesifik",
1247
+ "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.",
1248
+ "Specify height": "Tentukan tinggi",
1249
+ "Start": "Start",
1250
+ "Start accessor": "Start accessor",
1251
+ "Start date field": "Bidang tanggal mulai",
1252
+ "State": "State",
1253
+ "Stay on current page": "Tetap di halaman saat ini",
1254
+ "Stay on the current popup or page": "Tetap di pop-up atau halaman saat ini",
1255
+ "Steps": "Steps",
1256
+ "Store the creation time of each record": "Simpan waktu pembuatan setiap catatan",
1257
+ "Store the creation user of each record": "Simpan pengguna pembuat setiap catatan",
1258
+ "Store the last update time of each record": "Simpan waktu pembaruan terakhir setiap catatan",
1259
+ "Store the last update user of each record": "Simpan pengguna pembaruan terakhir setiap catatan",
1260
+ "Street": "Jalan",
1261
+ "String": "String",
1262
+ "String template": "Templat string",
1263
+ "Style": "Gaya",
1264
+ "Sub-detail": "Sub-detail",
1265
+ "Sub-details": "Sub-detail",
1266
+ "Sub-form": "Sub-formulir",
1267
+ "Sub-form(Popover)": "Sub-formulir(Pop-over)",
1268
+ "Sub-table": "Sub-tabel",
1269
+ "Subform mode": "Mode sub-formulir",
1270
+ "Submit": "Kirim",
1271
+ "Submit action settings": "Submit action settings",
1272
+ "Submit record": "Submit record",
1273
+ "Submitted successfully": "Berhasil dikirim",
1274
+ "Subtable": "Sub-tabel",
1275
+ "Subtable mode": "Mode sub-tabel",
1276
+ "Successfully": "Successfully",
1277
+ "Suffix": "Akhiran",
1278
+ "Super admin": "Administrator super",
1279
+ "Superior department": "Departemen atasan",
1280
+ "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)",
1281
+ "Support for a single or bulk upload.": "Dukungan untuk unggah tunggal atau massal.",
1282
+ "Switch role": "Ganti peran",
1283
+ "Switching the picker, the value and default value will be cleared": "Mengganti pemilih, nilai dan nilai default akan dihapus",
1284
+ "Sync from database": "Sinkronkan dari database",
1285
+ "Sync from form fields": "Sinkronkan dari bidang formulir",
1286
+ "Sync successfully": "Berhasil disinkronkan",
1287
+ "Syntax references": "Referensi sintaks",
1288
+ "System": "Sistem",
1289
+ "System & security": "Sistem & keamanan",
1290
+ "System fields": "Bidang sistem",
1291
+ "System info": "Info sistem",
1292
+ "System management": "Manajemen sistem",
1293
+ "System settings": "Pengaturan sistem",
1294
+ "System title": "Judul sistem",
1295
+ "System variables": "Variabel sistem",
1296
+ "Tab": "Tab",
1297
+ "Tab name": "Nama tab",
1298
+ "Table": "Tabel",
1299
+ "Table OID(Inheritance)": "OID Tabel (Pewarisan)",
1300
+ "Table column settings": "Table column settings",
1301
+ "Table density": "Table density",
1302
+ "Table selected records": "Catatan tabel terpilih",
1303
+ "Table settings": "Table settings",
1304
+ "Table size": "Ukuran tabel",
1305
+ "Tablet": "Tablet",
1306
+ "Tablet device": "Perangkat tablet",
1307
+ "Tag": "Tag",
1308
+ "Tag color field": "Bidang warna tag",
1309
+ "Target": "Target",
1310
+ "Target block UID": "Target block UID",
1311
+ "Target block uid": "Target block uid",
1312
+ "Target collection": "Koleksi target",
1313
+ "Target form block": "Target form block",
1314
+ "Target key": "Kunci target",
1315
+ "Target position": "Posisi target",
1316
+ "Template": "Template",
1317
+ "Template Data": "Data Templat",
1318
+ "Template engine": "Mesin templat",
1319
+ "Template fields": "Bidang templat",
1320
+ "Template name": "Nama templat",
1321
+ "Templates": "Templat",
1322
+ "Text": "Text",
1323
+ "Text Align": "Perataan Teks",
1324
+ "Text input": "Text input",
1325
+ "Text only": "Text only",
1326
+ "The application is reloading, please do not close the page.": "Aplikasi sedang memuat ulang, harap jangan tutup halaman ini.",
1327
+ "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).",
1328
+ "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?": "Versi ketergantungan plugin saat ini tidak cocok dengan versi aplikasi dan mungkin tidak berfungsi dengan baik. Anda yakin ingin terus mengaktifkan plugin?",
1329
+ "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}}\"",
1330
+ "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}}\"",
1331
+ "The current user only has the UI configuration permission, but don't have view permission for collection \"{{name}}\"": "Pengguna saat ini hanya memiliki izin konfigurasi UI, tetapi tidak memiliki izin lihat untuk koleksi \"{{name}}\"",
1332
+ "The deletion was successful.": "Penghapusan berhasil.",
1333
+ "The field has been deleted": "Bidang telah dihapus",
1334
+ "The field value cannot be greater than ": "Nilai bidang tidak boleh lebih besar dari ",
1335
+ "The field value cannot be less than ": "Nilai bidang tidak boleh kurang dari ",
1336
+ "The field value is not a email format": "The field value is not a email format",
1337
+ "The field value is not an integer number": "Nilai bidang bukan bilangan bulat",
1338
+ "The field value is required": "The field value is required",
1339
+ "The following field types are not compatible and do not support output and display": "Tipe bidang berikut tidak kompatibel dan tidak mendukung output dan tampilan",
1340
+ "The selected fields will automatically populate the form": "Bidang yang dipilih akan otomatis mengisi formulir",
1341
+ "The title field is used to identify the template record": "Bidang judul digunakan untuk mengidentifikasi catatan templat",
1342
+ "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.": "Nilai variabel ini berasal dari string kueri URL halaman. Variabel ini hanya dapat digunakan secara normal ketika halaman memiliki string kueri.",
1343
+ "The will interrupt service, it may take a few seconds to restart. Are you sure to continue?": "Ini akan mengganggu layanan, mungkin butuh beberapa detik untuk memulai ulang. Anda yakin ingin melanjutkan?",
1344
+ "The {{type}} \"{{name}}\" may have been deleted. Please remove this {{blockType}}.": "Jenis {{type}} \"{{name}}\" mungkin telah dihapus. Harap hapus {{blockType}} ini.",
1345
+ "Theme": "Tema",
1346
+ "Then": "Lalu",
1347
+ "Third party services": "Layanan pihak ketiga",
1348
+ "This Month": "This Month",
1349
+ "This Quarter": "This Quarter",
1350
+ "This Week": "This Week",
1351
+ "This Year": "This Year",
1352
+ "This and following events": "Acara ini dan selanjutnya",
1353
+ "This event": "Acara ini",
1354
+ "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).",
1355
+ "This field is required": "This field is required",
1356
+ "This is a demo text, **supports Markdown syntax**.": "Ini adalah teks demo, **mendukung sintaks Markdown**.",
1357
+ "This is likely a NocoBase internals bug. Please open an issue at <1>here</1>": "Ini kemungkinan adalah bug internal NocoBase. Silakan buka masalah di <1>sini</1>",
1358
+ "This month": "Bulan ini",
1359
+ "This quarter": "Kuartal ini",
1360
+ "This variable has been deprecated and can be replaced with \"Current form\"": "Variabel ini telah usang dan dapat diganti dengan \"Formulir saat ini\"",
1361
+ "This week": "Minggu ini",
1362
+ "This year": "Tahun ini",
1363
+ "Through collection": "Melalui koleksi",
1364
+ "Time": "Waktu",
1365
+ "Time format": "Format waktu",
1366
+ "Time scale": "Skala waktu",
1367
+ "Timeout config": "Timeout config",
1368
+ "Timestamp": "Timestamp",
1369
+ "Title": "Judul",
1370
+ "Title & description": "Title & description",
1371
+ "Title accessor": "Title accessor",
1372
+ "Title field": "Bidang judul",
1373
+ "Title field component": "Title field component",
1374
+ "Title position": "Posisi judul",
1375
+ "Today": "Hari ini",
1376
+ "Toggles the subfield mode": "Mengaktifkan/menonaktifkan mode sub-bidang",
1377
+ "Tomorrow": "Besok",
1378
+ "Tooltip": "Tooltip",
1379
+ "Top left": "Top left",
1380
+ "Top right": "Top right",
1381
+ "Total {{count}} items": "Total {{count}} item",
1382
+ "Tree collection": "Koleksi pohon",
1383
+ "Tree table": "Tabel pohon",
1384
+ "Trigger condition": "Trigger condition",
1385
+ "Trigger event": "Trigger event",
1386
+ "Trigger workflow": "Picu alur kerja",
1387
+ "Triggered when the row is clicked": "Dipicu saat baris diklik",
1388
+ "True": "Benar",
1389
+ "Try again": "Coba lagi",
1390
+ "Turn pages": "Balik halaman",
1391
+ "Two tone": "Dua warna",
1392
+ "Type": "Tipe",
1393
+ "UI Editor": "Editor UI",
1394
+ "UI editor": "Editor UI",
1395
+ "URL": "URL",
1396
+ "URL search params": "Parameter pencarian URL",
1397
+ "UnSelect all": "Batalkan pilih semua",
1398
+ "Unauthenticated. Please sign in to continue.": "Tidak terautentikasi. Harap masuk untuk melanjutkan.",
1399
+ "Unconnected": "Tidak terhubung",
1400
+ "Unicode characters are permitted": "Unicode characters are permitted",
1401
+ "Unique": "Unik",
1402
+ "Unit conversion": "Konversi unit",
1403
+ "Unix Timestamp": "Timestamp Unix",
1404
+ "Unknown field type": "Tipe bidang tidak dikenal",
1405
+ "Unnamed": "Tanpa nama",
1406
+ "Unpinned": "Unpinned",
1407
+ "Unsafe integer": "Unsafe integer",
1408
+ "Unsaved changes": "Perubahan yang belum disimpan",
1409
+ "Update": "Perbarui",
1410
+ "Update all data?": "Perbarui semua data?",
1411
+ "Update or create": "Perbarui atau buat",
1412
+ "Update plugin": "Perbarui plugin",
1413
+ "Update record": "Perbarui catatan",
1414
+ "Update record action": "Update record",
1415
+ "Update selected data?": "Perbarui data yang dipilih?",
1416
+ "Updated successfully": "Berhasil diperbarui",
1417
+ "UpdatedAt": "Diperbarui pada",
1418
+ "UpdatedBy": "Diperbarui oleh",
1419
+ "Upgrade": "Tingkatkan",
1420
+ "Upload": "Unggah",
1421
+ "Upload file settings": "Upload file settings",
1422
+ "Upload new version": "Unggah versi baru",
1423
+ "Upload plugin": "Unggah plugin",
1424
+ "Uploading": "Uploading",
1425
+ "Use simple pagination mode": "Gunakan mode penomoran halaman sederhana",
1426
+ "Use the same time zone (GMT) for all users": "Gunakan zona waktu yang sama (GMT) untuk semua pengguna",
1427
+ "Used for drag and drop sorting scenarios, supporting grouping sorting": "Digunakan untuk skenario pengurutan seret dan lepas, mendukung pengurutan kelompok",
1428
+ "User": "Pengguna",
1429
+ "User not found. Please sign in again to continue.": "Pengguna tidak ditemukan. Harap masuk lagi untuk melanjutkan.",
1430
+ "User password changed, please signin again.": "Kata sandi pengguna berubah, harap masuk lagi.",
1431
+ "Username": "Nama pengguna",
1432
+ "Users": "Pengguna",
1433
+ "Users & permissions": "Pengguna & izin",
1434
+ "Valid range: 10-40": "Valid range: 10-40",
1435
+ "Valid range: 100-900": "Valid range: 100-900",
1436
+ "Validation": "Validation",
1437
+ "Validation rule": "Aturan validasi",
1438
+ "Value": "Nilai",
1439
+ "Variable identifier": "Variable identifier",
1440
+ "Variable title": "Variable title",
1441
+ "Verification code": "Kode verifikasi",
1442
+ "Version": "Versi",
1443
+ "Version range": "Rentang versi",
1444
+ "Vertical": "Vertikal",
1445
+ "View": "Tampilan",
1446
+ "View all plugins": "Lihat semua plugin",
1447
+ "View record": "Lihat catatan",
1448
+ "Village": "Desa",
1449
+ "Visible": "Terlihat",
1450
+ "Volcano": "Gunung berapi",
1451
+ "Wearable": "Wearable",
1452
+ "Week": "Minggu",
1453
+ "Weekly": "Mingguan",
1454
+ "When a field is selected for grouping, it will be grouped first before sorting.": "Ketika sebuah bidang dipilih untuk pengelompokan, itu akan dikelompokkan terlebih dahulu sebelum diurutkan.",
1455
+ "When condition is met": "When condition is met",
1456
+ "When condition is not met": "When condition is not met",
1457
+ "When submitting the following fields, the saved values are": "Saat mengirimkan bidang-bidang berikut, nilai yang disimpan adalah",
1458
+ "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",
1459
+ "When the Label exceeds the width": "Ketika Label melebihi lebar",
1460
+ "With condition": "With condition",
1461
+ "Without condition": "Without condition",
1462
+ "Work week": "Minggu kerja",
1463
+ "Workflow": "Alur kerja",
1464
+ "Wrap": "Wrap",
1465
+ "Wysiwyg": "Wysiwyg",
1466
+ "Year": "Tahun",
1467
+ "Year-Month-Day": "Tahun-Bulan-Hari",
1468
+ "Year/Month/Day": "Tahun/Bulan/Hari",
1469
+ "Yearly": "Tahunan",
1470
+ "Yes": "Ya",
1471
+ "Yesterday": "Kemarin",
1472
+ "Your session has expired. Please sign in again.": "Sesi Anda telah berakhir. Harap masuk lagi.",
1473
+ "conditions in the group": "conditions in the group",
1474
+ "contains": "berisi",
1475
+ "data source": "sumber data",
1476
+ "does not contain": "tidak berisi",
1477
+ "edit title": "edit judul",
1478
+ "ends with": "berakhir dengan",
1479
+ "exists": "ada",
1480
+ "is": "adalah",
1481
+ "is after": "setelah",
1482
+ "is any of": "adalah salah satu dari",
1483
+ "is before": "sebelum",
1484
+ "is between": "di antara",
1485
+ "is empty": "kosong",
1486
+ "is none of": "bukan salah satu dari",
1487
+ "is not": "bukan",
1488
+ "is not empty": "tidak kosong",
1489
+ "is on or after": "pada atau setelah",
1490
+ "is on or before": "pada atau sebelum",
1491
+ "item": "item",
1492
+ "items": "items",
1493
+ "loading": "memuat",
1494
+ "name is required": "nama wajib diisi",
1495
+ "not ends with": "tidak berakhir dengan",
1496
+ "not exists": "tidak ada",
1497
+ "not starts with": "tidak dimulai dengan",
1498
+ "pixels": "piksel",
1499
+ "re-download file": "unduh ulang file",
1500
+ "starts with": "dimulai dengan",
1501
+ "tlds": "tlds",
1502
+ "visible": "visible",
1503
+ "{{#label}} email address doesn’t meet the required format": "{{#label}} email address doesn’t meet the required format",
1504
+ "{{#label}} is not allowed to be empty": "{{#label}} is not allowed to be empty",
1505
+ "{{#label}} is required": "{{#label}} is required",
1506
+ "{{#label}} length must be at least {{#limit}} characters long": "{{#label}} length must be at least {{#limit}} characters long",
1507
+ "{{#label}} length must be less than or equal to {{#limit}} characters long": "{{#label}} length must be less than or equal to {{#limit}} characters long",
1508
+ "{{#label}} length must be {{#limit}} characters long": "{{#label}} length must be {{#limit}} characters long",
1509
+ "{{#label}} must be a credit card": "{{#label}} must be a credit card",
1510
+ "{{#label}} must be a float or double": "{{#label}} must be a float or double",
1511
+ "{{#label}} must be a multiple of {{#multiple}}": "{{#label}} must be a multiple of {{#multiple}}",
1512
+ "{{#label}} must be a negative number": "{{#label}} must be a negative number",
1513
+ "{{#label}} must be a number": "{{#label}} must be a number",
1514
+ "{{#label}} must be a positive number": "{{#label}} must be a positive number",
1515
+ "{{#label}} must be a safe number": "{{#label}} must be a safe number",
1516
+ "{{#label}} must be a string": "{{#label}} must be a string",
1517
+ "{{#label}} must be a valid ISO 8601 date": "{{#label}} must be a valid ISO 8601 date",
1518
+ "{{#label}} must be a valid UUID": "{{#label}} must be a valid UUID",
1519
+ "{{#label}} must be a valid date": "{{#label}} must be a valid date",
1520
+ "{{#label}} must be a valid hostname": "{{#label}} must be a valid hostname",
1521
+ "{{#label}} must be a valid port": "{{#label}} must be a valid port",
1522
+ "{{#label}} must be a valid uri": "{{#label}} must be a valid uri",
1523
+ "{{#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",
1524
+ "{{#label}} must be an integer": "{{#label}} must be an integer",
1525
+ "{{#label}} must be greater than or equal to {{#limit}}": "{{#label}} must be greater than or equal to {{#limit}}",
1526
+ "{{#label}} must be greater than {{#limit}}": "{{#label}} must be greater than {{#limit}}",
1527
+ "{{#label}} must be in {{#format}} format": "{{#label}} must be in {{#format}} format",
1528
+ "{{#label}} must be less than or equal to {{#limit}}": "{{#label}} must be less than or equal to {{#limit}}",
1529
+ "{{#label}} must be less than {{#limit}}": "{{#label}} must be less than {{#limit}}",
1530
+ "{{#label}} must not have leading or trailing whitespace": "{{#label}} must not have leading or trailing whitespace",
1531
+ "{{#label}} must not have more than {{#limit}} decimal places": "{{#label}} must not have more than {{#limit}} decimal places",
1532
+ "{{#label}} must only contain alpha-numeric and underscore characters": "{{#label}} must only contain alpha-numeric and underscore characters",
1533
+ "{{#label}} must only contain alpha-numeric characters": "{{#label}} must only contain alpha-numeric characters",
1534
+ "{{#label}} must only contain hexadecimal characters": "{{#label}} must only contain hexadecimal characters",
1535
+ "{{#label}} must only contain lowercase characters": "{{#label}} must only contain lowercase characters",
1536
+ "{{#label}} must only contain uppercase characters": "{{#label}} must only contain uppercase characters",
1537
+ "{{#label}} with value \"{{#value}}\" fails to match the required pattern": "{{#label}} with value \"{{#value}}\" fails to match the required pattern",
1538
+ "{{#label}} with value \"{{#value}}\" fails to match the {{#name}} pattern": "{{#label}} with value \"{{#value}}\" fails to match the {{#name}} pattern",
1539
+ "{{#label}} with value \"{{#value}}\" matches the inverted pattern": "{{#label}} with value \"{{#value}}\" matches the inverted pattern",
1540
+ "{{#label}} with value \"{{#value}}\" matches the inverted {{#name}} pattern": "{{#label}} with value \"{{#value}}\" matches the inverted {{#name}} pattern",
1541
+ "{{count}} filter items": "{{count}} item filter",
1542
+ "{{count}} more items": "{{count}} item lainnya",
1543
+ "≠": "≠",
1544
+ "≤": "≤",
1545
+ "≥": "≥"
1546
+ }