@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,1558 @@
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)": "(필드만)",
4
+ "(currently not effective in sub-forms/sub-tables)": "(currently not effective in sub-forms/sub-tables)",
5
+ "12 hour": "12 시간",
6
+ "24 hour": "24 시간",
7
+ "<": "<",
8
+ "=": "=",
9
+ ">": ">",
10
+ "ACL": "액세스 제어 목록",
11
+ "ASC": "오름차순",
12
+ "Access": "접근",
13
+ "Access control": "접근 제어",
14
+ "Accessible": "접근 가능",
15
+ "Accuracy": "정확도",
16
+ "Action": "작업",
17
+ "Action after successful submission": "제출 성공 후 동작",
18
+ "Action column": "작업 열",
19
+ "Action display name": "작업 표시 이름",
20
+ "Action logs": "작업 로그",
21
+ "Action name": "조작 이름",
22
+ "Action on existing records": "기존 레코드에 대한 작업",
23
+ "Action on new records": "새 레코드에 대한 작업",
24
+ "Action permission": "작업 권한",
25
+ "Action permissions": "작업 권한",
26
+ "Action scope": "작업 범위",
27
+ "Action type": "작업 유형",
28
+ "Actions": "작업",
29
+ "Actions column": "Actions column",
30
+ "Add": "추가",
31
+ "Add & Update": "추가 & 업데이트",
32
+ "Add Markdown": "마크다운 추가",
33
+ "Add action": "Add action",
34
+ "Add attach": "첨부 추가",
35
+ "Add block": "블록 추가",
36
+ "Add card": "카드 추가",
37
+ "Add category": "카테고리 추가",
38
+ "Add child": "하위 항목 추가",
39
+ "Add child route": "하위 경로 추가",
40
+ "Add condition": "조건 추가",
41
+ "Add condition group": "조건 그룹 추가",
42
+ "Add event flow": "Add event flow",
43
+ "Add exportable field": "내보낼 수 있는 필드 추가",
44
+ "Add field": "필드 추가",
45
+ "Add filter": "필터 추가",
46
+ "Add filter group": "필터 그룹 추가",
47
+ "Add group": "그룹 추가",
48
+ "Add link": "링크 추가",
49
+ "Add linkage rule": "연동 규칙 추가",
50
+ "Add menu item": "메뉴 항목 추가",
51
+ "Add new": "새로 추가",
52
+ "Add new mode": "새 모드 추가",
53
+ "Add option": "옵션 추가",
54
+ "Add page": "페이지 추가",
55
+ "Add parameter": "매개변수 추가",
56
+ "Add plugin": "플러그인 추가",
57
+ "Add property": "속성 추가",
58
+ "Add record": "레코드 추가",
59
+ "Add request header": "Add request header",
60
+ "Add role": "역할 추가",
61
+ "Add rule": "Add rule",
62
+ "Add sort field": "정렬 필드 추가",
63
+ "Add step": "Add step",
64
+ "Add tab": "탭 추가",
65
+ "Add target block": "Add target block",
66
+ "Add template": "템플릿 추가",
67
+ "Add text": "텍스트 추가",
68
+ "Add type": "유형 추가",
69
+ "Add validation rule": "유효성 검사 규칙 추가",
70
+ "Add variable": "Add variable",
71
+ "Add {{type}} after \"{{title}}\"": "\"{{title}}\" 뒤에 {{type}} 추가",
72
+ "Add {{type}} before \"{{title}}\"": "\"{{title}}\" 앞에 {{type}} 추가",
73
+ "Add {{type}} before {{title}}": "{{title}} 앞에 {{type}} 추가",
74
+ "Add {{type}} in \"{{title}}\"": "\"{{title}}\" 안에 {{type}} 추가",
75
+ "Advanced type": "고급 유형",
76
+ "After": "이후",
77
+ "After change": "변경 후",
78
+ "After clicking the custom button, the following field values will be assigned according to the following form.": "사용자 지정 버튼을 클릭하면 아래 양식에 따라 다음 필드 값이 할당됩니다.",
79
+ "After clicking the custom button, the following fields of the current record will be saved according to the following form.": "사용자 지정 버튼을 클릭하면 현재 레코드의 다음 필드가 아래 양식에 따라 저장됩니다.",
80
+ "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.": "숨기면 이 메뉴는 더 이상 메뉴 바에 표시되지 않습니다. 다시 표시하려면 경로 관리 페이지로 이동하여 설정해야 합니다.",
81
+ "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.": "숨기면 이 탭은 탭 바에 더 이상 표시되지 않습니다. 다시 표시하려면 경로 관리 페이지로 이동하여 설정해야 합니다.",
82
+ "After successful bulk update": "일괄 업데이트에 송공한 후",
83
+ "After successful request": "요청이 성공한 후",
84
+ "After successful save": "저장이 성공한 후",
85
+ "After successful submission": "제출이 성공한 후",
86
+ "After successful submission, the selected data blocks will be automatically refreshed.": "전송 후, 선택한 데이터 블록이 자동으로 새로 고쳐집니다.",
87
+ "After successful update": "업데이트가 성공한 후",
88
+ "Agenda": "의제",
89
+ "All": "전체",
90
+ "All collections": "모든 컬렉션",
91
+ "All collections use general action permissions by default; permission configured individually will override the default one.": "모든 컬렉션은 기본적으로 일반 작업 권한을 사용합니다. 개별적으로 구성된 권한은 기본 권한을 덮어씁니다.",
92
+ "All events": "모든 이벤트",
93
+ "All plugin settings": "모든 플러그인 설정",
94
+ "All records": "모든 레코드",
95
+ "Allow": "허용",
96
+ "Allow access": "접근 허용",
97
+ "Allow action": "작업 허용",
98
+ "Allow add new": "새로 추가 허용",
99
+ "Allow add new data": "새 데이터 추가 허용",
100
+ "Allow add new, update and delete actions": "새로 추가, 업데이트 및 삭제 작업 허용",
101
+ "Allow adding records to the current collection": "현재 컬렉션에 레코드 추가 허용",
102
+ "Allow disassociation": "연결 해제 허용",
103
+ "Allow dissociate": "연결 해제 허용",
104
+ "Allow linking to multiple records": "여러 레코드에 연결 허용",
105
+ "Allow list": "Allow list",
106
+ "Allow multiple": "여러 개 허용",
107
+ "Allow multiple selection": "여러 개 선택 허용",
108
+ "Allow relative URIs": "Allow relative URIs",
109
+ "Allow selection of existing file": "Allow selection of existing file",
110
+ "Allow selection of existing records": "기존 레코드 선택 허용",
111
+ "Allow sign up": "회원가입 허용",
112
+ "Allow to configure plugins": "플러그인 구성 허용",
113
+ "Allow to desgin pages": "페이지 디자인 허용",
114
+ "Allow to design pages": "페이지 디자인 허용",
115
+ "Allow to manage plugins": "플러그인 관리 허용",
116
+ "Allow uploading multiple files": "여러 파일 업로드 허용",
117
+ "Allows configuration of the whole system, including UI, collections, permissions, etc.": "UI, 컬렉션, 권한 등을 포함한 전체 시스템의 구성을 허용합니다.",
118
+ "Allows to clear cache, reboot application": "캐시를 삭제하고 애플리케이션을 재부팅할 수 있습니다.",
119
+ "Allows to configure interface": "인터페이스 구성 허용",
120
+ "Allows to configure plugins": "플러그인 구성 허용",
121
+ "Allows to install, activate, disable plugins": "플러그인을 설치, 활성화, 비활성화 허용",
122
+ "Allows unencoded square brackets inside the query string": "Allows unencoded square brackets inside the query string",
123
+ "Alphabet": "알파벳",
124
+ "Any": "Any",
125
+ "App error": "앱 오류",
126
+ "Application reloading": "애플리케이션 다시 불러오는 중",
127
+ "Are you sure to delete this plugin?": "이 플러그인을 삭제하시겠습니까?",
128
+ "Are you sure to disable this plugin?": "이 플러그인을 비활성화하시겠습니까?",
129
+ "Are you sure you don't want to save?": "저장하지 않으시겠습니까?",
130
+ "Are you sure you want to clear cache ?": "Are you sure you want to clear cache ?",
131
+ "Are you sure you want to delete it?": "정말로 삭제하시겠습니까?",
132
+ "Are you sure you want to delete this variable?": "Are you sure you want to delete this variable?",
133
+ "Are you sure you want to disassociate it?": "정말로 연결을 해제하시겠습니까?",
134
+ "Are you sure you want to hide these routes in menu?": "이 경로들을 메뉴에서 숨기시겠습니까?",
135
+ "Are you sure you want to hide this menu?": "이 메뉴를 숨기시겠습니까?",
136
+ "Are you sure you want to hide this tab?": "이 탭을 숨기시겠습니까?",
137
+ "Are you sure you want to load {{count}} collection(s)?": "Are you sure you want to load {{count}} collection(s)?",
138
+ "Are you sure you want to perform the Custom request action": "사용자 정의 요청 작업을 수행하시겠습니까?",
139
+ "Are you sure you want to perform the Refresh action?": "새로 고침 작업을 수행하시겠습니까?",
140
+ "Are you sure you want to perform the Submit action?": "제출 작업을 수행하시겠습니까?",
141
+ "Are you sure you want to perform the Trigger workflow action?": "트리거 워크플로우 작업을 수행하시겠습니까?",
142
+ "Are you sure you want to perform the Update record action?": "레코드 업데이트 작업을 수행하시겠습니까?",
143
+ "Are you sure you want to perform the {{title}} action?": "{{title}} 작업을 수행하시겠습니까?",
144
+ "Are you sure you want to save it?": "Are you sure you want to save it?",
145
+ "Are you sure you want to show these routes in menu?": "이 경로들을 메뉴에 표시하시겠습니까?",
146
+ "Area": "영역",
147
+ "Area chart": "영역 차트",
148
+ "Assign data scope for the template": "템플릿에 대한 데이터 범위 할당",
149
+ "Assign data scope for the template": "템플릿에 대한 데이터 범위 할당",
150
+ "Assign field values": "필드 값 할당",
151
+ "Assign value": "Assign value",
152
+ "Assignment mode": "Assignment mode",
153
+ "Associate": "연결",
154
+ "Associated records": "연관된 레코드",
155
+ "Association field settings": "Association field settings",
156
+ "Association fields": "연관 필드",
157
+ "Association fields filter": "연관 필드 필터",
158
+ "Association select settings": "Association select settings",
159
+ "Association table settings": "Association table settings",
160
+ "Association tag settings": "Association tag settings",
161
+ "AssociationField component": "AssociationField component",
162
+ "Attempts to encode the URI using encodeURI before validating it again": "Attempts to encode the URI using encodeURI before validating it again",
163
+ "Audit logs": "감사 로그",
164
+ "Authentication": "인증",
165
+ "Author": "작성자",
166
+ "Auto": "자동",
167
+ "Auto focus": "Auto focus",
168
+ "Auto increment": "자동 증가",
169
+ "AutoGenId": "자동 생성 ID",
170
+ "Automatic close": "자동 닫기",
171
+ "Automatically drop objects that depend on the collection (such as views), and in turn all objects that depend on those objects": "컬렉션에 의존하는 객체(예: 뷰)와 그 객체에 다시 의존하는 모든 객체를 자동으로 삭제합니다.",
172
+ "Automatically generate default values": "기본값을 자동으로 생성",
173
+ "Automatically remove heading and tailing spaces": "Automatically remove heading and tailing spaces",
174
+ "Automatically update timestamp on update": "업데이트 시 타임스탬프를 자동으로 갱신",
175
+ "Automatically update timestamp to the current server time on update": "업데이트 시 타임스탬프를 현재 서버 시간으로 자동 갱신",
176
+ "Available \"target blocks\" are all data blocks on the current page": "Available \"target blocks\" are all data blocks on the current page",
177
+ "Available Collections": "Available Collections",
178
+ "Background Color": "배경색",
179
+ "Bar chart": "막대 차트",
180
+ "Base": "Base",
181
+ "Basic": "기본",
182
+ "Basic configuration": "Basic configuration",
183
+ "Before": "이전",
184
+ "Before change": "변경 전",
185
+ "Before render": "Before render",
186
+ "Blank block": "빈 블록",
187
+ "Block": "블록",
188
+ "Block Linkage rules": "Block Linkage rules",
189
+ "Block linkage rules": "Block linkage rules",
190
+ "Block list": "Block list",
191
+ "Block template": "블록 템플릿",
192
+ "Block templates": "블록 템플릿",
193
+ "Block title": "블록 제목",
194
+ "Block type": "블록 유형",
195
+ "Blocks": "블록",
196
+ "Blue": "파랑",
197
+ "Bookmark": "북마크",
198
+ "Boolean": "불리언",
199
+ "Bottom left": "Bottom left",
200
+ "Bottom right": "Bottom right",
201
+ "Built-in": "내장",
202
+ "Bulk edit": "일괄 편집",
203
+ "Bulk enable": "일괄 활성화",
204
+ "Bulk update": "일괄 업데이트",
205
+ "Button background color": "버튼 배경색",
206
+ "Button icon": "버튼 아이콘",
207
+ "Button settings": "Button settings",
208
+ "Button title": "버튼 제목",
209
+ "Button type": "Button type",
210
+ "Calculation engine": "계산 엔진",
211
+ "Calendar": "달력",
212
+ "Calendar Month": "Calendar Month",
213
+ "Calendar Year": "Calendar Year",
214
+ "Calendar collection": "달력 컬렉션",
215
+ "Calendar week": "Calendar week",
216
+ "Cancel": "취소",
217
+ "Cannot find the model instance with UID": "Cannot find the model instance with UID",
218
+ "Card settings": "Card settings",
219
+ "Cascade Select": "계단식 선택",
220
+ "Cascade select": "Cascade select",
221
+ "Cascade select settings": "Cascade select settings",
222
+ "Categories": "카테고리",
223
+ "Category name": "카테고리 이름",
224
+ "Center": "중앙",
225
+ "Change password": "비밀번호 변경",
226
+ "Changed to": "변경됨",
227
+ "Changelog": "변경 로그",
228
+ "Chart blocks": "차트 블록",
229
+ "Chart config": "차트 구성",
230
+ "Chart title": "차트 제목",
231
+ "Chart type": "차트 유형",
232
+ "Check strength": "Check strength",
233
+ "Checkbox": "체크박스",
234
+ "Checkbox group": "체크박스 그룹",
235
+ "Children": "자식",
236
+ "China region": "중국 지역",
237
+ "Choices": "선택지",
238
+ "Choices fields": "선택 필드",
239
+ "City": "시",
240
+ "Classic page (v1)": "Classic page (v1)",
241
+ "Clear": "지우기",
242
+ "Clear cache": "캐시 지우기",
243
+ "Clear default value": "기본값 지우기",
244
+ "Click": "Click",
245
+ "Click event": "Click event",
246
+ "Click or drag file to this area to upload": "파일을 이 영역에 클릭하거나 끌어다 놓아 업로드하세요",
247
+ "Click the \"UI Editor\" icon in the upper right corner to enter the UI Editor mode": "사용자 인터페이스 편집기 모드에 들어가려면 오른쪽 상단의 \"UI 편집기\" 아이콘을 클릭하십시오",
248
+ "Clicked row record": "Clicked row record",
249
+ "Close": "닫기",
250
+ "Collapse": "접기",
251
+ "Collapse all": "모두 축소",
252
+ "Collapse button": "Collapse",
253
+ "Collapse settings": "Collapse settings",
254
+ "Collapsed rows": "Collapsed rows",
255
+ "Collection": "컬렉션",
256
+ "Collection category": "컬렉션 카테고리",
257
+ "Collection display name": "컬렉션 표시 이름",
258
+ "Collection fields": "컬렉션 필드",
259
+ "Collection manager": "컬렉션 관리자",
260
+ "Collection name": "컬렉션 이름",
261
+ "Collection selector": "컬렉션 선택기",
262
+ "Collection template": "컬렉션 템플릿",
263
+ "Collections": "컬렉션",
264
+ "Collections & Fields": "컬렉션 및 필드",
265
+ "Colon": "Colon",
266
+ "Color": "색상",
267
+ "Column": "열",
268
+ "Column Settings": "열 설정",
269
+ "Column chart": "세로 막대 차트",
270
+ "Column title": "열 제목",
271
+ "Column width": "열 너비",
272
+ "Coming soon...": "곧 출시됩니다...",
273
+ "Compact theme": "간소한 테마",
274
+ "Comparision": "비교",
275
+ "Comparison": "비교",
276
+ "Component properties": "Component properties",
277
+ "Compressed file URL": "압축 파일 URL",
278
+ "Compressed file url": "압축 파일 url",
279
+ "Computer": "Computer",
280
+ "Condition": "조건",
281
+ "Conditional assignment": "Conditional assignment",
282
+ "Configuration saved": "Configuration saved",
283
+ "Configuration:": "Configuration:",
284
+ "Configure": "구성",
285
+ "Configure actions": "작업 구성",
286
+ "Configure calendar": "달력 구성",
287
+ "Configure columns": "열 구성",
288
+ "Configure field": "필드 구성",
289
+ "Configure fields": "필드 구성",
290
+ "Configure fields of {{title}}": "{{title}}의 필드 구성",
291
+ "Configure page": "Configure page",
292
+ "Configure permission": "권한 구성",
293
+ "Configure permissions": "권한 구성",
294
+ "Configure rows": "Configure rows",
295
+ "Configure the rows and columns of the grid.": "Configure the rows and columns of the grid.",
296
+ "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.",
297
+ "Confirm": "확인",
298
+ "Confirm Load Collections": "Confirm Load Collections",
299
+ "Confirm password": "비밀번호 확인",
300
+ "Confirmation": "Confirmation",
301
+ "Connect data blocks": "데이터 블록 연결",
302
+ "Connect fields": "Connect fields",
303
+ "Connect to database view": "데이터베이스 뷰에 연결",
304
+ "Console": "Console",
305
+ "Constant": "상수",
306
+ "Constant value": "상수 값",
307
+ "Contain": "포함",
308
+ "Content": "콘텐츠",
309
+ "Content overflow display mode": "Content overflow display mode",
310
+ "Content settings": "Content settings",
311
+ "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.",
312
+ "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.",
313
+ "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.",
314
+ "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.",
315
+ "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.",
316
+ "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.",
317
+ "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.",
318
+ "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.",
319
+ "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.",
320
+ "Convert reference to duplicate": "참조를 복제본으로 변환",
321
+ "Convert template to duplicate": "Convert template to duplicate",
322
+ "Copy": "Copy",
323
+ "Copy into the form and continue to fill in": "양식에 복사하여 계속 작성하세요",
324
+ "Cover": "표지",
325
+ "Create": "생성",
326
+ "Create an account": "계정 만들기",
327
+ "Create calendar block": "캘린더 블록 생성",
328
+ "Create collection": "데이터 테이블 생성",
329
+ "Create form": "양식 생성",
330
+ "Create gantt block": "간트 블록 생성",
331
+ "Create inverse field in the target collection": "대상 데이터 테이블에 반전 관계 필드 생성",
332
+ "Create kanban block": "칸반 블록 생성",
333
+ "Create template": "템플릿 생성",
334
+ "Created at": "생성일",
335
+ "Created by": "작성자",
336
+ "CreatedAt": "생성일",
337
+ "CreatedBy": "작성자",
338
+ "Current action": "Current action",
339
+ "Current block": "Current block",
340
+ "Current collection": "현재 컬렉션",
341
+ "Current device type": "Current device type",
342
+ "Current form": "현재 양식",
343
+ "Current object": "현재 객체",
344
+ "Current popup": "Current popup",
345
+ "Current popup parent record": "Current popup parent record",
346
+ "Current popup record": "현재 팝업 레코드",
347
+ "Current record": "현재 레코드",
348
+ "Current record blocks": "현재 레코드 블록",
349
+ "Current role": "현재 역할",
350
+ "Current time": "현재 시간",
351
+ "Current user": "현재 사용자",
352
+ "Custom": "사용자 정의",
353
+ "Custom Title": "사용자 지정 제목",
354
+ "Custom column name": "사용자 지정 열 이름",
355
+ "Custom column title": "사용자 지정 열 제목",
356
+ "Custom field": "Custom field",
357
+ "Custom field display name": "사용자 정의 필드 표시 이름",
358
+ "Custom name": "사용자 지정 이름",
359
+ "Custom request": "사용자 지정 요청",
360
+ "Custom title": "사용자 지정 제목",
361
+ "Custom variable": "Custom variable",
362
+ "Customize": "사용자 정의",
363
+ "Cyan": "청록",
364
+ "DESC": "내림차순",
365
+ "Daily": "일간",
366
+ "Danger action": "Danger action",
367
+ "Danger red": "위험 빨강",
368
+ "Dashed": "점선",
369
+ "Data Model": "데이터 모델",
370
+ "Data blocks": "데이터 블록",
371
+ "Data changes": "데이터 변경",
372
+ "Data fields": "데이터 필드",
373
+ "Data loading mode": "데이터 로딩 모드",
374
+ "Data model": "데이터 모델",
375
+ "Data model tools": "데이터 모델 도구",
376
+ "Data refreshed successfully": "Data refreshed successfully",
377
+ "Data scope": "데이터 범위",
378
+ "Data source": "데이터 소스",
379
+ "Data source key": "Data source key",
380
+ "Data source permissions": "데이터 소스 권한",
381
+ "Data sources": "데이터 소스",
382
+ "Data template": "데이터 템플릿",
383
+ "Data will be updated": "데이터가 업데이트됩니다",
384
+ "DataSource": "데이터 소스",
385
+ "Date": "날짜",
386
+ "Date & Time": "날짜 및 시간",
387
+ "Date display format": "날짜 표시 형식",
388
+ "Date format": "날짜 형식",
389
+ "Date range limit": "날짜 범위 제한",
390
+ "Date scope": "Date scope",
391
+ "Date variables": "날짜 변수",
392
+ "Date variables(Deprecated)": "Date variables(Deprecated)",
393
+ "DateOnly": "날짜만",
394
+ "Datetime": "날짜 및 시간",
395
+ "Datetime (with time zone)": "날짜 및 시간 (시간대 포함)",
396
+ "Datetime (without time zone)": "날짜 및 시간 (시간대 없음)",
397
+ "Datetime settings": "Datetime settings",
398
+ "Day": "일",
399
+ "Day before yesterday": "Day before yesterday",
400
+ "Day/Month/Year": "일/월/년",
401
+ "Default": "기본값",
402
+ "Default collapse": "기본 축소",
403
+ "Default collapsed": "Default collapsed",
404
+ "Default expand all": "Default expand all",
405
+ "Default filter conditions": "Default filter conditions",
406
+ "Default is the ID field": "기본값은 ID 필드입니다",
407
+ "Default operator": "Default operator",
408
+ "Default role": "기본 역할",
409
+ "Default sorting": "Default sorting",
410
+ "Default theme": "기본 테마",
411
+ "Default title for each record": "각 레코드의 기본 제목",
412
+ "Default value": "기본값",
413
+ "Default value to current server time": "기본값을 현재 서버 시간으로 설정",
414
+ "Default value to current time": "기본값을 현재 시간으로 설정",
415
+ "Delete": "삭제",
416
+ "Delete Event": "이벤트 삭제",
417
+ "Delete action": "작업 삭제",
418
+ "Delete block": "블록 삭제",
419
+ "Delete category": "카테고리 삭제",
420
+ "Delete collection": "컬렉션 삭제",
421
+ "Delete events": "이벤트 삭제",
422
+ "Delete field": "필드 삭제",
423
+ "Delete menu item": "메뉴 항목 삭제",
424
+ "Delete record": "레코드 삭제",
425
+ "Delete role": "역할 삭제",
426
+ "Delete route": "경로 삭제",
427
+ "Delete routes": "경로 삭제",
428
+ "Delete settings": "Delete settings",
429
+ "Delete step": "Delete step",
430
+ "Delete table column": "테이블 열 삭제",
431
+ "Delete this event?": "이 이벤트를 삭제하시겠습니까?",
432
+ "Delete this target block": "Delete this target block",
433
+ "Delete variable": "Delete variable",
434
+ "Deny list": "Deny list",
435
+ "Department name": "부서 이름",
436
+ "Departments": "부서",
437
+ "Dependencies check": "종속성 검사",
438
+ "Dependencies check failed, can't enable.": "종속성 검사에 실패하여 활성화할 수 없습니다.",
439
+ "Dependencies compatibility check": "종속성 호환성 검사",
440
+ "Deprecated": "사용 중단됨",
441
+ "Description": "설명",
442
+ "Desktop device": "데스크톱 장치",
443
+ "Desktop routes": "데스크탑 경로",
444
+ "Detail item settings": "Detail item settings",
445
+ "Details": "세부정보",
446
+ "Details settings": "Details settings",
447
+ "Determine whether a record exists by the following fields": "다음 필드를 기준으로 레코드의 존재 여부를 확인합니다",
448
+ "Dialog": "대화상자",
449
+ "Direct assignment": "Direct assignment",
450
+ "Direct duplicate": "직접 복제",
451
+ "Disable": "비활성화",
452
+ "Disable manual input": "Disable manual input",
453
+ "Disable tabs": "탭 비활성화",
454
+ "Disable validation": "Disable validation",
455
+ "Disabled": "비활성화됨",
456
+ "Disassociate": "연결 해제",
457
+ "Disassociate record": "레코드 연결 해제",
458
+ "Display <1><0>10</0><1>20</1><2>50</2><3>100</3></1> items per page": "페이지당 표시 <1><0>10</0><1>20</1><2>50</2><3>100</3></1> 개 항목",
459
+ "Display <icon></icon> when unchecked": "체크되지 않았을 때 <icon></icon> 표시",
460
+ "Display Field settings": "Display Field settings",
461
+ "Display association fields": "연관 필드 표시",
462
+ "Display data template selector": "데이터 템플릿 표시 선택기",
463
+ "Display field title": "필드 제목 표시",
464
+ "Display fields": "필드 표시",
465
+ "Display label": "Display label",
466
+ "Display mode": "Display mode",
467
+ "Display name": "이름 표시",
468
+ "Display only": "Display only",
469
+ "Display order number": "순서 번호 표시",
470
+ "Display page title": "페이지 제목 표시",
471
+ "Display style": "Display style",
472
+ "Display title": "제목 표시",
473
+ "DisplayName": "이름 표시",
474
+ "Divide by": "나누기",
475
+ "Divider line color": "구분선 색상",
476
+ "Do not concatenate search params in the URL": "URL에 검색 매개변수를 연결하지 마세요",
477
+ "Do not load data when filter is empty": "필터가 비어 있을 때 데이터를 불러오지 않습니다",
478
+ "Docs": "문서",
479
+ "Domains ending with a . character are permitted": "Domains ending with a . character are permitted",
480
+ "Done": "완료",
481
+ "Double click": "Double click",
482
+ "Double click to choose entire object": "전체 객체를 선택하려면 더블 클릭하세요",
483
+ "Download": "다운로드",
484
+ "Download logs": "로그 다운로드",
485
+ "Drag and drop sorting field": "드래그 앤 드롭 정렬 필드",
486
+ "Drag and drop the file here or click to upload, file size should not exceed 30M": "여기에 파일을 끌어다 놓거나 클릭하여 업로드하세요. 파일 크기는 30M를 초과할 수 없습니다.",
487
+ "Dragging": "드래그 중",
488
+ "Drawer": "서랍",
489
+ "Dropdown": "드롭다운",
490
+ "Dropdown select": "Dropdown select",
491
+ "Duplicate": "복제",
492
+ "Duplicate and continue": "복제하고 계속하기",
493
+ "Duplicate mode": "복제 모드",
494
+ "Duplicate template": "템플릿 복제",
495
+ "Duplicating": "복제 중",
496
+ "Duration (seconds, 0 = no auto close)": "Duration (seconds, 0 = no auto close)",
497
+ "Dynamic value": "동적 값",
498
+ "Easy reading": "쉬운 읽기",
499
+ "Easy-reading": "쉬운 읽기",
500
+ "Edit": "편집",
501
+ "Edit Title": "Edit Title",
502
+ "Edit block title": "블록 제목 편집",
503
+ "Edit block title & description": "블록 제목 & 설명 편집",
504
+ "Edit button": "버튼 편집",
505
+ "Edit category": "카테고리 편집",
506
+ "Edit chart": "차트 편집",
507
+ "Edit collection": "컬렉션 편집",
508
+ "Edit description": "설명 편집",
509
+ "Edit event flows": "Edit event flows",
510
+ "Edit field": "필드 편집",
511
+ "Edit field title": "필드 제목 편집",
512
+ "Edit form": "양식 편집",
513
+ "Edit group title": "그룹 제목 편집",
514
+ "Edit link": "링크 편집",
515
+ "Edit markdown": "마크다운 편집",
516
+ "Edit menu item": "메뉴 항목 편집",
517
+ "Edit page size": "Edit page size",
518
+ "Edit page title": "페이지 제목 편집",
519
+ "Edit popup": "Edit popup",
520
+ "Edit profile": "프로필 편집",
521
+ "Edit record": "레코드 편집",
522
+ "Edit role": "역할 편집",
523
+ "Edit tab": "탭 편집",
524
+ "Edit tooltip": "툴팁 편집",
525
+ "Edit variable": "Edit variable",
526
+ "Editable": "편집 가능",
527
+ "Ellipsis": "생략부호",
528
+ "Ellipsis overflow content": "생략 부호로 내용 줄임",
529
+ "Email": "이메일",
530
+ "Embedded": "Embedded",
531
+ "Empty": "비어있음",
532
+ "Enable": "활성화",
533
+ "Enable SMS authentication": "SMS 인증 활성화",
534
+ "Enable Scan": "Enable Scan",
535
+ "Enable actions": "작업 활성화",
536
+ "Enable child collections": "하위 컬렉션 활성화",
537
+ "Enable click-to-open": "Enable click-to-open",
538
+ "Enable drag and drop sorting": "드래그 앤 드롭 정렬 활성화",
539
+ "Enable form data template": "양식 데이터 템플릿 활성화",
540
+ "Enable index column": "Enable index column",
541
+ "Enable link": "링크 활성화",
542
+ "Enable page header": "페이지 헤더 활성화",
543
+ "Enable page tabs": "페이지 탭 활성화",
544
+ "Enable quick edit": "Enable quick edit",
545
+ "Enable refresh": "Enable refresh",
546
+ "Enable secondary confirmation": "2차 확인 활성화",
547
+ "Enable tabs": "Enable tabs",
548
+ "Enable tree table": "Enable tree table",
549
+ "Enable virtual scrolling": "Enable virtual scrolling",
550
+ "Enabled": "활성화됨",
551
+ "Enabled languages": "사용 가능한 언어",
552
+ "End": "End",
553
+ "End accessor": "End accessor",
554
+ "End date field": "종료 날짜 필드",
555
+ "Enter collection name": "Enter collection name",
556
+ "Enter end accessor": "Enter end accessor",
557
+ "Enter field title": "Enter field title",
558
+ "Enter number of rows to display": "Enter number of rows to display",
559
+ "Enter page title": "Enter page title",
560
+ "Enter placeholder text": "Enter placeholder text",
561
+ "Enter start accessor": "Enter start accessor",
562
+ "Enter title accessor": "Enter title accessor",
563
+ "Enter value": "Enter value",
564
+ "Error message": "오류 메시지",
565
+ "Event": "이벤트",
566
+ "Event flow": "Event flow",
567
+ "Event selected": "Event selected",
568
+ "Event settings": "Event settings",
569
+ "Exact day": "Exact day",
570
+ "Execute": "실행",
571
+ "Execute JavaScript": "Execute JavaScript",
572
+ "Exists": "존재함",
573
+ "Expand All": "모두 확장",
574
+ "Expand all": "모두 확장",
575
+ "Expand all rows by default": "Expand all rows by default",
576
+ "Expand button": "Expand",
577
+ "Expand/Collapse": "확장/축소",
578
+ "Export": "내보내기",
579
+ "Exportable fields": "내보낼 수 있는 필드",
580
+ "Expression": "표현식",
581
+ "Expression collection": "표현식 컬렉션",
582
+ "FORMULAJS_DOC_URL": "https://v2.docs.nocobase.com/calculation-engine/formula",
583
+ "Failed to load plugin": "플러그인 로드 실패",
584
+ "False": "거짓",
585
+ "Feedback": "피드백",
586
+ "Field": "필드",
587
+ "Field Linkage rules": "Field Linkage rules",
588
+ "Field assignment": "Field assignment",
589
+ "Field component": "필드 컴포넌트",
590
+ "Field display name": "필드 표시 이름",
591
+ "Field interface": "필드 인터페이스",
592
+ "Field linkage rules": "Field linkage rules",
593
+ "Field mode": "필드 모드",
594
+ "Field model": "Field model",
595
+ "Field name": "필드 이름",
596
+ "Field permission": "필드 권한",
597
+ "Field settings": "Field settings",
598
+ "Field source": "필드 소스",
599
+ "Field title": "필드 제목",
600
+ "Field type": "필드 유형",
601
+ "Field value changes": "필드 값 변경",
602
+ "Field value do not meet the requirements": "필드 값이 요구 사항을 충족하지 않습니다",
603
+ "Field value size is": "필드 값 크기는",
604
+ "Field values must be unique.": "필드 값은 고유해야 합니다.",
605
+ "Fields": "필드",
606
+ "Fields can only be used correctly if they are defined with an interface.": "필드는 인터페이스와 함께 정의된 경우에만 올바르게 사용할 수 있습니다.",
607
+ "Fields values": "필드 값",
608
+ "File manager": "파일 관리자",
609
+ "File size exceeds the limit": "파일 크기가 제한을 초과했습니다",
610
+ "File size should not exceed {{size}}.": "파일 크기는 {{size}}를 초과할 수 없습니다.",
611
+ "File type is not allowed": "파일 형식이 허용되지 않습니다",
612
+ "File type is not supported for previewing, please download it to preview.": "파일 형식이 미리보기를 지원하지 않습니다. 미리보려면 다운로드해 주세요.",
613
+ "Fill": "채우기",
614
+ "Filled": "채워짐",
615
+ "Filter": "필터",
616
+ "Filter blocks": "필터 블록",
617
+ "Filter configuration": "Filter configuration",
618
+ "Filter data based on the specific field, with the requirement that the field value must be unique.": "특정 필드를 기준으로 데이터를 필터링하며, 해당 필드의 값은 반드시 고유해야 합니다.",
619
+ "Filter out a single piece or a group of records as a template": "단일 항목 또는 레코드 그룹을 템플릿으로 필터링",
620
+ "Filter target key": "필터 대상 키",
621
+ "Filterable fields": "필터 가능한 필드",
622
+ "Find by the following fields": "다음 필드로 찾기",
623
+ "First or create": "처음이거나 생성",
624
+ "Fix block": "블록 수정",
625
+ "Fixed": "고정",
626
+ "Fixed to the left": "왼쪽에 고정",
627
+ "Fixed to the right": "오른쪽에 고정",
628
+ "Flexible popup": "유연한 팝업",
629
+ "Flow Page": "Modern page (v2)",
630
+ "Font Size(px)": "Font Size(px)",
631
+ "Font Style": "Font Style",
632
+ "Font Weight": "Font Weight",
633
+ "Foreign key": "외래 키",
634
+ "Foreign key 1": "외래키 1",
635
+ "Foreign key 2": "외래키 2",
636
+ "Form": "양식",
637
+ "Form (Add new)": "양식 (새로 추가)",
638
+ "Form (Edit)": "양식 (편집)",
639
+ "Form UID": "Form UID",
640
+ "Form data templates": "폼 데이터 템플릿",
641
+ "Form duplicate": "Form duplicate",
642
+ "Form field assignment": "Form field assignment",
643
+ "Form item settings": "Form item settings",
644
+ "Form settings": "Form settings",
645
+ "Form values": "폼 값",
646
+ "Form values change": "Form values change",
647
+ "Form variable": "Form variable",
648
+ "Format": "형식",
649
+ "Formula": "수식",
650
+ "Formula description": "수식 설명",
651
+ "Formula error.": "수식 오류.",
652
+ "Formula mode": "수식 모드",
653
+ "Formula.js supports most Microsoft Excel formula functions.": "Formula.js는 대부분의 Microsoft Excel 수식 함수를 지원합니다.",
654
+ "Full height": "전체 높이",
655
+ "Full permissions": "모든 권한",
656
+ "Function": "기능",
657
+ "Gantt": "간트",
658
+ "Geek blue": "긱 블루",
659
+ "General": "일반 설정",
660
+ "General action permissions": "일반 작업 권한",
661
+ "General collection": "일반 컬렉션",
662
+ "General configuration": "General configuration",
663
+ "General fields": "일반 필드",
664
+ "General permissions": "일반 권한",
665
+ "Generated automatically if left blank": "비워 두면 자동 생성됩니다",
666
+ "Generic properties": "일반 속성",
667
+ "Global action permissions": "글로벌 작업 권한",
668
+ "Global permissions": "글로벌 권한",
669
+ "Gold": "금색",
670
+ "Greater than": "Greater than",
671
+ "Green": "초록",
672
+ "Grid Card": "그리드 카드",
673
+ "Group": "그룹",
674
+ "Grouped sorting": "그룹별 정렬",
675
+ "Grouping field": "그룹화 필드",
676
+ "HTML content": "HTML content",
677
+ "Half of day": "반나절",
678
+ "Handbook": "사용자 매뉴얼",
679
+ "Hidden": "숨김",
680
+ "Hidden (reserved value)": "숨김(예약 값)",
681
+ "Hidden text": "Hidden text",
682
+ "Hidden(reserved value)": "숨김(예약된 값)",
683
+ "Hide": "숨기기",
684
+ "Hide column": "열 숨기기",
685
+ "Hide in menu": "메뉴에 숨기기",
686
+ "Highlight": "강조",
687
+ "Home page": "홈페이지",
688
+ "Homepage": "홈페이지",
689
+ "Horizontal": "수평",
690
+ "Hour": "시간",
691
+ "Html settings": "Html settings",
692
+ "IANA registry": "IANA registry",
693
+ "ID": "ID",
694
+ "Icon": "아이콘",
695
+ "Icon only": "Icon only",
696
+ "Identifier for program usage. Support letters, numbers and underscores, must start with an letter.": "프로그램 사용을 위한 식별자입니다. 영문자, 숫자, 밑줄(_)을 지원하며, 반드시 영문자로 시작해야 합니다.",
697
+ "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.": "컬렉션에 기본 키가 없는 경우, 블록 내에서 행 레코드를 찾기 위해 고유한 레코드 키를 설정해야 하며, 이를 설정하지 않으면 해당 컬렉션에 대한 데이터 블록을 생성할 수 없습니다.",
698
+ "If collection inherits, choose inherited collections as templates": "컬렉션이 상속되는 경우, 상속된 컬렉션을 템플릿으로 선택하세요.",
699
+ "If selected, the page will display Tab pages.": "선택하면 페이지에 탭 페이지가 표시됩니다.",
700
+ "If selected, the route will be displayed in the menu.": "선택하면 해당 경로가 메뉴에 표시됩니다.",
701
+ "Ignore invalid email length errors": "Ignore invalid email length errors",
702
+ "Imperative Drawer": "Imperative Drawer",
703
+ "Import": "가져오기",
704
+ "Importable fields": "가져올 수 있는 필드",
705
+ "In configuration": "구성에서",
706
+ "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.": "구성 모드에서는 전체 열이 투명해집니다. 비구성 모드에서는 전체 열이 숨겨집니다. 전체 열이 숨겨져 있더라도, 설정된 기본값 및 기타 설정은 여전히 적용됩니다.",
707
+ "Incomplete uploading files need to be resolved": "업로드가 완료되지 않은 파일을 해결해야 합니다",
708
+ "Index": "색인",
709
+ "Individual": "개인",
710
+ "Inherited fields": "상속된 필드",
711
+ "Inherited template": "상속 템플릿",
712
+ "Inherits": "상속",
713
+ "Inner": "내부",
714
+ "Input": "Input",
715
+ "Input +, -, *, /, ( ) to calculate, input @ to open field variables.": "+, -, *, /, ( )를 입력하여 계산하고, @를 입력하여 필드 변수를 엽니다.",
716
+ "Input request data": "Input request data",
717
+ "Insert": "삽입",
718
+ "Insert above": "위에 삽입",
719
+ "Insert after": "뒤에 삽입",
720
+ "Insert before": "앞에 삽입",
721
+ "Insert below": "아래에 삽입",
722
+ "Insert if not exists": "존재하지 않을 때 삽입",
723
+ "Insert if not exists, or update": "존재하지 않으면 삽입, 아니면 업데이트",
724
+ "Insert inner": "내부에 삽입",
725
+ "Insert left": "왼쪽에 삽입",
726
+ "Insert right": "오른쪽에 삽입",
727
+ "Installing": "설치 중",
728
+ "Integer": "정수",
729
+ "Invalid JSON format": "잘못된 JSON 형식",
730
+ "Inverse field display name": "역방향 필드 표시 이름",
731
+ "Inverse field name": "역방향 필드 이름",
732
+ "Inverse relationship type": "역관계 유형",
733
+ "Italic": "Italic",
734
+ "Junction collection": "연결 컬렉션",
735
+ "Kanban": "칸반",
736
+ "Label": "Label",
737
+ "Label align": "라벨 정렬",
738
+ "Label field": "라벨 필드",
739
+ "Label width": "라벨 너비",
740
+ "Language": "언어",
741
+ "Large": "큰",
742
+ "Large screen device": "대형 화면 장치",
743
+ "Last 30 days": "지난 30일",
744
+ "Last 7 days": "지난 7일",
745
+ "Last 90 days": "지난 90일",
746
+ "Last Month": "Last Month",
747
+ "Last Quarter": "Last Quarter",
748
+ "Last Week": "Last Week",
749
+ "Last Year": "Last Year",
750
+ "Last month": "지난 달",
751
+ "Last quarter": "지난 분기",
752
+ "Last updated": "마지막 업데이트",
753
+ "Last updated at": "마지막 업데이트 날짜",
754
+ "Last updated by": "마지막으로 업데이트한 사람",
755
+ "Last week": "지난 주",
756
+ "Last year": "작년",
757
+ "Layout": "레이아웃",
758
+ "Leave it blank, unless you need a custom intermediate table": "비워 두세요. 별도의 중간 테이블이 필요한 경우에만 입력하세요.",
759
+ "Left": "왼쪽",
760
+ "Left fixed": "왼쪽 고정",
761
+ "Length": "길이",
762
+ "Less than": "Less than",
763
+ "License": "라이선스",
764
+ "Lime": "라임",
765
+ "Limit": "Limit",
766
+ "Line break": "줄 바꿈",
767
+ "Line chart": "선형 차트",
768
+ "Link": "링크",
769
+ "Link action settings": "Link action settings",
770
+ "Link to": "링크 연결",
771
+ "Link to description": "설명으로 연결",
772
+ "Linkage rule": "연동 규칙",
773
+ "Linkage rules": "연동 규칙",
774
+ "Linkage with form fields": "양식 필드와의 연동",
775
+ "List": "목록",
776
+ "Load all data when filter is empty": "필터가 비어 있을 때 모든 데이터를 불러옵니다",
777
+ "Load collections": "Load collections",
778
+ "Local": "로컬",
779
+ "Log in with an existing account": "기존 계정으로 로그인",
780
+ "Logging and monitoring": "로깅 및 모니터링",
781
+ "Logo": "로고",
782
+ "Long text": "긴 텍스트",
783
+ "MATHJS_DOC_URL": "https://v2.docs.nocobase.com/calculation-engine/math",
784
+ "Magenta": "마젠타",
785
+ "Main": "메인",
786
+ "Main department": "주요 부서",
787
+ "Manage all settings": "모든 설정 관리",
788
+ "Manually close": "수동으로 닫기",
789
+ "Many to many": "다 대 다",
790
+ "Many to many description": "다 대 다 관계를 만들기 위해 사용되며, 예를 들어 한 학생은 여러 선생님을 가질 수 있으며, 한 선생님도 여러 학생을 가질 수 있습니다. 필드로 존재할 때, 대상 데이터 테이블의 데이터를 선택할 수 있는 드롭다운입니다.",
791
+ "Many to one": "다 대 일",
792
+ "Many to one description": "다 대 일 관계를 만들기 위해 사용되며, 예를 들어 도시 하나는 하나의 국가에 속하며, 국가 하나는 여러 도시를 가질 수 있습니다. 필드로 존재할 때, 대상 데이터 테이블의 데이터를 선택할 수 있는 드롭다운입니다. 생성된 후, 대상 데이터 테이블에는 자동으로 다 대 일 필드가 생성됩니다.",
793
+ "Markdown": "마크다운",
794
+ "Marketplace": "마켓플레이스",
795
+ "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는 다양한 내장 함수와 상수들을 제공하며, 여러 데이터 타입을 다룰 수 있는 통합 솔루션을 제공합니다.",
796
+ "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는 다양한 내장 함수와 상수를 제공하며, 여러 데이터 타입을 다룰 수 있는 통합 솔루션을 제공합니다.",
797
+ "Max Domain Segments": "Max Domain Segments",
798
+ "Max length": "최대 길이",
799
+ "Max length must greater than min length": "최대 길이는 최소 길이보다 커야 합니다",
800
+ "Max value": "Max value",
801
+ "MaxDate": "최대 날짜",
802
+ "Maximum": "최대값",
803
+ "Maximum must be greater than minimum": "최대값은 최소값보다 커야 합니다",
804
+ "Maximum must greater than minimum": "최대값은 최소값보다 커야 합니다",
805
+ "Media": "미디어",
806
+ "Medium": "Medium",
807
+ "Meet": "Meet",
808
+ "Meet <1><0>All</0><1>Any</1></1> conditions in the group": "그룹에서 <1><0>모든</0><1>하나라도</1></1> 조건을 충족",
809
+ "Menu": "메뉴",
810
+ "Menu item icon": "메뉴 항목 아이콘",
811
+ "Menu item name": "메뉴 항목 이름",
812
+ "Menu item title": "메뉴 항목 제목",
813
+ "Menu permissions": "메뉴 권한",
814
+ "Message content": "Message content",
815
+ "Message popup close method": "메시지 팝업 닫기 방법",
816
+ "Message type": "Message type",
817
+ "Middle": "중간",
818
+ "Millisecond": "밀리초",
819
+ "Min Domain Segments": "Min Domain Segments",
820
+ "Min length": "최소 길이",
821
+ "Min length must be less than max length": "최소 길이는 최대 길이보다 작아야 합니다",
822
+ "Min length must less than max length": "최소 길이는 최대 길이보다 작아야 합니다",
823
+ "Min value": "Min value",
824
+ "MinDate": "최소 날짜",
825
+ "Minimum": "최소값",
826
+ "Minimum must be less than maximum": "최소값은 최대값보다 작아야 합니다",
827
+ "Minimum must less than maximum": "최소값은 최대값보다 작아야 합니다",
828
+ "Mobile": "Mobile",
829
+ "Mobile routes": "모바일 경로",
830
+ "Modal": "Modal",
831
+ "Modal add": "모달 추가",
832
+ "Mode": "Mode",
833
+ "Modern page (v2)": "Modern page (v2)",
834
+ "Month": "월",
835
+ "Monthly": "월간",
836
+ "More details": "자세히 보기",
837
+ "More options": "추가 옵션",
838
+ "Move down": "Move down",
839
+ "Move to": "이동하기",
840
+ "Move up": "Move up",
841
+ "Move {{title}} to": "{{title}}을(를) 이동",
842
+ "Multiple": "Multiple",
843
+ "Multiple select": "다중 선택",
844
+ "Multiply by": "곱하기",
845
+ "Must be 1-50 characters in length (excluding @.<>\"'/)": "1-50자 길이여야 합니다. (@.<>\"'/ 제외)",
846
+ "Must select to the last level": "마지막 단계까지 선택해야 합니다",
847
+ "Must use `-` and `:`": "Must use `-` and `:`",
848
+ "N/A": "N/A",
849
+ "Name": "이름",
850
+ "Navigate": "탐색",
851
+ "Navigate to URL": "Navigate to URL",
852
+ "New menu items are allowed to be accessed by default.": "새 메뉴 항목은 기본적으로 액세스할 수 있습니다.",
853
+ "New password": "새 비밀번호",
854
+ "New routes are allowed to be accessed by default": "새 경로는 기본적으로 액세스할 수 있습니다.",
855
+ "Next": "Next",
856
+ "Next 30 days": "다음 30일",
857
+ "Next 7 days": "다음 7일",
858
+ "Next 90 days": "다음 90일",
859
+ "Next Month": "Next Month",
860
+ "Next Quarter": "Next Quarter",
861
+ "Next Week": "Next Week",
862
+ "Next Year": "Next Year",
863
+ "Next month": "다음 달",
864
+ "Next quarter": "다음 분기",
865
+ "Next week": "다음 주",
866
+ "Next year": "내년",
867
+ "Nickname": "닉네임",
868
+ "No": "아니요",
869
+ "No CHANGELOG.md file": "CHANGELOG.md 파일이 없습니다",
870
+ "No README.md file": "README.md 파일이 없습니다",
871
+ "No allow `-` and `:`": "No allow `-` and `:`",
872
+ "No assigned fields configured": "No assigned fields configured",
873
+ "No blocks to connect": "연결할 블록이 없습니다",
874
+ "No configuration available.": "구성 가능한 항목이 없습니다.",
875
+ "No data": "데이터 없음",
876
+ "No event flows": "No event flows",
877
+ "No form available for reset.": "No form available for reset.",
878
+ "No form available for submission.": "No form available for submission.",
879
+ "No linkage rules": "No linkage rules",
880
+ "No pages yet, please configure first": "아직 페이지가 없습니다. 먼저 설정하십시오",
881
+ "No parent popup": "No parent popup",
882
+ "No records selected for bulk edit": "No records selected for bulk edit",
883
+ "No records selected for deletion": "No records selected for deletion",
884
+ "No resource or record selected for deletion": "No resource or record selected for deletion",
885
+ "No resource selected for bulk edit": "No resource selected for bulk edit",
886
+ "No resource selected for deletion": "No resource selected for deletion",
887
+ "No resource selected for refresh": "No resource selected for refresh",
888
+ "None": "없음",
889
+ "Normal": "일반",
890
+ "Not Fixed": "고정 해제",
891
+ "Not enabled": "활성화되지 않음",
892
+ "Not fixed": "고정되지 않음",
893
+ "Not required": "필수 아님",
894
+ "Notification": "알림",
895
+ "Notification description": "Notification description",
896
+ "Notification title": "Notification title",
897
+ "Notification type": "Notification type",
898
+ "Now": "지금",
899
+ "Npm package": "Npm 패키지",
900
+ "Npm package name": "Npm 패키지 이름",
901
+ "Null": "Null",
902
+ "Number": "숫자",
903
+ "Number settings": "Number settings",
904
+ "Object Fit": "개체 맞춤",
905
+ "Off": "끔",
906
+ "Official plugin": "공식 플러그인",
907
+ "Old password": "이전 비밀번호",
908
+ "On": "켜기",
909
+ "One to many": "일 대 다",
910
+ "One to many description": "일 대 다 관계를 만들기 위해 사용되며, 예를 들어 한 국가당 여러 도시가 있을 수 있습니다. 필드로 존재할 때, 대상 데이터 테이블의 데이터를 표시하는 하위 테이블입니다. 생성된 후, 대상 데이터 테이블에는 자동으로 일 대 다 필드가 생성됩니다.",
911
+ "One to one": "일 대 일",
912
+ "One to one (belongs to)": "일 대 일 (소속됨)",
913
+ "One to one (has one)": "일 대 일 (하나를 가짐)",
914
+ "One to one description": "일 대 일 관계를 만들기 위해 사용되며, 예를 들어 사용자당 하나의 프로필이 있을 수 있습니다.",
915
+ "Only support standard JSON data": "Only support standard JSON data",
916
+ "Only the selected fields will be used as the initialization data for the form": "선택한 필드만 폼의 초기화 데이터로 사용됩니다.",
917
+ "Only use `-`": "Only use `-`",
918
+ "Only use `.`": "Only use `.`",
919
+ "Only use `_`": "Only use `_`",
920
+ "Open in new window": "새 창에서 열기",
921
+ "Open in<1><0>Modal</0><1>Drawer</1><2>Window</2></1>": "모달<0>에서 열기</0><1>드로어</1><2>창</2>",
922
+ "Open mode": "열기 모드",
923
+ "Open mode configuration": "Open mode configuration",
924
+ "Operate on existing data": "기존 데이터에 대해 작업합니다",
925
+ "Operate on new data": "새로운 데이터에 대해 작업합니다",
926
+ "Operation failed": "작업 실패",
927
+ "Operation succeeded": "작업이 성공적으로 완료되었습니다",
928
+ "Operator": "연산자",
929
+ "Option label": "옵션 레이블",
930
+ "Option value": "옵션 값",
931
+ "Options": "옵션",
932
+ "Orange": "주황",
933
+ "Original field title: ": "원래 필드 제목: ",
934
+ "Original name": "원래 이름",
935
+ "Original title: ": "원래 제목:",
936
+ "Other": "기타",
937
+ "Other action": "Other action",
938
+ "Other block": "Other block",
939
+ "Other blocks": "기타 블록",
940
+ "Other chart": "기타 차트",
941
+ "Other collections": "기타 컬렉션",
942
+ "Other column": "Other column",
943
+ "Other form": "Other form",
944
+ "Other records": "기타 레코드",
945
+ "Others": "기타",
946
+ "Outlined": "윤곽",
947
+ "Override": "재정의",
948
+ "Override field": "필드 재정의",
949
+ "Oversized": "초과 크기",
950
+ "Own records": "본인의 데이터",
951
+ "Owners": "소유자",
952
+ "PK & FK fields": "기본키 및 외래키 필드",
953
+ "Package name": "패키지 이름",
954
+ "PackageName": "패키지 이름",
955
+ "Page": "페이지",
956
+ "Page (v2)": "Page (v2)",
957
+ "Page Title": "Page Title",
958
+ "Page number": "페이지 번호",
959
+ "Page settings": "Page settings",
960
+ "Page size": "페이지 크기",
961
+ "Parent": "상위",
962
+ "Parent ID": "상위 ID",
963
+ "Parent collection fields": "상위 컬렉션 필드",
964
+ "Parent object": "상위 객체",
965
+ "Parent popup": "Parent popup",
966
+ "Parent popup record": "상위 팝업 레코드",
967
+ "Parent record": "상위 레코드",
968
+ "Password": "비밀번호",
969
+ "Password Options": "Password Options",
970
+ "Password mismatch": "비밀번호가 일치하지 않습니다",
971
+ "Past": "Past",
972
+ "Path": "경로",
973
+ "Pattern": "패턴",
974
+ "Percent": "퍼센트",
975
+ "Perform the Custom request": "사용자 지정 요청 수행",
976
+ "Perform the Refresh": "새로 고침 수행",
977
+ "Perform the Submit": "제출 수행",
978
+ "Perform the Trigger workflow": "트리거 워크플로 실행",
979
+ "Perform the Update record": "레코드 업데이트 수행",
980
+ "Perform the {{title}}": "{{title}} 실행",
981
+ "Permission deined": "권한이 거부되었습니다",
982
+ "Permission denied": "권한이 거부되었습니다",
983
+ "Permission policy": "권한 정책",
984
+ "Phone": "전화번호",
985
+ "Phone device": "휴대폰",
986
+ "Picker": "선택기",
987
+ "Pie chart": "원형 차트",
988
+ "Pin to left": "왼쪽에 고정",
989
+ "Pin to right": "오른쪽에 고정",
990
+ "Placeholder": "Placeholder",
991
+ "Placement": "Placement",
992
+ "Please add a data block on the page first": "Please add a data block on the page first",
993
+ "Please add or select record": "레코드를 추가하거나 선택하세요",
994
+ "Please configure the URL": "URL을 구성해 주세요",
995
+ "Please configure the duplicate fields": "중복 필드를 구성하세요",
996
+ "Please confirm the SQL statement first": "먼저 SQL 문을 확인해주세요",
997
+ "Please enter form uid": "Please enter form uid",
998
+ "Please enter the target block UID": "Please enter the target block UID",
999
+ "Please enter variable identifier": "Please enter variable identifier",
1000
+ "Please enter variable title": "Please enter variable title",
1001
+ "Please fill in the iframe URL": "iframe URL을 입력해 주세요",
1002
+ "Please input message content": "Please input message content",
1003
+ "Please input notification description": "Please input notification description",
1004
+ "Please input notification title": "Please input notification title",
1005
+ "Please input target action uid": "Please input target action uid",
1006
+ "Please input target block uid": "Please input target block uid",
1007
+ "Please input target form uid": "Please input target form uid",
1008
+ "Please select": "Please select",
1009
+ "Please select field": "Please select field",
1010
+ "Please select fields": "Please select fields",
1011
+ "Please select fields to filter": "Please select fields to filter",
1012
+ "Please select filterable fields": "Please select filterable fields",
1013
+ "Please select state": "Please select state",
1014
+ "Please select the records to be updated": "업데이트할 레코드를 선택하세요",
1015
+ "Please select time or variable": "시간 또는 변수를 선택하세요",
1016
+ "Please use a valid SELECT or WITH AS statement": "유효한 SELECT 또는 WITH AS 문을 사용하세요",
1017
+ "Plugin": "플러그인",
1018
+ "Plugin Zip File": "플러그인 ZIP 파일",
1019
+ "Plugin dependencies check failed": "플러그인 종속성 검사 실패",
1020
+ "Plugin dependencies check failed, you should change the dependent version to meet the version requirements.": "플러그인 종속성 검사에 실패했습니다. 버전 요구 사항을 충족하도록 종속 버전을 변경해야 합니다.",
1021
+ "Plugin dependency version mismatch": "플러그인 종속성 버전 불일치",
1022
+ "Plugin loading failed. Please check the server logs.": "플러그인 로드에 실패했습니다. 서버 로그를 확인해주세요.",
1023
+ "Plugin manager": "플러그인 관리자",
1024
+ "Plugin name": "플러그인 이름",
1025
+ "Plugin settings": "플러그인 설정",
1026
+ "Plugin settings permissions": "플러그인 설정 권한",
1027
+ "Plugin source": "플러그인 소스",
1028
+ "Plugin starting...": "플러그인 시작 중...",
1029
+ "Plugin stopping...": "플러그인 중지 중...",
1030
+ "Plugin tab name": "플러그인 탭 이름",
1031
+ "Plugin's version": "플러그인 버전",
1032
+ "Pop-up": "팝업",
1033
+ "Popup": "팝업",
1034
+ "Popup close method": "팝업 닫기 방법",
1035
+ "Popup form": "팝업 양식",
1036
+ "Popup message": "팝업 메시지",
1037
+ "Popup record": "Popup record",
1038
+ "Popup settings": "Popup settings",
1039
+ "Popup size": "팝업 크기",
1040
+ "Popup uid": "Popup UID",
1041
+ "Position": "위치",
1042
+ "Precision": "정밀도",
1043
+ "Precision(UI)": "Precision(UI)",
1044
+ "Prefix": "접두사",
1045
+ "Preset fields": "프리셋 필드",
1046
+ "Prettify": "예쁘게 표시",
1047
+ "Preview": "미리보기",
1048
+ "Preview Settings": "Preview Settings",
1049
+ "Preview field component": "Preview field component",
1050
+ "Primary": "기본",
1051
+ "Primary key, unique identifier, self growth": "기본 키, 고유 식별자, 자동 증가",
1052
+ "Print": "인쇄",
1053
+ "Problematic": "문제 발생",
1054
+ "Progress field": "진행률 필드",
1055
+ "Properties": "속성",
1056
+ "Providing certain collections as options for users, typically used in polymorphic or inheritance scenarios": "사용자에게 특정 컬렉션을 옵션으로 제공하며, 일반적으로 다형성 또는 상속 시나리오에서 사용됩니다.",
1057
+ "Province": "도",
1058
+ "Province/city/area name": "도/시/지역 이름",
1059
+ "Purple": "보라",
1060
+ "Quarter": "분기",
1061
+ "Quarter of day": "하루의 1/4",
1062
+ "QuarterYear": "분기-연도",
1063
+ "Quick add": "빠른 추가",
1064
+ "Quick create": "빠른 생성",
1065
+ "Quick duplicate": "빠른 복제",
1066
+ "Quick upload": "빠른 업로드",
1067
+ "Radio group": "라디오 그룹",
1068
+ "Randomly generated and can be modified. Support letters, numbers and underscores, must start with a letter.": "무작위로 생성되며 수정할 수 있습니다. 영문자, 숫자, 밑줄을 지원하며, 반드시 영문자로 시작해야 합니다.",
1069
+ "Randomly generated and can be modified. Support letters, numbers and underscores, must start with an letter.": "무작위로 생성되며 수정할 수 있습니다. 영문자, 숫자, 밑줄을 지원하며, 반드시 영문자로 시작해야 합니다.",
1070
+ "Read only": "읽기 전용",
1071
+ "ReadOnly": "ReadOnly",
1072
+ "ReadPretty": "ReadPretty",
1073
+ "Readme": "읽어보기",
1074
+ "Readonly": "읽기 전용",
1075
+ "Recommended": "Recommended",
1076
+ "Record ID": "레코드 ID",
1077
+ "Record deleted successfully": "Record deleted successfully",
1078
+ "Record picker": "레코드 선택기",
1079
+ "Record unique key": "레코드 고유 키",
1080
+ "RecordPicker settings": "RecordPicker settings",
1081
+ "Records can be sorted": "레코드를 정렬할 수 있음",
1082
+ "Records per page": "페이지 당 레코드 수",
1083
+ "Red": "빨강",
1084
+ "Redirect to": "다음으로 리디렉션",
1085
+ "Reference template": "참조 템플릿",
1086
+ "References": "References",
1087
+ "Refresh": "새로고침",
1088
+ "Refresh data after execution": "Refresh data after execution",
1089
+ "Refresh data blocks": "데이터 블록 새로 고침",
1090
+ "Refresh data on action": "작업 시 데이터 새로고침",
1091
+ "Refresh data on close": "작업 시 데이터 새로고침",
1092
+ "Refresh target blocks": "Refresh target blocks",
1093
+ "Regular Expression": "Regular Expression",
1094
+ "Regular expression": "정규 표현식",
1095
+ "Related collection": "관련 컬렉션",
1096
+ "Relation": "관계",
1097
+ "Relationship blocks": "관계 블록",
1098
+ "Relationship type": "관계 유형",
1099
+ "Reload application": "애플리케이션 다시 불러오기",
1100
+ "Remains the same": "동일하게 유지",
1101
+ "Remove": "제거",
1102
+ "Render Failed": "렌더링 실패",
1103
+ "Render mode": "Render mode",
1104
+ "Repeats": "반복",
1105
+ "Request API": "요청 API",
1106
+ "Request URL": "요청 URL",
1107
+ "Request body": "요청 본문",
1108
+ "Request headers": "요청 헤더",
1109
+ "Request method": "요청 메서드",
1110
+ "Request query parameters": "요청 쿼리 매개변수",
1111
+ "Request settings": "요청 설정",
1112
+ "Request success": "요청 성공",
1113
+ "Required": "필수",
1114
+ "Reset": "재설정",
1115
+ "Reset link expiration": "링크 만료 재설정",
1116
+ "Response record": "Response record",
1117
+ "Response type": "Response type",
1118
+ "Restart": "다시 시작",
1119
+ "Restart application": "애플리케이션 다시 시작",
1120
+ "Restrict only relative URIs": "Restrict only relative URIs",
1121
+ "Result": "결과",
1122
+ "Retry after {{count}} seconds": "{{count}}초 후에 다시 시도하세요",
1123
+ "Return to the main application": "메인 애플리케이션으로 돌아가기",
1124
+ "Return to the previous popup or page": "이전 팝업 또는 페이지로 돌아가기",
1125
+ "Rich Text": "서식 있는 텍스트",
1126
+ "Right": "오른쪽",
1127
+ "Right fixed": "오른쪽 고정",
1128
+ "Role UID": "역할 UID",
1129
+ "Role display name": "역할 표시 이름",
1130
+ "Role name": "역할 이름",
1131
+ "Roles": "역할",
1132
+ "Roles & Permissions": "역할 및 권한",
1133
+ "Route name": "경로 이름",
1134
+ "Route permissions": "경로 권한",
1135
+ "Routes": "경로",
1136
+ "Row click": "Row click",
1137
+ "Rows": "Rows",
1138
+ "SQL collection": "SQL 컬렉션",
1139
+ "Save": "저장",
1140
+ "Save action": "동작 저장",
1141
+ "Save as block template": "블록 템플릿으로 저장",
1142
+ "Save as inherited template": "상속 템플릿으로 저장",
1143
+ "Save as reference template": "참조 템플릿으로 저장",
1144
+ "Save as template": "템플릿으로 저장",
1145
+ "Save conditions": "조건 저장",
1146
+ "Save failed": "Save failed",
1147
+ "Save mode": "저장 모드",
1148
+ "Save record": "레코드 저장",
1149
+ "Saved successfully": "성공적으로 저장되었습니다",
1150
+ "Scale": "Scale",
1151
+ "Scale Down": "축소",
1152
+ "Scan to input": "Scan to input",
1153
+ "Scheme": "Scheme",
1154
+ "Scientifix notation": "과학적 표기법",
1155
+ "Scope name": "데이터 범위 이름",
1156
+ "Screen size": "화면 크기",
1157
+ "Search": "검색",
1158
+ "Search and select collection": "컬렉션 검색 및 선택",
1159
+ "Search collections...": "Search collections...",
1160
+ "Search parameters": "검색 매개변수",
1161
+ "Search plugin": "검색 플러그인",
1162
+ "Search plugin...": "플러그인 검색...",
1163
+ "Second": "초",
1164
+ "Secondary confirmation": "2차 확인",
1165
+ "Security": "보안",
1166
+ "Select": "선택",
1167
+ "Select a source field to use metadata of the field": "Select a source field to use metadata of the field",
1168
+ "Select a variable": "변수 선택",
1169
+ "Select all": "모두 선택",
1170
+ "Select an existing piece of data as the initialization data for the form": "기존 데이터를 선택하여 양식의 초기화 데이터로 사용",
1171
+ "Select collection": "컬렉션 선택",
1172
+ "Select data blocks to refresh": "데이터 블록을 선택하여 새로 고침",
1173
+ "Select data source": "데이터 소스 선택",
1174
+ "Select date": "Select date",
1175
+ "Select field": "필드 선택",
1176
+ "Select file": "파일 선택",
1177
+ "Select form fields": "Select form fields",
1178
+ "Select grouping field": "그룹화 필드 선택",
1179
+ "Select icon": "아이콘 선택",
1180
+ "Select level": "레벨 선택",
1181
+ "Select mode": "Select mode",
1182
+ "Select record": "레코드 선택",
1183
+ "Select target action": "Select target action",
1184
+ "Select target block": "Select target block",
1185
+ "Select target form block": "Select target form block",
1186
+ "Select template": "템플릿 선택",
1187
+ "Select trigger event": "Select trigger event",
1188
+ "Select variable": "Select variable",
1189
+ "Select view": "보기 선택",
1190
+ "Selected": "선택됨",
1191
+ "Selected Collections": "Selected Collections",
1192
+ "Selected records deleted successfully": "Selected records deleted successfully",
1193
+ "Selector": "선택기",
1194
+ "Selector mode": "선택기 모드",
1195
+ "Selector setting": "Selector setting",
1196
+ "Send code": "코드 전송",
1197
+ "Separate multiple values with comma or Enter": "Separate multiple values with comma or Enter",
1198
+ "Separator": "구분자",
1199
+ "Set Template Engine": "템플릿 엔진 설정",
1200
+ "Set action state": "Set action state",
1201
+ "Set block height": "블록 높이 설정",
1202
+ "Set block layout": "블록 레이아웃 설정",
1203
+ "Set block state": "Set block state",
1204
+ "Set button state": "Set button state",
1205
+ "Set condition": "Set condition",
1206
+ "Set data loading mode": "데이터 로딩 모드 설정",
1207
+ "Set data scope": "Set data scope",
1208
+ "Set default sorting rules": "기본 정렬 규칙 설정",
1209
+ "Set default value": "기본값 설정",
1210
+ "Set details field state": "Set details field state",
1211
+ "Set field state": "Set field state",
1212
+ "Set field value": "Set field value",
1213
+ "Set form field state": "Set form field state",
1214
+ "Set form field value": "Set form field value",
1215
+ "Set state": "Set state",
1216
+ "Set the count of columns displayed in a row": "한 행에 표시되는 열의 개수 설정",
1217
+ "Set the data scope": "데이터 범위 설정",
1218
+ "Set validation rules": "유효성 검사 규칙 설정",
1219
+ "Set value": "Set value",
1220
+ "Setting": "설정",
1221
+ "Settings": "설정",
1222
+ "Show date range": "Show date range",
1223
+ "Show file name": "파일 이름 표시",
1224
+ "Show in menu": "메뉴에 표시",
1225
+ "Show label": "Show label",
1226
+ "Show lunar": "음력 표시",
1227
+ "Show message": "Show message",
1228
+ "Show notification": "Show notification",
1229
+ "Show row numbers": "Show row numbers",
1230
+ "Show time": "시간 표시",
1231
+ "Sign in": "로그인",
1232
+ "Sign in via account": "계정으로 로그인",
1233
+ "Sign in via phone": "휴대폰으로 로그인",
1234
+ "Sign in with another account": "다른 계정으로 로그인",
1235
+ "Sign out": "로그아웃",
1236
+ "Sign up": "가입",
1237
+ "Sign up successfully, and automatically jump to the sign in page": "성공적으로 가입이 완료되었습니다. 로그인 페이지로 자동 이동합니다.",
1238
+ "Sign up successfully, and automatically jump to the sign-in page": "성공적으로 가입하였으며, 자동으로 로그인 페이지로 이동합니다.",
1239
+ "Signed up successfully. It will jump to the login page.": "성공적으로 가입되었습니다. 로그인 페이지로 이동합니다.",
1240
+ "Simple string replacement, can be used to interpolate variables in a string.": "간단한 문자열 치환으로, 문자열 내 변수 삽입에 사용할 수 있습니다.",
1241
+ "Single line text": "한 줄 텍스트",
1242
+ "Single select": "단일 선택",
1243
+ "Single select and radio fields can be used as the grouping field": "단일 선택 및 라디오 필드는 그룹화 필드로 사용할 수 있습니다.",
1244
+ "Size": "크기",
1245
+ "Sizes": "Sizes",
1246
+ "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": "페이징 중 테이블 레코드의 총 개수를 가져오는 과정을 건너뛰어 로딩 속도를 높입니다. 데이터가 많은 테이블의 경우 이 옵션을 활성화하는 것이 권장됩니다.",
1247
+ "Skip required validation": "필수 유효성 검사 건너뛰기",
1248
+ "Small": "작은",
1249
+ "SmartTv": "SmartTv",
1250
+ "Some files are not uploaded correctly, please check.": "Some files are not uploaded correctly, please check.",
1251
+ "Sorry, the page you visited does not exist.": "죄송합니다. 방문하신 페이지가 존재하지 않습니다.",
1252
+ "Sort": "정렬",
1253
+ "Sortable": "정렬 가능",
1254
+ "Source collection": "소스 컬렉션",
1255
+ "Source collections": "소스 컬렉션",
1256
+ "Source key": "소스 키",
1257
+ "Specific properties": "특정 속성",
1258
+ "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.",
1259
+ "Specify height": "높이 지정",
1260
+ "Start": "Start",
1261
+ "Start accessor": "Start accessor",
1262
+ "Start date field": "시작 날짜 필드",
1263
+ "State": "State",
1264
+ "Stay on current page": "현재 페이지에 머무르기",
1265
+ "Stay on the current popup or page": "현재 팝업이나 페이지에 머무르기",
1266
+ "Steps": "Steps",
1267
+ "Store the creation time of each record": "각 레코드의 생성 시간 저장",
1268
+ "Store the creation user of each record": "각 레코드의 생성 사용자 저장",
1269
+ "Store the last update time of each record": "각 레코드의 마지막 업데이트 시간 저장",
1270
+ "Store the last update user of each record": "각 레코드의 마지막 업데이트 사용자 저장",
1271
+ "Street": "거리",
1272
+ "String": "문자열",
1273
+ "String template": "문자열 템플릿",
1274
+ "Style": "스타일",
1275
+ "Sub-detail": "Sub-detail",
1276
+ "Sub-details": "하위 세부사항",
1277
+ "Sub-form": "하위 양식",
1278
+ "Sub-form(Popover)": "하위 양식(팝업)",
1279
+ "Sub-table": "하위 테이블",
1280
+ "Subform mode": "하위 양식 모드",
1281
+ "Submit": "제출",
1282
+ "Submit action settings": "Submit action settings",
1283
+ "Submit record": "Submit record",
1284
+ "Submitted successfully": "제출이 완료되었습니다",
1285
+ "Subtable": "하위 테이블",
1286
+ "Subtable mode": "하위 테이블 모드",
1287
+ "Successfully": "Successfully",
1288
+ "Suffix": "접미사",
1289
+ "Super admin": "최고 관리자",
1290
+ "Superior department": "상위 부서",
1291
+ "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)",
1292
+ "Support for a single or bulk upload, file size should not exceed": "단일 또는 대량 업로드를 지원하며, 파일 크기는 초과하지 않아야 합니다.",
1293
+ "Support for a single or bulk upload.": "단일 또는 대량 업로드를 지원합니다.",
1294
+ "Switch role": "역할 전환",
1295
+ "Switching the picker, the value and default value will be cleared": "피커를 전환하면 값과 기본값이 초기화됩니다.",
1296
+ "Sync from database": "데이터베이스에서 동기화",
1297
+ "Sync from form fields": "폼 필드에서 동기화",
1298
+ "Sync successfully": "동기화 성공",
1299
+ "Syntax references": "구문 참조",
1300
+ "System": "시스템",
1301
+ "System & security": "시스템 및 보안",
1302
+ "System fields": "시스템 필드",
1303
+ "System info": "시스템 정보",
1304
+ "System management": "시스템 관리",
1305
+ "System settings": "시스템 설정",
1306
+ "System title": "시스템 제목",
1307
+ "System variables": "시스템 변수",
1308
+ "Tab": "탭",
1309
+ "Tab name": "탭 이름",
1310
+ "Table": "테이블",
1311
+ "Table OID(Inheritance)": "테이블 OID(상속)",
1312
+ "Table column settings": "Table column settings",
1313
+ "Table density": "Table density",
1314
+ "Table selected records": "테이블에서 선택한 레코드",
1315
+ "Table settings": "Table settings",
1316
+ "Table size": "테이블 크기",
1317
+ "Tablet": "Tablet",
1318
+ "Tablet device": "태블릿 기기",
1319
+ "Tag": "태그",
1320
+ "Tag color field": "태그 색상 필드",
1321
+ "Target": "대상",
1322
+ "Target block UID": "Target block UID",
1323
+ "Target block uid": "Target block uid",
1324
+ "Target collection": "대상 컬렉션",
1325
+ "Target form block": "Target form block",
1326
+ "Target key": "대상 키",
1327
+ "Target position": "대상 위치",
1328
+ "Template": "템플릿",
1329
+ "Template Data": "템플릿 데이터",
1330
+ "Template engine": "템플릿 엔진",
1331
+ "Template fields": "템플릿 필드",
1332
+ "Template name": "템플릿 이름",
1333
+ "Templates": "템플릿",
1334
+ "Text": "Text",
1335
+ "Text Align": "텍스트 정렬",
1336
+ "Text input": "Text input",
1337
+ "Text only": "Text only",
1338
+ "The application is reloading, please do not close the page.": "애플리케이션이 다시 로드되고 있습니다. 페이지를 닫지 마세요.",
1339
+ "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).",
1340
+ "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?": "플러그인의 현재 종속성 버전이 애플리케이션 버전과 일치하지 않아 제대로 동작하지 않을 수 있습니다. 그래도 플러그인을 계속 활성화하시겠습니까?",
1341
+ "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}}\"",
1342
+ "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}}\"",
1343
+ "The current user only has the UI configuration permission, but don't have view permission for collection \"{{name}}\"": "현재 사용자는 UI 구성 권한만 있고, 컬렉션 \"{{name}}\"에 대한 보기 권한은 없습니다.",
1344
+ "The deletion was successful.": "삭제가 성공했습니다.",
1345
+ "The field has been deleted": "필드가 삭제되었습니다",
1346
+ "The field value cannot be greater than ": "필드 값은 다음 값보다 클 수 없습니다.",
1347
+ "The field value cannot be less than ": "필드 값은 다음 값보다 작을 수 없습니다.",
1348
+ "The field value is not a email format": "The field value is not a email format",
1349
+ "The field value is not an integer number": "필드 값은 정수여야 합니다",
1350
+ "The field value is required": "The field value is required",
1351
+ "The following field types are not compatible and do not support output and display": "다음 필드 유형은 호환되지 않으며 출력 및 표시를 지원하지 않습니다.",
1352
+ "The selected fields will automatically populate the form": "선택한 필드는 자동으로 양식에 채워집니다.",
1353
+ "The title field is used to identify the template record": "제목 필드는 템플릿 레코드를 식별하는 데 사용됩니다",
1354
+ "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.": "이 변수의 값은 페이지 URL의 쿼리 문자열에서 파생됩니다. 이 변수는 페이지에 쿼리 문자열이 있을 때만 정상적으로 사용할 수 있습니다.",
1355
+ "The will interrupt service, it may take a few seconds to restart. Are you sure to continue?": "서비스가 중단되며, 재시작하는 데 몇 초가 걸릴 수 있습니다. 계속하시겠습니까?",
1356
+ "The {{type}} \"{{name}}\" may have been deleted. Please remove this {{blockType}}.": "{{type}} \"{{name}}\"이(가) 삭제되었을 수 있습니다. 이 {{blockType}}을(를) 제거해 주세요.",
1357
+ "Theme": "테마",
1358
+ "Then": "그 다음",
1359
+ "Third party services": "타사 서비스",
1360
+ "This Month": "This Month",
1361
+ "This Quarter": "This Quarter",
1362
+ "This Week": "This Week",
1363
+ "This Year": "This Year",
1364
+ "This and following events": "이 이벤트 및 이후 이벤트",
1365
+ "This event": "이 이벤트",
1366
+ "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).",
1367
+ "This field is required": "This field is required",
1368
+ "This is a demo text, **supports Markdown syntax**.": "이것은 예시 문구입니다. **마크다운 문법을 지원합니다**.",
1369
+ "This is likely a NocoBase internals bug. Please open an issue at <1>here</1>": "이것은 NocoBase 내부 버그일 가능성이 높습니다. <1>여기</1>에서 이슈를 등록해 주세요.",
1370
+ "This month": "이번 달",
1371
+ "This quarter": "이번 분기",
1372
+ "This variable has been deprecated and can be replaced with \"Current form\"": "변수가 폐기되었습니다. \"현재 양식\"을 대체로 사용할 수 있습니다",
1373
+ "This week": "이번 주",
1374
+ "This year": "올해",
1375
+ "Through collection": "컬렉션을 통해",
1376
+ "Time": "시간",
1377
+ "Time format": "시간 형식",
1378
+ "Time scale": "시간 척도",
1379
+ "Timeout config": "Timeout config",
1380
+ "Timestamp": "Timestamp",
1381
+ "Title": "제목",
1382
+ "Title & description": "Title & description",
1383
+ "Title accessor": "Title accessor",
1384
+ "Title field": "제목 필드",
1385
+ "Title field component": "Title field component",
1386
+ "Title position": "제목 위치",
1387
+ "Today": "오늘",
1388
+ "Toggles the subfield mode": "하위 필드 모드 전환",
1389
+ "Tomorrow": "내일",
1390
+ "Tooltip": "Tooltip",
1391
+ "Top left": "Top left",
1392
+ "Top right": "Top right",
1393
+ "Total {{count}} items": "총 {{count}} 개 항목",
1394
+ "Tree collection": "트리 컬렉션",
1395
+ "Tree table": "트리 테이블",
1396
+ "Trigger condition": "Trigger condition",
1397
+ "Trigger event": "Trigger event",
1398
+ "Trigger workflow": "워크플로우 트리거",
1399
+ "Triggered when the row is clicked": "행이 클릭될 때 트리거됩니다",
1400
+ "True": "참",
1401
+ "Try again": "다시 시도",
1402
+ "Turn pages": "페이지 넘김",
1403
+ "Two tone": "투톤",
1404
+ "Type": "유형",
1405
+ "UI Editor": "UI 편집기",
1406
+ "UI editor": "UI 편집기",
1407
+ "URL": "URL",
1408
+ "URL search params": "URL 검색 매개변수",
1409
+ "UnSelect all": "모두 선택 해제",
1410
+ "Unauthenticated. Please sign in to continue.": "인증되지 않았습니다. 계속하려면 로그인해 주세요.",
1411
+ "Unconnected": "연결되지 않음",
1412
+ "Unicode characters are permitted": "Unicode characters are permitted",
1413
+ "Unique": "고유",
1414
+ "Unit conversion": "단위 변환",
1415
+ "Unix Timestamp": "유닉스 타임스탬프",
1416
+ "Unknown field type": "알 수 없는 필드 유형",
1417
+ "Unnamed": "이름 없음",
1418
+ "Unpinned": "고정 해제",
1419
+ "Unsafe integer": "Unsafe integer",
1420
+ "Unsaved changes": "저장되지 않은 변경사항",
1421
+ "Update": "업데이트",
1422
+ "Update all data?": "모든 데이터를 업데이트하시겠습니까?",
1423
+ "Update or create": "업데이트 또는 생성",
1424
+ "Update plugin": "플러그인 업데이트",
1425
+ "Update record": "레코드 업데이트",
1426
+ "Update record action": "Update record",
1427
+ "Update selected data?": "선택한 데이터를 업데이트하시겠습니까?",
1428
+ "Updated successfully": "성공적으로 업데이트되었습니다",
1429
+ "UpdatedAt": "업데이트된 시점",
1430
+ "UpdatedBy": "업데이트한 사람",
1431
+ "Upgrade": "업그레이드",
1432
+ "Upload": "업로드",
1433
+ "Upload file settings": "Upload file settings",
1434
+ "Upload new version": "새 버전 업로드",
1435
+ "Upload plugin": "플러그인 업로드",
1436
+ "Uploading": "Uploading",
1437
+ "Use simple pagination mode": "간단한 페이지네이션 모드 사용",
1438
+ "Use the same time zone (GMT) for all users": "모든 사용자가 동일한 시간대(GMT)를 사용합니다",
1439
+ "Used for drag and drop sorting scenarios, supporting grouping sorting": "드래그 앤 드롭 정렬 시나리오에 사용되며, 그룹별 정렬을 지원합니다.",
1440
+ "User": "사용자",
1441
+ "User not found. Please sign in again to continue.": "사용자를 찾을 수 없습니다. 계속하려면 다시 로그인하세요.",
1442
+ "User password changed, please signin again.": "사용자 비밀번호가 변경되었습니다. 다시 로그인해 주세요.",
1443
+ "Username": "사용자 이름",
1444
+ "Users": "사용자",
1445
+ "Users & permissions": "사용자 & 권한",
1446
+ "Valid range: 10-40": "Valid range: 10-40",
1447
+ "Valid range: 100-900": "Valid range: 100-900",
1448
+ "Validation": "Validation",
1449
+ "Validation rule": "유효성 검사 규칙",
1450
+ "Value": "값",
1451
+ "Variable identifier": "Variable identifier",
1452
+ "Variable title": "Variable title",
1453
+ "Verification code": "인증 코드",
1454
+ "Version": "버전",
1455
+ "Version range": "버전 범위",
1456
+ "Vertical": "수직",
1457
+ "View": "보기",
1458
+ "View all plugins": "모든 플러그인 보기",
1459
+ "View record": "레코드 보기",
1460
+ "Village": "빌리지",
1461
+ "Visible": "표시여부",
1462
+ "Volcano": "화산",
1463
+ "Wearable": "Wearable",
1464
+ "Week": "주",
1465
+ "Weekly": "주간",
1466
+ "When a field is selected for grouping, it will be grouped first before sorting.": "필드가 그룹화에 선택되면, 정렬 전에 먼저 그룹화됩니다.",
1467
+ "When condition is met": "When condition is met",
1468
+ "When condition is not met": "When condition is not met",
1469
+ "When submitting the following fields, the saved values are": "다음 필드를 제출할 때, 저장된 값은",
1470
+ "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",
1471
+ "When the Label exceeds the width": "레이블이 너비를 초과할 때",
1472
+ "With condition": "With condition",
1473
+ "Without condition": "Without condition",
1474
+ "Work week": "근무 주",
1475
+ "Workflow": "워크플로우",
1476
+ "Wrap": "Wrap",
1477
+ "Wysiwyg": "위지윅",
1478
+ "Year": "년",
1479
+ "Year-Month-Day": "년-월-일",
1480
+ "Year/Month/Day": "년/월/일",
1481
+ "Yearly": "매년",
1482
+ "Yes": "예",
1483
+ "Yesterday": "어제",
1484
+ "Your session has expired. Please sign in again.": "세션이 만료되었습니다. 다시 로그인해 주세요.",
1485
+ "conditions in the group": "conditions in the group",
1486
+ "contains": "포함",
1487
+ "data source": "데이터 소스",
1488
+ "does not contain": "포함하지 않음",
1489
+ "edit title": "제목 편집",
1490
+ "ends with": "로 끝남",
1491
+ "exists": "존재함",
1492
+ "is": "일치",
1493
+ "is after": "이후",
1494
+ "is any of": "다음 중 하나",
1495
+ "is before": "이전",
1496
+ "is between": "사이에 있음",
1497
+ "is empty": "비어 있음",
1498
+ "is none of": "해당 없음",
1499
+ "is not": "일치하지 않음",
1500
+ "is not empty": "비어 있지 않음",
1501
+ "is on or after": "이후 또는 동일",
1502
+ "is on or before": "이전 또는 동일",
1503
+ "item": "item",
1504
+ "items": "items",
1505
+ "loading": "로딩",
1506
+ "name is required": "이름은 필수 항목입니다",
1507
+ "not ends with": "끝나지 않음",
1508
+ "not exists": "존재하지 않음",
1509
+ "not starts with": "시작하지 않음",
1510
+ "pixels": "픽셀",
1511
+ "re-download file": "파일 다시 다운로드",
1512
+ "starts with": "로 시작",
1513
+ "tlds": "tlds",
1514
+ "visible": "보임",
1515
+ "{{#label}} email address doesn’t meet the required format": "{{#label}} email address doesn’t meet the required format",
1516
+ "{{#label}} is not allowed to be empty": "{{#label}} is not allowed to be empty",
1517
+ "{{#label}} is required": "{{#label}} is required",
1518
+ "{{#label}} length must be at least {{#limit}} characters long": "{{#label}} length must be at least {{#limit}} characters long",
1519
+ "{{#label}} length must be less than or equal to {{#limit}} characters long": "{{#label}} length must be less than or equal to {{#limit}} characters long",
1520
+ "{{#label}} length must be {{#limit}} characters long": "{{#label}} length must be {{#limit}} characters long",
1521
+ "{{#label}} must be a credit card": "{{#label}} must be a credit card",
1522
+ "{{#label}} must be a float or double": "{{#label}} must be a float or double",
1523
+ "{{#label}} must be a multiple of {{#multiple}}": "{{#label}} must be a multiple of {{#multiple}}",
1524
+ "{{#label}} must be a negative number": "{{#label}} must be a negative number",
1525
+ "{{#label}} must be a number": "{{#label}} must be a number",
1526
+ "{{#label}} must be a positive number": "{{#label}} must be a positive number",
1527
+ "{{#label}} must be a safe number": "{{#label}} must be a safe number",
1528
+ "{{#label}} must be a string": "{{#label}} must be a string",
1529
+ "{{#label}} must be a valid ISO 8601 date": "{{#label}} must be a valid ISO 8601 date",
1530
+ "{{#label}} must be a valid UUID": "{{#label}} must be a valid UUID",
1531
+ "{{#label}} must be a valid date": "{{#label}} must be a valid date",
1532
+ "{{#label}} must be a valid hostname": "{{#label}} must be a valid hostname",
1533
+ "{{#label}} must be a valid port": "{{#label}} must be a valid port",
1534
+ "{{#label}} must be a valid uri": "{{#label}} must be a valid uri",
1535
+ "{{#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",
1536
+ "{{#label}} must be an integer": "{{#label}} must be an integer",
1537
+ "{{#label}} must be greater than or equal to {{#limit}}": "{{#label}} must be greater than or equal to {{#limit}}",
1538
+ "{{#label}} must be greater than {{#limit}}": "{{#label}} must be greater than {{#limit}}",
1539
+ "{{#label}} must be in {{#format}} format": "{{#label}} must be in {{#format}} format",
1540
+ "{{#label}} must be less than or equal to {{#limit}}": "{{#label}} must be less than or equal to {{#limit}}",
1541
+ "{{#label}} must be less than {{#limit}}": "{{#label}} must be less than {{#limit}}",
1542
+ "{{#label}} must not have leading or trailing whitespace": "{{#label}} must not have leading or trailing whitespace",
1543
+ "{{#label}} must not have more than {{#limit}} decimal places": "{{#label}} must not have more than {{#limit}} decimal places",
1544
+ "{{#label}} must only contain alpha-numeric and underscore characters": "{{#label}} must only contain alpha-numeric and underscore characters",
1545
+ "{{#label}} must only contain alpha-numeric characters": "{{#label}} must only contain alpha-numeric characters",
1546
+ "{{#label}} must only contain hexadecimal characters": "{{#label}} must only contain hexadecimal characters",
1547
+ "{{#label}} must only contain lowercase characters": "{{#label}} must only contain lowercase characters",
1548
+ "{{#label}} must only contain uppercase characters": "{{#label}} must only contain uppercase characters",
1549
+ "{{#label}} with value \"{{#value}}\" fails to match the required pattern": "{{#label}} with value \"{{#value}}\" fails to match the required pattern",
1550
+ "{{#label}} with value \"{{#value}}\" fails to match the {{#name}} pattern": "{{#label}} with value \"{{#value}}\" fails to match the {{#name}} pattern",
1551
+ "{{#label}} with value \"{{#value}}\" matches the inverted pattern": "{{#label}} with value \"{{#value}}\" matches the inverted pattern",
1552
+ "{{#label}} with value \"{{#value}}\" matches the inverted {{#name}} pattern": "{{#label}} with value \"{{#value}}\" matches the inverted {{#name}} pattern",
1553
+ "{{count}} filter items": "{{count}}개 필터 항목",
1554
+ "{{count}} more items": "더 보기 {{count}} 개 항목",
1555
+ "≠": "≠",
1556
+ "≤": "≤",
1557
+ "≥": "≥"
1558
+ }