@nocobase/client 2.0.0-alpha.8 → 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/customVariable.d.ts +9 -0
- package/es/flow/actions/displayFieldComponent.d.ts +1 -1
- package/es/flow/actions/index.d.ts +7 -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/refreshTargetBlocks.d.ts +9 -0
- 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/FieldModelSelect.d.ts +10 -0
- package/es/flow/models/blocks/filter-form/FilterFormBlockModel.d.ts +4 -0
- package/es/flow/models/blocks/filter-form/FilterFormCustomItemModel.d.ts +13 -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/SourceCascader.d.ts +10 -0
- package/es/flow/models/blocks/filter-form/fields/FieldComponentProps.d.ts +13 -0
- package/es/flow/models/blocks/filter-form/fields/FilterFormCustomFieldModel.d.ts +36 -0
- package/es/flow/models/blocks/filter-form/fields/date-time/DateTimeFilterFieldModel.d.ts +8 -0
- package/es/flow/models/blocks/filter-form/fields/date-time/index.d.ts +1 -0
- package/es/flow/models/blocks/filter-form/fields/index.d.ts +1 -0
- package/es/flow/models/blocks/filter-form/index.d.ts +1 -0
- 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 +26499 -19157
- 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-DpvvwPtU.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 -1410
- package/lib/locale/zh-TW.js +0 -938
- /package/es/flow/{internal/utils → utils}/blockUtils.d.ts +0 -0
|
@@ -0,0 +1,1573 @@
|
|
|
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)": "(Sólo campos)",
|
|
4
|
+
"(currently not effective in sub-forms/sub-tables)": "(currently not effective in sub-forms/sub-tables)",
|
|
5
|
+
"12 hour": "12 horas",
|
|
6
|
+
"24 hour": "24 horas",
|
|
7
|
+
"<": "<",
|
|
8
|
+
"=": "=",
|
|
9
|
+
">": ">",
|
|
10
|
+
"ACL": "ACL",
|
|
11
|
+
"ASC": "ASC",
|
|
12
|
+
"Accept": "Aceptar",
|
|
13
|
+
"Access": "Acceso",
|
|
14
|
+
"Access control": "Access control",
|
|
15
|
+
"Accessible": "Accesible",
|
|
16
|
+
"Accuracy": "Accuracy",
|
|
17
|
+
"Action": "Action",
|
|
18
|
+
"Action after successful submission": "Action after successful submission",
|
|
19
|
+
"Action column": "Columna de acción",
|
|
20
|
+
"Action display name": "Mostrar nombre de acción",
|
|
21
|
+
"Action logs": "Acción logs",
|
|
22
|
+
"Action name": "Nombre de la acción",
|
|
23
|
+
"Action on existing records": "Acción sobre registros existentes",
|
|
24
|
+
"Action on new records": "Acción sobre nuevos registros",
|
|
25
|
+
"Action permission": "Permiso de acción",
|
|
26
|
+
"Action permissions": "Permisos de acción",
|
|
27
|
+
"Action scope": "Alcance de la acción",
|
|
28
|
+
"Action type": "Tipo de acción",
|
|
29
|
+
"Actions": "Acciones",
|
|
30
|
+
"Actions column": "Actions column",
|
|
31
|
+
"Add": "Añadir",
|
|
32
|
+
"Add & Update": "Add & Update",
|
|
33
|
+
"Add Markdown": "Add Markdown",
|
|
34
|
+
"Add action": "Add action",
|
|
35
|
+
"Add attach": "Añadir adjuntar",
|
|
36
|
+
"Add block": "Añadir bloque",
|
|
37
|
+
"Add card": "Añandir tarjeta",
|
|
38
|
+
"Add category": "Añadir categoría",
|
|
39
|
+
"Add child": "Añadir hijo",
|
|
40
|
+
"Add child route": "Agregar ruta secundaria",
|
|
41
|
+
"Add condition": "Añadir condición",
|
|
42
|
+
"Add condition group": "Añadir grupo de condiciones",
|
|
43
|
+
"Add event flow": "Add event flow",
|
|
44
|
+
"Add exportable field": "Añadir campo exportable",
|
|
45
|
+
"Add field": "Añadir campo",
|
|
46
|
+
"Add filter": "Añadir filtro",
|
|
47
|
+
"Add filter group": "Añadir grupo de filtros",
|
|
48
|
+
"Add group": "Añadir grupo",
|
|
49
|
+
"Add link": "Añadir enlace",
|
|
50
|
+
"Add linkage rule": "Añadir Regla de enlace",
|
|
51
|
+
"Add menu item": "Añadir elemento al menú",
|
|
52
|
+
"Add new": "Añadir nuevo",
|
|
53
|
+
"Add new mode": "Add new mode",
|
|
54
|
+
"Add option": "Añadir opción",
|
|
55
|
+
"Add page": "Añadir página",
|
|
56
|
+
"Add parameter": "Add parameter",
|
|
57
|
+
"Add plugin": "Add plugin",
|
|
58
|
+
"Add property": "Añadir propiedad",
|
|
59
|
+
"Add record": "Añadir registro",
|
|
60
|
+
"Add request header": "Add request header",
|
|
61
|
+
"Add role": "Añadir rol",
|
|
62
|
+
"Add rule": "Add rule",
|
|
63
|
+
"Add sort field": "Añadir campo de ordenación",
|
|
64
|
+
"Add step": "Add step",
|
|
65
|
+
"Add storage": "Añadir almacenamiento",
|
|
66
|
+
"Add tab": "Añadir pestaña",
|
|
67
|
+
"Add target block": "Add target block",
|
|
68
|
+
"Add template": "Add template",
|
|
69
|
+
"Add text": "Añadir texto",
|
|
70
|
+
"Add type": "Añadir tipo",
|
|
71
|
+
"Add validation rule": "Añadir regla de validación",
|
|
72
|
+
"Add variable": "Add variable",
|
|
73
|
+
"Add {{type}} after \"{{title}}\"": "Añadir {{type}} después de \"{{title}}\"",
|
|
74
|
+
"Add {{type}} before \"{{title}}\"": "Añadir {{type}} antes de \"{{title}}\"",
|
|
75
|
+
"Add {{type}} in \"{{title}}\"": "Añadir {{type}} en \"{{title}}\"",
|
|
76
|
+
"Advanced type": "Avanzado",
|
|
77
|
+
"After": "Después",
|
|
78
|
+
"After change": "Después del cambio",
|
|
79
|
+
"After clicking the custom button, the following field values will be assigned according to the following form.": "Después de hacer clic en el botón personalizado, los siguientes valores de campo se asignarán de acuerdo con el siguiente formulario",
|
|
80
|
+
"After clicking the custom button, the following fields of the current record will be saved according to the following form.": "Después de hacer clic en el botón personalizado, los siguientes campos del registro actual se guardarán de acuerdo con el siguiente formulario",
|
|
81
|
+
"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.": "Después de ocultar, este menú ya no aparecerá en la barra de menú. Para mostrarlo de nuevo, debe ir a la página de administración de rutas para configurarlo.",
|
|
82
|
+
"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.": "Después de ocultar, esta pestaña ya no aparecerá en la barra de pestañas. Para mostrarla de nuevo, deberás ir a la página de gestión de rutas para configurarla.",
|
|
83
|
+
"After successful bulk update": "Tras una actualización en masa correcta",
|
|
84
|
+
"After successful request": "Tras petición correcta",
|
|
85
|
+
"After successful save": "Tras guardar correctamente",
|
|
86
|
+
"After successful submission": "Tras el envío correcto",
|
|
87
|
+
"After successful submission, the selected data blocks will be automatically refreshed.": "Después de enviar correctamente, los bloques de datos seleccionados se actualizarán automáticamente.",
|
|
88
|
+
"After successful update": "Tras actualización correcta",
|
|
89
|
+
"Agenda": "Agenda",
|
|
90
|
+
"Aliyun OSS": "Aliyun OSS",
|
|
91
|
+
"All": "Todos",
|
|
92
|
+
"All collections": "Todas las colecciones",
|
|
93
|
+
"All collections use general action permissions by default; permission configured individually will override the default one.": "Todas las colecciones utilizan permisos de acción generales por defecto; el permiso configurado individualmente anulará el predeterminado",
|
|
94
|
+
"All events": "Todos los eventos",
|
|
95
|
+
"All plugin settings": "Configuración de todos los plugins",
|
|
96
|
+
"All records": "Todos los registros",
|
|
97
|
+
"Allow": "Permitir",
|
|
98
|
+
"Allow access": "Permitir acceso",
|
|
99
|
+
"Allow action": "Permitir acción",
|
|
100
|
+
"Allow add new": "Allow add new",
|
|
101
|
+
"Allow add new data": "Allow add new data",
|
|
102
|
+
"Allow add new, update and delete actions": "Allow add new, update and delete actions",
|
|
103
|
+
"Allow adding records to the current collection": "Permitir añadir registros a la colección actual",
|
|
104
|
+
"Allow disassociation": "Allow disassociation",
|
|
105
|
+
"Allow dissociate": "Allow dissociate",
|
|
106
|
+
"Allow linking to multiple records": "Permitir enlazar múltiples registros",
|
|
107
|
+
"Allow list": "Allow list",
|
|
108
|
+
"Allow multiple": "Allow multiple",
|
|
109
|
+
"Allow multiple selection": "Permitir selección múltiple",
|
|
110
|
+
"Allow relative URIs": "Allow relative URIs",
|
|
111
|
+
"Allow selection of existing file": "Allow selection of existing file",
|
|
112
|
+
"Allow selection of existing records": "Allow selection of existing records",
|
|
113
|
+
"Allow sign up": "Permitir el registro",
|
|
114
|
+
"Allow to configure plugins": "Permitir configurar plugins",
|
|
115
|
+
"Allow to desgin pages": "Permitir diseñar páginas",
|
|
116
|
+
"Allow to manage plugins": "Permitir gestionar plugins",
|
|
117
|
+
"Allow uploading multiple files": "Permitir la carga de varios archivos",
|
|
118
|
+
"Allows configuration of the whole system, including UI, collections, permissions, etc.": "Permite configurar todo el sistema, incluyendo UI, colecciones, permisos, etc.",
|
|
119
|
+
"Allows to clear cache, reboot application": "Allows to clear cache, reboot application",
|
|
120
|
+
"Allows to configure interface": "Permite configurar la interfaz",
|
|
121
|
+
"Allows to configure plugins": "Permite configurar plugins",
|
|
122
|
+
"Allows to install, activate, disable plugins": "Permitir instalar, activar, desactivar plugins",
|
|
123
|
+
"Allows unencoded square brackets inside the query string": "Allows unencoded square brackets inside the query string",
|
|
124
|
+
"Alphabet": "Alphabet",
|
|
125
|
+
"Amazon S3": "Amazon S3",
|
|
126
|
+
"Any": "Any",
|
|
127
|
+
"App error": "App error",
|
|
128
|
+
"Application reloading": "Application reloading",
|
|
129
|
+
"Are you sure to delete this plugin?": "¿Estás seguro de eliminar este plugin?",
|
|
130
|
+
"Are you sure to disable this plugin?": "Are you sure to disable this plugin?",
|
|
131
|
+
"Are you sure you don't want to save?": "¿Seguro que no quieres guardar?",
|
|
132
|
+
"Are you sure you want to clear cache ?": "Are you sure you want to clear cache ?",
|
|
133
|
+
"Are you sure you want to delete it?": "¿Seguro que quieres borrarlo?",
|
|
134
|
+
"Are you sure you want to delete this variable?": "Are you sure you want to delete this variable?",
|
|
135
|
+
"Are you sure you want to disassociate it?": "¿Seguro que quieres desasociarlo?",
|
|
136
|
+
"Are you sure you want to hide these routes in menu?": "¿Estás seguro de que quieres ocultar estas rutas en el menú?",
|
|
137
|
+
"Are you sure you want to hide this menu?": "¿Estás seguro de que quieres ocultar este menú?",
|
|
138
|
+
"Are you sure you want to hide this tab?": "¿Estás seguro de que quieres ocultar esta pestaña?",
|
|
139
|
+
"Are you sure you want to load {{count}} collection(s)?": "Are you sure you want to load {{count}} collection(s)?",
|
|
140
|
+
"Are you sure you want to perform the Custom request action": "Are you sure you want to perform the Custom request action",
|
|
141
|
+
"Are you sure you want to perform the Refresh action?": "Are you sure you want to perform the Refresh action?",
|
|
142
|
+
"Are you sure you want to perform the Submit action?": "Are you sure you want to perform the Submit action?",
|
|
143
|
+
"Are you sure you want to perform the Trigger workflow action?": "Are you sure you want to perform the Trigger workflow action?",
|
|
144
|
+
"Are you sure you want to perform the Update record action?": "Are you sure you want to perform the Update record action?",
|
|
145
|
+
"Are you sure you want to perform the {{title}} action?": "Are you sure you want to perform the {{title}} action?",
|
|
146
|
+
"Are you sure you want to save it?": "Are you sure you want to save it?",
|
|
147
|
+
"Are you sure you want to show these routes in menu?": "¿Estás seguro de que quieres mostrar estas rutas en el menú?",
|
|
148
|
+
"Area": "Zona",
|
|
149
|
+
"Area chart": "Gráfico de áreas",
|
|
150
|
+
"Assign data scope for the template": "Assign data scope for the template",
|
|
151
|
+
"Assign field values": "Asignar valores de campo",
|
|
152
|
+
"Assign value": "Assign value",
|
|
153
|
+
"Assignment mode": "Assignment mode",
|
|
154
|
+
"Associate": "Associate",
|
|
155
|
+
"Associated records": "Registros asociados",
|
|
156
|
+
"Association field settings": "Association field settings",
|
|
157
|
+
"Association fields": "Campos de asociación",
|
|
158
|
+
"Association fields filter": "Filtro de campos de asociación",
|
|
159
|
+
"Association select settings": "Association select settings",
|
|
160
|
+
"Association table settings": "Association table settings",
|
|
161
|
+
"Association tag settings": "Association tag settings",
|
|
162
|
+
"AssociationField component": "AssociationField component",
|
|
163
|
+
"Attachment": "Adjunto",
|
|
164
|
+
"Attempts to encode the URI using encodeURI before validating it again": "Attempts to encode the URI using encodeURI before validating it again",
|
|
165
|
+
"Audit logs": "Registros de auditoría",
|
|
166
|
+
"Authentication": "Authentication",
|
|
167
|
+
"Author": "Autor",
|
|
168
|
+
"Auto": "Automático",
|
|
169
|
+
"Auto focus": "Auto focus",
|
|
170
|
+
"Auto increment": "Auto increment",
|
|
171
|
+
"AutoGenId": "Campo ID autogenerado",
|
|
172
|
+
"Automatic close": "Cierre automático",
|
|
173
|
+
"Automatically drop objects that depend on the collection (such as views), and in turn all objects that depend on those objects": "Automatically drop objects that depend on the collection (such as views), and in turn all objects that depend on those objects",
|
|
174
|
+
"Automatically generate default values": "Automatically generate default values",
|
|
175
|
+
"Automatically remove heading and tailing spaces": "Automatically remove heading and tailing spaces",
|
|
176
|
+
"Automatically update timestamp on update": "Automatically update timestamp on update",
|
|
177
|
+
"Automatically update timestamp to the current server time on update": "Automatically update timestamp to the current server time on update",
|
|
178
|
+
"Available \"target blocks\" are all data blocks on the current page": "Available \"target blocks\" are all data blocks on the current page",
|
|
179
|
+
"Available Collections": "Available Collections",
|
|
180
|
+
"Background Color": "Background Color",
|
|
181
|
+
"Bar chart": "Gráfico de barras",
|
|
182
|
+
"Base": "Base",
|
|
183
|
+
"Basic": "Básico",
|
|
184
|
+
"Basic configuration": "Basic configuration",
|
|
185
|
+
"Before": "Antes",
|
|
186
|
+
"Before change": "Antes del cambio",
|
|
187
|
+
"Before render": "Before render",
|
|
188
|
+
"Blank block": "Bloque en blanco",
|
|
189
|
+
"Block": "Block",
|
|
190
|
+
"Block Linkage rules": "Block Linkage rules",
|
|
191
|
+
"Block linkage rules": "Block linkage rules",
|
|
192
|
+
"Block list": "Block list",
|
|
193
|
+
"Block template": "Plantilla de bloque",
|
|
194
|
+
"Block templates": "Bloquear plantillas",
|
|
195
|
+
"Block title": "Título del bloque",
|
|
196
|
+
"Block type": "Tipo de bloque",
|
|
197
|
+
"Blocks": "Blocks",
|
|
198
|
+
"Blue": "Azul",
|
|
199
|
+
"Bookmark": "Marcador",
|
|
200
|
+
"Boolean": "Boolean",
|
|
201
|
+
"Bottom left": "Bottom left",
|
|
202
|
+
"Bottom right": "Bottom right",
|
|
203
|
+
"Bucket": "Bucket",
|
|
204
|
+
"Built-in": "Integrado",
|
|
205
|
+
"Bulk edit": "Edición en masa",
|
|
206
|
+
"Bulk enable": "Bulk enable",
|
|
207
|
+
"Bulk update": "Actualización en masa",
|
|
208
|
+
"Button background color": "Color de fondo del botón",
|
|
209
|
+
"Button icon": "Icono del botón",
|
|
210
|
+
"Button settings": "Button settings",
|
|
211
|
+
"Button title": "Título del botón",
|
|
212
|
+
"Button type": "Button type",
|
|
213
|
+
"Calculation engine": "Calculation engine",
|
|
214
|
+
"Calendar": "Calendario",
|
|
215
|
+
"Calendar Month": "Calendar Month",
|
|
216
|
+
"Calendar Year": "Calendar Year",
|
|
217
|
+
"Calendar collection": "Colección de calendarios",
|
|
218
|
+
"Calendar week": "Calendar week",
|
|
219
|
+
"Cancel": "Cancelar",
|
|
220
|
+
"Cannot find the model instance with UID": "Cannot find the model instance with UID",
|
|
221
|
+
"Card settings": "Card settings",
|
|
222
|
+
"Cascade Select": "Cascade Select",
|
|
223
|
+
"Cascade select": "Cascade select",
|
|
224
|
+
"Cascade select settings": "Cascade select settings",
|
|
225
|
+
"Categories": "categorías",
|
|
226
|
+
"Category name": "Nombre de Categoría",
|
|
227
|
+
"Center": "Center",
|
|
228
|
+
"Change password": "Cambiar contraseña",
|
|
229
|
+
"Changed to": "Cambiado a",
|
|
230
|
+
"Changelog": "Registro de cambios",
|
|
231
|
+
"Chart blocks": "Bloques de gráficos",
|
|
232
|
+
"Chart config": "Configuración del gráfico",
|
|
233
|
+
"Chart title": "Título del gráfico",
|
|
234
|
+
"Chart type": "Tipo del gráfico",
|
|
235
|
+
"Check strength": "Check strength",
|
|
236
|
+
"Checkbox": "Casilla de verificación",
|
|
237
|
+
"Checkbox group": "Grupo de checkbox",
|
|
238
|
+
"Children": "Children",
|
|
239
|
+
"China region": "Región de China",
|
|
240
|
+
"Choices": "Opciones",
|
|
241
|
+
"Choices fields": "Choices fields",
|
|
242
|
+
"City": "Ciudad",
|
|
243
|
+
"Classic page (v1)": "Classic page (v1)",
|
|
244
|
+
"Clear": "Borrar",
|
|
245
|
+
"Clear cache": "Clear cache",
|
|
246
|
+
"Clear default value": "Borrar valor por defecto",
|
|
247
|
+
"Click": "Click",
|
|
248
|
+
"Click event": "Click event",
|
|
249
|
+
"Click or drag file to this area to upload": "Click or drag file to this area to upload",
|
|
250
|
+
"Click the \"UI Editor\" icon in the upper right corner to enter the UI Editor mode": "Haga clic en el icono \"Editor de UI\" en la esquina superior derecha para entrar en el modo de Editor de UI.",
|
|
251
|
+
"Clicked row record": "Clicked row record",
|
|
252
|
+
"Close": "Cerrar",
|
|
253
|
+
"Collapse": "Colapsar",
|
|
254
|
+
"Collapse all": "Contraer todo",
|
|
255
|
+
"Collapse button": "Collapse",
|
|
256
|
+
"Collapse settings": "Collapse settings",
|
|
257
|
+
"Collapsed rows": "Collapsed rows",
|
|
258
|
+
"Collection": "Colección",
|
|
259
|
+
"Collection category": "Categoría de colección",
|
|
260
|
+
"Collection display name": "Nombre para mostrar colección",
|
|
261
|
+
"Collection fields": "Collection fields",
|
|
262
|
+
"Collection manager": "Gestor de colecciones",
|
|
263
|
+
"Collection name": "Nombre de la colección",
|
|
264
|
+
"Collection selector": "Collection selector",
|
|
265
|
+
"Collection template": "Plantilla de colección",
|
|
266
|
+
"Collections": "Collections",
|
|
267
|
+
"Collections & Fields": "Colección & Campos",
|
|
268
|
+
"Colon": "Colon",
|
|
269
|
+
"Color": "Color",
|
|
270
|
+
"Column": "Column",
|
|
271
|
+
"Column Settings": "Configuración de columnas",
|
|
272
|
+
"Column chart": "Gráfico de columnas",
|
|
273
|
+
"Column title": "column title",
|
|
274
|
+
"Column width": "Ancho de columna",
|
|
275
|
+
"Coming soon...": "Próximamente...",
|
|
276
|
+
"Compact theme": "Compact theme",
|
|
277
|
+
"Comparision": "Comparación",
|
|
278
|
+
"Comparison": "Comparison",
|
|
279
|
+
"Component properties": "Component properties",
|
|
280
|
+
"Compressed file url": "URL del archivo comprimido",
|
|
281
|
+
"Computer": "Computer",
|
|
282
|
+
"Condition": "Condición",
|
|
283
|
+
"Conditional assignment": "Conditional assignment",
|
|
284
|
+
"Configuration saved": "Configuration saved",
|
|
285
|
+
"Configuration:": "Configuration:",
|
|
286
|
+
"Configure": "Configurar",
|
|
287
|
+
"Configure actions": "Configurar acciones",
|
|
288
|
+
"Configure calendar": "Configurar calendario",
|
|
289
|
+
"Configure columns": "Configurar columnas",
|
|
290
|
+
"Configure field": "Configure field",
|
|
291
|
+
"Configure fields": "Configurar campos",
|
|
292
|
+
"Configure fields of {{title}}": "Configurar campos de {{title}}",
|
|
293
|
+
"Configure page": "Configure page",
|
|
294
|
+
"Configure permission": "Configurar permiso",
|
|
295
|
+
"Configure permissions": "Configurar permisos",
|
|
296
|
+
"Configure rows": "Configure rows",
|
|
297
|
+
"Configure the rows and columns of the grid.": "Configure the rows and columns of the grid.",
|
|
298
|
+
"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.",
|
|
299
|
+
"Confirm": "Confirm",
|
|
300
|
+
"Confirm Load Collections": "Confirm Load Collections",
|
|
301
|
+
"Confirm password": "Confirmar contraseña",
|
|
302
|
+
"Confirmation": "Confirmation",
|
|
303
|
+
"Connect data blocks": "Conectar bloques de datos",
|
|
304
|
+
"Connect fields": "Connect fields",
|
|
305
|
+
"Connect to database view": "Conectarse a la vista de la base de datos",
|
|
306
|
+
"Console": "Console",
|
|
307
|
+
"Constant": "Constant",
|
|
308
|
+
"Constant value": "Valor constante",
|
|
309
|
+
"Contain": "Contener",
|
|
310
|
+
"Content": "Content",
|
|
311
|
+
"Content overflow display mode": "Content overflow display mode",
|
|
312
|
+
"Content settings": "Content settings",
|
|
313
|
+
"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.",
|
|
314
|
+
"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.",
|
|
315
|
+
"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.",
|
|
316
|
+
"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.",
|
|
317
|
+
"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.",
|
|
318
|
+
"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.",
|
|
319
|
+
"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.",
|
|
320
|
+
"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.",
|
|
321
|
+
"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.",
|
|
322
|
+
"Convert reference to duplicate": "Convertir referencia a duplicado",
|
|
323
|
+
"Convert template to duplicate": "Convert template to duplicate",
|
|
324
|
+
"Copy": "Copy",
|
|
325
|
+
"Copy into the form and continue to fill in": "Copy into the form and continue to fill in",
|
|
326
|
+
"Cover": "Cubrir",
|
|
327
|
+
"Create": "Create",
|
|
328
|
+
"Create an account": "Crear una cuenta",
|
|
329
|
+
"Create calendar block": "Crear bloque de calendario",
|
|
330
|
+
"Create collection": "Crear colección",
|
|
331
|
+
"Create form": "Crear formulario",
|
|
332
|
+
"Create gantt block": "Crear bloque Gantt",
|
|
333
|
+
"Create inverse field in the target collection": "Crear campo inverso en la colección de destino",
|
|
334
|
+
"Create kanban block": "Crear bloque kanban",
|
|
335
|
+
"Create template": "Crear plantilla",
|
|
336
|
+
"Created at": "Creado el",
|
|
337
|
+
"Created by": "Creado por",
|
|
338
|
+
"CreatedAt": "Registro de la hora de creación de una fila",
|
|
339
|
+
"CreatedBy": "Registro del usuario creado de una fila",
|
|
340
|
+
"Current action": "Current action",
|
|
341
|
+
"Current block": "Current block",
|
|
342
|
+
"Current collection": "Colección actual",
|
|
343
|
+
"Current device type": "Current device type",
|
|
344
|
+
"Current form": "Current form",
|
|
345
|
+
"Current object": "Current object",
|
|
346
|
+
"Current popup": "Current popup",
|
|
347
|
+
"Current popup parent record": "Current popup parent record",
|
|
348
|
+
"Current popup record": "Registro actual del popup",
|
|
349
|
+
"Current record": "Registro actual",
|
|
350
|
+
"Current record blocks": "Bloques de registro actuales",
|
|
351
|
+
"Current role": "Rol actual",
|
|
352
|
+
"Current time": "Hora actual",
|
|
353
|
+
"Current user": "Usuario actual",
|
|
354
|
+
"Custom": "Personalizada",
|
|
355
|
+
"Custom Title": "Título personalizado",
|
|
356
|
+
"Custom column name": "Nombre de columna personalizado",
|
|
357
|
+
"Custom column title": "Título personalizado de la columna",
|
|
358
|
+
"Custom field": "Custom field",
|
|
359
|
+
"Custom field display name": "Personalizar nombre para mostrar campo",
|
|
360
|
+
"Custom name": "Nombre personalizado",
|
|
361
|
+
"Custom request": "Petición personalizada",
|
|
362
|
+
"Custom title": "Título personalizado",
|
|
363
|
+
"Custom variable": "Custom variable",
|
|
364
|
+
"Customize": "Personalizar",
|
|
365
|
+
"Cyan": "Cian",
|
|
366
|
+
"DESC": "DESC",
|
|
367
|
+
"Daily": "Diario",
|
|
368
|
+
"Danger action": "Danger action",
|
|
369
|
+
"Danger red": "Peligro rojo",
|
|
370
|
+
"Dashed": "Dashed",
|
|
371
|
+
"Data Model": "Data Model",
|
|
372
|
+
"Data blocks": "Bloques de datos",
|
|
373
|
+
"Data changes": "Modificar datos",
|
|
374
|
+
"Data fields": "Data fields",
|
|
375
|
+
"Data loading mode": "Modo de carga de datos",
|
|
376
|
+
"Data model": "Data model",
|
|
377
|
+
"Data model tools": "Data model tools",
|
|
378
|
+
"Data refreshed successfully": "Data refreshed successfully",
|
|
379
|
+
"Data scope": "Ámbito de datos",
|
|
380
|
+
"Data source": "fuente de datos",
|
|
381
|
+
"Data source key": "Data source key",
|
|
382
|
+
"Data source permissions": "Data source permissions",
|
|
383
|
+
"Data sources": "Data sources",
|
|
384
|
+
"Data template": "Plantilla de datos",
|
|
385
|
+
"Data will be updated": "Se actualizarán los datos",
|
|
386
|
+
"DataSource": "Fuente de datos",
|
|
387
|
+
"Date": "Fecha",
|
|
388
|
+
"Date & Time": "Fecha y hora",
|
|
389
|
+
"Date display format": "Date display format",
|
|
390
|
+
"Date format": "Formato de fecha",
|
|
391
|
+
"Date range limit": "Date range limit",
|
|
392
|
+
"Date scope": "Date scope",
|
|
393
|
+
"Date variables": "Variables de fecha",
|
|
394
|
+
"Date variables(Deprecated)": "Date variables(Deprecated)",
|
|
395
|
+
"DateOnly": "DateOnly",
|
|
396
|
+
"Datetime": "Datetime",
|
|
397
|
+
"Datetime (with time zone)": "Datetime (with time zone)",
|
|
398
|
+
"Datetime (without time zone)": "Datetime (without time zone)",
|
|
399
|
+
"Datetime settings": "Datetime settings",
|
|
400
|
+
"Day": "Día",
|
|
401
|
+
"Day before yesterday": "Day before yesterday",
|
|
402
|
+
"Day/Month/Year": "Día/Mes/Año",
|
|
403
|
+
"Default": "Por defecto",
|
|
404
|
+
"Default collapse": "Contraer por defecto",
|
|
405
|
+
"Default collapsed": "Default collapsed",
|
|
406
|
+
"Default expand all": "Default expand all",
|
|
407
|
+
"Default filter conditions": "Default filter conditions",
|
|
408
|
+
"Default is the ID field": "Por defecto es el campo ID",
|
|
409
|
+
"Default operator": "Default operator",
|
|
410
|
+
"Default role": "Rol por defecto",
|
|
411
|
+
"Default sorting": "Default sorting",
|
|
412
|
+
"Default storage": "Almacenamiento por defecto",
|
|
413
|
+
"Default theme": "Default theme",
|
|
414
|
+
"Default title for each record": "Default title for each record",
|
|
415
|
+
"Default value": "Valor por defecto",
|
|
416
|
+
"Default value to current server time": "Default value to current server time",
|
|
417
|
+
"Default value to current time": "Default value to current time",
|
|
418
|
+
"Delete": "Borrar",
|
|
419
|
+
"Delete Event": "Borrar evento",
|
|
420
|
+
"Delete action": "Acción de eliminar",
|
|
421
|
+
"Delete block": "Eliminar bloque",
|
|
422
|
+
"Delete category": "Borrar categoría",
|
|
423
|
+
"Delete collection": "Delete collection",
|
|
424
|
+
"Delete events": "Borrar eventos",
|
|
425
|
+
"Delete field": "Borrar campo",
|
|
426
|
+
"Delete menu item": "Borrar elemento de menú",
|
|
427
|
+
"Delete record": "Eliminar registro",
|
|
428
|
+
"Delete role": "Eliminar función",
|
|
429
|
+
"Delete route": "Eliminar ruta",
|
|
430
|
+
"Delete routes": "Eliminar rutas",
|
|
431
|
+
"Delete settings": "Delete settings",
|
|
432
|
+
"Delete step": "Delete step",
|
|
433
|
+
"Delete table column": "Eliminar columna de tabla",
|
|
434
|
+
"Delete this event?": "¿Borrar este evento?",
|
|
435
|
+
"Delete this target block": "Delete this target block",
|
|
436
|
+
"Delete variable": "Delete variable",
|
|
437
|
+
"Deny list": "Deny list",
|
|
438
|
+
"Department name": "Department name",
|
|
439
|
+
"Departments": "Departments",
|
|
440
|
+
"Dependencies check": "Comprobación de dependencias",
|
|
441
|
+
"Dependencies check failed": "Error en la comprobación de dependencias",
|
|
442
|
+
"Dependencies check failed, can't enable.": "Error en la comprobación de dependencias, no se puede habilitar.",
|
|
443
|
+
"Dependencies compatibility check": "Comprobación de compatibilidad de dependencias",
|
|
444
|
+
"Deprecated": "Obsoleto",
|
|
445
|
+
"Description": "Descripción",
|
|
446
|
+
"Desktop device": "Desktop device",
|
|
447
|
+
"Desktop routes": "Rutas de escritorio",
|
|
448
|
+
"Destination": "Destino",
|
|
449
|
+
"Detail item settings": "Detail item settings",
|
|
450
|
+
"Details": "Detalles",
|
|
451
|
+
"Details settings": "Details settings",
|
|
452
|
+
"Determine whether a record exists by the following fields": "Determine whether a record exists by the following fields",
|
|
453
|
+
"Dialog": "Diálogo",
|
|
454
|
+
"Direct assignment": "Direct assignment",
|
|
455
|
+
"Direct duplicate": "Direct duplicate",
|
|
456
|
+
"Disable": "Disable",
|
|
457
|
+
"Disable manual input": "Disable manual input",
|
|
458
|
+
"Disable tabs": "Desactivar pestañas",
|
|
459
|
+
"Disable validation": "Disable validation",
|
|
460
|
+
"Disabled": "Desactivado",
|
|
461
|
+
"Disassociate": "Desasociar",
|
|
462
|
+
"Disassociate record": "Desasociar registro",
|
|
463
|
+
"Display <1><0>10</0><1>20</1><2>50</2><3>100</3></1> items per page": "Mostrar <1><0>10</0><1>20</1><2>50</2><3>100</3></1> elementos por página",
|
|
464
|
+
"Display <icon></icon> when unchecked": "Display <icon></icon> when unchecked",
|
|
465
|
+
"Display Field settings": "Display Field settings",
|
|
466
|
+
"Display association fields": "Mostrar campos de asociación",
|
|
467
|
+
"Display field title": "Mostrar título de campo",
|
|
468
|
+
"Display fields": "Mostrar campos de colección",
|
|
469
|
+
"Display label": "Display label",
|
|
470
|
+
"Display mode": "Display mode",
|
|
471
|
+
"Display name": "Nombre para mostrar",
|
|
472
|
+
"Display only": "Display only",
|
|
473
|
+
"Display order number": "Mostrar número de orden",
|
|
474
|
+
"Display page title": "Display page title",
|
|
475
|
+
"Display style": "Display style",
|
|
476
|
+
"Display title": "Display title",
|
|
477
|
+
"DisplayName": "Nombre para mostrar",
|
|
478
|
+
"Divide by": "Divide by",
|
|
479
|
+
"Divider line color": "Divider line color",
|
|
480
|
+
"Do not concatenate search params in the URL": "Do not concatenate search params in the URL",
|
|
481
|
+
"Do not load data when filter is empty": "No cargar datos cuando el filtro esté vacío",
|
|
482
|
+
"Docs": "Docs",
|
|
483
|
+
"Domains ending with a . character are permitted": "Domains ending with a . character are permitted",
|
|
484
|
+
"Done": "Listo",
|
|
485
|
+
"Double click": "Double click",
|
|
486
|
+
"Double click to choose entire object": "Double click to choose entire object",
|
|
487
|
+
"Download": "Download",
|
|
488
|
+
"Download logs": "Download logs",
|
|
489
|
+
"Drag and drop sorting field": "Drag and drop sorting field",
|
|
490
|
+
"Drag and drop the file here or click to upload, file size should not exceed 30M": "Arrastra y suelta el archivo aquí o haz clic para subirlo, el tamaño del archivo no debe superar los 30M",
|
|
491
|
+
"Dragging": "Arrastrando",
|
|
492
|
+
"Drawer": "Cajón",
|
|
493
|
+
"Dropdown": "Dropdown",
|
|
494
|
+
"Dropdown select": "Dropdown select",
|
|
495
|
+
"Duplicate": "Duplicate",
|
|
496
|
+
"Duplicate and continue": "Duplicate and continue",
|
|
497
|
+
"Duplicate mode": "Duplicate mode",
|
|
498
|
+
"Duplicate template": "Duplicar plantilla",
|
|
499
|
+
"Duplicating": "Duplicating",
|
|
500
|
+
"Duration (seconds, 0 = no auto close)": "Duration (seconds, 0 = no auto close)",
|
|
501
|
+
"Dynamic value": "Valor dinámico",
|
|
502
|
+
"Easy reading": "Lectura fácil",
|
|
503
|
+
"Easy-reading": "Lectura fácil",
|
|
504
|
+
"Edit": "Editar",
|
|
505
|
+
"Edit Title": "Edit Title",
|
|
506
|
+
"Edit block title": "Editar título de bloque",
|
|
507
|
+
"Edit block title & description": "Edit block title & description",
|
|
508
|
+
"Edit button": "Editar botón",
|
|
509
|
+
"Edit category": "Editar categoría",
|
|
510
|
+
"Edit chart": "Editar gráfico",
|
|
511
|
+
"Edit collection": "Editar colección",
|
|
512
|
+
"Edit description": "Editar descripción",
|
|
513
|
+
"Edit event flows": "Edit event flows",
|
|
514
|
+
"Edit field": "Editar campo",
|
|
515
|
+
"Edit field title": "Cambiar el título del campo ",
|
|
516
|
+
"Edit form": "Editar formulario",
|
|
517
|
+
"Edit group title": "Edit group title",
|
|
518
|
+
"Edit link": "Edit link",
|
|
519
|
+
"Edit markdown": "Editar markdown",
|
|
520
|
+
"Edit menu item": "Editar elemento del menú",
|
|
521
|
+
"Edit page size": "Edit page size",
|
|
522
|
+
"Edit page title": "Edit page title",
|
|
523
|
+
"Edit popup": "Edit popup",
|
|
524
|
+
"Edit profile": "Editar perfil",
|
|
525
|
+
"Edit record": "Editar registro",
|
|
526
|
+
"Edit role": "Editar rol",
|
|
527
|
+
"Edit storage": "Editar almacenamiento",
|
|
528
|
+
"Edit tab": "Editar pestaña",
|
|
529
|
+
"Edit tooltip": "Editar información sobre herramienta",
|
|
530
|
+
"Edit variable": "Edit variable",
|
|
531
|
+
"Editable": "Editable",
|
|
532
|
+
"Ellipsis": "Ellipsis",
|
|
533
|
+
"Ellipsis overflow content": "Contenido de desbordamiento de elipsis",
|
|
534
|
+
"Email": "Correo electrónico",
|
|
535
|
+
"Embedded": "Embedded",
|
|
536
|
+
"Empty": "Vacío",
|
|
537
|
+
"Enable": "Enable",
|
|
538
|
+
"Enable SMS authentication": "Activar la autenticación por SMS",
|
|
539
|
+
"Enable Scan": "Enable Scan",
|
|
540
|
+
"Enable actions": "Activar acciones",
|
|
541
|
+
"Enable child collections": "Activar las colecciones de niños",
|
|
542
|
+
"Enable click-to-open": "Enable click-to-open",
|
|
543
|
+
"Enable drag and drop sorting": "Activar la ordenación mediante arrastrar y soltar",
|
|
544
|
+
"Enable form data template": "Enable form data template",
|
|
545
|
+
"Enable index column": "Enable index column",
|
|
546
|
+
"Enable link": "Activar enlace",
|
|
547
|
+
"Enable page header": "Enable page header",
|
|
548
|
+
"Enable page tabs": "Enable page tabs",
|
|
549
|
+
"Enable quick edit": "Enable quick edit",
|
|
550
|
+
"Enable refresh": "Enable refresh",
|
|
551
|
+
"Enable secondary confirmation": "Enable secondary confirmation",
|
|
552
|
+
"Enable tabs": "Enable tabs",
|
|
553
|
+
"Enable tree table": "Enable tree table",
|
|
554
|
+
"Enable virtual scrolling": "Enable virtual scrolling",
|
|
555
|
+
"Enabled": "Activado",
|
|
556
|
+
"Enabled languages": "Idiomas activados",
|
|
557
|
+
"End": "End",
|
|
558
|
+
"End accessor": "End accessor",
|
|
559
|
+
"End date field": "Campo de fecha de final",
|
|
560
|
+
"Enter collection name": "Enter collection name",
|
|
561
|
+
"Enter end accessor": "Enter end accessor",
|
|
562
|
+
"Enter field title": "Enter field title",
|
|
563
|
+
"Enter number of rows to display": "Enter number of rows to display",
|
|
564
|
+
"Enter page title": "Enter page title",
|
|
565
|
+
"Enter placeholder text": "Enter placeholder text",
|
|
566
|
+
"Enter start accessor": "Enter start accessor",
|
|
567
|
+
"Enter title accessor": "Enter title accessor",
|
|
568
|
+
"Enter value": "Enter value",
|
|
569
|
+
"Error message": "Mensaje de error",
|
|
570
|
+
"Event": "Evento",
|
|
571
|
+
"Event flow": "Event flow",
|
|
572
|
+
"Event selected": "Event selected",
|
|
573
|
+
"Event settings": "Event settings",
|
|
574
|
+
"Exact day": "Exact day",
|
|
575
|
+
"Execute": "Execute",
|
|
576
|
+
"Execute JavaScript": "Execute JavaScript",
|
|
577
|
+
"Exists": "Existe",
|
|
578
|
+
"Expand All": "Expandir todo",
|
|
579
|
+
"Expand all": "Expandir todo",
|
|
580
|
+
"Expand all rows by default": "Expand all rows by default",
|
|
581
|
+
"Expand button": "Expand",
|
|
582
|
+
"Expand/Collapse": "Expandir/Contraer",
|
|
583
|
+
"Export": "Exportar",
|
|
584
|
+
"Exportable fields": "Campos exportables",
|
|
585
|
+
"Expression": "Expresión",
|
|
586
|
+
"Expression collection": "Expression collection",
|
|
587
|
+
"FORMULAJS_DOC_URL": "https://v2.docs.nocobase.com/calculation-engine/formula",
|
|
588
|
+
"Failed to load plugin": "Failed to load plugin",
|
|
589
|
+
"False": "False",
|
|
590
|
+
"Feedback": "Feedback",
|
|
591
|
+
"Field": "Campo",
|
|
592
|
+
"Field Linkage rules": "Field Linkage rules",
|
|
593
|
+
"Field assignment": "Field assignment",
|
|
594
|
+
"Field component": "Componente del campo",
|
|
595
|
+
"Field display name": "Mostrar nombre de campo",
|
|
596
|
+
"Field interface": "Interfaz de campo",
|
|
597
|
+
"Field linkage rules": "Field linkage rules",
|
|
598
|
+
"Field mode": "Field mode",
|
|
599
|
+
"Field model": "Field model",
|
|
600
|
+
"Field name": "Nombre de campo",
|
|
601
|
+
"Field permission": "Permiso de ámbito",
|
|
602
|
+
"Field settings": "Field settings",
|
|
603
|
+
"Field source": "Fuente de campo",
|
|
604
|
+
"Field title": "Título del campo",
|
|
605
|
+
"Field type": "Tipo de campo",
|
|
606
|
+
"Field value changes": "Cambios en el valor del campo",
|
|
607
|
+
"Field value do not meet the requirements": "Field value do not meet the requirements",
|
|
608
|
+
"Field value size is": "Field value size is",
|
|
609
|
+
"Field values must be unique.": "Field values must be unique.",
|
|
610
|
+
"Fields": "Campos",
|
|
611
|
+
"Fields can only be used correctly if they are defined with an interface.": "Fields can only be used correctly if they are defined with an interface.",
|
|
612
|
+
"Fields values": "Valores de los campos",
|
|
613
|
+
"File manager": "Gestor de archivos ",
|
|
614
|
+
"File size exceeds the limit": "File size exceeds the limit",
|
|
615
|
+
"File size should not exceed {{size}}.": "File size should not exceed {{size}}.",
|
|
616
|
+
"File storages": "Almacenamiento de archivos",
|
|
617
|
+
"File type is not allowed": "File type is not allowed",
|
|
618
|
+
"File type is not supported for previewing, please download it to preview.": "File type is not supported for previewing, please download it to preview.",
|
|
619
|
+
"Filename": "Nombre de archivo",
|
|
620
|
+
"Fill": "Llenar",
|
|
621
|
+
"Filled": "Filled",
|
|
622
|
+
"Filter": "Filtro",
|
|
623
|
+
"Filter blocks": "Bloques de filtro",
|
|
624
|
+
"Filter configuration": "Filter configuration",
|
|
625
|
+
"Filter data based on the specific field, with the requirement that the field value must be unique.": "Filter data based on the specific field, with the requirement that the field value must be unique.",
|
|
626
|
+
"Filter out a single piece or a group of records as a template": "Filter out a single piece or a group of records as a template",
|
|
627
|
+
"Filter target key": "Filter target key",
|
|
628
|
+
"Filterable fields": "Campos filtrables",
|
|
629
|
+
"Find by the following fields": "Find by the following fields",
|
|
630
|
+
"First or create": "First or create",
|
|
631
|
+
"Fix block": "Fijar bloque",
|
|
632
|
+
"Fixed": "Fixed",
|
|
633
|
+
"Fixed to the left": "Fijado a la izquierda",
|
|
634
|
+
"Fixed to the right": "Fijado a la derecha",
|
|
635
|
+
"Flexible popup": "Ventana emergente flexible",
|
|
636
|
+
"Flow Page": "Modern page (v2)",
|
|
637
|
+
"Font Size(px)": "Font Size(px)",
|
|
638
|
+
"Font Style": "Font Style",
|
|
639
|
+
"Font Weight": "Font Weight",
|
|
640
|
+
"Foreign key": "Clave externa",
|
|
641
|
+
"Foreign key 1": "Clave externa 1",
|
|
642
|
+
"Foreign key 2": "Clave externa 2",
|
|
643
|
+
"Form": "Formulario",
|
|
644
|
+
"Form (Add new)": "Formulario (Añadir nuevo)",
|
|
645
|
+
"Form (Edit)": "Formulario (Editar)",
|
|
646
|
+
"Form UID": "Form UID",
|
|
647
|
+
"Form data templates": "Form data templates",
|
|
648
|
+
"Form duplicate": "Form duplicate",
|
|
649
|
+
"Form field assignment": "Form field assignment",
|
|
650
|
+
"Form item settings": "Form item settings",
|
|
651
|
+
"Form settings": "Form settings",
|
|
652
|
+
"Form values": "Valores del formulario",
|
|
653
|
+
"Form values change": "Form values change",
|
|
654
|
+
"Form variable": "Form variable",
|
|
655
|
+
"Format": "Formato",
|
|
656
|
+
"Formula": "Fórmula",
|
|
657
|
+
"Formula description": "Calcular un valor en cada registro basándose en otros campos del mismo registro",
|
|
658
|
+
"Formula error.": "Error de fórmula",
|
|
659
|
+
"Formula mode": "Modo de fórmula",
|
|
660
|
+
"Formula.js supports most Microsoft Excel formula functions.": "Formula.js supports most Microsoft Excel formula functions.",
|
|
661
|
+
"Full height": "Full height",
|
|
662
|
+
"Full permissions": "Todos los derechos",
|
|
663
|
+
"Function": "Función",
|
|
664
|
+
"Gantt": "Gantt",
|
|
665
|
+
"Geek blue": "Azul geek",
|
|
666
|
+
"General": "General",
|
|
667
|
+
"General action permissions": "Permisos de acción generales",
|
|
668
|
+
"General collection": "Colección general",
|
|
669
|
+
"General configuration": "General configuration",
|
|
670
|
+
"General fields": "Campos generales",
|
|
671
|
+
"General permissions": "Permisos generales",
|
|
672
|
+
"Generated automatically if left blank": "Se genera automáticamente si se deja en blanco",
|
|
673
|
+
"Generic properties": "Generic properties",
|
|
674
|
+
"Global action permissions": "Permisos de acción globales",
|
|
675
|
+
"Global permissions": "Permisos globales",
|
|
676
|
+
"Gold": "Oro",
|
|
677
|
+
"Greater than": "Greater than",
|
|
678
|
+
"Green": "Verde",
|
|
679
|
+
"Grid Card": "Grid Card",
|
|
680
|
+
"Group": "Grupo",
|
|
681
|
+
"Grouped sorting": "Grouped sorting",
|
|
682
|
+
"Grouping field": "Campo de agrupación",
|
|
683
|
+
"HTML content": "HTML content",
|
|
684
|
+
"Half of day": "Medio día",
|
|
685
|
+
"Handbook": "Manual de usuario",
|
|
686
|
+
"Hidden": "Oculto",
|
|
687
|
+
"Hidden (reserved value)": "Oculto(valor reservado)",
|
|
688
|
+
"Hidden text": "Hidden text",
|
|
689
|
+
"Hidden(reserved value)": "Oculto(valor reservado)",
|
|
690
|
+
"Hide": "Ocultar",
|
|
691
|
+
"Hide column": "Ocultar columna",
|
|
692
|
+
"Hide in menu": "Ocultar en menú",
|
|
693
|
+
"Highlight": "Resaltar",
|
|
694
|
+
"Home page": "Página de inicio",
|
|
695
|
+
"Homepage": "Página de inicio",
|
|
696
|
+
"Horizontal": "Horizontal",
|
|
697
|
+
"Hour": "Hora",
|
|
698
|
+
"Html settings": "Html settings",
|
|
699
|
+
"IANA registry": "IANA registry",
|
|
700
|
+
"ID": "ID",
|
|
701
|
+
"Icon": "Icono",
|
|
702
|
+
"Icon only": "Icon only",
|
|
703
|
+
"Identifier for program usage. Support letters, numbers and underscores, must start with an letter.": "Identificador para uso del programa. Admite letras, números y guiones bajos, debe empezar por una letra",
|
|
704
|
+
"If a collection lacks a primary key, you must configure a unique record key to locate row records within a block, failure to configure this will prevent the creation of data blocks for the collection.": "If a collection lacks a primary key, you must configure a unique record key to locate row records within a block, failure to configure this will prevent the creation of data blocks for the collection.",
|
|
705
|
+
"If collection inherits, choose inherited collections as templates": "If collection inherits, choose inherited collections as templates",
|
|
706
|
+
"If selected, the page will display Tab pages.": "Si se selecciona, la página mostrará páginas de pestañas.",
|
|
707
|
+
"If selected, the route will be displayed in the menu.": "Si se selecciona, la ruta se mostrará en el menú.",
|
|
708
|
+
"If the compatibility check fails, you should change the dependent version to meet the version requirements.": "Si la comprobación de compatibilidad falla, debe cambiar la versión dependiente para cumplir con los requisitos de versión.",
|
|
709
|
+
"Ignore invalid email length errors": "Ignore invalid email length errors",
|
|
710
|
+
"Imperative Drawer": "Imperative Drawer",
|
|
711
|
+
"Import": "Importar",
|
|
712
|
+
"Importable fields": "Campos importables",
|
|
713
|
+
"In configuration": "En configuración",
|
|
714
|
+
"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.": "En modo de configuración, toda la columna se vuelve transparente. En modo de no configuración, toda la columna se ocultará. Incluso si toda la columna está oculta, sus valores predeterminados configurados y otras configuraciones seguirán tomando efecto.",
|
|
715
|
+
"Incomplete uploading files need to be resolved": "Incomplete uploading files need to be resolved",
|
|
716
|
+
"Index": "Index",
|
|
717
|
+
"Individual": "Individual",
|
|
718
|
+
"Inherited fields": "Inherited fields",
|
|
719
|
+
"Inherited template": "Plantilla heredada",
|
|
720
|
+
"Inherits": "Hereda",
|
|
721
|
+
"Inner": "Interior",
|
|
722
|
+
"Input": "Input",
|
|
723
|
+
"Input +, -, *, /, ( ) to calculate, input @ to open field variables.": "Introduzca +, -, *, /, ( ) para calcular, introduzca @ para abrir variables de campo",
|
|
724
|
+
"Input request data": "Input request data",
|
|
725
|
+
"Insert": "Insertar",
|
|
726
|
+
"Insert above": "Insertar arriba",
|
|
727
|
+
"Insert after": "Insertar después",
|
|
728
|
+
"Insert before": "Insertar antes",
|
|
729
|
+
"Insert below": "Insertar debajo",
|
|
730
|
+
"Insert if not exists": "Insert if not exists",
|
|
731
|
+
"Insert if not exists, or update": "Insert if not exists, or update",
|
|
732
|
+
"Insert inner": "Insertar al interior",
|
|
733
|
+
"Insert left": "Insertar a la izquierda",
|
|
734
|
+
"Insert right": "Insertar a la derecha",
|
|
735
|
+
"Installing": "Instalando",
|
|
736
|
+
"Integer": "Entero",
|
|
737
|
+
"Invalid JSON format": "Formato JSON no válido",
|
|
738
|
+
"Inverse field display name": "Nombre mostrado del campo inverso",
|
|
739
|
+
"Inverse field name": "Nombre del campo inverso",
|
|
740
|
+
"Inverse relationship type": "Tipo de relación inversa",
|
|
741
|
+
"Italic": "Italic",
|
|
742
|
+
"Junction collection": "Colección de unión",
|
|
743
|
+
"Kanban": "Kanban",
|
|
744
|
+
"Label": "Label",
|
|
745
|
+
"Label align": "Label align",
|
|
746
|
+
"Label field": "Campo de etiqueta",
|
|
747
|
+
"Label width": "Label width",
|
|
748
|
+
"Language": "Idioma",
|
|
749
|
+
"Large": "Grande",
|
|
750
|
+
"Large screen device": "Large screen device",
|
|
751
|
+
"Last 30 days": "los últimos 30 días",
|
|
752
|
+
"Last 7 days": "los últimos 7 días",
|
|
753
|
+
"Last 90 days": "los últimos 90 días",
|
|
754
|
+
"Last Month": "Last Month",
|
|
755
|
+
"Last Quarter": "Last Quarter",
|
|
756
|
+
"Last Week": "Last Week",
|
|
757
|
+
"Last Year": "Last Year",
|
|
758
|
+
"Last month": "Mes pasado",
|
|
759
|
+
"Last quarter": "Trimestre pasado",
|
|
760
|
+
"Last updated": "Última actualización",
|
|
761
|
+
"Last updated at": "Última actualización en",
|
|
762
|
+
"Last updated by": "Última actualización por",
|
|
763
|
+
"Last week": "Semana pasada",
|
|
764
|
+
"Last year": "Año pasado",
|
|
765
|
+
"Layout": "Layout",
|
|
766
|
+
"Leave it blank, unless you need a custom intermediate table": "Déjelo en blanco, a menos que necesite una tabla intermedia personalizada",
|
|
767
|
+
"Left": "Left",
|
|
768
|
+
"Left fixed": "Left fixed",
|
|
769
|
+
"Length": "Longitud",
|
|
770
|
+
"Less than": "Less than",
|
|
771
|
+
"License": "Licencia",
|
|
772
|
+
"Lime": "Lima",
|
|
773
|
+
"Limit": "Limit",
|
|
774
|
+
"Line break": "Line break",
|
|
775
|
+
"Line chart": "Gráfico lineal",
|
|
776
|
+
"Link": "Enlace",
|
|
777
|
+
"Link action settings": "Link action settings",
|
|
778
|
+
"Link to": "Enlace a",
|
|
779
|
+
"Link to description": "Se utiliza para crear relaciones de colecciones de forma rápida y compatible con los escenarios más comunes. Adecuado para uso de no desarrolladores. Cuando está presente como campo, es una selección desplegable utilizada para seleccionar registros de la colección de destino. Una vez creado, generará simultáneamente los campos asociados de la colección actual en la colección de destino",
|
|
780
|
+
"Linkage rule": "Regla de enlace",
|
|
781
|
+
"Linkage rules": "Regla de enlaces",
|
|
782
|
+
"Linkage with form fields": "Linkage with form fields",
|
|
783
|
+
"List": "List",
|
|
784
|
+
"Load all data when filter is empty": "Cargar todos los datos cuando el filtro esté vacío",
|
|
785
|
+
"Load collections": "Load collections",
|
|
786
|
+
"Local": "Local",
|
|
787
|
+
"Local storage": "Almacenamiento local",
|
|
788
|
+
"Log in with an existing account": "Iniciar sesión con una cuenta existente",
|
|
789
|
+
"Logging and monitoring": "Logging and monitoring",
|
|
790
|
+
"Logo": "Logo",
|
|
791
|
+
"Long text": "Texto largo",
|
|
792
|
+
"MATHJS_DOC_URL": "https://v2.docs.nocobase.com/calculation-engine/math",
|
|
793
|
+
"Magenta": "Magenta",
|
|
794
|
+
"Main": "Main",
|
|
795
|
+
"Main department": "Main department",
|
|
796
|
+
"Manage all settings": "Gestionar todos los ajustes",
|
|
797
|
+
"Manually close": "Cierre manual",
|
|
798
|
+
"Many to many": "Varios a varios ",
|
|
799
|
+
"Many to many description": "Se utiliza para crear relaciones de uno a varios. Por ejemplo, un alumno tendrá varios profesores y un profesor tendrá varios alumnos. Cuando está presente como campo, es una selección desplegable que se utiliza para seleccionar registros de la colección asociada.",
|
|
800
|
+
"Many to one": "Varios a uno ",
|
|
801
|
+
"Many to one description": "Se utiliza para crear relaciones de uno a varios. Por ejemplo, una ciudad puede pertenecer a un solo país y un país puede tener muchas ciudades. Cuando está presente como campo, es una selección desplegable que se utiliza para seleccionar un registro de la colección asociada. Una vez creado, se genera automáticamente un campo de uno a varios en la colección asociada",
|
|
802
|
+
"Markdown": "Markdown",
|
|
803
|
+
"Marketplace": "Mercado",
|
|
804
|
+
"Math.js comes with a large set of built-in functions and constants, and offers an integrated solution to work with different data types.": "Math.js comes with a large set of built-in functions and constants, and offers an integrated solution to work with different data types.",
|
|
805
|
+
"Max Domain Segments": "Max Domain Segments",
|
|
806
|
+
"Max length": "Longitud máxima",
|
|
807
|
+
"Max length must greater than min length": "Longitud máxima debe ser mayor que longitud mínima",
|
|
808
|
+
"Max value": "Max value",
|
|
809
|
+
"MaxDate": "MaxDate",
|
|
810
|
+
"Maximum": "Máximo",
|
|
811
|
+
"Maximum must greater than minimum": "Máximo debe ser mayor que mínimo",
|
|
812
|
+
"Media": "Medios",
|
|
813
|
+
"Medium": "Medium",
|
|
814
|
+
"Meet": "Meet",
|
|
815
|
+
"Meet <1><0>All</0><1>Any</1></1> conditions in the group": "Cumplir <1><0>Todas</0><1>Cualquier</1></1> condiciones del grupo",
|
|
816
|
+
"Menu": "Menu",
|
|
817
|
+
"Menu item icon": "Icono del elemento del menú",
|
|
818
|
+
"Menu item name": "Nombre del elemento de menú",
|
|
819
|
+
"Menu item title": "Título del elemento del menú",
|
|
820
|
+
"Menu permissions": "Permisos de menú",
|
|
821
|
+
"Message content": "Message content",
|
|
822
|
+
"Message popup close method": "Message popup close method",
|
|
823
|
+
"Message type": "Message type",
|
|
824
|
+
"Middle": "Medio",
|
|
825
|
+
"Millisecond": "Millisecond",
|
|
826
|
+
"Min Domain Segments": "Min Domain Segments",
|
|
827
|
+
"Min length": "Longitud mínima",
|
|
828
|
+
"Min length must less than max length": "Longitud mínima debe ser menor que longitud máxima",
|
|
829
|
+
"Min value": "Min value",
|
|
830
|
+
"MinDate": "MinDate",
|
|
831
|
+
"Minimum": "Mínimo",
|
|
832
|
+
"Minimum must less than maximum": "Mínimo debe ser menor que máximo",
|
|
833
|
+
"Mobile": "Mobile",
|
|
834
|
+
"Mobile routes": "Rutas móviles",
|
|
835
|
+
"Modal": "Modal",
|
|
836
|
+
"Modal add": "Modal add",
|
|
837
|
+
"Mode": "Mode",
|
|
838
|
+
"Modern page (v2)": "Modern page (v2)",
|
|
839
|
+
"Month": "Mes",
|
|
840
|
+
"Monthly": "Mensual",
|
|
841
|
+
"More details": "Más detalles",
|
|
842
|
+
"More options": "Más opciones",
|
|
843
|
+
"Move down": "Move down",
|
|
844
|
+
"Move to": "Mover a",
|
|
845
|
+
"Move up": "Move up",
|
|
846
|
+
"Move {{title}} to": "Mover {{title}} a",
|
|
847
|
+
"Multiple": "Multiple",
|
|
848
|
+
"Multiple select": "Selección múltiple",
|
|
849
|
+
"Multiply by": "Multiply by",
|
|
850
|
+
"Must be 1-50 characters in length (excluding @.<>\"'/)": "Must be 1-50 characters in length (excluding @.<>\"'/)",
|
|
851
|
+
"Must select to the last level": "Debe seleccionar hasta el último nivel",
|
|
852
|
+
"Must use `-` and `:`": "Must use `-` and `:`",
|
|
853
|
+
"N/A": "N/A",
|
|
854
|
+
"Name": "Nombre",
|
|
855
|
+
"Navigate": "Navegar",
|
|
856
|
+
"Navigate to URL": "Navigate to URL",
|
|
857
|
+
"New menu items are allowed to be accessed by default.": "Permite acceder a nuevos elementos de menú por defecto",
|
|
858
|
+
"New password": "Contraseña nueva",
|
|
859
|
+
"New plugin": "Nuevo plugin",
|
|
860
|
+
"New routes are allowed to be accessed by default": "Las nuevas rutas se permiten acceder por defecto",
|
|
861
|
+
"Next": "Next",
|
|
862
|
+
"Next 30 days": "los próximos 30 días",
|
|
863
|
+
"Next 7 days": "los próximos 7 días",
|
|
864
|
+
"Next 90 days": "los próximos 90 días",
|
|
865
|
+
"Next Month": "Next Month",
|
|
866
|
+
"Next Quarter": "Next Quarter",
|
|
867
|
+
"Next Week": "Next Week",
|
|
868
|
+
"Next Year": "Next Year",
|
|
869
|
+
"Next month": "Próximo mes",
|
|
870
|
+
"Next quarter": "Próximo trimestre",
|
|
871
|
+
"Next week": "Próxima semana",
|
|
872
|
+
"Next year": "Próximo año",
|
|
873
|
+
"Nickname": "Apodo",
|
|
874
|
+
"No": "No",
|
|
875
|
+
"No CHANGELOG.md file": "No hay archivo CHANGELOG.md",
|
|
876
|
+
"No README.md file": "No hay archivo README.md",
|
|
877
|
+
"No allow `-` and `:`": "No allow `-` and `:`",
|
|
878
|
+
"No assigned fields configured": "No assigned fields configured",
|
|
879
|
+
"No blocks to connect": "No hay bloques que conectar",
|
|
880
|
+
"No configuration available.": "No configuration available.",
|
|
881
|
+
"No data": "No data",
|
|
882
|
+
"No event flows": "No event flows",
|
|
883
|
+
"No form available for reset.": "No form available for reset.",
|
|
884
|
+
"No form available for submission.": "No form available for submission.",
|
|
885
|
+
"No linkage rules": "No linkage rules",
|
|
886
|
+
"No pages yet, please configure first": "Aún no hay páginas, por favor configura primero",
|
|
887
|
+
"No parent popup": "No parent popup",
|
|
888
|
+
"No records selected for bulk edit": "No records selected for bulk edit",
|
|
889
|
+
"No records selected for deletion": "No records selected for deletion",
|
|
890
|
+
"No resource or record selected for deletion": "No resource or record selected for deletion",
|
|
891
|
+
"No resource selected for bulk edit": "No resource selected for bulk edit",
|
|
892
|
+
"No resource selected for deletion": "No resource selected for deletion",
|
|
893
|
+
"No resource selected for refresh": "No resource selected for refresh",
|
|
894
|
+
"None": "Ninguno",
|
|
895
|
+
"Normal": "Normal",
|
|
896
|
+
"Not Fixed": "Desfijado",
|
|
897
|
+
"Not enabled": "No habilitado",
|
|
898
|
+
"Not fixed": "Not fixed",
|
|
899
|
+
"Not found": "No encontrado",
|
|
900
|
+
"Not required": "No necesario",
|
|
901
|
+
"Notification": "Notification",
|
|
902
|
+
"Notification description": "Notification description",
|
|
903
|
+
"Notification title": "Notification title",
|
|
904
|
+
"Notification type": "Notification type",
|
|
905
|
+
"Now": "Now",
|
|
906
|
+
"Npm package": "Paquete Npm",
|
|
907
|
+
"Npm package name": "Nombre del paquete Npm",
|
|
908
|
+
"Null": "Null",
|
|
909
|
+
"Number": "Número",
|
|
910
|
+
"Number settings": "Number settings",
|
|
911
|
+
"Object Fit": "Ajuste de objeto",
|
|
912
|
+
"Off": "Apagada",
|
|
913
|
+
"Official plugin": "Plugin oficial",
|
|
914
|
+
"Old password": "Contraseña antigua",
|
|
915
|
+
"On": "Encendida",
|
|
916
|
+
"One to many": "Uno a varios",
|
|
917
|
+
"One to many description": "Se utiliza para crear una relación de uno a varios. Por ejemplo, un país tendrá varias ciudades y una ciudad sólo puede estar en un país. Cuando está presente como campo, es una subtabla que muestra los registros de la colección asociada. Cuando se crea, se genera automáticamente un campo Varios a uno en la colección asociada",
|
|
918
|
+
"One to one": "Uno a uno",
|
|
919
|
+
"One to one (belongs to)": "Uno a uno (pertenece a)",
|
|
920
|
+
"One to one (has one)": "Uno a uno (tiene uno)",
|
|
921
|
+
"One to one description": "Se utiliza para crear relaciones uno a uno. Por ejemplo, un usuario tiene un perfil",
|
|
922
|
+
"Only support standard JSON data": "Only support standard JSON data",
|
|
923
|
+
"Only the selected fields will be used as the initialization data for the form": "Only the selected fields will be used as the initialization data for the form",
|
|
924
|
+
"Only use `-`": "Only use `-`",
|
|
925
|
+
"Only use `.`": "Only use `.`",
|
|
926
|
+
"Only use `_`": "Only use `_`",
|
|
927
|
+
"Open in new window": "Abrir en una nueva ventana",
|
|
928
|
+
"Open in<1><0>Modal</0><1>Drawer</1><2>Window</2></1>": "Abrir en<1><0>Modal</0><1>Cajón</1><2>Ventana</2></1>",
|
|
929
|
+
"Open mode": "Modo de apertura",
|
|
930
|
+
"Open mode configuration": "Open mode configuration",
|
|
931
|
+
"Operate on existing data": "Operar con datos existentes",
|
|
932
|
+
"Operate on new data": "Operar con datos nuevos",
|
|
933
|
+
"Operation failed": "Operación fallida",
|
|
934
|
+
"Operation succeeded": "Operación correcta",
|
|
935
|
+
"Operator": "Operador",
|
|
936
|
+
"Option label": "Etiqueta de opción",
|
|
937
|
+
"Option value": "Valor de opción",
|
|
938
|
+
"Optional fields": "Campos opcionales",
|
|
939
|
+
"Options": "Opciones",
|
|
940
|
+
"Orange": "Naranja",
|
|
941
|
+
"Original field title: ": "Título original del campo ",
|
|
942
|
+
"Original name": "Nombre original",
|
|
943
|
+
"Original title: ": "Título original ",
|
|
944
|
+
"Other": "Other",
|
|
945
|
+
"Other action": "Other action",
|
|
946
|
+
"Other block": "Other block",
|
|
947
|
+
"Other blocks": "Otros Bloques",
|
|
948
|
+
"Other chart": "Otro gráfico",
|
|
949
|
+
"Other collections": "Otras colecciones",
|
|
950
|
+
"Other column": "Other column",
|
|
951
|
+
"Other form": "Other form",
|
|
952
|
+
"Other records": "Otros registros",
|
|
953
|
+
"Others": "Otros",
|
|
954
|
+
"Outlined": "Outlined",
|
|
955
|
+
"Override": "Anular",
|
|
956
|
+
"Override field": "Anular campo",
|
|
957
|
+
"Oversized": "Sobredimensionado",
|
|
958
|
+
"Own records": "Registros propios",
|
|
959
|
+
"Owners": "Owners",
|
|
960
|
+
"PK & FK fields": "Campos PK y FK",
|
|
961
|
+
"Package name": "Package name",
|
|
962
|
+
"PackageName": "Nombre del paquete",
|
|
963
|
+
"Page": "Página",
|
|
964
|
+
"Page (v2)": "Page (v2)",
|
|
965
|
+
"Page Title": "Page Title",
|
|
966
|
+
"Page number": "Page number",
|
|
967
|
+
"Page settings": "Page settings",
|
|
968
|
+
"Page size": "Page size",
|
|
969
|
+
"Parent": "Parent",
|
|
970
|
+
"Parent ID": "Parent ID",
|
|
971
|
+
"Parent collection fields": "Campos de la colección de padres",
|
|
972
|
+
"Parent object": "Objeto padre",
|
|
973
|
+
"Parent popup": "Parent popup",
|
|
974
|
+
"Parent popup record": "Registro padre del popup",
|
|
975
|
+
"Parent record": "Registro padre",
|
|
976
|
+
"Password": "Contraseña",
|
|
977
|
+
"Password Options": "Password Options",
|
|
978
|
+
"Password mismatch": "Contraseña incorrecta",
|
|
979
|
+
"Past": "Past",
|
|
980
|
+
"Path": "Ruta",
|
|
981
|
+
"Pattern": "Patrón",
|
|
982
|
+
"Percent": "Porcentaje",
|
|
983
|
+
"Perform the Custom request": "Perform the Custom request",
|
|
984
|
+
"Perform the Refresh": "Perform the Refresh",
|
|
985
|
+
"Perform the Submit": "Perform the Submit",
|
|
986
|
+
"Perform the Trigger workflow": "Perform the Trigger workflow",
|
|
987
|
+
"Perform the Update record": "Perform the Update record",
|
|
988
|
+
"Perform the {{title}}": "Perform the {{title}}",
|
|
989
|
+
"Permission deined": "Permission denied",
|
|
990
|
+
"Permission denied": "Permission denied",
|
|
991
|
+
"Permission policy": "Política de permisos",
|
|
992
|
+
"Phone": "Teléfono",
|
|
993
|
+
"Phone device": "Phone device",
|
|
994
|
+
"Picker": "Picker",
|
|
995
|
+
"Pie chart": "Gráfico circular",
|
|
996
|
+
"Pin to left": "Fijar a la izquierda",
|
|
997
|
+
"Pin to right": "Fijar a la derecha",
|
|
998
|
+
"Placeholder": "Placeholder",
|
|
999
|
+
"Placement": "Placement",
|
|
1000
|
+
"Please add a data block on the page first": "Please add a data block on the page first",
|
|
1001
|
+
"Please add or select record": "Please add or select record",
|
|
1002
|
+
"Please configure the URL": "Please configure the URL",
|
|
1003
|
+
"Please configure the duplicate fields": "Please configure the duplicate fields",
|
|
1004
|
+
"Please confirm the SQL statement first": "Please confirm the SQL statement first",
|
|
1005
|
+
"Please enter form uid": "Please enter form uid",
|
|
1006
|
+
"Please enter the target block UID": "Please enter the target block UID",
|
|
1007
|
+
"Please enter variable identifier": "Please enter variable identifier",
|
|
1008
|
+
"Please enter variable title": "Please enter variable title",
|
|
1009
|
+
"Please fill in the iframe URL": "Por favor, rellene la URL del iframe",
|
|
1010
|
+
"Please input message content": "Please input message content",
|
|
1011
|
+
"Please input notification description": "Please input notification description",
|
|
1012
|
+
"Please input notification title": "Please input notification title",
|
|
1013
|
+
"Please input target action uid": "Please input target action uid",
|
|
1014
|
+
"Please input target block uid": "Please input target block uid",
|
|
1015
|
+
"Please input target form uid": "Please input target form uid",
|
|
1016
|
+
"Please select": "Please select",
|
|
1017
|
+
"Please select field": "Please select field",
|
|
1018
|
+
"Please select fields": "Please select fields",
|
|
1019
|
+
"Please select fields to filter": "Please select fields to filter",
|
|
1020
|
+
"Please select filterable fields": "Please select filterable fields",
|
|
1021
|
+
"Please select state": "Please select state",
|
|
1022
|
+
"Please select the records to be updated": "Seleccione los registros que desea actualizar",
|
|
1023
|
+
"Please select time or variable": "Please select time or variable",
|
|
1024
|
+
"Please use a valid SELECT or WITH AS statement": "Please use a valid SELECT or WITH AS statement",
|
|
1025
|
+
"Plugin": "Plugin",
|
|
1026
|
+
"Plugin Zip File": "Archivo Zip del plugin",
|
|
1027
|
+
"Plugin dependencies check failed": "Plugin dependencies check failed",
|
|
1028
|
+
"Plugin dependencies check failed, you should change the dependent version to meet the version requirements.": "Plugin dependencies check failed, you should change the dependent version to meet the version requirements.",
|
|
1029
|
+
"Plugin dependency version mismatch": "Plugin dependency version mismatch",
|
|
1030
|
+
"Plugin loading failed. Please check the server logs.": "Error al cargar el plugin. Compruebe los registros del servidor.",
|
|
1031
|
+
"Plugin manager": "Gestor de plugins",
|
|
1032
|
+
"Plugin name": "Nombre del plugin",
|
|
1033
|
+
"Plugin settings": "Plugin settings",
|
|
1034
|
+
"Plugin settings permissions": "Permisos de configuración de plugins",
|
|
1035
|
+
"Plugin source": "Plugin source",
|
|
1036
|
+
"Plugin starting...": "Plugin iniciando...",
|
|
1037
|
+
"Plugin stopping...": "Plugin deteniendo...",
|
|
1038
|
+
"Plugin tab name": "Nombre de la pestaña del plugin",
|
|
1039
|
+
"Plugin's version": "Versión del plugin",
|
|
1040
|
+
"Pop-up": "Pop-up",
|
|
1041
|
+
"Popup": "Popup",
|
|
1042
|
+
"Popup close method": "Método de cierre del popup",
|
|
1043
|
+
"Popup form": "Formulario emergente",
|
|
1044
|
+
"Popup message": "Mensaje emergente",
|
|
1045
|
+
"Popup record": "Popup record",
|
|
1046
|
+
"Popup settings": "Popup settings",
|
|
1047
|
+
"Popup size": "Tamaño de la ventana emergente",
|
|
1048
|
+
"Popup uid": "Popup UID",
|
|
1049
|
+
"Position": "Posición",
|
|
1050
|
+
"Precision": "Precisión",
|
|
1051
|
+
"Precision(UI)": "Precision(UI)",
|
|
1052
|
+
"Prefix": "Prefix",
|
|
1053
|
+
"Preset fields": "Preset fields",
|
|
1054
|
+
"Prettify": "Prettify",
|
|
1055
|
+
"Preview": "Vista previa",
|
|
1056
|
+
"Preview Settings": "Preview Settings",
|
|
1057
|
+
"Preview field component": "Preview field component",
|
|
1058
|
+
"Primary": "Primary",
|
|
1059
|
+
"Primary key, unique identifier, self growth": "Primary key, unique identifier, self growth",
|
|
1060
|
+
"Print": "Imprimir",
|
|
1061
|
+
"Problematic": "Problematic",
|
|
1062
|
+
"Progress field": "Campo de progreso",
|
|
1063
|
+
"Properties": "Propiedades",
|
|
1064
|
+
"Providing certain collections as options for users, typically used in polymorphic or inheritance scenarios": "Providing certain collections as options for users, typically used in polymorphic or inheritance scenarios",
|
|
1065
|
+
"Province": "Provincia",
|
|
1066
|
+
"Province/city/area name": "Nombre de provincia/ciudad/zona",
|
|
1067
|
+
"Purple": "Púrpura",
|
|
1068
|
+
"Quarter": "Quarter",
|
|
1069
|
+
"Quarter of day": "Cuarto de día",
|
|
1070
|
+
"QuarterYear": "Cuarto de año",
|
|
1071
|
+
"Quick add": "Quick add",
|
|
1072
|
+
"Quick create": "Quick create",
|
|
1073
|
+
"Quick duplicate": "Quick duplicate",
|
|
1074
|
+
"Quick upload": "Quick upload",
|
|
1075
|
+
"Radio group": "Grupo de radio",
|
|
1076
|
+
"Randomly generated and can be modified. Support letters, numbers and underscores, must start with an letter.": "Generado aleatoriamente y modificable. Acepta letras, números y guiones bajos, debe empezar por una letra",
|
|
1077
|
+
"Read only": "Solo lectura",
|
|
1078
|
+
"ReadOnly": "ReadOnly",
|
|
1079
|
+
"ReadPretty": "ReadPretty",
|
|
1080
|
+
"Readme": "Leerme",
|
|
1081
|
+
"Readonly": "Sólo lectura",
|
|
1082
|
+
"Recommended": "Recommended",
|
|
1083
|
+
"Record ID": "ID de registro",
|
|
1084
|
+
"Record deleted successfully": "Record deleted successfully",
|
|
1085
|
+
"Record picker": "Selector de registros",
|
|
1086
|
+
"Record unique key": "Record unique key",
|
|
1087
|
+
"RecordPicker settings": "RecordPicker settings",
|
|
1088
|
+
"Records can be sorted": "Los registros se pueden ordenar",
|
|
1089
|
+
"Records per page": "Registros por página",
|
|
1090
|
+
"Red": "Rojo",
|
|
1091
|
+
"Redirect to": "Redirigir a",
|
|
1092
|
+
"Reference template": "Plantilla de referencia",
|
|
1093
|
+
"References": "References",
|
|
1094
|
+
"Refresh": "Actualizar",
|
|
1095
|
+
"Refresh data after execution": "Refresh data after execution",
|
|
1096
|
+
"Refresh data blocks": "Actualizar bloques de datos",
|
|
1097
|
+
"Refresh data on action": "Refresh data on action",
|
|
1098
|
+
"Refresh data on close": "Refresh data on close",
|
|
1099
|
+
"Refresh target blocks": "Refresh target blocks",
|
|
1100
|
+
"Region": "Región",
|
|
1101
|
+
"Regular Expression": "Regular Expression",
|
|
1102
|
+
"Regular expression": "Patrón",
|
|
1103
|
+
"Related collection": "Colección relacionada",
|
|
1104
|
+
"Relation": "Relación",
|
|
1105
|
+
"Relationship blocks": "Bloques de relación",
|
|
1106
|
+
"Relationship type": "Tipo de relación",
|
|
1107
|
+
"Reload application": "Reload application",
|
|
1108
|
+
"Remains the same": "Permanece igual",
|
|
1109
|
+
"Remove": "Remove",
|
|
1110
|
+
"Render Failed": "Render Failed",
|
|
1111
|
+
"Render mode": "Render mode",
|
|
1112
|
+
"Repeats": "se repite",
|
|
1113
|
+
"Request API": "Petición API",
|
|
1114
|
+
"Request URL": "URL de petición",
|
|
1115
|
+
"Request body": "Cuerpo de la petición",
|
|
1116
|
+
"Request headers": "Cabeceras de la petición",
|
|
1117
|
+
"Request method": "Método de petición",
|
|
1118
|
+
"Request query parameters": "Parámetros de consulta de la petición",
|
|
1119
|
+
"Request settings": "Configuración de la petición",
|
|
1120
|
+
"Request success": "Petición correcta",
|
|
1121
|
+
"Required": "Requerido",
|
|
1122
|
+
"Reset": "Restablecer",
|
|
1123
|
+
"Reset link expiration": "Restablecer la expiración del enlace",
|
|
1124
|
+
"Response record": "Response record",
|
|
1125
|
+
"Response type": "Response type",
|
|
1126
|
+
"Restart": "Restart",
|
|
1127
|
+
"Restart application": "Restart application",
|
|
1128
|
+
"Restrict only relative URIs": "Restrict only relative URIs",
|
|
1129
|
+
"Result": "Resultado",
|
|
1130
|
+
"Retry after {{count}} seconds": "Reintentar después de {{count}} segundos",
|
|
1131
|
+
"Return to the main application": "Return to the main application",
|
|
1132
|
+
"Return to the previous popup or page": "Return to the previous popup or page",
|
|
1133
|
+
"Rich Text": "Texto enriquecido",
|
|
1134
|
+
"Right": "Right",
|
|
1135
|
+
"Right fixed": "Right fixed",
|
|
1136
|
+
"Role UID": "Rol UID",
|
|
1137
|
+
"Role display name": "Nombre de visualización del rol",
|
|
1138
|
+
"Role name": "Nombre de rol",
|
|
1139
|
+
"Roles": "Roles",
|
|
1140
|
+
"Roles & Permissions": "Roles & permisos",
|
|
1141
|
+
"Route name": "Nombre de ruta",
|
|
1142
|
+
"Route permissions": "Permisos de ruta",
|
|
1143
|
+
"Routes": "Rutas",
|
|
1144
|
+
"Row click": "Row click",
|
|
1145
|
+
"Rows": "Rows",
|
|
1146
|
+
"SQL collection": "SQL collection",
|
|
1147
|
+
"Save": "Guardar",
|
|
1148
|
+
"Save action": "Guardar acción",
|
|
1149
|
+
"Save as block template": "Guardar como plantilla de bloque",
|
|
1150
|
+
"Save as inherited template": "Guardar como plantilla heredada",
|
|
1151
|
+
"Save as reference template": "Guardar como plantilla de referencia",
|
|
1152
|
+
"Save as template": "Guardar como plantilla",
|
|
1153
|
+
"Save conditions": "Guardar condiciones",
|
|
1154
|
+
"Save failed": "Save failed",
|
|
1155
|
+
"Save mode": "Save mode",
|
|
1156
|
+
"Save record": "Guardar registro",
|
|
1157
|
+
"Saved successfully": "Guardado correctamente",
|
|
1158
|
+
"Scale": "Scale",
|
|
1159
|
+
"Scale Down": "Reducir",
|
|
1160
|
+
"Scan to input": "Scan to input",
|
|
1161
|
+
"Scheme": "Scheme",
|
|
1162
|
+
"Scientifix notation": "Scientifix notation",
|
|
1163
|
+
"Scope name": "Nombre de ámbito",
|
|
1164
|
+
"Screen size": "Screen size",
|
|
1165
|
+
"Search": "Search",
|
|
1166
|
+
"Search and select collection": "Buscar y seleccionar colección",
|
|
1167
|
+
"Search collections...": "Search collections...",
|
|
1168
|
+
"Search parameters": "Search parameters",
|
|
1169
|
+
"Search plugin": "Buscar plugin",
|
|
1170
|
+
"Search plugin...": "Search plugin...",
|
|
1171
|
+
"Second": "Second",
|
|
1172
|
+
"Secondary confirmation": "Secondary confirmation",
|
|
1173
|
+
"Security": "Security",
|
|
1174
|
+
"Select": "Seleccionar",
|
|
1175
|
+
"Select a source field to use metadata of the field": "Select a source field to use metadata of the field",
|
|
1176
|
+
"Select a variable": "Select a variable",
|
|
1177
|
+
"Select all": "Select all",
|
|
1178
|
+
"Select an existing piece of data as the initialization data for the form": "Select an existing piece of data as the initialization data for the form",
|
|
1179
|
+
"Select collection": "Seleccionar colección",
|
|
1180
|
+
"Select data blocks to refresh": "Actualizar bloques de datos",
|
|
1181
|
+
"Select data source": "Seleccionar fuente de datos",
|
|
1182
|
+
"Select date": "Select date",
|
|
1183
|
+
"Select field": "Seleccionar campo",
|
|
1184
|
+
"Select file": "Select file",
|
|
1185
|
+
"Select form fields": "Select form fields",
|
|
1186
|
+
"Select grouping field": "Seleccionar campo de agrupación",
|
|
1187
|
+
"Select icon": "Seleccionar icono",
|
|
1188
|
+
"Select level": "Seleccionar nivel",
|
|
1189
|
+
"Select mode": "Select mode",
|
|
1190
|
+
"Select record": "Seleccionar registro",
|
|
1191
|
+
"Select target action": "Select target action",
|
|
1192
|
+
"Select target block": "Select target block",
|
|
1193
|
+
"Select target form block": "Select target form block",
|
|
1194
|
+
"Select template": "Seleccione plantilla",
|
|
1195
|
+
"Select trigger event": "Select trigger event",
|
|
1196
|
+
"Select variable": "Select variable",
|
|
1197
|
+
"Select view": "Seleccionar vista",
|
|
1198
|
+
"Selected": "Seleccionado",
|
|
1199
|
+
"Selected Collections": "Selected Collections",
|
|
1200
|
+
"Selected records deleted successfully": "Selected records deleted successfully",
|
|
1201
|
+
"Selector": "Selector",
|
|
1202
|
+
"Selector mode": "Modo selector",
|
|
1203
|
+
"Selector setting": "Selector setting",
|
|
1204
|
+
"Send code": "Enviar código",
|
|
1205
|
+
"Separate multiple values with comma or Enter": "Separate multiple values with comma or Enter",
|
|
1206
|
+
"Separator": "Separator",
|
|
1207
|
+
"Set Template Engine": "Set Template Engine",
|
|
1208
|
+
"Set action state": "Set action state",
|
|
1209
|
+
"Set block height": "Set block height",
|
|
1210
|
+
"Set block layout": "Set block layout",
|
|
1211
|
+
"Set block state": "Set block state",
|
|
1212
|
+
"Set button state": "Set button state",
|
|
1213
|
+
"Set condition": "Set condition",
|
|
1214
|
+
"Set data loading mode": "Establecer el modo de carga de datos",
|
|
1215
|
+
"Set data scope": "Set data scope",
|
|
1216
|
+
"Set default sorting rules": "Establecer reglas de ordenación por defecto",
|
|
1217
|
+
"Set default value": "Establecer valor por defecto",
|
|
1218
|
+
"Set details field state": "Set details field state",
|
|
1219
|
+
"Set field state": "Set field state",
|
|
1220
|
+
"Set field value": "Set field value",
|
|
1221
|
+
"Set form field state": "Set form field state",
|
|
1222
|
+
"Set form field value": "Set form field value",
|
|
1223
|
+
"Set state": "Set state",
|
|
1224
|
+
"Set the count of columns displayed in a row": "Set the count of columns displayed in a row",
|
|
1225
|
+
"Set the data scope": "Establecer el ámbito de los datos",
|
|
1226
|
+
"Set validation rules": "Establecer reglas de validación",
|
|
1227
|
+
"Set value": "Set value",
|
|
1228
|
+
"Setting": "Setting",
|
|
1229
|
+
"Settings": "Settings",
|
|
1230
|
+
"Show date range": "Show date range",
|
|
1231
|
+
"Show file name": "Show file name",
|
|
1232
|
+
"Show in menu": "Mostrar en menú",
|
|
1233
|
+
"Show label": "Show label",
|
|
1234
|
+
"Show lunar": "Mostrar lunar",
|
|
1235
|
+
"Show message": "Show message",
|
|
1236
|
+
"Show notification": "Show notification",
|
|
1237
|
+
"Show row numbers": "Show row numbers",
|
|
1238
|
+
"Show time": "Mostrar hora",
|
|
1239
|
+
"Sign in": "Iniciar sesión",
|
|
1240
|
+
"Sign in via account": "Iniciar sesión a través de la cuenta",
|
|
1241
|
+
"Sign in via phone": "Iniciar sesión a través del teléfono",
|
|
1242
|
+
"Sign in with another account": "Sign in with another account",
|
|
1243
|
+
"Sign out": "Cerrar sesión",
|
|
1244
|
+
"Sign up": "Registrarse",
|
|
1245
|
+
"Sign up successfully, and automatically jump to the sign in page": "Registrarse correctamente y saltar automáticamente a la página de inicio de sesión",
|
|
1246
|
+
"Signed up successfully. It will jump to the login page.": "Registrarse correctamente. Saltará a la página de inicio de sesión",
|
|
1247
|
+
"Simple string replacement, can be used to interpolate variables in a string.": "Simple string replacement, can be used to interpolate variables in a string.",
|
|
1248
|
+
"Single line text": "Texto de una línea",
|
|
1249
|
+
"Single select": "Selección simple",
|
|
1250
|
+
"Single select and radio fields can be used as the grouping field": "Los campos de selección únicos y radio se pueden utilizar como campo de agrupación",
|
|
1251
|
+
"Size": "Tamaño",
|
|
1252
|
+
"Sizes": "Sizes",
|
|
1253
|
+
"Skip getting the total number of table records during paging to speed up loading. It is recommended to enable this option for data tables with a large amount of data": "Skip getting the total number of table records during paging to speed up loading. It is recommended to enable this option for data tables with a large amount of data",
|
|
1254
|
+
"Skip required validation": "Omitir validación obligatoria",
|
|
1255
|
+
"Small": "Pequeño",
|
|
1256
|
+
"SmartTv": "SmartTv",
|
|
1257
|
+
"Some files are not uploaded correctly, please check.": "Some files are not uploaded correctly, please check.",
|
|
1258
|
+
"Sorry, the page you visited does not exist.": "Lo siento, la página que visitaste no existe.",
|
|
1259
|
+
"Sort": "Ordenar",
|
|
1260
|
+
"Sortable": "Clasificable",
|
|
1261
|
+
"Source collection": "Colección de fuente",
|
|
1262
|
+
"Source collections": "Colecciones de fuente",
|
|
1263
|
+
"Source key": "Clave de origen",
|
|
1264
|
+
"Specific properties": "Specific properties",
|
|
1265
|
+
"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.",
|
|
1266
|
+
"Specify height": "Specify height",
|
|
1267
|
+
"Start": "Start",
|
|
1268
|
+
"Start accessor": "Start accessor",
|
|
1269
|
+
"Start date field": "Campo de fecha de inicio",
|
|
1270
|
+
"State": "State",
|
|
1271
|
+
"Stay on current page": "Permanecer en la página actual",
|
|
1272
|
+
"Stay on the current popup or page": "Stay on the current popup or page",
|
|
1273
|
+
"Steps": "Steps",
|
|
1274
|
+
"Storage base URL": "URL base de almacenamiento",
|
|
1275
|
+
"Storage display name": "Mostrar nombre de almacenamiento",
|
|
1276
|
+
"Storage name": "Nombre de almacenamiento",
|
|
1277
|
+
"Storage type": "Tipo de almacenamiento",
|
|
1278
|
+
"Store the creation time of each record": "Almacenar la hora de creación de cada registro",
|
|
1279
|
+
"Store the creation user of each record": "Almacenar el usuario de creación de cada registro",
|
|
1280
|
+
"Store the last update time of each record": "Almacenar la hora de última actualización de cada registro",
|
|
1281
|
+
"Store the last update user of each record": "Almacenar el usuario de última actualización de cada registro",
|
|
1282
|
+
"Street": "Calle",
|
|
1283
|
+
"String": "String",
|
|
1284
|
+
"String template": "String template",
|
|
1285
|
+
"Style": "Style",
|
|
1286
|
+
"Sub-detail": "Sub-detail",
|
|
1287
|
+
"Sub-details": "Sub-details",
|
|
1288
|
+
"Sub-form": "Subformulario",
|
|
1289
|
+
"Sub-form(Popover)": "Sub-form(Popover)",
|
|
1290
|
+
"Sub-table": "Subtabla",
|
|
1291
|
+
"Subform mode": "Modo subformulario",
|
|
1292
|
+
"Submit": "Enviar",
|
|
1293
|
+
"Submit action settings": "Submit action settings",
|
|
1294
|
+
"Submit record": "Submit record",
|
|
1295
|
+
"Submitted successfully": "Enviado con éxito",
|
|
1296
|
+
"Subtable": "Subtabla",
|
|
1297
|
+
"Subtable mode": "Modo subtabla",
|
|
1298
|
+
"Successfully": "Successfully",
|
|
1299
|
+
"Suffix": "Suffix",
|
|
1300
|
+
"Super admin": "Super admin",
|
|
1301
|
+
"Superior department": "Superior department",
|
|
1302
|
+
"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)",
|
|
1303
|
+
"Support for a single or bulk upload.": "Support for a single or bulk upload.",
|
|
1304
|
+
"Switch role": "Cambiar role",
|
|
1305
|
+
"Switching the picker, the value and default value will be cleared": "Switching the picker, the value and default value will be cleared",
|
|
1306
|
+
"Sync from database": "Sync from database",
|
|
1307
|
+
"Sync from form fields": "Sync from form fields",
|
|
1308
|
+
"Sync successfully": "Sync successfully",
|
|
1309
|
+
"Syntax references": "Syntax references",
|
|
1310
|
+
"System": "System",
|
|
1311
|
+
"System & security": "System & security",
|
|
1312
|
+
"System fields": "Campos de sistema",
|
|
1313
|
+
"System info": "Información del sistema",
|
|
1314
|
+
"System management": "System management",
|
|
1315
|
+
"System settings": "Ajustes del sistema",
|
|
1316
|
+
"System title": "Título del sistema",
|
|
1317
|
+
"System variables": "Variables del sistema",
|
|
1318
|
+
"Tab": "Pestaña",
|
|
1319
|
+
"Tab name": "Nombre de pestaña",
|
|
1320
|
+
"Table": "Tabla",
|
|
1321
|
+
"Table OID(Inheritance)": "Tabla OID(Herencia)",
|
|
1322
|
+
"Table column settings": "Table column settings",
|
|
1323
|
+
"Table density": "Table density",
|
|
1324
|
+
"Table selected records": "Table selected records",
|
|
1325
|
+
"Table settings": "Table settings",
|
|
1326
|
+
"Table size": "Table size",
|
|
1327
|
+
"Tablet": "Tablet",
|
|
1328
|
+
"Tablet device": "Tablet device",
|
|
1329
|
+
"Tag": "Tag",
|
|
1330
|
+
"Tag color field": "Tag color field",
|
|
1331
|
+
"Target": "Objetivo",
|
|
1332
|
+
"Target block UID": "Target block UID",
|
|
1333
|
+
"Target block uid": "Target block uid",
|
|
1334
|
+
"Target collection": "Colección de destino",
|
|
1335
|
+
"Target form block": "Target form block",
|
|
1336
|
+
"Target key": "Clave de destino",
|
|
1337
|
+
"Target position": "Posición de destino",
|
|
1338
|
+
"Template": "Plantilla",
|
|
1339
|
+
"Template Data": "Template Data",
|
|
1340
|
+
"Template engine": "Template engine",
|
|
1341
|
+
"Template fields": "Template fields",
|
|
1342
|
+
"Template name": "Nombre de plantilla",
|
|
1343
|
+
"Templates": "Plantillas",
|
|
1344
|
+
"Tencent COS": "Tencent COS",
|
|
1345
|
+
"Text": "Text",
|
|
1346
|
+
"Text Align": "Text Align",
|
|
1347
|
+
"Text input": "Text input",
|
|
1348
|
+
"Text only": "Text only",
|
|
1349
|
+
"The application is reloading, please do not close the page.": "The application is reloading, please do not close the page.",
|
|
1350
|
+
"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).",
|
|
1351
|
+
"The current dependency version of the plugin does not match the version of the application and may not work properly. Are you sure you want to continue enabling the plugin?": "The current dependency version of the plugin does not match the version of the application and may not work properly. Are you sure you want to continue enabling the plugin?",
|
|
1352
|
+
"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}}\"",
|
|
1353
|
+
"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}}\"",
|
|
1354
|
+
"The current user only has the UI configuration permission, but don't have view permission for collection \"{{name}}\"": "The current user only has the UI configuration permission, but don't have view permission for collection \"{{name}}\"",
|
|
1355
|
+
"The deletion was successful.": "Eliminación correcta",
|
|
1356
|
+
"The field has been deleted": "The field has been deleted",
|
|
1357
|
+
"The field value cannot be greater than ": "El valor del campo no puede ser mayor que ",
|
|
1358
|
+
"The field value cannot be less than ": "El valor del campo no puede ser menor que ",
|
|
1359
|
+
"The field value is not a email format": "The field value is not a email format",
|
|
1360
|
+
"The field value is not an integer number": "El valor del campo no es un número entero",
|
|
1361
|
+
"The field value is required": "The field value is required",
|
|
1362
|
+
"The following field types are not compatible and do not support output and display": "The following field types are not compatible and do not support output and display",
|
|
1363
|
+
"The selected fields will automatically populate the form": "The selected fields will automatically populate the form",
|
|
1364
|
+
"The title field is used to identify the template record": "The title field is used to identify the template record",
|
|
1365
|
+
"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.": "El valor de esta variable se deriva de la cadena de consulta de la URL de la página. Esta variable sólo puede utilizarse normalmente cuando la página tiene una cadena de consulta.",
|
|
1366
|
+
"The will interrupt service, it may take a few seconds to restart. Are you sure to continue?": "The will interrupt service, it may take a few seconds to restart. Are you sure to continue?",
|
|
1367
|
+
"The {{type}} \"{{name}}\" may have been deleted. Please remove this {{blockType}}.": "El {{type}} \"{{name}}\" puede haber sido eliminado. Por favor, elimine este {{blockType}}.",
|
|
1368
|
+
"Theme": "Theme",
|
|
1369
|
+
"Then": "Después",
|
|
1370
|
+
"Third party services": "Third party services",
|
|
1371
|
+
"This Month": "This Month",
|
|
1372
|
+
"This Quarter": "This Quarter",
|
|
1373
|
+
"This Week": "This Week",
|
|
1374
|
+
"This Year": "This Year",
|
|
1375
|
+
"This and following events": "Este y los siguientes eventos",
|
|
1376
|
+
"This event": "Este evento",
|
|
1377
|
+
"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).",
|
|
1378
|
+
"This field is required": "This field is required",
|
|
1379
|
+
"This is a demo text, **supports Markdown syntax**.": "Este es un texto de demostración, **soporta sintaxis Markdown**",
|
|
1380
|
+
"This is likely a NocoBase internals bug. Please open an issue at <1>here</1>": "This is likely a NocoBase internals bug. Please open an issue at <1>here</1>",
|
|
1381
|
+
"This month": "Este mes",
|
|
1382
|
+
"This quarter": "Este trimestre",
|
|
1383
|
+
"This variable has been deprecated and can be replaced with \"Current form\"": "La variable ha sido obsoleta; \"Formulario actual\" puede ser utilizada como sustituto",
|
|
1384
|
+
"This week": "Esta semana",
|
|
1385
|
+
"This year": "Este año",
|
|
1386
|
+
"Through collection": "Colección de paso",
|
|
1387
|
+
"Time": "Hora",
|
|
1388
|
+
"Time format": "Formato hora",
|
|
1389
|
+
"Time scale": "Escala de tiempo",
|
|
1390
|
+
"Timeout config": "Timeout config",
|
|
1391
|
+
"Timestamp": "Timestamp",
|
|
1392
|
+
"Title": "Título",
|
|
1393
|
+
"Title & description": "Title & description",
|
|
1394
|
+
"Title accessor": "Title accessor",
|
|
1395
|
+
"Title field": "Campo de título",
|
|
1396
|
+
"Title field component": "Title field component",
|
|
1397
|
+
"Title position": "Title position",
|
|
1398
|
+
"Today": "Hoy",
|
|
1399
|
+
"Toggles the subfield mode": "Alterna el modo de subcampo",
|
|
1400
|
+
"Tomorrow": "Mañana",
|
|
1401
|
+
"Tooltip": "Tooltip",
|
|
1402
|
+
"Top left": "Top left",
|
|
1403
|
+
"Top right": "Top right",
|
|
1404
|
+
"Total {{count}} items": "Total {{count}} elementos",
|
|
1405
|
+
"Tree collection": "Tree collection",
|
|
1406
|
+
"Tree table": "Tabla de árbol",
|
|
1407
|
+
"Trigger condition": "Trigger condition",
|
|
1408
|
+
"Trigger event": "Trigger event",
|
|
1409
|
+
"Trigger workflow": "Desencadenar flujo de trabajo",
|
|
1410
|
+
"Triggered when the row is clicked": "Activar al hacer clic en la fila",
|
|
1411
|
+
"True": "True",
|
|
1412
|
+
"Try again": "Try again",
|
|
1413
|
+
"Turn pages": "Pasar páginas",
|
|
1414
|
+
"Two tone": "Two tone",
|
|
1415
|
+
"Type": "Tipo",
|
|
1416
|
+
"UI Editor": "Editor de IU",
|
|
1417
|
+
"UI editor": "IU editor",
|
|
1418
|
+
"URL": "URL",
|
|
1419
|
+
"URL search params": "Parámetros de búsqueda de URL",
|
|
1420
|
+
"UnSelect all": "UnSelect all",
|
|
1421
|
+
"Unauthenticated. Please sign in to continue.": "Unauthenticated. Please sign in to continue.",
|
|
1422
|
+
"Unconnected": "Sin conexión",
|
|
1423
|
+
"Unicode characters are permitted": "Unicode characters are permitted",
|
|
1424
|
+
"Unique": "Único",
|
|
1425
|
+
"Unit conversion": "Unit conversion",
|
|
1426
|
+
"Unix Timestamp": "Unix Timestamp",
|
|
1427
|
+
"Unknown field type": "Unknown field type",
|
|
1428
|
+
"Unnamed": "Unnamed",
|
|
1429
|
+
"Unpinned": "Desfijado",
|
|
1430
|
+
"Unsafe integer": "Unsafe integer",
|
|
1431
|
+
"Unsaved changes": "Cambios no guardados",
|
|
1432
|
+
"Update": "Actualizar",
|
|
1433
|
+
"Update all data?": "¿Actualizar todos los datos?",
|
|
1434
|
+
"Update or create": "Update or create",
|
|
1435
|
+
"Update plugin": "Actualizar plugin",
|
|
1436
|
+
"Update record": "Update record",
|
|
1437
|
+
"Update record action": "Update record",
|
|
1438
|
+
"Update selected data?": "¿Actualizar los datos seleccionados?",
|
|
1439
|
+
"Updated successfully": "Actualizado correctamente",
|
|
1440
|
+
"UpdatedAt": "Registro del último usuario actualizado de una fila",
|
|
1441
|
+
"UpdatedBy": "Registro del último usuario actualizado de una fila",
|
|
1442
|
+
"Upgrade": "Actualizar",
|
|
1443
|
+
"Upload": "Subir",
|
|
1444
|
+
"Upload file settings": "Upload file settings",
|
|
1445
|
+
"Upload new version": "Subir nueva versión",
|
|
1446
|
+
"Upload plugin": "Subir plugin",
|
|
1447
|
+
"Uploading": "Uploading",
|
|
1448
|
+
"Use simple pagination mode": "Use simple pagination mode",
|
|
1449
|
+
"Use the built-in static file server": "Utilizar el servidor de archivos estático incorporado",
|
|
1450
|
+
"Use the same time zone (GMT) for all users": "Utilizar la misma zona horaria (GMT) para todos los usuarios",
|
|
1451
|
+
"Used for drag and drop sorting scenarios, supporting grouping sorting": "Used for drag and drop sorting scenarios, supporting grouping sorting",
|
|
1452
|
+
"User": "Usuario",
|
|
1453
|
+
"User not found. Please sign in again to continue.": "User not found. Please sign in again to continue.",
|
|
1454
|
+
"User password changed, please signin again.": "User password changed, please signin again.",
|
|
1455
|
+
"Username": "Username",
|
|
1456
|
+
"Users": "Usuarios",
|
|
1457
|
+
"Users & permissions": "Users & permissions",
|
|
1458
|
+
"Valid range: 10-40": "Valid range: 10-40",
|
|
1459
|
+
"Valid range: 100-900": "Valid range: 100-900",
|
|
1460
|
+
"Validation": "Validation",
|
|
1461
|
+
"Validation rule": "Regla de validación",
|
|
1462
|
+
"Value": "Valor",
|
|
1463
|
+
"Variable identifier": "Variable identifier",
|
|
1464
|
+
"Variable title": "Variable title",
|
|
1465
|
+
"Verification code": "Código de verificación",
|
|
1466
|
+
"Version": "Versión",
|
|
1467
|
+
"Version range": "Rango de versión",
|
|
1468
|
+
"Vertical": "Vertical",
|
|
1469
|
+
"View": "Ver",
|
|
1470
|
+
"View all plugins": "Ver todos los plugins",
|
|
1471
|
+
"View record": "Ver registro",
|
|
1472
|
+
"Village": "Pueblo",
|
|
1473
|
+
"Visible": "Visible",
|
|
1474
|
+
"Volcano": "Volcán",
|
|
1475
|
+
"Wearable": "Wearable",
|
|
1476
|
+
"Week": "Semana",
|
|
1477
|
+
"Weekly": "Semanal",
|
|
1478
|
+
"When a field is selected for grouping, it will be grouped first before sorting.": "When a field is selected for grouping, it will be grouped first before sorting.",
|
|
1479
|
+
"When condition is met": "When condition is met",
|
|
1480
|
+
"When condition is not met": "When condition is not met",
|
|
1481
|
+
"When submitting the following fields, the saved values are": "Al enviar los siguientes campos, los valores guardados son",
|
|
1482
|
+
"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",
|
|
1483
|
+
"When the Label exceeds the width": "When the Label exceeds the width",
|
|
1484
|
+
"With condition": "With condition",
|
|
1485
|
+
"Without condition": "Without condition",
|
|
1486
|
+
"Work week": "Semana de trabajo",
|
|
1487
|
+
"Workflow": "Workflow",
|
|
1488
|
+
"Wrap": "Wrap",
|
|
1489
|
+
"Wysiwyg": "Wysiwyg",
|
|
1490
|
+
"Year": "Año",
|
|
1491
|
+
"Year-Month-Day": "Año-Mes-Día",
|
|
1492
|
+
"Year/Month/Day": "Año/Mes/Día",
|
|
1493
|
+
"Yearly": "Anual",
|
|
1494
|
+
"Yes": "Sí",
|
|
1495
|
+
"Yesterday": "Ayer",
|
|
1496
|
+
"Your session has expired. Please sign in again.": "Your session has expired. Please sign in again.",
|
|
1497
|
+
"conditions in the group": "conditions in the group",
|
|
1498
|
+
"contains": "contiene",
|
|
1499
|
+
"data source": "fuente de datos",
|
|
1500
|
+
"does not contain": "no contiene",
|
|
1501
|
+
"edit title": "Editar título",
|
|
1502
|
+
"ends with": "termina con",
|
|
1503
|
+
"exists": "existe",
|
|
1504
|
+
"is": "es",
|
|
1505
|
+
"is after": "está después de",
|
|
1506
|
+
"is any of": "is any of",
|
|
1507
|
+
"is before": "está antes de",
|
|
1508
|
+
"is between": "está entre",
|
|
1509
|
+
"is current logged-in user": "es el usuario conectado actual",
|
|
1510
|
+
"is empty": "está vacío",
|
|
1511
|
+
"is none of": "is none of",
|
|
1512
|
+
"is not": "no es",
|
|
1513
|
+
"is not current logged-in user": "no es el usuario actual",
|
|
1514
|
+
"is not empty": "no está vacío",
|
|
1515
|
+
"is on or after": "está encendido o después",
|
|
1516
|
+
"is on or before": "está encendido o antes",
|
|
1517
|
+
"is variable": "es variable",
|
|
1518
|
+
"item": "item",
|
|
1519
|
+
"items": "items",
|
|
1520
|
+
"loading": "cargando",
|
|
1521
|
+
"name is required": "el nombre es obligatorio",
|
|
1522
|
+
"not ends with": "no termina con",
|
|
1523
|
+
"not exists": "no existe",
|
|
1524
|
+
"not starts with": "no empieza por",
|
|
1525
|
+
"pixels": "pixels",
|
|
1526
|
+
"re-download file": "volver a descargar el archivo",
|
|
1527
|
+
"starts with": "empieza por",
|
|
1528
|
+
"tlds": "tlds",
|
|
1529
|
+
"visible": "visible",
|
|
1530
|
+
"{{#label}} email address doesn’t meet the required format": "{{#label}} email address doesn’t meet the required format",
|
|
1531
|
+
"{{#label}} is not allowed to be empty": "{{#label}} is not allowed to be empty",
|
|
1532
|
+
"{{#label}} is required": "{{#label}} is required",
|
|
1533
|
+
"{{#label}} length must be at least {{#limit}} characters long": "{{#label}} length must be at least {{#limit}} characters long",
|
|
1534
|
+
"{{#label}} length must be less than or equal to {{#limit}} characters long": "{{#label}} length must be less than or equal to {{#limit}} characters long",
|
|
1535
|
+
"{{#label}} length must be {{#limit}} characters long": "{{#label}} length must be {{#limit}} characters long",
|
|
1536
|
+
"{{#label}} must be a credit card": "{{#label}} must be a credit card",
|
|
1537
|
+
"{{#label}} must be a float or double": "{{#label}} must be a float or double",
|
|
1538
|
+
"{{#label}} must be a multiple of {{#multiple}}": "{{#label}} must be a multiple of {{#multiple}}",
|
|
1539
|
+
"{{#label}} must be a negative number": "{{#label}} must be a negative number",
|
|
1540
|
+
"{{#label}} must be a number": "{{#label}} must be a number",
|
|
1541
|
+
"{{#label}} must be a positive number": "{{#label}} must be a positive number",
|
|
1542
|
+
"{{#label}} must be a safe number": "{{#label}} must be a safe number",
|
|
1543
|
+
"{{#label}} must be a string": "{{#label}} must be a string",
|
|
1544
|
+
"{{#label}} must be a valid ISO 8601 date": "{{#label}} must be a valid ISO 8601 date",
|
|
1545
|
+
"{{#label}} must be a valid UUID": "{{#label}} must be a valid UUID",
|
|
1546
|
+
"{{#label}} must be a valid date": "{{#label}} must be a valid date",
|
|
1547
|
+
"{{#label}} must be a valid hostname": "{{#label}} must be a valid hostname",
|
|
1548
|
+
"{{#label}} must be a valid port": "{{#label}} must be a valid port",
|
|
1549
|
+
"{{#label}} must be a valid uri": "{{#label}} must be a valid uri",
|
|
1550
|
+
"{{#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",
|
|
1551
|
+
"{{#label}} must be an integer": "{{#label}} must be an integer",
|
|
1552
|
+
"{{#label}} must be greater than or equal to {{#limit}}": "{{#label}} must be greater than or equal to {{#limit}}",
|
|
1553
|
+
"{{#label}} must be greater than {{#limit}}": "{{#label}} must be greater than {{#limit}}",
|
|
1554
|
+
"{{#label}} must be in {{#format}} format": "{{#label}} must be in {{#format}} format",
|
|
1555
|
+
"{{#label}} must be less than or equal to {{#limit}}": "{{#label}} must be less than or equal to {{#limit}}",
|
|
1556
|
+
"{{#label}} must be less than {{#limit}}": "{{#label}} must be less than {{#limit}}",
|
|
1557
|
+
"{{#label}} must not have leading or trailing whitespace": "{{#label}} must not have leading or trailing whitespace",
|
|
1558
|
+
"{{#label}} must not have more than {{#limit}} decimal places": "{{#label}} must not have more than {{#limit}} decimal places",
|
|
1559
|
+
"{{#label}} must only contain alpha-numeric and underscore characters": "{{#label}} must only contain alpha-numeric and underscore characters",
|
|
1560
|
+
"{{#label}} must only contain alpha-numeric characters": "{{#label}} must only contain alpha-numeric characters",
|
|
1561
|
+
"{{#label}} must only contain hexadecimal characters": "{{#label}} must only contain hexadecimal characters",
|
|
1562
|
+
"{{#label}} must only contain lowercase characters": "{{#label}} must only contain lowercase characters",
|
|
1563
|
+
"{{#label}} must only contain uppercase characters": "{{#label}} must only contain uppercase characters",
|
|
1564
|
+
"{{#label}} with value \"{{#value}}\" fails to match the required pattern": "{{#label}} with value \"{{#value}}\" fails to match the required pattern",
|
|
1565
|
+
"{{#label}} with value \"{{#value}}\" fails to match the {{#name}} pattern": "{{#label}} with value \"{{#value}}\" fails to match the {{#name}} pattern",
|
|
1566
|
+
"{{#label}} with value \"{{#value}}\" matches the inverted pattern": "{{#label}} with value \"{{#value}}\" matches the inverted pattern",
|
|
1567
|
+
"{{#label}} with value \"{{#value}}\" matches the inverted {{#name}} pattern": "{{#label}} with value \"{{#value}}\" matches the inverted {{#name}} pattern",
|
|
1568
|
+
"{{count}} filter items": "{{count}} elementos de filtro",
|
|
1569
|
+
"{{count}} more items": "{{count}} más elementos",
|
|
1570
|
+
"≠": "≠",
|
|
1571
|
+
"≤": "≤",
|
|
1572
|
+
"≥": "≥"
|
|
1573
|
+
}
|