@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.
- package/.dumirc.ts +4 -0
- package/es/application/Application.d.ts +2 -1
- package/es/block-configs/BlockConfigsProvider.d.ts +1 -1
- package/es/block-provider/hooks/index.d.ts +2 -1
- package/es/block-provider/index.d.ts +4 -3
- package/es/collection-manager/Configuration/SetPrimaryKeyAction.d.ts +10 -0
- package/es/collection-manager/Configuration/components/CollectionCategory.d.ts +1 -1
- package/es/collection-manager/Configuration/components/CollectionFieldInterfaceTag.d.ts +1 -1
- package/es/collection-manager/Configuration/components/CollectionTemplateTag.d.ts +1 -1
- package/es/collection-manager/Configuration/components/Summary.d.ts +1 -1
- package/es/collection-manager/Configuration/interfaces.d.ts +1 -0
- package/es/collection-manager/action-hooks.d.ts +1 -1
- package/es/collection-manager/interfaces/color.d.ts +0 -1
- package/es/collection-manager/interfaces/index.d.ts +1 -0
- package/es/collection-manager/interfaces/input.d.ts +1 -0
- package/es/collection-manager/interfaces/integer.d.ts +1 -0
- package/es/collection-manager/interfaces/nanoid.d.ts +1 -0
- package/es/collection-manager/interfaces/number.d.ts +44 -0
- package/es/collection-manager/interfaces/snowflake-id.d.ts +117 -0
- package/es/collection-manager/interfaces/uuid.d.ts +1 -0
- package/es/collection-manager/templates/properties/index.d.ts +1 -0
- package/es/data-source/collection-field-interface/CollectionFieldInterface.d.ts +1 -0
- package/es/data-source/data-source/DataSourceManager.d.ts +1 -0
- package/es/flow/FlowModelRepository.d.ts +4 -0
- package/es/flow/FlowPage.d.ts +2 -1
- package/es/flow/actions/columnFixed.d.ts +1 -2
- package/es/flow/actions/displayFieldComponent.d.ts +1 -1
- package/es/flow/actions/index.d.ts +5 -1
- package/es/flow/actions/linkageRules.d.ts +4 -0
- package/es/flow/actions/navigateToURL.d.ts +9 -0
- package/es/flow/actions/openView.d.ts +2 -13
- package/es/flow/actions/setTargetDataScope.d.ts +10 -0
- package/es/flow/actions/showMessage.d.ts +9 -0
- package/es/flow/actions/showNotification.d.ts +9 -0
- package/es/flow/actions/titleField.d.ts +0 -1
- package/es/flow/common/Liquid.d.ts +33 -0
- package/es/flow/common/Markdown/Display.d.ts +9 -0
- package/es/flow/common/Markdown/Edit.d.ts +23 -0
- package/es/flow/common/Markdown/Markdown.d.ts +24 -0
- package/es/flow/common/Markdown/style.d.ts +10 -0
- package/es/flow/common/Markdown/useCDN.d.ts +9 -0
- package/es/flow/components/BlockItemCard.d.ts +2 -0
- package/es/flow/components/FieldAssignValueInput.d.ts +1 -0
- package/es/flow/components/code-editor/extension/CodeEditorExtension.d.ts +14 -0
- package/es/flow/components/code-editor/extension/index.d.ts +9 -0
- package/es/flow/components/code-editor/index.d.ts +5 -4
- package/es/flow/components/code-editor/jsxCompletion.d.ts +10 -0
- package/es/flow/components/code-editor/linter.d.ts +2 -0
- package/es/flow/components/code-editor/panels/RightExtra.d.ts +3 -1
- package/es/flow/components/code-editor/types.d.ts +16 -0
- package/es/flow/components/filter/FilterContainer.d.ts +4 -4
- package/es/flow/components/filter/FilterGroup.d.ts +2 -1
- package/es/flow/components/filter/LinkageFilterItem.d.ts +1 -0
- package/es/flow/components/filter/VariableFilterItem.d.ts +4 -1
- package/es/flow/components/index.d.ts +1 -1
- package/es/flow/components/placeholders/BlockPlaceholder.d.ts +1 -0
- package/es/flow/flows/editMarkdownFlow.d.ts +10 -0
- package/es/flow/getViewDiffAndUpdateHidden.d.ts +1 -0
- package/es/flow/index.d.ts +5 -0
- package/es/flow/internal/utils/associationValueCoercion.d.ts +15 -0
- package/es/flow/internal/utils/enumOptionsUtils.d.ts +7 -7
- package/es/flow/internal/utils/operatorSchemaHelper.d.ts +15 -0
- package/es/flow/internal/utils/rebuildFieldSubModel.d.ts +33 -0
- package/es/flow/models/actions/AddChildActionModel.d.ts +15 -0
- package/es/flow/models/actions/AddNewActionModel.d.ts +1 -0
- package/es/flow/models/actions/EditActionModel.d.ts +1 -0
- package/es/flow/models/actions/ExpandCollapseActionModel.d.ts +19 -0
- package/es/flow/models/actions/FilterActionModel.d.ts +5 -59
- package/es/flow/models/actions/JSActionModel.d.ts +13 -0
- package/es/flow/models/actions/LinkActionModel.d.ts +18 -0
- package/es/flow/models/actions/UpdateRecordActionModel.d.ts +6 -0
- package/es/flow/models/actions/index.d.ts +4 -0
- package/es/flow/models/base/ActionModel.d.ts +15 -5
- package/es/flow/models/base/BlockModel.d.ts +4 -1
- package/es/flow/models/base/CollectionBlockModel.d.ts +12 -25
- package/es/flow/models/base/FieldModel.d.ts +6 -0
- package/es/flow/models/base/GridModel.d.ts +27 -4
- package/es/flow/models/base/PageModel/ChildPageModel.d.ts +1 -0
- package/es/flow/models/base/PageModel/PageModel.d.ts +3 -0
- package/es/flow/models/base/PageModel/PageTabModel.d.ts +2 -0
- package/es/flow/models/base/PageModel/RootPageModel.d.ts +2 -0
- package/es/flow/models/blocks/details/DetailsBlockModel.d.ts +1 -0
- package/es/flow/models/blocks/details/DetailsCustomItemModel.d.ts +2 -2
- package/es/flow/models/blocks/details/DetailsGridModel.d.ts +1 -0
- package/es/flow/models/blocks/details/DetailsItemModel.d.ts +2 -2
- package/es/flow/models/blocks/details/DetailsJSFieldItemModel.d.ts +2 -2
- package/es/flow/models/blocks/filter-form/FilterFormBlockModel.d.ts +4 -0
- package/es/flow/models/blocks/filter-form/FilterFormGridModel.d.ts +1 -0
- package/es/flow/models/blocks/filter-form/FilterFormItemModel.d.ts +5 -4
- package/es/flow/models/blocks/filter-form/FilterFormSubmitActionModel.d.ts +1 -1
- package/es/flow/models/blocks/filter-form/fields/FilterFormCustomFieldModel.d.ts +2 -1
- package/es/flow/models/blocks/filter-manager/flow-actions/customizeFilterRender.d.ts +10 -0
- package/es/flow/models/blocks/filter-manager/flow-actions/index.d.ts +2 -0
- package/es/flow/models/blocks/filter-manager/flow-actions/operatorComponentProps.d.ts +10 -0
- package/es/flow/models/blocks/form/CreateFormModel.d.ts +1 -0
- package/es/flow/models/blocks/form/EditFormModel.d.ts +1 -0
- package/es/flow/models/blocks/form/FormBlockModel.d.ts +11 -1
- package/es/flow/models/blocks/form/FormGridModel.d.ts +1 -0
- package/es/flow/models/blocks/form/FormItemModel.d.ts +1 -1
- package/es/flow/models/blocks/form/FormJSFieldItemModel.d.ts +1 -1
- package/es/flow/models/blocks/form/submitHandler.d.ts +9 -0
- package/es/flow/models/blocks/js-block/JSBlock.d.ts +1 -0
- package/es/flow/models/blocks/table/JSColumnModel.d.ts +0 -1
- package/es/flow/models/blocks/table/TableActionsColumnModel.d.ts +0 -1
- package/es/flow/models/blocks/table/TableBlockModel.d.ts +14 -1
- package/es/flow/models/blocks/table/TableColumnModel.d.ts +9 -2
- package/es/flow/models/blocks/table/TableJSFieldItemModel.d.ts +2 -2
- package/es/flow/models/blocks/table/utils.d.ts +8 -0
- package/es/flow/models/blocks/utils/transformChildrenToJS.d.ts +42 -0
- package/es/flow/models/fields/AssociationFieldModel/AssociationFieldModel.d.ts +1 -0
- package/es/flow/models/fields/AssociationFieldModel/CascadeSelectFieldModel.d.ts +29 -0
- package/es/flow/models/fields/AssociationFieldModel/RecordPickerFieldModel.d.ts +2 -0
- package/es/flow/models/fields/AssociationFieldModel/RecordSelectFieldModel.d.ts +8 -2
- package/es/flow/models/fields/AssociationFieldModel/SubFormFieldModel.d.ts +7 -0
- package/es/flow/models/fields/AssociationFieldModel/SubTableFieldModel/SubTableColumnModel.d.ts +3 -3
- package/es/flow/models/fields/AssociationFieldModel/SubTableFieldModel/index.d.ts +2 -0
- package/es/flow/models/fields/AssociationFieldModel/index.d.ts +1 -0
- package/es/flow/models/fields/AssociationFieldModel/recordSelectShared.d.ts +49 -0
- package/es/flow/models/fields/ClickableFieldModel.d.ts +3 -2
- package/es/flow/models/fields/DisplayAssociationField/DisplaySubItemFieldModel.d.ts +1 -0
- package/es/flow/models/fields/DisplayAssociationField/DisplaySubListFieldModel.d.ts +1 -0
- package/es/flow/models/fields/DisplayAssociationField/DisplaySubTableFieldModel.d.ts +3 -1
- package/es/flow/models/fields/DisplayEnumFieldModel.d.ts +1 -0
- package/es/flow/models/fields/DisplayJSONFieldModel.d.ts +3 -3
- package/es/flow/models/fields/DisplayNumberFieldModel.d.ts +4 -2
- package/es/flow/models/fields/DisplayTextFieldModel.d.ts +1 -1
- package/es/flow/models/fields/JSItemModel.d.ts +0 -1
- package/es/flow/models/fields/JsonFieldModel.d.ts +1 -0
- package/es/flow/models/fields/MarkdownItemModel.d.ts +1 -0
- package/es/flow/models/fields/TimeFieldModel.d.ts +0 -1
- package/es/flow/models/fields/mobile-components/MobileDatePicker.d.ts +10 -0
- package/es/flow/models/fields/mobile-components/MobileLazySelect.d.ts +11 -0
- package/es/flow/{components/JsonInput.d.ts → models/fields/mobile-components/MobileSelect.d.ts} +1 -1
- package/es/flow/models/fields/mobile-components/MobileTimePicker.d.ts +10 -0
- package/es/flow/resolveViewParamsToViewList.d.ts +4 -2
- package/es/flow/{components/decorator → utils}/index.d.ts +1 -1
- package/es/global-theme/type.d.ts +1 -0
- package/es/hooks/useFullscreenOverlay.d.ts +20 -0
- package/es/index.d.ts +1 -0
- package/es/index.mjs +28903 -22307
- package/es/modules/menu/FlowPageMenuItem.d.ts +1 -3
- package/es/modules/menu/index.d.ts +9 -0
- package/es/nocobase-buildin-plugin/plugins/LocalePlugin.d.ts +0 -1
- package/es/schema-component/antd/association-select/ReadPretty.d.ts +1 -1
- package/es/schema-component/antd/filter/FilterItem.d.ts +1 -1
- package/es/schema-component/antd/input/EllipsisWithTooltip.d.ts +1 -0
- package/es/schema-component/antd/linkageFilter/LinkageFilterItem.d.ts +1 -1
- package/es/schema-component/antd/remote-select/RemoteSelect.d.ts +1 -3
- package/es/schema-component/antd/table/Table.Column.ActionBar.d.ts +1 -1
- package/es/schema-component/antd/table/Table.Void.d.ts +1 -0
- package/es/schema-component/antd/table-v2/Table.Column.ActionBar.d.ts +1 -1
- package/es/schema-component/antd/upload/shared.d.ts +1 -1
- package/es/schema-settings/LinkageRules/LinkageRuleAction.d.ts +2 -2
- package/es/schema-settings/LinkageRules/components/BlockLinkageRuleAction.d.ts +1 -1
- package/es/schema-settings/LinkageRules/components/FieldStyleLinkageRuleAction.d.ts +1 -1
- package/lib/index-C3fHjsMw-CDWZlvuM.js +2237 -0
- package/lib/index.js +453 -239
- package/lib/locale/cron/zh-CN.json +33 -0
- package/lib/locale/cron/zh-TW.json +33 -0
- package/lib/locale/de-DE.json +1545 -0
- package/lib/locale/en-US.json +1553 -0
- package/lib/locale/es-ES.json +1573 -0
- package/lib/locale/fr-FR.json +1549 -0
- package/lib/locale/hu-HU.json +1545 -0
- package/lib/locale/id-ID.json +1546 -0
- package/lib/locale/{it-IT.js → it-IT.json} +1496 -1054
- package/lib/locale/ja-JP.json +1564 -0
- package/lib/locale/ko-KR.json +1558 -0
- package/lib/locale/{nl-NL.js → nl-NL.json} +1493 -1018
- package/lib/locale/pt-BR.json +1617 -0
- package/lib/locale/ru-RU.json +1551 -0
- package/lib/locale/tr-TR.json +1553 -0
- package/lib/locale/uk-UA.json +1570 -0
- package/lib/locale/vi-VN.json +1545 -0
- package/lib/locale/zh-CN.json +1571 -0
- package/lib/locale/zh-TW.json +1549 -0
- package/package.json +10 -7
- package/es/flow/components/decorator/injectable.d.ts +0 -19
- package/lib/index-C3fHjsMw-BTweCpKS.js +0 -2023
- package/lib/locale/cron/zh-CN.js +0 -33
- package/lib/locale/cron/zh-TW.js +0 -33
- package/lib/locale/de-DE.js +0 -904
- package/lib/locale/en-US.js +0 -1001
- package/lib/locale/es-ES.js +0 -824
- package/lib/locale/fr-FR.js +0 -844
- package/lib/locale/ja-JP.js +0 -1062
- package/lib/locale/ko-KR.js +0 -935
- package/lib/locale/pt-BR.js +0 -804
- package/lib/locale/ru-RU.js +0 -633
- package/lib/locale/tr-TR.js +0 -631
- package/lib/locale/uk-UA.js +0 -847
- package/lib/locale/zh-CN.js +0 -1436
- package/lib/locale/zh-TW.js +0 -938
- /package/es/flow/{internal/utils → utils}/blockUtils.d.ts +0 -0
|
@@ -0,0 +1,1545 @@
|
|
|
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)": "(Csak mezők)",
|
|
4
|
+
"(currently not effective in sub-forms/sub-tables)": "(currently not effective in sub-forms/sub-tables)",
|
|
5
|
+
"12 hour": "12 órás",
|
|
6
|
+
"24 hour": "24 órás",
|
|
7
|
+
"<": "<",
|
|
8
|
+
"=": "=",
|
|
9
|
+
">": ">",
|
|
10
|
+
"ACL": "Hozzáférés-vezérlés",
|
|
11
|
+
"ASC": "Növekvő",
|
|
12
|
+
"Access": "Hozzáférés",
|
|
13
|
+
"Access control": "Hozzáférés-vezérlés",
|
|
14
|
+
"Accessible": "Elérhető",
|
|
15
|
+
"Accuracy": "Pontosság",
|
|
16
|
+
"Action": "Művelet",
|
|
17
|
+
"Action after successful submission": "Sikeres mentés utáni művelet",
|
|
18
|
+
"Action column": "Művelet oszlop",
|
|
19
|
+
"Action display name": "Művelet megjelenített neve",
|
|
20
|
+
"Action logs": "Műveleti naplók",
|
|
21
|
+
"Action name": "Művelet neve",
|
|
22
|
+
"Action on existing records": "Művelet meglévő rekordokon",
|
|
23
|
+
"Action on new records": "Művelet új rekordokon",
|
|
24
|
+
"Action permission": "Művelet jogosultság",
|
|
25
|
+
"Action permissions": "Művelet jogosultságok",
|
|
26
|
+
"Action scope": "Művelet hatóköre",
|
|
27
|
+
"Action type": "Művelet típusa",
|
|
28
|
+
"Actions": "Műveletek",
|
|
29
|
+
"Actions column": "Actions column",
|
|
30
|
+
"Add": "Hozzáadás",
|
|
31
|
+
"Add & Update": "Hozzáadás és frissítés",
|
|
32
|
+
"Add Markdown": "Markdown hozzáadása",
|
|
33
|
+
"Add action": "Add action",
|
|
34
|
+
"Add attach": "Csatolmány hozzáadása",
|
|
35
|
+
"Add block": "Blokk hozzáadása",
|
|
36
|
+
"Add card": "Kártya hozzáadása",
|
|
37
|
+
"Add category": "Kategória hozzáadása",
|
|
38
|
+
"Add child": "Gyermek hozzáadása",
|
|
39
|
+
"Add child route": "Gyermek útvonal hozzáadása",
|
|
40
|
+
"Add condition": "Feltétel hozzáadása",
|
|
41
|
+
"Add condition group": "Feltételcsoport hozzáadása",
|
|
42
|
+
"Add event flow": "Add event flow",
|
|
43
|
+
"Add exportable field": "Exportálható mező hozzáadása",
|
|
44
|
+
"Add field": "Mező hozzáadása",
|
|
45
|
+
"Add filter": "Szűrő hozzáadása",
|
|
46
|
+
"Add filter group": "Szűrőcsoport hozzáadása",
|
|
47
|
+
"Add group": "Csoport hozzáadása",
|
|
48
|
+
"Add link": "Hivatkozás hozzáadása",
|
|
49
|
+
"Add linkage rule": "Kapcsolati szabály hozzáadása",
|
|
50
|
+
"Add menu item": "Menüpont hozzáadása",
|
|
51
|
+
"Add new": "Új hozzáadása",
|
|
52
|
+
"Add new mode": "Új mód hozzáadása",
|
|
53
|
+
"Add option": "Opció hozzáadása",
|
|
54
|
+
"Add page": "Oldal hozzáadása",
|
|
55
|
+
"Add parameter": "Paraméter hozzáadása",
|
|
56
|
+
"Add plugin": "Bővítmény hozzáadása",
|
|
57
|
+
"Add property": "Tulajdonság hozzáadása",
|
|
58
|
+
"Add record": "Rekord hozzáadása",
|
|
59
|
+
"Add request header": "Add request header",
|
|
60
|
+
"Add role": "Szerepkör hozzáadása",
|
|
61
|
+
"Add rule": "Add rule",
|
|
62
|
+
"Add sort field": "Rendezési mező hozzáadása",
|
|
63
|
+
"Add step": "Add step",
|
|
64
|
+
"Add tab": "Fül hozzáadása",
|
|
65
|
+
"Add target block": "Add target block",
|
|
66
|
+
"Add template": "Sablon hozzáadása",
|
|
67
|
+
"Add text": "Szöveg hozzáadása",
|
|
68
|
+
"Add type": "Típus hozzáadása",
|
|
69
|
+
"Add validation rule": "Érvényességi szabály hozzáadása",
|
|
70
|
+
"Add variable": "Add variable",
|
|
71
|
+
"Add {{type}} after \"{{title}}\"": "{{type}} hozzáadása \"{{title}}\" után",
|
|
72
|
+
"Add {{type}} before \"{{title}}\"": "{{type}} hozzáadása \"{{title}}\" elé",
|
|
73
|
+
"Add {{type}} in \"{{title}}\"": "{{type}} hozzáadása \"{{title}}\"-ba/-be",
|
|
74
|
+
"Advanced type": "Haladó típus",
|
|
75
|
+
"After": "Utána",
|
|
76
|
+
"After change": "Változás után",
|
|
77
|
+
"After clicking the custom button, the following field values will be assigned according to the following form.": "Egyéni gomb megnyomása után a következő mezőértékek lesznek hozzárendelve az alábbi űrlap szerint.",
|
|
78
|
+
"After clicking the custom button, the following fields of the current record will be saved according to the following form.": "Egyéni gomb megnyomása után az aktuális rekord következő mezői lesznek elmentve az alábbi űrlap szerint.",
|
|
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.": "Elrejtés után ez a menü nem jelenik meg a menüsorban. Újra megjelenítéshez a menükezelő oldalon kell beállítani.",
|
|
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.": "Elrejtés után ez a fül nem jelenik meg a fül sorban. Újra megjelenítéshez a menükezelő oldalon kell beállítani.",
|
|
81
|
+
"After successful bulk update": "Sikeres tömeges frissítés után",
|
|
82
|
+
"After successful request": "Sikeres kérés után",
|
|
83
|
+
"After successful save": "Sikeres mentés után",
|
|
84
|
+
"After successful submission": "Sikeres mentés után",
|
|
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": "Sikeres frissítés után",
|
|
87
|
+
"Agenda": "Napirend",
|
|
88
|
+
"All": "Összes",
|
|
89
|
+
"All collections": "Minden gyűjtemény",
|
|
90
|
+
"All collections use general action permissions by default; permission configured individually will override the default one.": "Minden gyűjtemény alapértelmezés szerint általános műveleti jogosultságokat használ; az egyedileg beállított jogosultság felülírja az alapértelmezettet.",
|
|
91
|
+
"All events": "Minden esemény",
|
|
92
|
+
"All plugin settings": "Összes bővítmény beállítás",
|
|
93
|
+
"All records": "Összes rekord",
|
|
94
|
+
"Allow": "Engedélyez",
|
|
95
|
+
"Allow access": "Hozzáférés engedélyezése",
|
|
96
|
+
"Allow action": "Művelet engedélyezése",
|
|
97
|
+
"Allow add new": "Új hozzáadása engedélyezett",
|
|
98
|
+
"Allow add new data": "Új adat hozzáadása engedélyezett",
|
|
99
|
+
"Allow add new, update and delete actions": "Új, frissítés és törlés műveletek engedélyezése",
|
|
100
|
+
"Allow adding records to the current collection": "Rekordok hozzáadása az aktuális gyűjteményhez engedélyezett",
|
|
101
|
+
"Allow disassociation": "Kapcsolat bontásának engedélyezése",
|
|
102
|
+
"Allow dissociate": "Kapcsolat bontása engedélyezett",
|
|
103
|
+
"Allow linking to multiple records": "Több rekordhoz kapcsolás engedélyezése",
|
|
104
|
+
"Allow list": "Allow list",
|
|
105
|
+
"Allow multiple": "Többszörös engedélyezése",
|
|
106
|
+
"Allow multiple selection": "Többszörös kijelölés engedélyezése",
|
|
107
|
+
"Allow relative URIs": "Allow relative URIs",
|
|
108
|
+
"Allow selection of existing file": "Allow selection of existing file",
|
|
109
|
+
"Allow selection of existing records": "Meglévő rekordok kiválasztásának engedélyezése",
|
|
110
|
+
"Allow sign up": "Regisztráció engedélyezése",
|
|
111
|
+
"Allow to configure plugins": "Bővítmények konfigurálásának engedélyezése",
|
|
112
|
+
"Allow to desgin pages": "Oldalak tervezésének engedélyezése",
|
|
113
|
+
"Allow to manage plugins": "Bővítmények kezelésének engedélyezése",
|
|
114
|
+
"Allow uploading multiple files": "Több fájl feltöltésének engedélyezése",
|
|
115
|
+
"Allows configuration of the whole system, including UI, collections, permissions, etc.": "A teljes rendszer konfigurálását engedélyezi, beleértve a felületet, gyűjteményeket, jogosultságokat stb.",
|
|
116
|
+
"Allows to clear cache, reboot application": "Gyorsítótár törlése, alkalmazás újraindítása engedélyezett",
|
|
117
|
+
"Allows to configure interface": "Felület konfigurálásának engedélyezése",
|
|
118
|
+
"Allows to configure plugins": "Bővítmények konfigurálásának engedélyezése",
|
|
119
|
+
"Allows to install, activate, disable plugins": "Bővítmények telepítése, aktiválása, letiltása engedélyezett",
|
|
120
|
+
"Allows unencoded square brackets inside the query string": "Allows unencoded square brackets inside the query string",
|
|
121
|
+
"Alphabet": "ABC sorrend",
|
|
122
|
+
"Any": "Any",
|
|
123
|
+
"App error": "Alkalmazás hiba",
|
|
124
|
+
"Application reloading": "Alkalmazás újratöltése",
|
|
125
|
+
"Are you sure to delete this plugin?": "Biztosan törölni szeretné ezt a bővítményt?",
|
|
126
|
+
"Are you sure to disable this plugin?": "Biztosan le szeretné tiltani ezt a bővítményt?",
|
|
127
|
+
"Are you sure you don't want to save?": "Biztosan megszakítja a szerkesztést?",
|
|
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?": "Biztosan törölni szeretné?",
|
|
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?": "Biztosan el szeretné távolítani a kapcsolatot?",
|
|
132
|
+
"Are you sure you want to hide these routes in menu?": "Biztosan el szeretné rejteni ezeket az útvonalakat a menüben?",
|
|
133
|
+
"Are you sure you want to hide this menu?": "Biztosan el szeretné rejteni ezt a menüt?",
|
|
134
|
+
"Are you sure you want to hide this tab?": "Biztosan el szeretné rejteni ezt a fület?",
|
|
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": "Biztosan végre szeretné hajtani a Testreszabott kérés műveletet",
|
|
137
|
+
"Are you sure you want to perform the Refresh action?": "Biztosan végre szeretné hajtani a Frissítés műveletet?",
|
|
138
|
+
"Are you sure you want to perform the Submit action?": "Biztosan végre szeretné hajtani a Mentés műveletet?",
|
|
139
|
+
"Are you sure you want to perform the Trigger workflow action?": "Biztosan végre szeretné hajtani a Munkafolyamat indítása műveletet?",
|
|
140
|
+
"Are you sure you want to perform the Update record action?": "Biztosan végre szeretné hajtani a Rekord frissítése műveletet?",
|
|
141
|
+
"Are you sure you want to perform the {{title}} action?": "Biztosan végre szeretné hajtani a {{title}} műveletet?",
|
|
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?": "Biztosan meg szeretné jeleníteni ezeket az útvonalakat a menüben?",
|
|
144
|
+
"Area": "Terület",
|
|
145
|
+
"Area chart": "Terület diagram",
|
|
146
|
+
"Assign data scope for the template": "Adjon meg adatkeretet a sablonhoz",
|
|
147
|
+
"Assign field values": "Mezőértékek hozzárendelése",
|
|
148
|
+
"Assign value": "Assign value",
|
|
149
|
+
"Assignment mode": "Assignment mode",
|
|
150
|
+
"Associate": "Kapcsolódás",
|
|
151
|
+
"Associated records": "Kapcsolódó rekordok",
|
|
152
|
+
"Association field settings": "Association field settings",
|
|
153
|
+
"Association fields": "Kapcsolati mezők",
|
|
154
|
+
"Association fields filter": "Kapcsolati mezők szűrője",
|
|
155
|
+
"Association select settings": "Association select settings",
|
|
156
|
+
"Association table settings": "Association table settings",
|
|
157
|
+
"Association tag settings": "Association tag settings",
|
|
158
|
+
"AssociationField component": "AssociationField component",
|
|
159
|
+
"Attempts to encode the URI using encodeURI before validating it again": "Attempts to encode the URI using encodeURI before validating it again",
|
|
160
|
+
"Audit logs": "Audit naplók",
|
|
161
|
+
"Authentication": "Hitelesítés",
|
|
162
|
+
"Author": "Szerző",
|
|
163
|
+
"Auto": "Automatikus",
|
|
164
|
+
"Auto focus": "Auto focus",
|
|
165
|
+
"Auto increment": "Automatikus növelés",
|
|
166
|
+
"AutoGenId": "Automatikusan generált azonosító mező",
|
|
167
|
+
"Automatic close": "Automatikus bezárás",
|
|
168
|
+
"Automatically drop objects that depend on the collection (such as views), and in turn all objects that depend on those objects": "Automatikusan törli azokat az objektumokat, amelyek a gyűjteményre épülnek (például nézetek), és viszont az összes olyan objektumot, amely azokra az objektumokra épül",
|
|
169
|
+
"Automatically generate default values": "Alapértelmezett értékek automatikus generálása",
|
|
170
|
+
"Automatically remove heading and tailing spaces": "Automatically remove heading and tailing spaces",
|
|
171
|
+
"Automatically update timestamp on update": "Időbélyeg automatikus frissítése frissítéskor",
|
|
172
|
+
"Automatically update timestamp to the current server time on update": "Időbélyeg automatikus frissítése a jelenlegi szerveridőre frissítéskor",
|
|
173
|
+
"Available \"target blocks\" are all data blocks on the current page": "Available \"target blocks\" are all data blocks on the current page",
|
|
174
|
+
"Available Collections": "Available Collections",
|
|
175
|
+
"Background Color": "Háttérszín",
|
|
176
|
+
"Bar chart": "Sávdiagram",
|
|
177
|
+
"Base": "Base",
|
|
178
|
+
"Basic": "Alapvető",
|
|
179
|
+
"Basic configuration": "Basic configuration",
|
|
180
|
+
"Before": "Előtt",
|
|
181
|
+
"Before change": "Változás előtt",
|
|
182
|
+
"Before render": "Before render",
|
|
183
|
+
"Blank block": "Üres blokk",
|
|
184
|
+
"Block": "Blokk",
|
|
185
|
+
"Block Linkage rules": "Block Linkage rules",
|
|
186
|
+
"Block linkage rules": "Block linkage rules",
|
|
187
|
+
"Block list": "Block list",
|
|
188
|
+
"Block template": "Blokk sablon",
|
|
189
|
+
"Block templates": "Blokk sablonok",
|
|
190
|
+
"Block title": "Blokk cím",
|
|
191
|
+
"Block type": "Blokk típus",
|
|
192
|
+
"Blocks": "Blokkok",
|
|
193
|
+
"Blue": "Kék",
|
|
194
|
+
"Bookmark": "Könyvjelző",
|
|
195
|
+
"Boolean": "Logikai",
|
|
196
|
+
"Bottom left": "Bottom left",
|
|
197
|
+
"Bottom right": "Bottom right",
|
|
198
|
+
"Built-in": "Beépített",
|
|
199
|
+
"Bulk edit": "Tömeges szerkesztés",
|
|
200
|
+
"Bulk enable": "Tömeges engedélyezés",
|
|
201
|
+
"Bulk update": "Tömeges frissítés",
|
|
202
|
+
"Button background color": "Gomb háttérszíne",
|
|
203
|
+
"Button icon": "Gomb ikon",
|
|
204
|
+
"Button settings": "Button settings",
|
|
205
|
+
"Button title": "Gomb címe",
|
|
206
|
+
"Button type": "Button type",
|
|
207
|
+
"Calculation engine": "Számítási motor",
|
|
208
|
+
"Calendar": "Naptár",
|
|
209
|
+
"Calendar Month": "Calendar Month",
|
|
210
|
+
"Calendar Year": "Calendar Year",
|
|
211
|
+
"Calendar collection": "Naptár gyűjtemény",
|
|
212
|
+
"Calendar week": "Calendar week",
|
|
213
|
+
"Cancel": "Mégsem",
|
|
214
|
+
"Cannot find the model instance with UID": "Cannot find the model instance with UID",
|
|
215
|
+
"Card settings": "Card settings",
|
|
216
|
+
"Cascade Select": "Cascade Select",
|
|
217
|
+
"Cascade select": "Cascade select",
|
|
218
|
+
"Cascade select settings": "Cascade select settings",
|
|
219
|
+
"Categories": "Kategóriák",
|
|
220
|
+
"Category name": "Kategória neve",
|
|
221
|
+
"Center": "Középre",
|
|
222
|
+
"Change password": "Jelszó megváltoztatása",
|
|
223
|
+
"Changed to": "Megváltozott erre",
|
|
224
|
+
"Changelog": "Változásnapló",
|
|
225
|
+
"Chart blocks": "Diagram blokkok",
|
|
226
|
+
"Chart config": "Diagram beállítások",
|
|
227
|
+
"Chart title": "Diagram címe",
|
|
228
|
+
"Chart type": "Diagram típusa",
|
|
229
|
+
"Check strength": "Check strength",
|
|
230
|
+
"Checkbox": "Jelölőnégyzet",
|
|
231
|
+
"Checkbox group": "Jelölőnégyzet csoport",
|
|
232
|
+
"Children": "Gyermekek",
|
|
233
|
+
"China region": "Kína régió",
|
|
234
|
+
"Choices": "Választások",
|
|
235
|
+
"Choices fields": "Választási mezők",
|
|
236
|
+
"City": "Város",
|
|
237
|
+
"Classic page (v1)": "Classic page (v1)",
|
|
238
|
+
"Clear": "Törlés",
|
|
239
|
+
"Clear cache": "Gyorsítótár törlése",
|
|
240
|
+
"Clear default value": "Alapértelmezett érték törlése",
|
|
241
|
+
"Click": "Click",
|
|
242
|
+
"Click event": "Click event",
|
|
243
|
+
"Click or drag file to this area to upload": "Kattintson vagy húzza ide a fájlt a feltöltéshez",
|
|
244
|
+
"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",
|
|
245
|
+
"Clicked row record": "Clicked row record",
|
|
246
|
+
"Close": "Bezárás",
|
|
247
|
+
"Collapse": "Összecsukás",
|
|
248
|
+
"Collapse all": "Összes összecsukása",
|
|
249
|
+
"Collapse button": "Collapse",
|
|
250
|
+
"Collapse settings": "Collapse settings",
|
|
251
|
+
"Collapsed rows": "Collapsed rows",
|
|
252
|
+
"Collection": "Gyűjtemény",
|
|
253
|
+
"Collection category": "Gyűjtemény kategória",
|
|
254
|
+
"Collection display name": "Gyűjtemény megjelenített neve",
|
|
255
|
+
"Collection fields": "Gyűjtemény mezői",
|
|
256
|
+
"Collection manager": "Gyűjtemény kezelő",
|
|
257
|
+
"Collection name": "Gyűjtemény neve",
|
|
258
|
+
"Collection selector": "Gyűjtemény kiválasztó",
|
|
259
|
+
"Collection template": "Gyűjtemény sablon",
|
|
260
|
+
"Collections": "Gyűjtemények",
|
|
261
|
+
"Collections & Fields": "Gyűjtemények és mezők",
|
|
262
|
+
"Colon": "Colon",
|
|
263
|
+
"Color": "Szín",
|
|
264
|
+
"Column": "Oszlop",
|
|
265
|
+
"Column Settings": "Column Settings",
|
|
266
|
+
"Column chart": "Oszlopdiagram",
|
|
267
|
+
"Column title": "Oszlop címe",
|
|
268
|
+
"Column width": "Oszlop szélessége",
|
|
269
|
+
"Coming soon...": "Hamarosan érkezik...",
|
|
270
|
+
"Compact theme": "Kompakt téma",
|
|
271
|
+
"Comparision": "Összehasonlítás",
|
|
272
|
+
"Comparison": "Comparison",
|
|
273
|
+
"Component properties": "Component properties",
|
|
274
|
+
"Compressed file url": "Tömörített fájl url",
|
|
275
|
+
"Computer": "Computer",
|
|
276
|
+
"Condition": "Feltétel",
|
|
277
|
+
"Conditional assignment": "Conditional assignment",
|
|
278
|
+
"Configuration saved": "Configuration saved",
|
|
279
|
+
"Configuration:": "Configuration:",
|
|
280
|
+
"Configure": "Konfigurálás",
|
|
281
|
+
"Configure actions": "Műveletek konfigurálása",
|
|
282
|
+
"Configure calendar": "Naptár konfigurálása",
|
|
283
|
+
"Configure columns": "Oszlopok konfigurálása",
|
|
284
|
+
"Configure field": "Mező konfigurálása",
|
|
285
|
+
"Configure fields": "Mezők konfigurálása",
|
|
286
|
+
"Configure fields of {{title}}": "{{title}} mezőinek konfigurálása",
|
|
287
|
+
"Configure page": "Configure page",
|
|
288
|
+
"Configure permission": "Jogosultság konfigurálása",
|
|
289
|
+
"Configure permissions": "Jogosultságok konfigurálása",
|
|
290
|
+
"Configure rows": "Configure rows",
|
|
291
|
+
"Configure the rows and columns of the grid.": "Configure the rows and columns of the grid.",
|
|
292
|
+
"Configure the sizes of each row. The value is an array of numbers representing the width of each column in the row.": "Configure the sizes of each row. The value is an array of numbers representing the width of each column in the row.",
|
|
293
|
+
"Confirm": "Megerősítés",
|
|
294
|
+
"Confirm Load Collections": "Confirm Load Collections",
|
|
295
|
+
"Confirm password": "Jelszó megerősítése",
|
|
296
|
+
"Confirmation": "Confirmation",
|
|
297
|
+
"Connect data blocks": "Adatblokkok csatlakoztatása",
|
|
298
|
+
"Connect fields": "Connect fields",
|
|
299
|
+
"Connect to database view": "Csatlakozás adatbázis nézethez",
|
|
300
|
+
"Console": "Console",
|
|
301
|
+
"Constant": "Állandó",
|
|
302
|
+
"Constant value": "Állandó érték",
|
|
303
|
+
"Contain": "Tartalmaz",
|
|
304
|
+
"Content": "Tartalom",
|
|
305
|
+
"Content overflow display mode": "Content overflow display mode",
|
|
306
|
+
"Content settings": "Content settings",
|
|
307
|
+
"Controls whether the current document is allowed to autoplay media requested through the HTMLMediaElement interface. When this policy is disabled and there were no user gestures, the Promise returned by HTMLMediaElement.play() will reject with a NotAllowedError DOMException. The autoplay attribute on <audio> and <video> elements will be ignored.": "Controls whether the current document is allowed to autoplay media requested through the HTMLMediaElement interface. When this policy is disabled and there were no user gestures, the Promise returned by HTMLMediaElement.play() will reject with a NotAllowedError DOMException. The autoplay attribute on <audio> and <video> elements will be ignored.",
|
|
308
|
+
"Controls whether the current document is allowed to set document.domain. When this policy is disabled, attempting to set document.domain will fail and cause a SecurityError DOMException to be thrown.": "Controls whether the current document is allowed to set document.domain. When this policy is disabled, attempting to set document.domain will fail and cause a SecurityError DOMException to be thrown.",
|
|
309
|
+
"Controls whether the current document is allowed to use Element.requestFullscreen(). When this policy is disabled, the returned Promise rejects with a TypeError.": "Controls whether the current document is allowed to use Element.requestFullscreen(). When this policy is disabled, the returned Promise rejects with a TypeError.",
|
|
310
|
+
"Controls whether the current document is allowed to use audio input devices. When this policy is disabled, the Promise returned by MediaDevices.getUserMedia() will reject with a NotAllowedError DOMException.": "Controls whether the current document is allowed to use audio input devices. When this policy is disabled, the Promise returned by MediaDevices.getUserMedia() will reject with a NotAllowedError DOMException.",
|
|
311
|
+
"Controls whether the current document is allowed to use the Encrypted Media Extensions API (EME). When this policy is disabled, the Promise returned by Navigator.requestMediaKeySystemAccess() will reject with a SecurityError DOMException.": "Controls whether the current document is allowed to use the Encrypted Media Extensions API (EME). When this policy is disabled, the Promise returned by Navigator.requestMediaKeySystemAccess() will reject with a SecurityError DOMException.",
|
|
312
|
+
"Controls whether the current document is allowed to use the Geolocation Interface. When this policy is disabled, calls to getCurrentPosition() and watchPosition() will cause those functions callbacks to be invoked with a GeolocationPositionError code of PERMISSION_DENIED.": "Controls whether the current document is allowed to use the Geolocation Interface. When this policy is disabled, calls to getCurrentPosition() and watchPosition() will cause those functions callbacks to be invoked with a GeolocationPositionError code of PERMISSION_DENIED.",
|
|
313
|
+
"Controls whether the current document is allowed to use the Payment Request API. When this policy is enabled, the PaymentRequest() constructor will throw a SecurityError DOMException.": "Controls whether the current document is allowed to use the Payment Request API. When this policy is enabled, the PaymentRequest() constructor will throw a SecurityError DOMException.",
|
|
314
|
+
"Controls whether the current document is allowed to use the Web MIDI API. When this policy is disabled, the Promise returned by Navigator.requestMIDIAccess() will reject with a SecurityError DOMException.": "Controls whether the current document is allowed to use the Web MIDI API. When this policy is disabled, the Promise returned by Navigator.requestMIDIAccess() will reject with a SecurityError DOMException.",
|
|
315
|
+
"Controls whether the current document is allowed to use video input devices. When this policy is disabled, the Promise returned by getUserMedia() will reject with a NotAllowedError DOMException.": "Controls whether the current document is allowed to use video input devices. When this policy is disabled, the Promise returned by getUserMedia() will reject with a NotAllowedError DOMException.",
|
|
316
|
+
"Convert reference to duplicate": "Hivatkozás átkonvertálása másolatra",
|
|
317
|
+
"Convert template to duplicate": "Convert template to duplicate",
|
|
318
|
+
"Copy": "Copy",
|
|
319
|
+
"Copy into the form and continue to fill in": "Másolja be az űrlapba és folytassa a kitöltést",
|
|
320
|
+
"Cover": "Borító",
|
|
321
|
+
"Create": "Létrehozás",
|
|
322
|
+
"Create an account": "Fiók létrehozása",
|
|
323
|
+
"Create calendar block": "Naptár blokk létrehozása",
|
|
324
|
+
"Create collection": "Gyűjtemény létrehozása",
|
|
325
|
+
"Create form": "Űrlap létrehozása",
|
|
326
|
+
"Create gantt block": "Gantt blokk létrehozása",
|
|
327
|
+
"Create inverse field in the target collection": "Inverz mező létrehozása a célnak megfelelő gyűjteményben",
|
|
328
|
+
"Create kanban block": "Kanban blokk létrehozása",
|
|
329
|
+
"Create template": "Sablon létrehozása",
|
|
330
|
+
"Created at": "Létrehozva",
|
|
331
|
+
"Created by": "Létrehozta",
|
|
332
|
+
"CreatedAt": "Létrehozva",
|
|
333
|
+
"CreatedBy": "Létrehozta",
|
|
334
|
+
"Current action": "Current action",
|
|
335
|
+
"Current block": "Current block",
|
|
336
|
+
"Current collection": "Aktuális gyűjtemény",
|
|
337
|
+
"Current device type": "Current device type",
|
|
338
|
+
"Current form": "Aktuális űrlap",
|
|
339
|
+
"Current object": "Aktuális objektum",
|
|
340
|
+
"Current popup": "Current popup",
|
|
341
|
+
"Current popup parent record": "Current popup parent record",
|
|
342
|
+
"Current popup record": "Aktuális felugró rekord",
|
|
343
|
+
"Current record": "Aktuális rekord",
|
|
344
|
+
"Current record blocks": "Aktuális rekord blokkok",
|
|
345
|
+
"Current role": "Aktuális szerepkör",
|
|
346
|
+
"Current time": "Aktuális idő",
|
|
347
|
+
"Current user": "Aktuális felhasználó",
|
|
348
|
+
"Custom": "Egyedi",
|
|
349
|
+
"Custom Title": "Egyedi cím",
|
|
350
|
+
"Custom column name": "Egyedi oszlopnév",
|
|
351
|
+
"Custom column title": "Egyedi oszlopcím",
|
|
352
|
+
"Custom field": "Custom field",
|
|
353
|
+
"Custom field display name": "Egyedi mező megjelenítési név",
|
|
354
|
+
"Custom name": "Egyedi név",
|
|
355
|
+
"Custom request": "Egyedi kérés",
|
|
356
|
+
"Custom title": "Egyedi cím",
|
|
357
|
+
"Custom variable": "Custom variable",
|
|
358
|
+
"Customize": "Testreszabás",
|
|
359
|
+
"Cyan": "Cián",
|
|
360
|
+
"DESC": "DESC",
|
|
361
|
+
"Daily": "Napi",
|
|
362
|
+
"Danger action": "Danger action",
|
|
363
|
+
"Danger red": "Veszélyes piros",
|
|
364
|
+
"Dashed": "Tört",
|
|
365
|
+
"Data Model": "Adatmodell",
|
|
366
|
+
"Data blocks": "Adatblokkok",
|
|
367
|
+
"Data changes": "Adatváltozások",
|
|
368
|
+
"Data fields": "Adatmezők",
|
|
369
|
+
"Data loading mode": "Adatok betöltési módja",
|
|
370
|
+
"Data model": "Adatmodell",
|
|
371
|
+
"Data model tools": "Adatmodell eszközök",
|
|
372
|
+
"Data refreshed successfully": "Data refreshed successfully",
|
|
373
|
+
"Data scope": "Adatkeret",
|
|
374
|
+
"Data source": "Adatforrás",
|
|
375
|
+
"Data source key": "Data source key",
|
|
376
|
+
"Data source permissions": "Adatforrás jogosultságok",
|
|
377
|
+
"Data sources": "Adatforrások",
|
|
378
|
+
"Data template": "Adat sablon",
|
|
379
|
+
"Data will be updated": "Adatok frissítve lesznek",
|
|
380
|
+
"DataSource": "Adatforrás",
|
|
381
|
+
"Date": "Dátum",
|
|
382
|
+
"Date & Time": "Dátum és idő",
|
|
383
|
+
"Date display format": "Dátum megjelenítési formátuma",
|
|
384
|
+
"Date format": "Dátum formátum",
|
|
385
|
+
"Date range limit": "Dátumtartomány korlátozása",
|
|
386
|
+
"Date scope": "Date scope",
|
|
387
|
+
"Date variables": "Dátum változók",
|
|
388
|
+
"Date variables(Deprecated)": "Date variables(Deprecated)",
|
|
389
|
+
"DateOnly": "Csak dátum",
|
|
390
|
+
"Datetime": "Dátum és idő",
|
|
391
|
+
"Datetime (with time zone)": "Dátum és idő (időzónával)",
|
|
392
|
+
"Datetime (without time zone)": "Dátum és idő (időzóna nélkül)",
|
|
393
|
+
"Datetime settings": "Datetime settings",
|
|
394
|
+
"Day": "Nap",
|
|
395
|
+
"Day before yesterday": "Day before yesterday",
|
|
396
|
+
"Day/Month/Year": "Nap/Hónap/Év",
|
|
397
|
+
"Default": "Alapértelmezett",
|
|
398
|
+
"Default collapse": "Alapértelmezett összecsukás",
|
|
399
|
+
"Default collapsed": "Default collapsed",
|
|
400
|
+
"Default expand all": "Default expand all",
|
|
401
|
+
"Default filter conditions": "Default filter conditions",
|
|
402
|
+
"Default is the ID field": "Alapértelmezett az ID mező",
|
|
403
|
+
"Default operator": "Default operator",
|
|
404
|
+
"Default role": "Alapértelmezett szerepkör",
|
|
405
|
+
"Default sorting": "Default sorting",
|
|
406
|
+
"Default theme": "Alapértelmezett téma",
|
|
407
|
+
"Default title for each record": "Alapértelmezett cím minden rekordhoz",
|
|
408
|
+
"Default value": "Alapértelmezett érték",
|
|
409
|
+
"Default value to current server time": "Alapértelmezett érték a jelenlegi szerveridőre",
|
|
410
|
+
"Default value to current time": "Alapértelmezett érték a jelenlegi időre",
|
|
411
|
+
"Delete": "Törlés",
|
|
412
|
+
"Delete Event": "Esemény törlése",
|
|
413
|
+
"Delete action": "Művelet törlése",
|
|
414
|
+
"Delete block": "Blokk törlése",
|
|
415
|
+
"Delete category": "Kategória törlése",
|
|
416
|
+
"Delete collection": "Gyűjtemény törlése",
|
|
417
|
+
"Delete events": "Események törlése",
|
|
418
|
+
"Delete field": "Mező törlése",
|
|
419
|
+
"Delete menu item": "Menüpont törlése",
|
|
420
|
+
"Delete record": "Rekord törlése",
|
|
421
|
+
"Delete role": "Szerepkör törlése",
|
|
422
|
+
"Delete route": "Útvonal törlése",
|
|
423
|
+
"Delete routes": "Útvonalak törlése",
|
|
424
|
+
"Delete settings": "Delete settings",
|
|
425
|
+
"Delete step": "Delete step",
|
|
426
|
+
"Delete table column": "Tábla oszlop törlése",
|
|
427
|
+
"Delete this event?": "Biztosan törli ezt az eseményt?",
|
|
428
|
+
"Delete this target block": "Delete this target block",
|
|
429
|
+
"Delete variable": "Delete variable",
|
|
430
|
+
"Deny list": "Deny list",
|
|
431
|
+
"Department name": "Osztály neve",
|
|
432
|
+
"Departments": "Osztályok",
|
|
433
|
+
"Dependencies check": "Függőségek ellenőrzése",
|
|
434
|
+
"Dependencies check failed, can't enable.": "Függőségek ellenőrzése nem sikerült, nem lehet engedélyezni.",
|
|
435
|
+
"Dependencies compatibility check": "Függőségek kompatibilitásának ellenőrzése",
|
|
436
|
+
"Deprecated": "Deprecated",
|
|
437
|
+
"Description": "Leírás",
|
|
438
|
+
"Desktop device": "Asztali eszköz",
|
|
439
|
+
"Desktop routes": "Asztali útvonalak",
|
|
440
|
+
"Detail item settings": "Detail item settings",
|
|
441
|
+
"Details": "Részletek",
|
|
442
|
+
"Details settings": "Details settings",
|
|
443
|
+
"Determine whether a record exists by the following fields": "Egy rekord létezésének meghatározása a következő mezők alapján",
|
|
444
|
+
"Dialog": "Párbeszédablak",
|
|
445
|
+
"Direct assignment": "Direct assignment",
|
|
446
|
+
"Direct duplicate": "Közvetlen másolat",
|
|
447
|
+
"Disable": "Letiltás",
|
|
448
|
+
"Disable manual input": "Disable manual input",
|
|
449
|
+
"Disable tabs": "Fülek letiltása",
|
|
450
|
+
"Disable validation": "Disable validation",
|
|
451
|
+
"Disabled": "Letiltva",
|
|
452
|
+
"Disassociate": "Kapcsolat bontása",
|
|
453
|
+
"Disassociate record": "Kapcsolat bontása rekord",
|
|
454
|
+
"Display <1><0>10</0><1>20</1><2>50</2><3>100</3></1> items per page": "Megjelenítés <1><0>10</0><1>20</1><2>50</2><3>100</3></1> tétel oldalanként",
|
|
455
|
+
"Display <icon></icon> when unchecked": "Megjelenítés <icon></icon> amikor nincs jelölve",
|
|
456
|
+
"Display Field settings": "Display Field settings",
|
|
457
|
+
"Display association fields": "Kapcsolati mezők megjelenítése",
|
|
458
|
+
"Display field title": "Mező címének megjelenítése",
|
|
459
|
+
"Display fields": "Mezők megjelenítése",
|
|
460
|
+
"Display label": "Display label",
|
|
461
|
+
"Display mode": "Display mode",
|
|
462
|
+
"Display name": "Megjelenített név",
|
|
463
|
+
"Display only": "Display only",
|
|
464
|
+
"Display order number": "Rendezési szám megjelenítése",
|
|
465
|
+
"Display page title": "Oldal címének megjelenítése",
|
|
466
|
+
"Display style": "Display style",
|
|
467
|
+
"Display title": "Cím megjelenítése",
|
|
468
|
+
"DisplayName": "Megjelenített név",
|
|
469
|
+
"Divide by": "Osztás",
|
|
470
|
+
"Divider line color": "Elválasztó vonal színe",
|
|
471
|
+
"Do not concatenate search params in the URL": "Ne fűzze össze a keresési paramétereket az URL-ben",
|
|
472
|
+
"Do not load data when filter is empty": "Ne töltse be az adatokat, ha a szűrő üres",
|
|
473
|
+
"Docs": "Dokumentáció",
|
|
474
|
+
"Domains ending with a . character are permitted": "Domains ending with a . character are permitted",
|
|
475
|
+
"Done": "Kész",
|
|
476
|
+
"Double click": "Double click",
|
|
477
|
+
"Double click to choose entire object": "Dupla kattintás az egész objektum kiválasztásához",
|
|
478
|
+
"Download": "Letöltés",
|
|
479
|
+
"Download logs": "Naplok letöltése",
|
|
480
|
+
"Drag and drop sorting field": "Húzza és ejtse a rendezési mezőt",
|
|
481
|
+
"Drag and drop the file here or click to upload, file size should not exceed 30M": "Húzza ide a fájlt, vagy kattintson a feltöltéshez, a fájl mérete nem haladhatja meg a 30M-t",
|
|
482
|
+
"Dragging": "Húzás",
|
|
483
|
+
"Drawer": "Fiók",
|
|
484
|
+
"Dropdown": "Legördülő",
|
|
485
|
+
"Dropdown select": "Dropdown select",
|
|
486
|
+
"Duplicate": "Másolat",
|
|
487
|
+
"Duplicate and continue": "Másolat és folytatás",
|
|
488
|
+
"Duplicate mode": "Másolat mód",
|
|
489
|
+
"Duplicate template": "Másolat sablon",
|
|
490
|
+
"Duplicating": "Másolás",
|
|
491
|
+
"Duration (seconds, 0 = no auto close)": "Duration (seconds, 0 = no auto close)",
|
|
492
|
+
"Dynamic value": "Dinamikus érték",
|
|
493
|
+
"Easy reading": "Könnyű olvasás",
|
|
494
|
+
"Easy-reading": "Könnyű olvasás",
|
|
495
|
+
"Edit": "Szerkesztés",
|
|
496
|
+
"Edit Title": "Edit Title",
|
|
497
|
+
"Edit block title": "Blokk címének szerkesztése",
|
|
498
|
+
"Edit block title & description": "Blokk címének és leírásának szerkesztése",
|
|
499
|
+
"Edit button": "Gomb szerkesztése",
|
|
500
|
+
"Edit category": "Kategória szerkesztése",
|
|
501
|
+
"Edit chart": "Diagram szerkesztése",
|
|
502
|
+
"Edit collection": "Gyűjtemény szerkesztése",
|
|
503
|
+
"Edit description": "Leírás szerkesztése",
|
|
504
|
+
"Edit event flows": "Edit event flows",
|
|
505
|
+
"Edit field": "Mező szerkesztése",
|
|
506
|
+
"Edit field title": "Mező címének szerkesztése",
|
|
507
|
+
"Edit form": "Űrlap szerkesztése",
|
|
508
|
+
"Edit group title": "Csoport címének szerkesztése",
|
|
509
|
+
"Edit link": "Hivatkozás szerkesztése",
|
|
510
|
+
"Edit markdown": "Markdown szerkesztése",
|
|
511
|
+
"Edit menu item": "Menüpont szerkesztése",
|
|
512
|
+
"Edit page size": "Edit page size",
|
|
513
|
+
"Edit page title": "Oldal címének szerkesztése",
|
|
514
|
+
"Edit popup": "Edit popup",
|
|
515
|
+
"Edit profile": "Profil szerkesztése",
|
|
516
|
+
"Edit record": "Rekord szerkesztése",
|
|
517
|
+
"Edit role": "Szerepkör szerkesztése",
|
|
518
|
+
"Edit tab": "Fül szerkesztése",
|
|
519
|
+
"Edit tooltip": "Tooltip szerkesztése",
|
|
520
|
+
"Edit variable": "Edit variable",
|
|
521
|
+
"Editable": "Szerkeszthető",
|
|
522
|
+
"Ellipsis": "Három pont",
|
|
523
|
+
"Ellipsis overflow content": "Túlcsorduló tartalom három ponttal",
|
|
524
|
+
"Email": "Email",
|
|
525
|
+
"Embedded": "Embedded",
|
|
526
|
+
"Empty": "Üres",
|
|
527
|
+
"Enable": "Engedélyez",
|
|
528
|
+
"Enable SMS authentication": "SMS hitelesítés engedélyezése",
|
|
529
|
+
"Enable Scan": "Enable Scan",
|
|
530
|
+
"Enable actions": "Műveletek engedélyezése",
|
|
531
|
+
"Enable child collections": "Gyermek gyűjtemények engedélyezése",
|
|
532
|
+
"Enable click-to-open": "Enable click-to-open",
|
|
533
|
+
"Enable drag and drop sorting": "Húzd és ejts rendezés engedélyezése",
|
|
534
|
+
"Enable form data template": "Űrlapadat sablon engedélyezése",
|
|
535
|
+
"Enable index column": "Enable index column",
|
|
536
|
+
"Enable link": "Hivatkozás engedélyezése",
|
|
537
|
+
"Enable page header": "Oldal fejlécének engedélyezése",
|
|
538
|
+
"Enable page tabs": "Oldal fülek engedélyezése",
|
|
539
|
+
"Enable quick edit": "Enable quick edit",
|
|
540
|
+
"Enable refresh": "Enable refresh",
|
|
541
|
+
"Enable secondary confirmation": "Másodlagos megerősítés engedélyezése",
|
|
542
|
+
"Enable tabs": "Enable tabs",
|
|
543
|
+
"Enable tree table": "Enable tree table",
|
|
544
|
+
"Enable virtual scrolling": "Enable virtual scrolling",
|
|
545
|
+
"Enabled": "Engedélyezve",
|
|
546
|
+
"Enabled languages": "Engedélyezett nyelvek",
|
|
547
|
+
"End": "End",
|
|
548
|
+
"End accessor": "End accessor",
|
|
549
|
+
"End date field": "Befejező dátum mező",
|
|
550
|
+
"Enter collection name": "Enter collection name",
|
|
551
|
+
"Enter end accessor": "Enter end accessor",
|
|
552
|
+
"Enter field title": "Enter field title",
|
|
553
|
+
"Enter number of rows to display": "Enter number of rows to display",
|
|
554
|
+
"Enter page title": "Enter page title",
|
|
555
|
+
"Enter placeholder text": "Enter placeholder text",
|
|
556
|
+
"Enter start accessor": "Enter start accessor",
|
|
557
|
+
"Enter title accessor": "Enter title accessor",
|
|
558
|
+
"Enter value": "Enter value",
|
|
559
|
+
"Error message": "Hibaüzenet",
|
|
560
|
+
"Event": "Esemény",
|
|
561
|
+
"Event flow": "Event flow",
|
|
562
|
+
"Event selected": "Event selected",
|
|
563
|
+
"Event settings": "Event settings",
|
|
564
|
+
"Exact day": "Egyezik",
|
|
565
|
+
"Execute": "Végrehajtás",
|
|
566
|
+
"Execute JavaScript": "Execute JavaScript",
|
|
567
|
+
"Exists": "Létezik",
|
|
568
|
+
"Expand All": "Összes kibővítése",
|
|
569
|
+
"Expand all": "Összes kibővítése",
|
|
570
|
+
"Expand all rows by default": "Expand all rows by default",
|
|
571
|
+
"Expand button": "Expand",
|
|
572
|
+
"Expand/Collapse": "Kibővítés/Összecsukás",
|
|
573
|
+
"Export": "Exportálás",
|
|
574
|
+
"Exportable fields": "Exportálható mezők",
|
|
575
|
+
"Expression": "Kifejezés",
|
|
576
|
+
"Expression collection": "Kifejezés gyűjtemény",
|
|
577
|
+
"FORMULAJS_DOC_URL": "https://v2.docs.nocobase.com/calculation-engine/formula",
|
|
578
|
+
"Failed to load plugin": "Bővítmény betöltése nem sikerült",
|
|
579
|
+
"False": "Hamís",
|
|
580
|
+
"Feedback": "Visszajelzés",
|
|
581
|
+
"Field": "Mező",
|
|
582
|
+
"Field Linkage rules": "Field Linkage rules",
|
|
583
|
+
"Field assignment": "Field assignment",
|
|
584
|
+
"Field component": "Mező összetevő",
|
|
585
|
+
"Field display name": "Mező megjelenítési név",
|
|
586
|
+
"Field interface": "Mező felület",
|
|
587
|
+
"Field linkage rules": "Field linkage rules",
|
|
588
|
+
"Field mode": "Mező mód",
|
|
589
|
+
"Field model": "Field model",
|
|
590
|
+
"Field name": "Mező neve",
|
|
591
|
+
"Field permission": "Mező jogosultság",
|
|
592
|
+
"Field settings": "Field settings",
|
|
593
|
+
"Field source": "Mező forrás",
|
|
594
|
+
"Field title": "Mező címe",
|
|
595
|
+
"Field type": "Mező típusa",
|
|
596
|
+
"Field value changes": "Mező érték változások",
|
|
597
|
+
"Field value do not meet the requirements": "Mező érték nem felel meg a követelményeknek",
|
|
598
|
+
"Field value size is": "Mező érték mérete",
|
|
599
|
+
"Field values must be unique.": "A mezőértékeknek egyedinek kell lenniük.",
|
|
600
|
+
"Fields": "Mezők",
|
|
601
|
+
"Fields can only be used correctly if they are defined with an interface.": "A mezők csak akkor használhatók helyesen, ha interfésszel vannak definiálva.",
|
|
602
|
+
"Fields values": "Mezők értékei",
|
|
603
|
+
"File manager": "Fájlkezelő",
|
|
604
|
+
"File size exceeds the limit": "A fájl mérete meghaladja a korlátot",
|
|
605
|
+
"File size should not exceed {{size}}.": "A fájl mérete nem haladhatja meg a(z) {{size}}.",
|
|
606
|
+
"File type is not allowed": "A fájl típusa nem megengedett",
|
|
607
|
+
"File type is not supported for previewing, please download it to preview.": "A fájl típusa nem támogatott az előnézethez, kérjük, töltse le az előnézethez.",
|
|
608
|
+
"Fill": "Kitöltés",
|
|
609
|
+
"Filled": "Kitöltve",
|
|
610
|
+
"Filter": "Szűrő",
|
|
611
|
+
"Filter blocks": "Szűrő blokkok",
|
|
612
|
+
"Filter configuration": "Filter configuration",
|
|
613
|
+
"Filter data based on the specific field, with the requirement that the field value must be unique.": "Adatok szűrése a konkrét mező alapján, azzal a követelménnyel, hogy a mező értékének egyedinek kell lennie.",
|
|
614
|
+
"Filter out a single piece or a group of records as a template": "Szűrjön ki egyetlen darabot vagy egy rekordcsoportot sablonként",
|
|
615
|
+
"Filter target key": "Szűrő célkulcs",
|
|
616
|
+
"Filterable fields": "Szűrhető mezők",
|
|
617
|
+
"Find by the following fields": "Keresés a következő mezők alapján",
|
|
618
|
+
"First or create": "Első vagy létrehozás",
|
|
619
|
+
"Fix block": "Blokk javítása",
|
|
620
|
+
"Fixed": "Javítva",
|
|
621
|
+
"Fixed to the left": "Fixed to the left",
|
|
622
|
+
"Fixed to the right": "Fixed to the right",
|
|
623
|
+
"Flexible popup": "Rugalmas felugró",
|
|
624
|
+
"Flow Page": "Modern page (v2)",
|
|
625
|
+
"Font Size(px)": "Font Size(px)",
|
|
626
|
+
"Font Style": "Font Style",
|
|
627
|
+
"Font Weight": "Font Weight",
|
|
628
|
+
"Foreign key": "Külső kulcs",
|
|
629
|
+
"Foreign key 1": "Külső kulcs 1",
|
|
630
|
+
"Foreign key 2": "Külső kulcs 2",
|
|
631
|
+
"Form": "Űrlap",
|
|
632
|
+
"Form (Add new)": "Űrlap (Új hozzáadása)",
|
|
633
|
+
"Form (Edit)": "Űrlap (Szerkesztés)",
|
|
634
|
+
"Form UID": "Form UID",
|
|
635
|
+
"Form data templates": "Űrlapadat sablonok",
|
|
636
|
+
"Form duplicate": "Form duplicate",
|
|
637
|
+
"Form field assignment": "Form field assignment",
|
|
638
|
+
"Form item settings": "Form item settings",
|
|
639
|
+
"Form settings": "Form settings",
|
|
640
|
+
"Form values": "Űrlap értékek",
|
|
641
|
+
"Form values change": "Form values change",
|
|
642
|
+
"Form variable": "Form variable",
|
|
643
|
+
"Format": "Formátum",
|
|
644
|
+
"Formula": "Képlet",
|
|
645
|
+
"Formula description": "Számítson ki egy értéket minden rekordban a ugyanazon rekord más mezői alapján.",
|
|
646
|
+
"Formula error.": "Képlet hiba.",
|
|
647
|
+
"Formula mode": "Képlet mód",
|
|
648
|
+
"Formula.js supports most Microsoft Excel formula functions.": "A Formula.js a Microsoft Excel képletfunkcióinak többségét támogatja.",
|
|
649
|
+
"Full height": "Teljes magasság",
|
|
650
|
+
"Full permissions": "Full permissions",
|
|
651
|
+
"Function": "Függvény",
|
|
652
|
+
"Gantt": "Gantt",
|
|
653
|
+
"Geek blue": "Geek kék",
|
|
654
|
+
"General": "Általános",
|
|
655
|
+
"General action permissions": "Általános műveleti jogosultságok",
|
|
656
|
+
"General collection": "Általános gyűjtemény",
|
|
657
|
+
"General configuration": "General configuration",
|
|
658
|
+
"General fields": "Általános mezők",
|
|
659
|
+
"General permissions": "Általános jogosultságok",
|
|
660
|
+
"Generated automatically if left blank": "Automatikusan generálva, ha üresen hagyja",
|
|
661
|
+
"Generic properties": "Általános tulajdonságok",
|
|
662
|
+
"Global action permissions": "Globális műveleti jogosultságok",
|
|
663
|
+
"Global permissions": "Globális jogosultságok",
|
|
664
|
+
"Gold": "Arany",
|
|
665
|
+
"Greater than": "Greater than",
|
|
666
|
+
"Green": "Zöld",
|
|
667
|
+
"Grid Card": "Rács kártya",
|
|
668
|
+
"Group": "Csoport",
|
|
669
|
+
"Grouped sorting": "Csoportosított rendezés",
|
|
670
|
+
"Grouping field": "Csoportosító mező",
|
|
671
|
+
"HTML content": "HTML content",
|
|
672
|
+
"Half of day": "Fél nap",
|
|
673
|
+
"Handbook": "Kézikönyv",
|
|
674
|
+
"Hidden": "Rejtett",
|
|
675
|
+
"Hidden (reserved value)": "Hidden (reserved value)",
|
|
676
|
+
"Hidden text": "Hidden text",
|
|
677
|
+
"Hidden(reserved value)": "Rejtett (fenntartott érték)",
|
|
678
|
+
"Hide": "Elrejtés",
|
|
679
|
+
"Hide column": "Oszlop elrejtése",
|
|
680
|
+
"Hide in menu": "Elrejtés a menüben",
|
|
681
|
+
"Highlight": "Kiemelés",
|
|
682
|
+
"Home page": "Kezdőlap",
|
|
683
|
+
"Homepage": "Kezdőlap",
|
|
684
|
+
"Horizontal": "Horizontális",
|
|
685
|
+
"Hour": "Óra",
|
|
686
|
+
"Html settings": "Html settings",
|
|
687
|
+
"IANA registry": "IANA registry",
|
|
688
|
+
"ID": "ID",
|
|
689
|
+
"Icon": "Ikon",
|
|
690
|
+
"Icon only": "Icon only",
|
|
691
|
+
"Identifier for program usage. Support letters, numbers and underscores, must start with an letter.": "Az azonosító a program használatához. Támogatja a betűket, számokat és aláhúzásokat, betűvel kell kezdődnie.",
|
|
692
|
+
"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.": "Ha egy gyűjteményből hiányzik egy elsődleges kulcs, akkor konfigurálnia kell egy egyedi rekordkulcsot a sorrekordok egy blokkban való megtalálásához, ennek a konfigurálásának a elmulasztása megakadályozza a adatblokkok létrehozását a gyűjteményhez.",
|
|
693
|
+
"If collection inherits, choose inherited collections as templates": "Ha a gyűjtemény öröklődik, válassza az örökölt gyűjteményeket sablonként",
|
|
694
|
+
"If selected, the page will display Tab pages.": "Ha kiválasztva, az oldal füloldalakat fog megjeleníteni.",
|
|
695
|
+
"If selected, the route will be displayed in the menu.": "Ha kiválasztva, az útvonal megjelenik a menüben.",
|
|
696
|
+
"Ignore invalid email length errors": "Ignore invalid email length errors",
|
|
697
|
+
"Imperative Drawer": "Imperative Drawer",
|
|
698
|
+
"Import": "Importálás",
|
|
699
|
+
"Importable fields": "Importálható mezők",
|
|
700
|
+
"In configuration": "Konfigurációban",
|
|
701
|
+
"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.": "Konfigurációs módban az egész oszlop átlátszóvá válik. Nem konfigurációs módban az egész oszlop el lesz rejtve. Még ha az egész oszlop el is van rejtve, a beállított alapértelmezett értékek és egyéb beállítások továbbra is érvényben maradnak.",
|
|
702
|
+
"Incomplete uploading files need to be resolved": "A hiányos feltöltési fájlokat meg kell oldani",
|
|
703
|
+
"Index": "Index",
|
|
704
|
+
"Individual": "Egyéni",
|
|
705
|
+
"Inherited fields": "Örökölt mezők",
|
|
706
|
+
"Inherited template": "Inherited template",
|
|
707
|
+
"Inherits": "Öröklődik",
|
|
708
|
+
"Inner": "Belső",
|
|
709
|
+
"Input": "Input",
|
|
710
|
+
"Input +, -, *, /, ( ) to calculate, input @ to open field variables.": "Bemenet +, -, *, /, ( ) a számításhoz, bemenet @ a mezőváltozók megnyitásához.",
|
|
711
|
+
"Input request data": "Input request data",
|
|
712
|
+
"Insert": "Beszúrás",
|
|
713
|
+
"Insert above": "Beszúrás felül",
|
|
714
|
+
"Insert after": "Beszúrás után",
|
|
715
|
+
"Insert before": "Beszúrás előtt",
|
|
716
|
+
"Insert below": "Beszúrás alá",
|
|
717
|
+
"Insert if not exists": "Beszúrás, ha nem létezik",
|
|
718
|
+
"Insert if not exists, or update": "Beszúrás, ha nem létezik, vagy frissítés",
|
|
719
|
+
"Insert inner": "Belső beszúrás",
|
|
720
|
+
"Insert left": "Beszúrás balra",
|
|
721
|
+
"Insert right": "Beszúrás jobbra",
|
|
722
|
+
"Installing": "Telepítés alatt",
|
|
723
|
+
"Integer": "Egész szám",
|
|
724
|
+
"Invalid JSON format": "Érvénytelen JSON formátum",
|
|
725
|
+
"Inverse field display name": "Inverz mező megjelenítési név",
|
|
726
|
+
"Inverse field name": "Inverz mező neve",
|
|
727
|
+
"Inverse relationship type": "Inverz kapcsolat típusa",
|
|
728
|
+
"Italic": "Italic",
|
|
729
|
+
"Junction collection": "Kereszttábla gyűjtemény",
|
|
730
|
+
"Kanban": "Kanban",
|
|
731
|
+
"Label": "Label",
|
|
732
|
+
"Label align": "Címke igazítása",
|
|
733
|
+
"Label field": "Címke mező",
|
|
734
|
+
"Label width": "Címke szélessége",
|
|
735
|
+
"Language": "Nyelv",
|
|
736
|
+
"Large": "Nagy",
|
|
737
|
+
"Large screen device": "Nagy képernyős eszköz",
|
|
738
|
+
"Last 30 days": "Utolsó 30 nap",
|
|
739
|
+
"Last 7 days": "Utolsó 7 nap",
|
|
740
|
+
"Last 90 days": "Utolsó 90 nap",
|
|
741
|
+
"Last Month": "Előző hónap",
|
|
742
|
+
"Last Quarter": "Előző negyedév",
|
|
743
|
+
"Last Week": "Előző hét",
|
|
744
|
+
"Last Year": "Előző év",
|
|
745
|
+
"Last month": "Előző hónap",
|
|
746
|
+
"Last quarter": "Előző negyedév",
|
|
747
|
+
"Last updated": "Utolsó frissítés",
|
|
748
|
+
"Last updated at": "Utolsó frissítés ideje",
|
|
749
|
+
"Last updated by": "Utolsó frissítette",
|
|
750
|
+
"Last week": "Előző hét",
|
|
751
|
+
"Last year": "Előző év",
|
|
752
|
+
"Layout": "Elrendezés",
|
|
753
|
+
"Leave it blank, unless you need a custom intermediate table": "Hagyja üresen, hacsak nem szükséges egyedi köztes tábla",
|
|
754
|
+
"Left": "Balra",
|
|
755
|
+
"Left fixed": "Balra rögzített",
|
|
756
|
+
"Length": "Hossz",
|
|
757
|
+
"Less than": "Less than",
|
|
758
|
+
"License": "Licenc",
|
|
759
|
+
"Lime": "Lime",
|
|
760
|
+
"Limit": "Limit",
|
|
761
|
+
"Line break": "Sorosztás",
|
|
762
|
+
"Line chart": "Vonaldiagram",
|
|
763
|
+
"Link": "Hivatkozás",
|
|
764
|
+
"Link action settings": "Link action settings",
|
|
765
|
+
"Link to": "Hivatkozás erre",
|
|
766
|
+
"Link to description": "Használható a gyűjtemény kapcsolatok gyors létrehozására, és kompatibilis a leggyakoribb forgatókönyvekkel. Nem fejlesztői használatra alkalmas. Ha mezőként jelenik meg, legördülő kiválasztásként használják a célgyűjteményből származó rekordok kiválasztására. Miután létrejött, egyidejűleg generálja a célgyűjteményben a jelenlegi gyűjtemény kapcsolt mezőit.",
|
|
767
|
+
"Linkage rule": "Kapcsolati szabály",
|
|
768
|
+
"Linkage rules": "Kapcsolati szabályok",
|
|
769
|
+
"Linkage with form fields": "Kapcsolódás űrlapmezőkkel",
|
|
770
|
+
"List": "Lista",
|
|
771
|
+
"Load all data when filter is empty": "Minden adat betöltése, ha a szűrő üres",
|
|
772
|
+
"Load collections": "Load collections",
|
|
773
|
+
"Local": "Helyi",
|
|
774
|
+
"Log in with an existing account": "Bejelentkezés egy meglévő fiókkal",
|
|
775
|
+
"Logging and monitoring": "Naplózás és figyelés",
|
|
776
|
+
"Logo": "Logó",
|
|
777
|
+
"Long text": "Hosszú szöveg",
|
|
778
|
+
"MATHJS_DOC_URL": "https://v2.docs.nocobase.com/calculation-engine/math",
|
|
779
|
+
"Magenta": "Magenta",
|
|
780
|
+
"Main": "Fő",
|
|
781
|
+
"Main department": "Fő osztály",
|
|
782
|
+
"Manage all settings": "Összes beállítás kezelése",
|
|
783
|
+
"Manually close": "Kézi bezárás",
|
|
784
|
+
"Many to many": "Sok-sok",
|
|
785
|
+
"Many to many description": "Használható sok-sok kapcsolatok létrehozására. Például egy diáknak sok tanára lehet, és egy tanárnak sok diákja lehet. Ha mezőként jelenik meg, legördülő kiválasztásként használják az asszociált gyűjteményből származó rekordok kiválasztására.",
|
|
786
|
+
"Many to one": "Sok-egy",
|
|
787
|
+
"Many to one description": "Használható sok-egy kapcsolatok létrehozására. Például egy város csak egy országban lehet, és egy országban sok város lehet. Ha mezőként jelenik meg, legördülő kiválasztásként használják az asszociált gyűjteményből származó rekord kiválasztására. Miután létrejött, automatikusan generálódik egy egy-az-sok mező az asszociált gyűjteményben.",
|
|
788
|
+
"Markdown": "Markdown",
|
|
789
|
+
"Marketplace": "Piac",
|
|
790
|
+
"Math.js comes with a large set of built-in functions and constants, and offers an integrated solution to work with different data types.": "A Math.js egy nagy beépített függvény- és állandóhalmazt kínál, és integrált megoldást kínál különböző adattípusokkal való munkavégzéshez.",
|
|
791
|
+
"Max Domain Segments": "Max Domain Segments",
|
|
792
|
+
"Max length": "Maximális hossz",
|
|
793
|
+
"Max length must greater than min length": "A maximális hosszúságnak nagyobbnak kell lennie, mint a minimális hosszúság",
|
|
794
|
+
"Max value": "Max value",
|
|
795
|
+
"MaxDate": "MaxDate",
|
|
796
|
+
"Maximum": "Maximum",
|
|
797
|
+
"Maximum must greater than minimum": "A maximum értéknek nagyobbnak kell lennie, mint a minimum",
|
|
798
|
+
"Media": "Média",
|
|
799
|
+
"Medium": "Medium",
|
|
800
|
+
"Meet": "Meet",
|
|
801
|
+
"Meet <1><0>All</0><1>Any</1></1> conditions in the group": "Teljesítse <1><0>All</0><1>Any</1></1> feltételeket a csoportban",
|
|
802
|
+
"Menu": "Menü",
|
|
803
|
+
"Menu item icon": "Menüpont ikon",
|
|
804
|
+
"Menu item name": "Menüpont neve",
|
|
805
|
+
"Menu item title": "Menüpont címe",
|
|
806
|
+
"Menu permissions": "Menü jogosultságok",
|
|
807
|
+
"Message content": "Message content",
|
|
808
|
+
"Message popup close method": "Üzenet felugró ablak bezárási módja",
|
|
809
|
+
"Message type": "Message type",
|
|
810
|
+
"Middle": "Középső",
|
|
811
|
+
"Millisecond": "Milliszekundum",
|
|
812
|
+
"Min Domain Segments": "Min Domain Segments",
|
|
813
|
+
"Min length": "Minimális hossz",
|
|
814
|
+
"Min length must less than max length": "A minimális hosszúságnak kisebbnek kell lennie, mint a maximális hosszúság",
|
|
815
|
+
"Min value": "Min value",
|
|
816
|
+
"MinDate": "MinDate",
|
|
817
|
+
"Minimum": "Minimum",
|
|
818
|
+
"Minimum must less than maximum": "A minimum értéknek kisebbnek kell lennie, mint a maximum",
|
|
819
|
+
"Mobile": "Mobile",
|
|
820
|
+
"Mobile routes": "Mobil útvonalak",
|
|
821
|
+
"Modal": "Modal",
|
|
822
|
+
"Modal add": "Modális hozzáadás",
|
|
823
|
+
"Mode": "Mode",
|
|
824
|
+
"Modern page (v2)": "Modern page (v2)",
|
|
825
|
+
"Month": "Hónap",
|
|
826
|
+
"Monthly": "Havonta",
|
|
827
|
+
"More details": "További részletek",
|
|
828
|
+
"More options": "További lehetőségek",
|
|
829
|
+
"Move down": "Move down",
|
|
830
|
+
"Move to": "Mozgatás ide",
|
|
831
|
+
"Move up": "Move up",
|
|
832
|
+
"Move {{title}} to": "Mozgassa a {{title}}-t ide",
|
|
833
|
+
"Multiple": "Multiple",
|
|
834
|
+
"Multiple select": "Többszörös kiválasztás",
|
|
835
|
+
"Multiply by": "Szorzás",
|
|
836
|
+
"Must be 1-50 characters in length (excluding @.<>\"'/)": "Hossza 1-50 karakterből kell álljon (a @.<>\"'/ kivételével)",
|
|
837
|
+
"Must select to the last level": "Az utolsó szintig kell választani",
|
|
838
|
+
"Must use `-` and `:`": "Must use `-` and `:`",
|
|
839
|
+
"N/A": "N/A",
|
|
840
|
+
"Name": "Név",
|
|
841
|
+
"Navigate": "Navigálás",
|
|
842
|
+
"Navigate to URL": "Navigate to URL",
|
|
843
|
+
"New menu items are allowed to be accessed by default.": "Az új menüpontok alapértelmezés szerint elérhetők.",
|
|
844
|
+
"New password": "Új jelszó",
|
|
845
|
+
"New routes are allowed to be accessed by default": "Az új útvonalak alapértelmezés szerint elérhetők",
|
|
846
|
+
"Next": "Következő",
|
|
847
|
+
"Next 30 days": "Következő 30 nap",
|
|
848
|
+
"Next 7 days": "Következő 7 nap",
|
|
849
|
+
"Next 90 days": "Következő 90 nap",
|
|
850
|
+
"Next Month": "Következő hónap",
|
|
851
|
+
"Next Quarter": "Következő negyedév",
|
|
852
|
+
"Next Week": "Következő hét",
|
|
853
|
+
"Next Year": "Következő év",
|
|
854
|
+
"Next month": "Következő hónap",
|
|
855
|
+
"Next quarter": "Következő negyedév",
|
|
856
|
+
"Next week": "Következő hét",
|
|
857
|
+
"Next year": "Következő év",
|
|
858
|
+
"Nickname": "Becenév",
|
|
859
|
+
"No": "Nem",
|
|
860
|
+
"No CHANGELOG.md file": "Nincs CHANGELOG.md fájl",
|
|
861
|
+
"No README.md file": "Nincs README.md fájl",
|
|
862
|
+
"No allow `-` and `:`": "No allow `-` and `:`",
|
|
863
|
+
"No assigned fields configured": "No assigned fields configured",
|
|
864
|
+
"No blocks to connect": "Nincs blokk a csatlakoztatáshoz",
|
|
865
|
+
"No configuration available.": "Nincs elérhető konfiguráció.",
|
|
866
|
+
"No data": "Nincs adat",
|
|
867
|
+
"No event flows": "No event flows",
|
|
868
|
+
"No form available for reset.": "No form available for reset.",
|
|
869
|
+
"No form available for submission.": "No form available for submission.",
|
|
870
|
+
"No linkage rules": "No linkage rules",
|
|
871
|
+
"No pages yet, please configure first": "No pages yet, please configure first",
|
|
872
|
+
"No parent popup": "No parent popup",
|
|
873
|
+
"No records selected for bulk edit": "No records selected for bulk edit",
|
|
874
|
+
"No records selected for deletion": "No records selected for deletion",
|
|
875
|
+
"No resource or record selected for deletion": "No resource or record selected for deletion",
|
|
876
|
+
"No resource selected for bulk edit": "No resource selected for bulk edit",
|
|
877
|
+
"No resource selected for deletion": "No resource selected for deletion",
|
|
878
|
+
"No resource selected for refresh": "No resource selected for refresh",
|
|
879
|
+
"None": "Egyik sem",
|
|
880
|
+
"Normal": "Normál",
|
|
881
|
+
"Not Fixed": "Not fixed",
|
|
882
|
+
"Not enabled": "Nem engedélyezett",
|
|
883
|
+
"Not fixed": "Nem rögzített",
|
|
884
|
+
"Not required": "Nem kötelező",
|
|
885
|
+
"Notification": "Értesítés",
|
|
886
|
+
"Notification description": "Notification description",
|
|
887
|
+
"Notification title": "Notification title",
|
|
888
|
+
"Notification type": "Notification type",
|
|
889
|
+
"Now": "Most",
|
|
890
|
+
"Npm package": "Npm csomag",
|
|
891
|
+
"Npm package name": "Npm csomag neve",
|
|
892
|
+
"Null": "Null",
|
|
893
|
+
"Number": "Szám",
|
|
894
|
+
"Number settings": "Number settings",
|
|
895
|
+
"Object Fit": "Objektum illesztés",
|
|
896
|
+
"Off": "Ki",
|
|
897
|
+
"Official plugin": "Hivatalos bővítmény",
|
|
898
|
+
"Old password": "Régi jelszó",
|
|
899
|
+
"On": "Be",
|
|
900
|
+
"One to many": "Egy-több",
|
|
901
|
+
"One to many description": "Használható egy-több kapcsolatok létrehozására. Például egy országban sok város lehet, és egy város csak egy országban lehet. Ha mezőként jelenik meg, egy almappa, amely a kapcsolt gyűjtemény rekordjait jeleníti meg. Amikor létrejön, automatikusan generálódik egy sok-az-egy mező az asszociált gyűjteményben.",
|
|
902
|
+
"One to one": "Egy-egy",
|
|
903
|
+
"One to one (belongs to)": "Egy-egy (tartozik hozzá)",
|
|
904
|
+
"One to one (has one)": "Egy-egy (van egy)",
|
|
905
|
+
"One to one description": "Használható egy-egy kapcsolatok létrehozására. Például egy felhasználónak van egy profilja.",
|
|
906
|
+
"Only support standard JSON data": "Only support standard JSON data",
|
|
907
|
+
"Only the selected fields will be used as the initialization data for the form": "Csak a kiválasztott mezők lesznek használva az űrlap inicializáló adataként",
|
|
908
|
+
"Only use `-`": "Only use `-`",
|
|
909
|
+
"Only use `.`": "Only use `.`",
|
|
910
|
+
"Only use `_`": "Only use `_`",
|
|
911
|
+
"Open in new window": "Megnyitás új ablakban",
|
|
912
|
+
"Open in<1><0>Modal</0><1>Drawer</1><2>Window</2></1>": "Megnyitás<1><0>Modális</0><1>Fiók</1><2>Ablak</2></1>",
|
|
913
|
+
"Open mode": "Megnyitási mód",
|
|
914
|
+
"Open mode configuration": "Open mode configuration",
|
|
915
|
+
"Operate on existing data": "Műveletek meglévő adatokon",
|
|
916
|
+
"Operate on new data": "Műveletek új adatokon",
|
|
917
|
+
"Operation failed": "Művelet nem sikerült",
|
|
918
|
+
"Operation succeeded": "Művelet sikerült",
|
|
919
|
+
"Operator": "Operátor",
|
|
920
|
+
"Option label": "Opció címke",
|
|
921
|
+
"Option value": "Opció érték",
|
|
922
|
+
"Options": "Lehetőségek",
|
|
923
|
+
"Orange": "Narancs",
|
|
924
|
+
"Original field title: ": "Eredeti mező cím: ",
|
|
925
|
+
"Original name": "Eredeti név",
|
|
926
|
+
"Original title: ": "Eredeti cím: ",
|
|
927
|
+
"Other": "Egyéb",
|
|
928
|
+
"Other action": "Other action",
|
|
929
|
+
"Other block": "Other block",
|
|
930
|
+
"Other blocks": "Egyéb blokkok",
|
|
931
|
+
"Other chart": "Egyéb diagram",
|
|
932
|
+
"Other collections": "Egyéb gyűjtemények",
|
|
933
|
+
"Other column": "Other column",
|
|
934
|
+
"Other form": "Other form",
|
|
935
|
+
"Other records": "Egyéb rekordok",
|
|
936
|
+
"Others": "Mások",
|
|
937
|
+
"Outlined": "Keretezett",
|
|
938
|
+
"Override": "Felülírás",
|
|
939
|
+
"Override field": "Mező felülírása",
|
|
940
|
+
"Oversized": "Túlméretes",
|
|
941
|
+
"Own records": "Saját rekordok",
|
|
942
|
+
"Owners": "Tulajdonosok",
|
|
943
|
+
"PK & FK fields": "Elsődleges és külső kulcs mezők",
|
|
944
|
+
"Package name": "Csomag neve",
|
|
945
|
+
"PackageName": "Csomag neve",
|
|
946
|
+
"Page": "Oldal",
|
|
947
|
+
"Page (v2)": "Page (v2)",
|
|
948
|
+
"Page Title": "Page Title",
|
|
949
|
+
"Page number": "Oldalszám",
|
|
950
|
+
"Page settings": "Page settings",
|
|
951
|
+
"Page size": "Oldal mérete",
|
|
952
|
+
"Parent": "Szülő",
|
|
953
|
+
"Parent ID": "Szülő ID",
|
|
954
|
+
"Parent collection fields": "Szülő gyűjtemény mezői",
|
|
955
|
+
"Parent object": "Szülő objektum",
|
|
956
|
+
"Parent popup": "Parent popup",
|
|
957
|
+
"Parent popup record": "Szülő felugró rekord",
|
|
958
|
+
"Parent record": "Szülő rekord",
|
|
959
|
+
"Password": "Jelszó",
|
|
960
|
+
"Password Options": "Password Options",
|
|
961
|
+
"Password mismatch": "Jelszó nem egyezik",
|
|
962
|
+
"Past": "Elmúlt",
|
|
963
|
+
"Path": "Útvonal",
|
|
964
|
+
"Pattern": "Minta",
|
|
965
|
+
"Percent": "Százalék",
|
|
966
|
+
"Perform the Custom request": "Egyedi kérés végrehajtása",
|
|
967
|
+
"Perform the Refresh": "Frissítés végrehajtása",
|
|
968
|
+
"Perform the Submit": "Mentés végrehajtása",
|
|
969
|
+
"Perform the Trigger workflow": "Munkafolyamat indítása végrehajtása",
|
|
970
|
+
"Perform the Update record": "Rekord frissítése végrehajtása",
|
|
971
|
+
"Perform the {{title}}": "{{title}} végrehajtása",
|
|
972
|
+
"Permission deined": "Jogosultság megtagadva",
|
|
973
|
+
"Permission denied": "Jogosultság megtagadva",
|
|
974
|
+
"Permission policy": "Jogosultság politika",
|
|
975
|
+
"Phone": "Telefon",
|
|
976
|
+
"Phone device": "Telefon eszköz",
|
|
977
|
+
"Picker": "Kiválasztó",
|
|
978
|
+
"Pie chart": "Torta diagram",
|
|
979
|
+
"Pin to left": "Pin to left",
|
|
980
|
+
"Pin to right": "Pin to right",
|
|
981
|
+
"Placeholder": "Placeholder",
|
|
982
|
+
"Placement": "Placement",
|
|
983
|
+
"Please add a data block on the page first": "Please add a data block on the page first",
|
|
984
|
+
"Please add or select record": "Kérjük, adjon hozzá vagy válasszon rekordot",
|
|
985
|
+
"Please configure the URL": "Kérjük, konfigurálja az URL-t",
|
|
986
|
+
"Please configure the duplicate fields": "Kérjük, konfigurálja a duplikált mezőket",
|
|
987
|
+
"Please confirm the SQL statement first": "Kérjük, először erősítse meg a SQL utasítást",
|
|
988
|
+
"Please enter form uid": "Please enter form uid",
|
|
989
|
+
"Please enter the target block UID": "Please enter the target block UID",
|
|
990
|
+
"Please enter variable identifier": "Please enter variable identifier",
|
|
991
|
+
"Please enter variable title": "Please enter variable title",
|
|
992
|
+
"Please fill in the iframe URL": "Kérjük, töltse ki az iframe URL-t",
|
|
993
|
+
"Please input message content": "Please input message content",
|
|
994
|
+
"Please input notification description": "Please input notification description",
|
|
995
|
+
"Please input notification title": "Please input notification title",
|
|
996
|
+
"Please input target action uid": "Please input target action uid",
|
|
997
|
+
"Please input target block uid": "Please input target block uid",
|
|
998
|
+
"Please input target form uid": "Please input target form uid",
|
|
999
|
+
"Please select": "Please select",
|
|
1000
|
+
"Please select field": "Please select field",
|
|
1001
|
+
"Please select fields": "Please select fields",
|
|
1002
|
+
"Please select fields to filter": "Please select fields to filter",
|
|
1003
|
+
"Please select filterable fields": "Please select filterable fields",
|
|
1004
|
+
"Please select state": "Please select state",
|
|
1005
|
+
"Please select the records to be updated": "Kérjük, válassza ki a frissítendő rekordokat",
|
|
1006
|
+
"Please select time or variable": "Kérjük, válasszon időt vagy változót",
|
|
1007
|
+
"Please use a valid SELECT or WITH AS statement": "Kérjük, használjon érvényes SELECT vagy WITH AS utasítást",
|
|
1008
|
+
"Plugin": "Bővítmény",
|
|
1009
|
+
"Plugin Zip File": "Bővítmény Zip fájl",
|
|
1010
|
+
"Plugin dependencies check failed": "Bővítmény függőségek ellenőrzése nem sikerült",
|
|
1011
|
+
"Plugin dependencies check failed, you should change the dependent version to meet the version requirements.": "Bővítmény függőségek ellenőrzése nem sikerült, módosítania kell a függő verziót a verziókövetelményeknek megfelelően.",
|
|
1012
|
+
"Plugin dependency version mismatch": "Bővítmény függőség verzió eltérés",
|
|
1013
|
+
"Plugin loading failed. Please check the server logs.": "Bővítmény betöltése nem sikerült. Kérjük, ellenőrizze a szerver naplóit.",
|
|
1014
|
+
"Plugin manager": "Bővítmény kezelő",
|
|
1015
|
+
"Plugin name": "Bővítmény neve",
|
|
1016
|
+
"Plugin settings": "Bővítmény beállítások",
|
|
1017
|
+
"Plugin settings permissions": "Bővítmény beállítási jogosultságok",
|
|
1018
|
+
"Plugin source": "Bővítmény forrás",
|
|
1019
|
+
"Plugin starting...": "Bővítmény indítása...",
|
|
1020
|
+
"Plugin stopping...": "Bővítmény leállítása...",
|
|
1021
|
+
"Plugin tab name": "Bővítmény fül neve",
|
|
1022
|
+
"Plugin's version": "Bővítmény verziója",
|
|
1023
|
+
"Pop-up": "Felugró",
|
|
1024
|
+
"Popup": "Felugró",
|
|
1025
|
+
"Popup form": "Felugró űrlap",
|
|
1026
|
+
"Popup message": "Felugró üzenet",
|
|
1027
|
+
"Popup record": "Popup record",
|
|
1028
|
+
"Popup settings": "Popup settings",
|
|
1029
|
+
"Popup size": "Felugró méret",
|
|
1030
|
+
"Popup uid": "Popup UID",
|
|
1031
|
+
"Position": "Pozíció",
|
|
1032
|
+
"Precision": "Pontosság",
|
|
1033
|
+
"Precision(UI)": "Precision(UI)",
|
|
1034
|
+
"Prefix": "Előtag",
|
|
1035
|
+
"Preset fields": "Előre beállított mezők",
|
|
1036
|
+
"Prettify": "Szépítés",
|
|
1037
|
+
"Preview": "Előnézet",
|
|
1038
|
+
"Preview Settings": "Preview Settings",
|
|
1039
|
+
"Preview field component": "Preview field component",
|
|
1040
|
+
"Primary": "Elsődleges",
|
|
1041
|
+
"Primary key, unique identifier, self growth": "Elsődleges kulcs, egyedi azonosító, önálló növekedés",
|
|
1042
|
+
"Print": "Nyomtatás",
|
|
1043
|
+
"Problematic": "Problémás",
|
|
1044
|
+
"Progress field": "Haladás mező",
|
|
1045
|
+
"Properties": "Tulajdonságok",
|
|
1046
|
+
"Providing certain collections as options for users, typically used in polymorphic or inheritance scenarios": "Bizonyos gyűjtemények biztosítása lehetőségként a felhasználók számára, általában polimorf vagy öröklődési forgatókönyvekben",
|
|
1047
|
+
"Province": "Megye",
|
|
1048
|
+
"Province/city/area name": "Megye/város/terület neve",
|
|
1049
|
+
"Purple": "Lila",
|
|
1050
|
+
"Quarter": "Negyedév",
|
|
1051
|
+
"Quarter of day": "Nap negyed",
|
|
1052
|
+
"QuarterYear": "NegyedévÉv",
|
|
1053
|
+
"Quick add": "Gyors hozzáadás",
|
|
1054
|
+
"Quick create": "Gyors létrehozás",
|
|
1055
|
+
"Quick duplicate": "Gyors másolat",
|
|
1056
|
+
"Quick upload": "Gyors feltöltés",
|
|
1057
|
+
"Radio group": "Rádió csoport",
|
|
1058
|
+
"Randomly generated and can be modified. Support letters, numbers and underscores, must start with an letter.": "Véletlenszerűen generálva és módosítható. Támogatja a betűket, számokat és aláhúzásokat, betűvel kell kezdődnie.",
|
|
1059
|
+
"Read only": "Csak olvasható",
|
|
1060
|
+
"ReadOnly": "ReadOnly",
|
|
1061
|
+
"ReadPretty": "ReadPretty",
|
|
1062
|
+
"Readme": "Olvassa el",
|
|
1063
|
+
"Readonly": "Csak olvasható",
|
|
1064
|
+
"Recommended": "Recommended",
|
|
1065
|
+
"Record ID": "Rekord ID",
|
|
1066
|
+
"Record deleted successfully": "Record deleted successfully",
|
|
1067
|
+
"Record picker": "Rekord kiválasztó",
|
|
1068
|
+
"Record unique key": "Rekord egyedi kulcs",
|
|
1069
|
+
"RecordPicker settings": "RecordPicker settings",
|
|
1070
|
+
"Records can be sorted": "A rekordok rendezhetők",
|
|
1071
|
+
"Records per page": "Rekordok száma oldalanként",
|
|
1072
|
+
"Red": "Piros",
|
|
1073
|
+
"Redirect to": "Átirányítás ide",
|
|
1074
|
+
"Reference template": "Hivatkozási sablon",
|
|
1075
|
+
"References": "References",
|
|
1076
|
+
"Refresh": "Frissítés",
|
|
1077
|
+
"Refresh data after execution": "Refresh data after execution",
|
|
1078
|
+
"Refresh data blocks": "Refresh data blocks",
|
|
1079
|
+
"Refresh data on action": "Adatok frissítése műveletkor",
|
|
1080
|
+
"Refresh data on close": "Adatok frissítése záráskor",
|
|
1081
|
+
"Refresh target blocks": "Refresh target blocks",
|
|
1082
|
+
"Regular Expression": "Regular Expression",
|
|
1083
|
+
"Regular expression": "Reguláris kifejezés",
|
|
1084
|
+
"Related collection": "Kapcsolódó gyűjtemény",
|
|
1085
|
+
"Relation": "Kapcsolat",
|
|
1086
|
+
"Relationship blocks": "Kapcsolati blokkok",
|
|
1087
|
+
"Relationship type": "Kapcsolat típusa",
|
|
1088
|
+
"Reload application": "Alkalmazás újratöltése",
|
|
1089
|
+
"Remains the same": "Ugyanaz marad",
|
|
1090
|
+
"Remove": "Eltávolítás",
|
|
1091
|
+
"Render Failed": "Megjelenítés nem sikerült",
|
|
1092
|
+
"Render mode": "Render mode",
|
|
1093
|
+
"Repeats": "Ismétlődik",
|
|
1094
|
+
"Request API": "API kérés",
|
|
1095
|
+
"Request URL": "Kérés URL",
|
|
1096
|
+
"Request body": "Kérés törzs",
|
|
1097
|
+
"Request headers": "Kérés fejléc",
|
|
1098
|
+
"Request method": "Kérés módszer",
|
|
1099
|
+
"Request query parameters": "Kérés lekérdezési paraméterek",
|
|
1100
|
+
"Request settings": "Kérés beállítások",
|
|
1101
|
+
"Request success": "Kérés sikerült",
|
|
1102
|
+
"Required": "Kötelező",
|
|
1103
|
+
"Reset": "Visszaállítás",
|
|
1104
|
+
"Reset link expiration": "Reset link expiration",
|
|
1105
|
+
"Response record": "Response record",
|
|
1106
|
+
"Response type": "Response type",
|
|
1107
|
+
"Restart": "Újraindítás",
|
|
1108
|
+
"Restart application": "Alkalmazás újraindítása",
|
|
1109
|
+
"Restrict only relative URIs": "Restrict only relative URIs",
|
|
1110
|
+
"Result": "Eredmény",
|
|
1111
|
+
"Retry after {{count}} seconds": "Ismételje meg {{count}} másodperc múlva",
|
|
1112
|
+
"Return to the main application": "Vissza a fő alkalmazáshoz",
|
|
1113
|
+
"Return to the previous popup or page": "Vissza az előző felugró ablakhoz vagy oldalhoz",
|
|
1114
|
+
"Rich Text": "Gazdag szöveg",
|
|
1115
|
+
"Right": "Jobbra",
|
|
1116
|
+
"Right fixed": "Jobbra rögzített",
|
|
1117
|
+
"Role UID": "Szerepkör UID",
|
|
1118
|
+
"Role display name": "Szerepkör megjelenítési neve",
|
|
1119
|
+
"Role name": "Szerepkör neve",
|
|
1120
|
+
"Roles": "Szerepkörök",
|
|
1121
|
+
"Roles & Permissions": "Szerepkörök és jogosultságok",
|
|
1122
|
+
"Route name": "Útvonal neve",
|
|
1123
|
+
"Route permissions": "Útvonal jogosultságok",
|
|
1124
|
+
"Routes": "Útvonalak",
|
|
1125
|
+
"Row click": "Row click",
|
|
1126
|
+
"Rows": "Rows",
|
|
1127
|
+
"SQL collection": "SQL gyűjtemény",
|
|
1128
|
+
"Save": "Mentés",
|
|
1129
|
+
"Save action": "Művelet mentése",
|
|
1130
|
+
"Save as block template": "Mentés blokk sablonként",
|
|
1131
|
+
"Save as inherited template": "Save as inherited template",
|
|
1132
|
+
"Save as reference template": "Save as reference template",
|
|
1133
|
+
"Save as template": "Mentés sablonként",
|
|
1134
|
+
"Save conditions": "Mentési feltételek",
|
|
1135
|
+
"Save failed": "Save failed",
|
|
1136
|
+
"Save mode": "Mentési mód",
|
|
1137
|
+
"Save record": "Rekord mentése",
|
|
1138
|
+
"Saved successfully": "Sikeresen mentve",
|
|
1139
|
+
"Scale": "Scale",
|
|
1140
|
+
"Scale Down": "Kicsinyítés",
|
|
1141
|
+
"Scan to input": "Scan to input",
|
|
1142
|
+
"Scheme": "Scheme",
|
|
1143
|
+
"Scientifix notation": "Tudományos jelölés",
|
|
1144
|
+
"Scope name": "Hatókör neve",
|
|
1145
|
+
"Screen size": "Képernyő mérete",
|
|
1146
|
+
"Search": "Keresés",
|
|
1147
|
+
"Search and select collection": "Keresés és gyűjtemény kiválasztása",
|
|
1148
|
+
"Search collections...": "Search collections...",
|
|
1149
|
+
"Search parameters": "Keresési paraméterek",
|
|
1150
|
+
"Search plugin": "Bővítmény keresése",
|
|
1151
|
+
"Search plugin...": "Bővítmény keresése...",
|
|
1152
|
+
"Second": "Másodperc",
|
|
1153
|
+
"Secondary confirmation": "Másodlagos megerősítés",
|
|
1154
|
+
"Security": "Biztonság",
|
|
1155
|
+
"Select": "Kiválasztás",
|
|
1156
|
+
"Select a source field to use metadata of the field": "Select a source field to use metadata of the field",
|
|
1157
|
+
"Select a variable": "Válasszon egy változót",
|
|
1158
|
+
"Select all": "Összes kiválasztása",
|
|
1159
|
+
"Select an existing piece of data as the initialization data for the form": "Válasszon egy meglévő adatdarabot az űrlap inicializáló adatának",
|
|
1160
|
+
"Select collection": "Gyűjtemény kiválasztása",
|
|
1161
|
+
"Select data blocks to refresh": "Select data blocks to refresh",
|
|
1162
|
+
"Select data source": "Adatforrás kiválasztása",
|
|
1163
|
+
"Select date": "Select date",
|
|
1164
|
+
"Select field": "Mező kiválasztása",
|
|
1165
|
+
"Select file": "Fájl kiválasztása",
|
|
1166
|
+
"Select form fields": "Select form fields",
|
|
1167
|
+
"Select grouping field": "Csoportosító mező kiválasztása",
|
|
1168
|
+
"Select icon": "Ikon kiválasztása",
|
|
1169
|
+
"Select level": "Szint kiválasztása",
|
|
1170
|
+
"Select mode": "Select mode",
|
|
1171
|
+
"Select record": "Rekord kiválasztása",
|
|
1172
|
+
"Select target action": "Select target action",
|
|
1173
|
+
"Select target block": "Select target block",
|
|
1174
|
+
"Select target form block": "Select target form block",
|
|
1175
|
+
"Select template": "Sablon kiválasztása",
|
|
1176
|
+
"Select trigger event": "Select trigger event",
|
|
1177
|
+
"Select variable": "Select variable",
|
|
1178
|
+
"Select view": "Nézet kiválasztása",
|
|
1179
|
+
"Selected": "Kiválasztott",
|
|
1180
|
+
"Selected Collections": "Selected Collections",
|
|
1181
|
+
"Selected records deleted successfully": "Selected records deleted successfully",
|
|
1182
|
+
"Selector": "Kiválasztó",
|
|
1183
|
+
"Selector mode": "Kiválasztó mód",
|
|
1184
|
+
"Selector setting": "Selector setting",
|
|
1185
|
+
"Send code": "Kód küldése",
|
|
1186
|
+
"Separate multiple values with comma or Enter": "Separate multiple values with comma or Enter",
|
|
1187
|
+
"Separator": "Elválasztó",
|
|
1188
|
+
"Set Template Engine": "Sablonmotor beállítása",
|
|
1189
|
+
"Set action state": "Set action state",
|
|
1190
|
+
"Set block height": "Blokk magasságának beállítása",
|
|
1191
|
+
"Set block layout": "Blokk elrendezésének beállítása",
|
|
1192
|
+
"Set block state": "Set block state",
|
|
1193
|
+
"Set button state": "Set button state",
|
|
1194
|
+
"Set condition": "Set condition",
|
|
1195
|
+
"Set data loading mode": "Adatok betöltési módjának beállítása",
|
|
1196
|
+
"Set data scope": "Set data scope",
|
|
1197
|
+
"Set default sorting rules": "Alapértelmezett rendezési szabályok beállítása",
|
|
1198
|
+
"Set default value": "Alapértelmezett érték beállítása",
|
|
1199
|
+
"Set details field state": "Set details field state",
|
|
1200
|
+
"Set field state": "Set field state",
|
|
1201
|
+
"Set field value": "Set field value",
|
|
1202
|
+
"Set form field state": "Set form field state",
|
|
1203
|
+
"Set form field value": "Set form field value",
|
|
1204
|
+
"Set state": "Set state",
|
|
1205
|
+
"Set the count of columns displayed in a row": "Állítsa be az egy sorban megjelenített oszlopok számát",
|
|
1206
|
+
"Set the data scope": "Adatkeret beállítása",
|
|
1207
|
+
"Set validation rules": "Érvényességi szabályok beállítása",
|
|
1208
|
+
"Set value": "Set value",
|
|
1209
|
+
"Setting": "Beállítás",
|
|
1210
|
+
"Settings": "Beállítások",
|
|
1211
|
+
"Show date range": "Show date range",
|
|
1212
|
+
"Show file name": "Fájlnév megjelenítése",
|
|
1213
|
+
"Show in menu": "Megjelenítés a menüben",
|
|
1214
|
+
"Show label": "Show label",
|
|
1215
|
+
"Show lunar": "Holdfázis megjelenítése",
|
|
1216
|
+
"Show message": "Show message",
|
|
1217
|
+
"Show notification": "Show notification",
|
|
1218
|
+
"Show row numbers": "Show row numbers",
|
|
1219
|
+
"Show time": "Idő megjelenítése",
|
|
1220
|
+
"Sign in": "Bejelentkezés",
|
|
1221
|
+
"Sign in via account": "Bejelentkezés fiókkal",
|
|
1222
|
+
"Sign in via phone": "Bejelentkezés telefonnal",
|
|
1223
|
+
"Sign in with another account": "Bejelentkezés másik fiókkal",
|
|
1224
|
+
"Sign out": "Kijelentkezés",
|
|
1225
|
+
"Sign up": "Regisztráció",
|
|
1226
|
+
"Sign up successfully, and automatically jump to the sign in page": "Sikeres regisztráció, automatikus átirányítás a bejelentkezési oldalra",
|
|
1227
|
+
"Signed up successfully. It will jump to the login page.": "Sikeres regisztráció. Átirányítás a bejelentkező oldalra.",
|
|
1228
|
+
"Simple string replacement, can be used to interpolate variables in a string.": "Egyszerű karakterlánc helyettesítés, változók interpolálására használható egy karakterláncban.",
|
|
1229
|
+
"Single line text": "Egysoros szöveg",
|
|
1230
|
+
"Single select": "Egyszeres kiválasztás",
|
|
1231
|
+
"Single select and radio fields can be used as the grouping field": "Egyszeres kiválasztás és rádiómezők használhatók csoportosító mezőként",
|
|
1232
|
+
"Size": "Méret",
|
|
1233
|
+
"Sizes": "Sizes",
|
|
1234
|
+
"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": "A táblázatrekordok teljes számának lekérdezésének kihagyása az oldalankénti betöltés felgyorsítása érdekében. Ezt az opciót ajánlott engedélyezni nagy mennyiségű adatot tartalmazó adatbázis-táblákhoz",
|
|
1235
|
+
"Skip required validation": "Kötelező érvényességi ellenőrzés kihagyása",
|
|
1236
|
+
"Small": "Kicsi",
|
|
1237
|
+
"SmartTv": "SmartTv",
|
|
1238
|
+
"Some files are not uploaded correctly, please check.": "Some files are not uploaded correctly, please check.",
|
|
1239
|
+
"Sorry, the page you visited does not exist.": "Sajnáljuk, a meglátogatott oldal nem létezik.",
|
|
1240
|
+
"Sort": "Rendezés",
|
|
1241
|
+
"Sortable": "Rendezhető",
|
|
1242
|
+
"Source collection": "Forrás gyűjtemény",
|
|
1243
|
+
"Source collections": "Forrás gyűjtemények",
|
|
1244
|
+
"Source key": "Forrás kulcs",
|
|
1245
|
+
"Specific properties": "Speciális tulajdonságok",
|
|
1246
|
+
"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.",
|
|
1247
|
+
"Specify height": "Magasság megadása",
|
|
1248
|
+
"Start": "Start",
|
|
1249
|
+
"Start accessor": "Start accessor",
|
|
1250
|
+
"Start date field": "Kezdő dátum mező",
|
|
1251
|
+
"State": "State",
|
|
1252
|
+
"Stay on current page": "Maradjon az aktuális oldalon",
|
|
1253
|
+
"Stay on the current popup or page": "Maradjon az aktuális felugró ablakban vagy oldalon",
|
|
1254
|
+
"Steps": "Steps",
|
|
1255
|
+
"Store the creation time of each record": "Minden rekord létrehozási idejének tárolása",
|
|
1256
|
+
"Store the creation user of each record": "Minden rekord létrehozó felhasználójának tárolása",
|
|
1257
|
+
"Store the last update time of each record": "Minden rekord utolsó frissítési idejének tárolása",
|
|
1258
|
+
"Store the last update user of each record": "Minden rekord utolsó frissítő felhasználójának tárolása",
|
|
1259
|
+
"Street": "Utca",
|
|
1260
|
+
"String": "Karakterlánc",
|
|
1261
|
+
"String template": "Karakterlánc sablon",
|
|
1262
|
+
"Style": "Stílus",
|
|
1263
|
+
"Sub-detail": "Sub-detail",
|
|
1264
|
+
"Sub-details": "Alapadatok",
|
|
1265
|
+
"Sub-form": "Alformany",
|
|
1266
|
+
"Sub-form(Popover)": "Alformany (Felugró)",
|
|
1267
|
+
"Sub-table": "Al-tábla",
|
|
1268
|
+
"Subform mode": "Alformázás mód",
|
|
1269
|
+
"Submit": "Mentés",
|
|
1270
|
+
"Submit action settings": "Submit action settings",
|
|
1271
|
+
"Submit record": "Submit record",
|
|
1272
|
+
"Submitted successfully": "Sikeresen benyújtva",
|
|
1273
|
+
"Subtable": "Al-tábla",
|
|
1274
|
+
"Subtable mode": "Al-tábla mód",
|
|
1275
|
+
"Successfully": "Successfully",
|
|
1276
|
+
"Suffix": "Utótag",
|
|
1277
|
+
"Super admin": "Szuperadmin",
|
|
1278
|
+
"Superior department": "Felsőbb osztály",
|
|
1279
|
+
"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)",
|
|
1280
|
+
"Support for a single or bulk upload.": "Támogatás egyedi vagy tömeges feltöltéshez.",
|
|
1281
|
+
"Switch role": "Szerepkör váltása",
|
|
1282
|
+
"Switching the picker, the value and default value will be cleared": "A kiválasztó váltásakor az érték és az alapértelmezett érték törlődik",
|
|
1283
|
+
"Sync from database": "Szinkronizálás adatbázisból",
|
|
1284
|
+
"Sync from form fields": "Szinkronizálás űrlapmezőkből",
|
|
1285
|
+
"Sync successfully": "Szinkronizálás sikeresen",
|
|
1286
|
+
"Syntax references": "Szintaxis hivatkozások",
|
|
1287
|
+
"System": "Rendszer",
|
|
1288
|
+
"System & security": "Rendszer és biztonság",
|
|
1289
|
+
"System fields": "Rendszer mezők",
|
|
1290
|
+
"System info": "Rendszerinformáció",
|
|
1291
|
+
"System management": "Rendszerkezelés",
|
|
1292
|
+
"System settings": "Rendszerbeállítások",
|
|
1293
|
+
"System title": "Rendszer címe",
|
|
1294
|
+
"System variables": "Rendszer változók",
|
|
1295
|
+
"Tab": "Fül",
|
|
1296
|
+
"Tab name": "Fül neve",
|
|
1297
|
+
"Table": "Tábla",
|
|
1298
|
+
"Table OID(Inheritance)": "Tábla OID (Öröklődés)",
|
|
1299
|
+
"Table column settings": "Table column settings",
|
|
1300
|
+
"Table density": "Table density",
|
|
1301
|
+
"Table selected records": "Tábla kiválasztott rekordok",
|
|
1302
|
+
"Table settings": "Table settings",
|
|
1303
|
+
"Table size": "Tábla mérete",
|
|
1304
|
+
"Tablet": "Tablet",
|
|
1305
|
+
"Tablet device": "Tablet eszköz",
|
|
1306
|
+
"Tag": "Címke",
|
|
1307
|
+
"Tag color field": "Címke szín mező",
|
|
1308
|
+
"Target": "Cél",
|
|
1309
|
+
"Target block UID": "Target block UID",
|
|
1310
|
+
"Target block uid": "Target block uid",
|
|
1311
|
+
"Target collection": "Cél gyűjtemény",
|
|
1312
|
+
"Target form block": "Target form block",
|
|
1313
|
+
"Target key": "Cél kulcs",
|
|
1314
|
+
"Target position": "Cél pozíció",
|
|
1315
|
+
"Template": "Template",
|
|
1316
|
+
"Template Data": "Sablon Adat",
|
|
1317
|
+
"Template engine": "Sablon motor",
|
|
1318
|
+
"Template fields": "Sablon mezők",
|
|
1319
|
+
"Template name": "Sablon neve",
|
|
1320
|
+
"Templates": "Sablonok",
|
|
1321
|
+
"Text": "Text",
|
|
1322
|
+
"Text Align": "Szöveg igazítása",
|
|
1323
|
+
"Text input": "Text input",
|
|
1324
|
+
"Text only": "Text only",
|
|
1325
|
+
"The application is reloading, please do not close the page.": "Az alkalmazás újratöltődik, kérjük, ne zárja be az oldalt.",
|
|
1326
|
+
"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).",
|
|
1327
|
+
"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?": "A bővítmény aktuális függőségi verziója nem egyezik meg az alkalmazás verziójával, és előfordulhat, hogy nem működik megfelelően. Biztosan folytatni szeretné a bővítmény engedélyezését?",
|
|
1328
|
+
"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}}\"",
|
|
1329
|
+
"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}}\"",
|
|
1330
|
+
"The current user only has the UI configuration permission, but don't have view permission for collection \"{{name}}\"": "A jelenlegi felhasználónak csak a felhasználói felület konfigurálási jogosultsága van, de nincs meg a nézet jogosultsága a \"{{name}}\" gyűjteményhez",
|
|
1331
|
+
"The deletion was successful.": "A törlés sikeres volt.",
|
|
1332
|
+
"The field has been deleted": "A mező törölve lett",
|
|
1333
|
+
"The field value cannot be greater than ": "A mező értéke nem lehet nagyobb, mint ",
|
|
1334
|
+
"The field value cannot be less than ": "A mező értéke nem lehet kevesebb, mint ",
|
|
1335
|
+
"The field value is not a email format": "The field value is not a email format",
|
|
1336
|
+
"The field value is not an integer number": "A mező értéke nem egész szám",
|
|
1337
|
+
"The field value is required": "The field value is required",
|
|
1338
|
+
"The following field types are not compatible and do not support output and display": "A következő mezőtípusok nem kompatibilisek, és nem támogatják a kimenetet és a megjelenítést",
|
|
1339
|
+
"The selected fields will automatically populate the form": "A kiválasztott mezők automatikusan kitöltik az űrlapot",
|
|
1340
|
+
"The title field is used to identify the template record": "A cím mező a sablonrekord azonosítására szolgál",
|
|
1341
|
+
"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.": "Ennek a változónak az értéke az oldal URL-jének lekérdezési karakterláncából származik. Ez a változó csak akkor használható normálisan, ha az oldalnak van lekérdezési karakterlánca.",
|
|
1342
|
+
"The will interrupt service, it may take a few seconds to restart. Are you sure to continue?": "Ez megszakítja a szolgáltatást, lehet, hogy néhány másodpercig tart az újraindítás. Biztosan folytatni szeretné?",
|
|
1343
|
+
"The {{type}} \"{{name}}\" may have been deleted. Please remove this {{blockType}}.": "A {{type}} \"{{name}}\" lehet, hogy törölve lett. Kérjük, távolítsa el ezt a {{blockType}}.",
|
|
1344
|
+
"Theme": "Téma",
|
|
1345
|
+
"Then": "Akkor",
|
|
1346
|
+
"Third party services": "Harmadik fél szolgáltatásai",
|
|
1347
|
+
"This Month": "Ez a hónap",
|
|
1348
|
+
"This Quarter": "Ez a negyedév",
|
|
1349
|
+
"This Week": "Ez a hét",
|
|
1350
|
+
"This Year": "Ez az év",
|
|
1351
|
+
"This and following events": "Ez és a következő események",
|
|
1352
|
+
"This event": "Ez az esemény",
|
|
1353
|
+
"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).",
|
|
1354
|
+
"This field is required": "This field is required",
|
|
1355
|
+
"This is a demo text, **supports Markdown syntax**.": "Ez egy bemutató szöveg, **támogatja a Markdown szintaxist**.",
|
|
1356
|
+
"This is likely a NocoBase internals bug. Please open an issue at <1>here</1>": "Valószínűleg ez egy NocoBase belső hiba. Kérjük, nyisson meg egy problémát itt: <1>itt</1>",
|
|
1357
|
+
"This month": "Ez a hónap",
|
|
1358
|
+
"This quarter": "Ez a negyedév",
|
|
1359
|
+
"This variable has been deprecated and can be replaced with \"Current form\"": "Ez a változó elavult, és helyettesíthető a \"Jelenlegi űrlap\"-pal",
|
|
1360
|
+
"This week": "Ez a hét",
|
|
1361
|
+
"This year": "Ez az év",
|
|
1362
|
+
"Through collection": "Gyűjteményen keresztül",
|
|
1363
|
+
"Time": "Idő",
|
|
1364
|
+
"Time format": "Időformátum",
|
|
1365
|
+
"Time scale": "Időskála",
|
|
1366
|
+
"Timeout config": "Timeout config",
|
|
1367
|
+
"Timestamp": "Timestamp",
|
|
1368
|
+
"Title": "Cím",
|
|
1369
|
+
"Title & description": "Title & description",
|
|
1370
|
+
"Title accessor": "Title accessor",
|
|
1371
|
+
"Title field": "Cím mező",
|
|
1372
|
+
"Title field component": "Title field component",
|
|
1373
|
+
"Title position": "Cím pozíció",
|
|
1374
|
+
"Today": "Ma",
|
|
1375
|
+
"Toggles the subfield mode": "A részmező mód váltása",
|
|
1376
|
+
"Tomorrow": "Holnap",
|
|
1377
|
+
"Tooltip": "Tooltip",
|
|
1378
|
+
"Top left": "Top left",
|
|
1379
|
+
"Top right": "Top right",
|
|
1380
|
+
"Total {{count}} items": "Összesen {{count}} tétel",
|
|
1381
|
+
"Tree collection": "Fa gyűjtemény",
|
|
1382
|
+
"Tree table": "Fa tábla",
|
|
1383
|
+
"Trigger condition": "Trigger condition",
|
|
1384
|
+
"Trigger event": "Trigger event",
|
|
1385
|
+
"Trigger workflow": "Munkafolyamat indítása",
|
|
1386
|
+
"Triggered when the row is clicked": "Akkor indul, amikor a sort rákattintanak",
|
|
1387
|
+
"True": "Igaz",
|
|
1388
|
+
"Try again": "Próbálja újra",
|
|
1389
|
+
"Turn pages": "Oldalak forgatása",
|
|
1390
|
+
"Two tone": "Két tónusú",
|
|
1391
|
+
"Type": "Típus",
|
|
1392
|
+
"UI Editor": "UI Szerkesztő",
|
|
1393
|
+
"UI editor": "UI szerkesztő",
|
|
1394
|
+
"URL": "URL",
|
|
1395
|
+
"URL search params": "URL keresési paraméterek",
|
|
1396
|
+
"UnSelect all": "Mindet törölje a kiválasztásból",
|
|
1397
|
+
"Unauthenticated. Please sign in to continue.": "Nem hitelesített. Kérjük, jelentkezzen be a folytatáshoz.",
|
|
1398
|
+
"Unconnected": "Nem csatlakozott",
|
|
1399
|
+
"Unicode characters are permitted": "Unicode characters are permitted",
|
|
1400
|
+
"Unique": "Egyedi",
|
|
1401
|
+
"Unit conversion": "Mértékegység átváltás",
|
|
1402
|
+
"Unix Timestamp": "Unix időbélyeg",
|
|
1403
|
+
"Unknown field type": "Ismeretlen mezőtípus",
|
|
1404
|
+
"Unnamed": "Névtelen",
|
|
1405
|
+
"Unpinned": "Unpinned",
|
|
1406
|
+
"Unsafe integer": "Unsafe integer",
|
|
1407
|
+
"Unsaved changes": "Mentetlen változások",
|
|
1408
|
+
"Update": "Frissítés",
|
|
1409
|
+
"Update all data?": "Minden adat frissítése?",
|
|
1410
|
+
"Update or create": "Frissítés vagy létrehozás",
|
|
1411
|
+
"Update plugin": "Bővítmény frissítése",
|
|
1412
|
+
"Update record": "Rekord frissítése",
|
|
1413
|
+
"Update record action": "Update record",
|
|
1414
|
+
"Update selected data?": "Kiválasztott adatok frissítése?",
|
|
1415
|
+
"Updated successfully": "Sikeresen frissítve",
|
|
1416
|
+
"UpdatedAt": "Frissítve",
|
|
1417
|
+
"UpdatedBy": "Frissítette",
|
|
1418
|
+
"Upgrade": "Frissítés",
|
|
1419
|
+
"Upload": "Feltöltés",
|
|
1420
|
+
"Upload file settings": "Upload file settings",
|
|
1421
|
+
"Upload new version": "Új verzió feltöltése",
|
|
1422
|
+
"Upload plugin": "Bővítmény feltöltése",
|
|
1423
|
+
"Uploading": "Uploading",
|
|
1424
|
+
"Use simple pagination mode": "Egyszerű lapozási mód használata",
|
|
1425
|
+
"Use the same time zone (GMT) for all users": "Minden felhasználó számára ugyanazt az időzónát (GMT) használja",
|
|
1426
|
+
"Used for drag and drop sorting scenarios, supporting grouping sorting": "Húzd és ejts rendezési forgatókönyvekhez használva, csoportosítási rendezés támogatásával",
|
|
1427
|
+
"User": "Felhasználó",
|
|
1428
|
+
"User not found. Please sign in again to continue.": "Felhasználó nem található. Kérjük, jelentkezzen be újra a folytatáshoz.",
|
|
1429
|
+
"User password changed, please signin again.": "A felhasználói jelszó megváltozott, kérjük, jelentkezzen be újra.",
|
|
1430
|
+
"Username": "Felhasználónév",
|
|
1431
|
+
"Users": "Felhasználók",
|
|
1432
|
+
"Users & permissions": "Felhasználók és jogosultságok",
|
|
1433
|
+
"Valid range: 10-40": "Valid range: 10-40",
|
|
1434
|
+
"Valid range: 100-900": "Valid range: 100-900",
|
|
1435
|
+
"Validation": "Validation",
|
|
1436
|
+
"Validation rule": "Érvényességi szabály",
|
|
1437
|
+
"Value": "Érték",
|
|
1438
|
+
"Variable identifier": "Variable identifier",
|
|
1439
|
+
"Variable title": "Variable title",
|
|
1440
|
+
"Verification code": "Ellenőrző kód",
|
|
1441
|
+
"Version": "Verzió",
|
|
1442
|
+
"Version range": "Verzió tartomány",
|
|
1443
|
+
"Vertical": "Függőleges",
|
|
1444
|
+
"View": "Nézet",
|
|
1445
|
+
"View all plugins": "Összes bővítmény megtekintése",
|
|
1446
|
+
"View record": "Rekord megtekintése",
|
|
1447
|
+
"Village": "Falu",
|
|
1448
|
+
"Visible": "Látható",
|
|
1449
|
+
"Volcano": "Tűzhányó",
|
|
1450
|
+
"Wearable": "Wearable",
|
|
1451
|
+
"Week": "Hét",
|
|
1452
|
+
"Weekly": "Hetente",
|
|
1453
|
+
"When a field is selected for grouping, it will be grouped first before sorting.": "Amikor egy mezőt csoportosításra választanak ki, azt először csoportosítják, mielőtt rendeznék.",
|
|
1454
|
+
"When condition is met": "When condition is met",
|
|
1455
|
+
"When condition is not met": "When condition is not met",
|
|
1456
|
+
"When submitting the following fields, the saved values are": "A következő mezők beküldésekor a mentett értékek a következők",
|
|
1457
|
+
"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",
|
|
1458
|
+
"When the Label exceeds the width": "Amikor a címke meghaladja a szélességet",
|
|
1459
|
+
"With condition": "With condition",
|
|
1460
|
+
"Without condition": "Without condition",
|
|
1461
|
+
"Work week": "Munka hét",
|
|
1462
|
+
"Workflow": "Munkafolyamat",
|
|
1463
|
+
"Wrap": "Wrap",
|
|
1464
|
+
"Wysiwyg": "Wysiwyg",
|
|
1465
|
+
"Year": "Év",
|
|
1466
|
+
"Year-Month-Day": "Év-Hónap-Nap",
|
|
1467
|
+
"Year/Month/Day": "Év/Hónap/ nap",
|
|
1468
|
+
"Yearly": "Évente",
|
|
1469
|
+
"Yes": "Igen",
|
|
1470
|
+
"Yesterday": "Tegnap",
|
|
1471
|
+
"Your session has expired. Please sign in again.": "A munkamenete lejárt. Kérjük, jelentkezzen be újra.",
|
|
1472
|
+
"conditions in the group": "conditions in the group",
|
|
1473
|
+
"contains": "tartalmaz",
|
|
1474
|
+
"data source": "adatforrás",
|
|
1475
|
+
"does not contain": "nem tartalmaz",
|
|
1476
|
+
"edit title": "cím szerkesztése",
|
|
1477
|
+
"ends with": "végződik",
|
|
1478
|
+
"exists": "létezik",
|
|
1479
|
+
"is": "egyezik",
|
|
1480
|
+
"is after": "utána van",
|
|
1481
|
+
"is any of": "bármelyike",
|
|
1482
|
+
"is before": "előtt van",
|
|
1483
|
+
"is between": "között van",
|
|
1484
|
+
"is empty": "üres",
|
|
1485
|
+
"is none of": "egyik sem",
|
|
1486
|
+
"is not": "nem egyezik",
|
|
1487
|
+
"is not empty": "nem üres",
|
|
1488
|
+
"is on or after": "egyezik vagy után",
|
|
1489
|
+
"is on or before": "egyezik vagy előtt",
|
|
1490
|
+
"item": "item",
|
|
1491
|
+
"items": "items",
|
|
1492
|
+
"loading": "betöltés",
|
|
1493
|
+
"name is required": "a név kötelező",
|
|
1494
|
+
"not ends with": "nem végződik",
|
|
1495
|
+
"not exists": "nem létezik",
|
|
1496
|
+
"not starts with": "nem kezdődik",
|
|
1497
|
+
"pixels": "pixelek",
|
|
1498
|
+
"re-download file": "fájl újratöltése",
|
|
1499
|
+
"starts with": "kezdődik",
|
|
1500
|
+
"tlds": "tlds",
|
|
1501
|
+
"visible": "visible",
|
|
1502
|
+
"{{#label}} email address doesn’t meet the required format": "{{#label}} email address doesn’t meet the required format",
|
|
1503
|
+
"{{#label}} is not allowed to be empty": "{{#label}} is not allowed to be empty",
|
|
1504
|
+
"{{#label}} is required": "{{#label}} is required",
|
|
1505
|
+
"{{#label}} length must be at least {{#limit}} characters long": "{{#label}} length must be at least {{#limit}} characters long",
|
|
1506
|
+
"{{#label}} length must be less than or equal to {{#limit}} characters long": "{{#label}} length must be less than or equal to {{#limit}} characters long",
|
|
1507
|
+
"{{#label}} length must be {{#limit}} characters long": "{{#label}} length must be {{#limit}} characters long",
|
|
1508
|
+
"{{#label}} must be a credit card": "{{#label}} must be a credit card",
|
|
1509
|
+
"{{#label}} must be a float or double": "{{#label}} must be a float or double",
|
|
1510
|
+
"{{#label}} must be a multiple of {{#multiple}}": "{{#label}} must be a multiple of {{#multiple}}",
|
|
1511
|
+
"{{#label}} must be a negative number": "{{#label}} must be a negative number",
|
|
1512
|
+
"{{#label}} must be a number": "{{#label}} must be a number",
|
|
1513
|
+
"{{#label}} must be a positive number": "{{#label}} must be a positive number",
|
|
1514
|
+
"{{#label}} must be a safe number": "{{#label}} must be a safe number",
|
|
1515
|
+
"{{#label}} must be a string": "{{#label}} must be a string",
|
|
1516
|
+
"{{#label}} must be a valid ISO 8601 date": "{{#label}} must be a valid ISO 8601 date",
|
|
1517
|
+
"{{#label}} must be a valid UUID": "{{#label}} must be a valid UUID",
|
|
1518
|
+
"{{#label}} must be a valid date": "{{#label}} must be a valid date",
|
|
1519
|
+
"{{#label}} must be a valid hostname": "{{#label}} must be a valid hostname",
|
|
1520
|
+
"{{#label}} must be a valid port": "{{#label}} must be a valid port",
|
|
1521
|
+
"{{#label}} must be a valid uri": "{{#label}} must be a valid uri",
|
|
1522
|
+
"{{#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",
|
|
1523
|
+
"{{#label}} must be an integer": "{{#label}} must be an integer",
|
|
1524
|
+
"{{#label}} must be greater than or equal to {{#limit}}": "{{#label}} must be greater than or equal to {{#limit}}",
|
|
1525
|
+
"{{#label}} must be greater than {{#limit}}": "{{#label}} must be greater than {{#limit}}",
|
|
1526
|
+
"{{#label}} must be in {{#format}} format": "{{#label}} must be in {{#format}} format",
|
|
1527
|
+
"{{#label}} must be less than or equal to {{#limit}}": "{{#label}} must be less than or equal to {{#limit}}",
|
|
1528
|
+
"{{#label}} must be less than {{#limit}}": "{{#label}} must be less than {{#limit}}",
|
|
1529
|
+
"{{#label}} must not have leading or trailing whitespace": "{{#label}} must not have leading or trailing whitespace",
|
|
1530
|
+
"{{#label}} must not have more than {{#limit}} decimal places": "{{#label}} must not have more than {{#limit}} decimal places",
|
|
1531
|
+
"{{#label}} must only contain alpha-numeric and underscore characters": "{{#label}} must only contain alpha-numeric and underscore characters",
|
|
1532
|
+
"{{#label}} must only contain alpha-numeric characters": "{{#label}} must only contain alpha-numeric characters",
|
|
1533
|
+
"{{#label}} must only contain hexadecimal characters": "{{#label}} must only contain hexadecimal characters",
|
|
1534
|
+
"{{#label}} must only contain lowercase characters": "{{#label}} must only contain lowercase characters",
|
|
1535
|
+
"{{#label}} must only contain uppercase characters": "{{#label}} must only contain uppercase characters",
|
|
1536
|
+
"{{#label}} with value \"{{#value}}\" fails to match the required pattern": "{{#label}} with value \"{{#value}}\" fails to match the required pattern",
|
|
1537
|
+
"{{#label}} with value \"{{#value}}\" fails to match the {{#name}} pattern": "{{#label}} with value \"{{#value}}\" fails to match the {{#name}} pattern",
|
|
1538
|
+
"{{#label}} with value \"{{#value}}\" matches the inverted pattern": "{{#label}} with value \"{{#value}}\" matches the inverted pattern",
|
|
1539
|
+
"{{#label}} with value \"{{#value}}\" matches the inverted {{#name}} pattern": "{{#label}} with value \"{{#value}}\" matches the inverted {{#name}} pattern",
|
|
1540
|
+
"{{count}} filter items": "{{count}} szűrőelem",
|
|
1541
|
+
"{{count}} more items": "{{count}} további elem",
|
|
1542
|
+
"≠": "≠",
|
|
1543
|
+
"≤": "≤",
|
|
1544
|
+
"≥": "≥"
|
|
1545
|
+
}
|