@nocobase/client 2.0.0-alpha.6 → 2.0.0-alpha.60
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.dumirc.ts +4 -4
- 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 +9 -0
- 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 +8 -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/{components/code-editor/completions/index.d.ts → common/Markdown/style.d.ts} +1 -2
- 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/hooks/useRunJSDocCompletions.d.ts +1 -1
- package/es/flow/components/code-editor/index.d.ts +6 -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/runjsCompletions.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/{UpdateActionModel.d.ts → ExpandCollapseActionModel.d.ts} +8 -10
- 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 +27 -0
- package/es/flow/models/actions/index.d.ts +5 -1
- 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/assign-form/AssignFormModel.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 +2 -1
- package/es/flow/models/blocks/form/EditFormModel.d.ts +1 -0
- package/es/flow/models/blocks/form/FormBlockModel.d.ts +13 -2
- 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 +15 -2
- 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 +9 -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/JSEditableFieldModel.d.ts +8 -0
- package/es/flow/models/fields/JSFieldModel.d.ts +1 -1
- package/es/flow/models/fields/JSItemModel.d.ts +1 -2
- 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 +25991 -18546
- 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-CiyrLQdu.js +2237 -0
- package/lib/index.js +449 -293
- 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/code-editor/snippets/loader.d.ts +0 -19
- package/es/flow/components/decorator/injectable.d.ts +0 -19
- package/lib/index-C3fHjsMw-BwUYFnGr.js +0 -2081
- 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 -996
- 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 -1396
- package/lib/locale/zh-TW.js +0 -938
- /package/es/flow/{internal/utils → utils}/blockUtils.d.ts +0 -0
|
@@ -0,0 +1,1617 @@
|
|
|
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)": "(Apenas 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": "Controle de Acesso",
|
|
11
|
+
"ASC": "ASC",
|
|
12
|
+
"Accept": "Aceitar",
|
|
13
|
+
"Access": "Acesso",
|
|
14
|
+
"Access control": "Access control",
|
|
15
|
+
"Accessible": "Acessível",
|
|
16
|
+
"Accuracy": "Accuracy",
|
|
17
|
+
"Action": "Action",
|
|
18
|
+
"Action after successful submission": "Action after successful submission",
|
|
19
|
+
"Action column": "Coluna de ação",
|
|
20
|
+
"Action display name": "Nome de exibição da ação",
|
|
21
|
+
"Action logs": "Registros de ação",
|
|
22
|
+
"Action name": "Nome da ação",
|
|
23
|
+
"Action on existing records": "Ação em registros existentes",
|
|
24
|
+
"Action on new records": "Ação em novos registros",
|
|
25
|
+
"Action permission": "Permissão de ação",
|
|
26
|
+
"Action permissions": "Permissões de ação",
|
|
27
|
+
"Action scope": "Escopo da ação",
|
|
28
|
+
"Action type": "Tipo de ação",
|
|
29
|
+
"Actions": "Ações",
|
|
30
|
+
"Actions column": "Actions column",
|
|
31
|
+
"Add": "Adicionar",
|
|
32
|
+
"Add & Update": "Add & Update",
|
|
33
|
+
"Add Markdown": "Add Markdown",
|
|
34
|
+
"Add action": "Add action",
|
|
35
|
+
"Add attach": "Adicionar anexo",
|
|
36
|
+
"Add block": "Adicionar bloco",
|
|
37
|
+
"Add card": "Adicionar cartão",
|
|
38
|
+
"Add category": "Adicionar categoria",
|
|
39
|
+
"Add child": "Adicionar filho",
|
|
40
|
+
"Add child route": "Adicionar rota filha",
|
|
41
|
+
"Add condition": "Adicionar condição",
|
|
42
|
+
"Add condition group": "Adicionar grupo de condições",
|
|
43
|
+
"Add event flow": "Add event flow",
|
|
44
|
+
"Add exportable field": "Add exportable field",
|
|
45
|
+
"Add field": "Adicionar campo",
|
|
46
|
+
"Add filter": "Adicionar filtro",
|
|
47
|
+
"Add filter group": "Adicionar grupo de filtro",
|
|
48
|
+
"Add group": "Adicionar grupo",
|
|
49
|
+
"Add link": "Adicionar link",
|
|
50
|
+
"Add linkage rule": "Adicionar regra de ligação",
|
|
51
|
+
"Add menu item": "Adicionar item de menu",
|
|
52
|
+
"Add new": "Adicionar novo",
|
|
53
|
+
"Add new mode": "Add new mode",
|
|
54
|
+
"Add option": "Adicionar opção",
|
|
55
|
+
"Add page": "Adicionar página",
|
|
56
|
+
"Add parameter": "Add parameter",
|
|
57
|
+
"Add plugin": "Add plugin",
|
|
58
|
+
"Add property": "Adicionar propriedade",
|
|
59
|
+
"Add record": "Adicionar registro",
|
|
60
|
+
"Add request header": "Add request header",
|
|
61
|
+
"Add role": "Adicionar função",
|
|
62
|
+
"Add rule": "Add rule",
|
|
63
|
+
"Add sort field": "Adicionar campo de ordenação",
|
|
64
|
+
"Add step": "Add step",
|
|
65
|
+
"Add storage": "Adicionar armazenamento",
|
|
66
|
+
"Add tab": "Adicionar guia",
|
|
67
|
+
"Add target block": "Add target block",
|
|
68
|
+
"Add template": "Adicionar modelo",
|
|
69
|
+
"Add text": "Adicionar texto",
|
|
70
|
+
"Add type": "Adicionar tipo",
|
|
71
|
+
"Add validation rule": "Adicionar regra de validação",
|
|
72
|
+
"Add variable": "Add variable",
|
|
73
|
+
"Add {{type}} after \"{{title}}\"": "Adicionar {{type}} depois \"{{title}}\"",
|
|
74
|
+
"Add {{type}} before \"{{title}}\"": "Adicionar {{type}} antes \"{{title}}\"",
|
|
75
|
+
"Add {{type}} in \"{{title}}\"": "Adicionar {{type}} em \"{{title}}\"",
|
|
76
|
+
"Adicionar campo exportável": "Adicionar campo exportável",
|
|
77
|
+
"Advanced type": "Tipo avançado",
|
|
78
|
+
"After": "Depois",
|
|
79
|
+
"After change": "Depois da alteração",
|
|
80
|
+
"After clicking the custom button, the following field values will be assigned according to the following form.": "After clicking the custom button, the following field values will be assigned according to the following form.",
|
|
81
|
+
"After clicking the custom button, the following fields of the current record will be saved according to the following form.": "After clicking the custom button, the following fields of the current record will be saved according to the following form.",
|
|
82
|
+
"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.": "Depois de ocultar, este menu não aparecerá mais na barra de menus. Para mostrar novamente, você precisa ir à página de gerenciamento de rotas para configurá-lo.",
|
|
83
|
+
"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.": "Depois de ocultar, esta guia não aparecerá mais na barra de guias. Para mostrá-la novamente, você precisa ir à página de gerenciamento de rotas para configurá-la.",
|
|
84
|
+
"After successful bulk update": "Após a atualização em massa bem sucedida",
|
|
85
|
+
"After successful request": "After successful request",
|
|
86
|
+
"After successful save": "After successful save",
|
|
87
|
+
"After successful submission": "Depois do envio bem-sucedido",
|
|
88
|
+
"After successful submission, the selected data blocks will be automatically refreshed.": "Após a atualização em massa bem sucedida.",
|
|
89
|
+
"After successful update": "After successful update",
|
|
90
|
+
"Agenda": "Agenda",
|
|
91
|
+
"Aliyun OSS": "Aliyun OSS",
|
|
92
|
+
"All": "Todos",
|
|
93
|
+
"All collections": "Todas as coleções",
|
|
94
|
+
"All collections use general action permissions by default; permission configured individually will override the default one.": "Todas as coleções usam permissões de ação gerais por padrão; permissões configuradas individualmente irão substituir a padrão.",
|
|
95
|
+
"All events": "Todos os eventos",
|
|
96
|
+
"All plugin settings": "Configurações de todos os plugins",
|
|
97
|
+
"All records": "Todos os registros",
|
|
98
|
+
"Allow": "Permitir",
|
|
99
|
+
"Allow access": "Permitir acesso",
|
|
100
|
+
"Allow action": "Permitir ação",
|
|
101
|
+
"Allow add new": "Permitir novas adições",
|
|
102
|
+
"Allow add new data": "Allow add new data",
|
|
103
|
+
"Allow add new, update and delete actions": "Allow add new, update and delete actions",
|
|
104
|
+
"Allow adding records to the current collection": "Allow adding records to the current collection",
|
|
105
|
+
"Allow disassociation": "Allow disassociation",
|
|
106
|
+
"Allow dissociate": "Allow dissociate",
|
|
107
|
+
"Allow linking to multiple records": "Permitir vinculação a vários registros",
|
|
108
|
+
"Allow list": "Allow list",
|
|
109
|
+
"Allow multiple": "Permitir múltiplos",
|
|
110
|
+
"Allow multiple selection": "Permitir seleção múltipla",
|
|
111
|
+
"Allow relative URIs": "Allow relative URIs",
|
|
112
|
+
"Allow selection of existing file": "Allow selection of existing file",
|
|
113
|
+
"Allow selection of existing records": "Permitir a selecção dos registos existentes",
|
|
114
|
+
"Allow sign up": "Permitir registro",
|
|
115
|
+
"Allow to configure plugins": "Permitir configurar plugins",
|
|
116
|
+
"Allow to desgin pages": "Permitir projetar páginas",
|
|
117
|
+
"Allow to manage plugins": "Permitir gerenciar plugins",
|
|
118
|
+
"Allow uploading multiple files": "Permitir upload de vários arquivos",
|
|
119
|
+
"Allows configuration of the whole system, including UI, collections, permissions, etc.": "Permite a configuração de todo o sistema, incluindo UI, coleções, permissões, etc.",
|
|
120
|
+
"Allows to clear cache, reboot application": "Allows to clear cache, reboot application",
|
|
121
|
+
"Allows to configure interface": "Permite configurar a interface",
|
|
122
|
+
"Allows to configure plugins": "Permite configurar plugins",
|
|
123
|
+
"Allows to install, activate, disable plugins": "Permite instalar, ativar, desativar plugins",
|
|
124
|
+
"Allows unencoded square brackets inside the query string": "Allows unencoded square brackets inside the query string",
|
|
125
|
+
"Alphabet": "Alphabet",
|
|
126
|
+
"Alterações de valor do campo": "Alterações de valor do campo",
|
|
127
|
+
"Amazon S3": "Amazon S3",
|
|
128
|
+
"Any": "Any",
|
|
129
|
+
"App error": "App error",
|
|
130
|
+
"Application reloading": "Application reloading",
|
|
131
|
+
"Após atualização bem sucedida": "Após atualização bem sucedida",
|
|
132
|
+
"Após clicar no botão personalizado, os seguintes campos do registro atual serão salvos de acordo com o seguinte formulário.": "Após clicar no botão personalizado, os seguintes campos do registro atual serão salvos de acordo com o seguinte formulário.",
|
|
133
|
+
"Após clicar no botão personalizado, os seguintes valores de campo serão atribuídos de acordo com o seguinte formulário.": "Após clicar no botão personalizado, os seguintes valores de campo serão atribuídos de acordo com o seguinte formulário.",
|
|
134
|
+
"Após requisição bem sucedida": "Após requisição bem sucedida",
|
|
135
|
+
"Após salvar com sucesso": "Após salvar com sucesso",
|
|
136
|
+
"Are you sure to delete this plugin": "Tem a certeza que deseja desactivar este plugin",
|
|
137
|
+
"Are you sure to delete this plugin?": "Tem certeza de que deseja excluir este plugin?",
|
|
138
|
+
"Are you sure to disable this plugin?": "Are you sure to disable this plugin?",
|
|
139
|
+
"Are you sure you don't want to save?": "Tem certeza de que não deseja salvar?",
|
|
140
|
+
"Are you sure you want to clear cache ?": "Are you sure you want to clear cache ?",
|
|
141
|
+
"Are you sure you want to delete it?": "Tem certeza de que deseja excluir isso?",
|
|
142
|
+
"Are you sure you want to delete this variable?": "Are you sure you want to delete this variable?",
|
|
143
|
+
"Are you sure you want to disassociate it?": "Tem certeza de que deseja desassociá-lo?",
|
|
144
|
+
"Are you sure you want to hide these routes in menu?": "Tem certeza de que deseja ocultar estas rotas no menu?",
|
|
145
|
+
"Are you sure you want to hide this menu?": "Tem certeza de que deseja ocultar este menu?",
|
|
146
|
+
"Are you sure you want to hide this tab?": "Tem certeza de que deseja ocultar esta guia?",
|
|
147
|
+
"Are you sure you want to load {{count}} collection(s)?": "Are you sure you want to load {{count}} collection(s)?",
|
|
148
|
+
"Are you sure you want to perform the Custom request action": "Are you sure you want to perform the Custom request action",
|
|
149
|
+
"Are you sure you want to perform the Refresh action?": "Are you sure you want to perform the Refresh action?",
|
|
150
|
+
"Are you sure you want to perform the Submit action?": "Are you sure you want to perform the Submit action?",
|
|
151
|
+
"Are you sure you want to perform the Trigger workflow action?": "Are you sure you want to perform the Trigger workflow action?",
|
|
152
|
+
"Are you sure you want to perform the Update record action?": "Are you sure you want to perform the Update record action?",
|
|
153
|
+
"Are you sure you want to perform the {{title}} action?": "Are you sure you want to perform the {{title}} action?",
|
|
154
|
+
"Are you sure you want to save it?": "Are you sure you want to save it?",
|
|
155
|
+
"Are you sure you want to show these routes in menu?": "Tem certeza de que deseja mostrar estas rotas no menu?",
|
|
156
|
+
"Area": "Área",
|
|
157
|
+
"Area chart": "Gráfico de área",
|
|
158
|
+
"Assign data scope for the template": "Assign data scope for the template",
|
|
159
|
+
"Assign field values": "Atribuir valores ao campo",
|
|
160
|
+
"Assign value": "Assign value",
|
|
161
|
+
"Assignment mode": "Assignment mode",
|
|
162
|
+
"Associate": "Associate",
|
|
163
|
+
"Associated records": "Associated records",
|
|
164
|
+
"Association field settings": "Association field settings",
|
|
165
|
+
"Association fields": "Campos de associação",
|
|
166
|
+
"Association fields filter": "Filtro de campos de associação",
|
|
167
|
+
"Association select settings": "Association select settings",
|
|
168
|
+
"Association table settings": "Association table settings",
|
|
169
|
+
"Association tag settings": "Association tag settings",
|
|
170
|
+
"AssociationField component": "AssociationField component",
|
|
171
|
+
"Attachment": "Anexo",
|
|
172
|
+
"Attempts to encode the URI using encodeURI before validating it again": "Attempts to encode the URI using encodeURI before validating it again",
|
|
173
|
+
"Atualizado com sucesso": "Atualizado com sucesso",
|
|
174
|
+
"Audit logs": "Audit logs",
|
|
175
|
+
"Authentication": "Authentication",
|
|
176
|
+
"Author": "Autor",
|
|
177
|
+
"Auto": "Automático",
|
|
178
|
+
"Auto focus": "Auto focus",
|
|
179
|
+
"Auto increment": "Auto increment",
|
|
180
|
+
"AutoGenId": "Campo de ID gerado automaticamente",
|
|
181
|
+
"Automatic close": "Automatic close",
|
|
182
|
+
"Automatically drop objects that depend on the collection (such as views), and in turn all objects that depend on those objects": "Excluir automaticamente objetos que dependem desta tabela, bem como objetos que dependem desses objetos",
|
|
183
|
+
"Automatically generate default values": "Automatically generate default values",
|
|
184
|
+
"Automatically remove heading and tailing spaces": "Automatically remove heading and tailing spaces",
|
|
185
|
+
"Automatically update timestamp on update": "Automatically update timestamp on update",
|
|
186
|
+
"Automatically update timestamp to the current server time on update": "Automatically update timestamp to the current server time on update",
|
|
187
|
+
"Available \"target blocks\" are all data blocks on the current page": "Available \"target blocks\" are all data blocks on the current page",
|
|
188
|
+
"Available Collections": "Available Collections",
|
|
189
|
+
"Background Color": "Background Color",
|
|
190
|
+
"Bar chart": "Gráfico de barras",
|
|
191
|
+
"Base": "Base",
|
|
192
|
+
"Basic": "Básico",
|
|
193
|
+
"Basic configuration": "Basic configuration",
|
|
194
|
+
"Before": "Antes",
|
|
195
|
+
"Before change": "Antes da alteração",
|
|
196
|
+
"Before render": "Before render",
|
|
197
|
+
"Blank block": "Bloco em branco",
|
|
198
|
+
"Block": "Block",
|
|
199
|
+
"Block Linkage rules": "Block Linkage rules",
|
|
200
|
+
"Block linkage rules": "Block linkage rules",
|
|
201
|
+
"Block list": "Block list",
|
|
202
|
+
"Block template": "Modelo de bloco",
|
|
203
|
+
"Block templates": "Modelos de bloco",
|
|
204
|
+
"Block title": "Título do bloco",
|
|
205
|
+
"Block type": "Tipo de bloco",
|
|
206
|
+
"Blocks": "Blocks",
|
|
207
|
+
"Blue": "Azul",
|
|
208
|
+
"Bookmark": "Favoritar",
|
|
209
|
+
"Boolean": "Boolean",
|
|
210
|
+
"Bottom left": "Bottom left",
|
|
211
|
+
"Bottom right": "Bottom right",
|
|
212
|
+
"Bucket": "Bucket",
|
|
213
|
+
"Built-in": "Integrado",
|
|
214
|
+
"Bulk edit": "Edição em massa",
|
|
215
|
+
"Bulk enable": "Bulk enable",
|
|
216
|
+
"Bulk update": "Atualização em massa",
|
|
217
|
+
"Button background color": "Button background color",
|
|
218
|
+
"Button icon": "Ícone do botão",
|
|
219
|
+
"Button settings": "Button settings",
|
|
220
|
+
"Button title": "Título do botão",
|
|
221
|
+
"Button type": "Button type",
|
|
222
|
+
"Cabeçalhos da requisição": "Cabeçalhos da requisição",
|
|
223
|
+
"Calculation engine": "Calculation engine",
|
|
224
|
+
"Calendar": "Calendário",
|
|
225
|
+
"Calendar Month": "Calendar Month",
|
|
226
|
+
"Calendar Year": "Calendar Year",
|
|
227
|
+
"Calendar collection": "Coleção de calendário",
|
|
228
|
+
"Calendar week": "Calendar week",
|
|
229
|
+
"Campo": "Campo",
|
|
230
|
+
"Cancel": "Cancelar",
|
|
231
|
+
"Cannot find the model instance with UID": "Cannot find the model instance with UID",
|
|
232
|
+
"Card settings": "Card settings",
|
|
233
|
+
"Cascade Select": "Cascade Select",
|
|
234
|
+
"Cascade select": "Cascade select",
|
|
235
|
+
"Cascade select settings": "Cascade select settings",
|
|
236
|
+
"Categories": "Categorias",
|
|
237
|
+
"Category name": "Nome da categoria",
|
|
238
|
+
"Center": "Center",
|
|
239
|
+
"Change password": "Alterar senha",
|
|
240
|
+
"Changed to": "Mudou para",
|
|
241
|
+
"Changelog": "Registro de alterações",
|
|
242
|
+
"Chart blocks": "Blocos de gráfico",
|
|
243
|
+
"Chart config": "Configuração do gráfico",
|
|
244
|
+
"Chart title": "Título do gráfico",
|
|
245
|
+
"Chart type": "Tipo de gráfico",
|
|
246
|
+
"Check strength": "Check strength",
|
|
247
|
+
"Checkbox": "Caixa de seleção",
|
|
248
|
+
"Checkbox group": "Grupo de caixas de seleção",
|
|
249
|
+
"Children": "Children",
|
|
250
|
+
"China region": "Região da China",
|
|
251
|
+
"Choices": "Opções",
|
|
252
|
+
"Choices fields": "Campos de opções",
|
|
253
|
+
"City": "Cidade",
|
|
254
|
+
"Classic page (v1)": "Classic page (v1)",
|
|
255
|
+
"Clear": "Limpar",
|
|
256
|
+
"Clear cache": "Clear cache",
|
|
257
|
+
"Clear default value": "Limpar valor padrão",
|
|
258
|
+
"Click": "Click",
|
|
259
|
+
"Click event": "Click event",
|
|
260
|
+
"Click or drag file to this area to upload": "Clique ou arraste o arquivo para esta área para fazer o upload",
|
|
261
|
+
"Click the \"UI Editor\" icon in the upper right corner to enter the UI Editor mode": "Cliquez sur l'icône \"Éditeur d'interface utilisateur\" dans le coin supérieur droit pour entrer en mode Éditeur d'interface utilisateur",
|
|
262
|
+
"Clicked row record": "Clicked row record",
|
|
263
|
+
"Close": "Fechar",
|
|
264
|
+
"Collapse": "Recolher",
|
|
265
|
+
"Collapse all": "Colapsar tudo",
|
|
266
|
+
"Collapse button": "Collapse",
|
|
267
|
+
"Collapse settings": "Collapse settings",
|
|
268
|
+
"Collapsed rows": "Collapsed rows",
|
|
269
|
+
"Collection": "Coleção",
|
|
270
|
+
"Collection category": "Categoria da coleção",
|
|
271
|
+
"Collection display name": "Nome para exibição da coleção",
|
|
272
|
+
"Collection fields": "Collection fields",
|
|
273
|
+
"Collection manager": "Gerenciador de coleções",
|
|
274
|
+
"Collection name": "Nome da coleção",
|
|
275
|
+
"Collection selector": "Collection selector",
|
|
276
|
+
"Collection template": "Modelo de coleção",
|
|
277
|
+
"Collections": "Collections",
|
|
278
|
+
"Collections & Fields": "Coleções e campos",
|
|
279
|
+
"Colon": "Colon",
|
|
280
|
+
"Color": "Cor",
|
|
281
|
+
"Column": "Column",
|
|
282
|
+
"Column Settings": "Configurações de coluna",
|
|
283
|
+
"Column chart": "Gráfico de colunas",
|
|
284
|
+
"Column title": "cabeçalho da coluna",
|
|
285
|
+
"Column width": "Largura da coluna",
|
|
286
|
+
"Coming soon...": "Em breve...",
|
|
287
|
+
"Compact theme": "Compact theme",
|
|
288
|
+
"Comparision": "Comparação",
|
|
289
|
+
"Comparison": "Comparison",
|
|
290
|
+
"Component properties": "Component properties",
|
|
291
|
+
"Compressed file url": "URL do arquivo compactado",
|
|
292
|
+
"Computer": "Computer",
|
|
293
|
+
"Concluído": "Concluído",
|
|
294
|
+
"Condition": "Condição",
|
|
295
|
+
"Conditional assignment": "Conditional assignment",
|
|
296
|
+
"Configuration saved": "Configuration saved",
|
|
297
|
+
"Configuration:": "Configuration:",
|
|
298
|
+
"Configurações de requisição": "Configurações de requisição",
|
|
299
|
+
"Configure": "Configurar",
|
|
300
|
+
"Configure actions": "Configurar ações",
|
|
301
|
+
"Configure calendar": "Configurar calendário",
|
|
302
|
+
"Configure columns": "Configurar colunas",
|
|
303
|
+
"Configure field": "Configure field",
|
|
304
|
+
"Configure fields": "Configurar campos",
|
|
305
|
+
"Configure fields of {{title}}": "Configurar campos de {{title}}",
|
|
306
|
+
"Configure page": "Configure page",
|
|
307
|
+
"Configure permission": "Configurar permissão",
|
|
308
|
+
"Configure permissions": "Configurar permissões",
|
|
309
|
+
"Configure rows": "Configure rows",
|
|
310
|
+
"Configure the rows and columns of the grid.": "Configure the rows and columns of the grid.",
|
|
311
|
+
"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.",
|
|
312
|
+
"Confirm": "Confirm",
|
|
313
|
+
"Confirm Load Collections": "Confirm Load Collections",
|
|
314
|
+
"Confirm password": "Confirmar senha",
|
|
315
|
+
"Confirmation": "Confirmation",
|
|
316
|
+
"Connect data blocks": "Conectar blocos de dados",
|
|
317
|
+
"Connect fields": "Connect fields",
|
|
318
|
+
"Connect to database view": "Connect to database view",
|
|
319
|
+
"Console": "Console",
|
|
320
|
+
"Constant": "Constant",
|
|
321
|
+
"Constant value": "Constant value",
|
|
322
|
+
"Contain": "Contém",
|
|
323
|
+
"Content": "Content",
|
|
324
|
+
"Content overflow display mode": "Content overflow display mode",
|
|
325
|
+
"Content settings": "Content settings",
|
|
326
|
+
"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.",
|
|
327
|
+
"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.",
|
|
328
|
+
"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.",
|
|
329
|
+
"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.",
|
|
330
|
+
"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.",
|
|
331
|
+
"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.",
|
|
332
|
+
"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.",
|
|
333
|
+
"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.",
|
|
334
|
+
"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.",
|
|
335
|
+
"Convert reference to duplicate": "Converter referência em duplicado",
|
|
336
|
+
"Convert template to duplicate": "Convert template to duplicate",
|
|
337
|
+
"Copy": "Copy",
|
|
338
|
+
"Copy into the form and continue to fill in": "Copy into the form and continue to fill in",
|
|
339
|
+
"Cor de fundo do botão": "Cor de fundo do botão",
|
|
340
|
+
"Corpo da requisição": "Corpo da requisição",
|
|
341
|
+
"Cover": "Cobrir",
|
|
342
|
+
"Create": "Create",
|
|
343
|
+
"Create an account": "Criar uma conta",
|
|
344
|
+
"Create calendar block": "Criar bloco de calendário",
|
|
345
|
+
"Create collection": "Criar coleção",
|
|
346
|
+
"Create form": "Criar formulário",
|
|
347
|
+
"Create gantt block": "Create gantt block",
|
|
348
|
+
"Create inverse field in the target collection": "Criar campo inverso na coleção de destino",
|
|
349
|
+
"Create kanban block": "Criar bloco Kanban",
|
|
350
|
+
"Create template": "Criar modelo",
|
|
351
|
+
"Created at": "Criado em",
|
|
352
|
+
"Created by": "Criado por",
|
|
353
|
+
"CreatedAt": "Registrando o horário de criação da linha",
|
|
354
|
+
"CreatedBy": "Registrando o usuário que criou a linha",
|
|
355
|
+
"Current action": "Current action",
|
|
356
|
+
"Current block": "Current block",
|
|
357
|
+
"Current collection": "Current collection",
|
|
358
|
+
"Current device type": "Current device type",
|
|
359
|
+
"Current form": "Current form",
|
|
360
|
+
"Current object": "Current object",
|
|
361
|
+
"Current popup": "Current popup",
|
|
362
|
+
"Current popup parent record": "Current popup parent record",
|
|
363
|
+
"Current popup record": "Registro pop-up atual",
|
|
364
|
+
"Current record": "Current record",
|
|
365
|
+
"Current record blocks": "Blocos de registro atual",
|
|
366
|
+
"Current role": "Current role",
|
|
367
|
+
"Current time": "Current time",
|
|
368
|
+
"Current user": "Current user",
|
|
369
|
+
"Custom": "Personalizado",
|
|
370
|
+
"Custom Title": "Título personalizado",
|
|
371
|
+
"Custom column name": "Nome personalizado da coluna",
|
|
372
|
+
"Custom column title": "Título da coluna personalizado",
|
|
373
|
+
"Custom field": "Custom field",
|
|
374
|
+
"Custom field display name": "Nome personalizado para exibição do campo",
|
|
375
|
+
"Custom name": "Nome personalizado",
|
|
376
|
+
"Custom request": "Custom request",
|
|
377
|
+
"Custom title": "Título personalizado",
|
|
378
|
+
"Custom variable": "Custom variable",
|
|
379
|
+
"Customize": "Customizar",
|
|
380
|
+
"Cyan": "Ciano",
|
|
381
|
+
"DESC": "DESC",
|
|
382
|
+
"Daily": "Diário",
|
|
383
|
+
"Danger action": "Danger action",
|
|
384
|
+
"Danger red": "Danger red",
|
|
385
|
+
"Dashed": "Dashed",
|
|
386
|
+
"Data Model": "Data Model",
|
|
387
|
+
"Data blocks": "Blocos de dados",
|
|
388
|
+
"Data changes": "Alterações nos dados",
|
|
389
|
+
"Data fields": "Campos de dados",
|
|
390
|
+
"Data loading mode": "Modo de carregamento de dados",
|
|
391
|
+
"Data model": "Data model",
|
|
392
|
+
"Data model tools": "Data model tools",
|
|
393
|
+
"Data refreshed successfully": "Data refreshed successfully",
|
|
394
|
+
"Data scope": "Âmbito de dados",
|
|
395
|
+
"Data source": "fonte de dados",
|
|
396
|
+
"Data source key": "Data source key",
|
|
397
|
+
"Data source permissions": "Data source permissions",
|
|
398
|
+
"Data sources": "Data sources",
|
|
399
|
+
"Data template": "Modelo de dados",
|
|
400
|
+
"Data will be updated": "Os dados serão atualizados",
|
|
401
|
+
"DataSource": "Fonte de dados",
|
|
402
|
+
"Date": "Data",
|
|
403
|
+
"Date & Time": "Data e hora",
|
|
404
|
+
"Date display format": "Date display format",
|
|
405
|
+
"Date format": "Formato de data",
|
|
406
|
+
"Date range limit": "Date range limit",
|
|
407
|
+
"Date scope": "Date scope",
|
|
408
|
+
"Date variables": "Date variables",
|
|
409
|
+
"Date variables(Deprecated)": "Date variables(Deprecated)",
|
|
410
|
+
"DateOnly": "DateOnly",
|
|
411
|
+
"Datetime": "Data e hora",
|
|
412
|
+
"Datetime (with time zone)": "Datetime (with time zone)",
|
|
413
|
+
"Datetime (without time zone)": "Datetime (without time zone)",
|
|
414
|
+
"Datetime settings": "Datetime settings",
|
|
415
|
+
"Day": "Dia",
|
|
416
|
+
"Day before yesterday": "Day before yesterday",
|
|
417
|
+
"Day/Month/Year": "Dia/Mês/Ano",
|
|
418
|
+
"Default": "Padrão",
|
|
419
|
+
"Default collapse": "Default collapse",
|
|
420
|
+
"Default collapsed": "Default collapsed",
|
|
421
|
+
"Default expand all": "Default expand all",
|
|
422
|
+
"Default filter conditions": "Default filter conditions",
|
|
423
|
+
"Default is the ID field": "O padrão é o campo ID",
|
|
424
|
+
"Default operator": "Default operator",
|
|
425
|
+
"Default role": "Função padrão",
|
|
426
|
+
"Default sorting": "Default sorting",
|
|
427
|
+
"Default storage": "Armazenamento padrão",
|
|
428
|
+
"Default theme": "Default theme",
|
|
429
|
+
"Default title for each record": "Título padrão para cada registro",
|
|
430
|
+
"Default value": "Valor padrão",
|
|
431
|
+
"Default value to current server time": "Default value to current server time",
|
|
432
|
+
"Default value to current time": "Default value to current time",
|
|
433
|
+
"Delete": "Excluir",
|
|
434
|
+
"Delete Event": "Excluir Evento",
|
|
435
|
+
"Delete action": "Excluir ação",
|
|
436
|
+
"Delete block": "Excluir bloco",
|
|
437
|
+
"Delete category": "Excluir categoria",
|
|
438
|
+
"Delete collection": "Delete collection",
|
|
439
|
+
"Delete events": "Excluir eventos",
|
|
440
|
+
"Delete field": "Excluir campo",
|
|
441
|
+
"Delete menu item": "Excluir item do menu",
|
|
442
|
+
"Delete record": "Excluir registro",
|
|
443
|
+
"Delete role": "Excluir função",
|
|
444
|
+
"Delete route": "Excluir rota",
|
|
445
|
+
"Delete routes": "Excluir rotas",
|
|
446
|
+
"Delete settings": "Delete settings",
|
|
447
|
+
"Delete step": "Delete step",
|
|
448
|
+
"Delete table column": "Excluir coluna da tabela",
|
|
449
|
+
"Delete this event?": "Excluir este evento?",
|
|
450
|
+
"Delete this target block": "Delete this target block",
|
|
451
|
+
"Delete variable": "Delete variable",
|
|
452
|
+
"Deny list": "Deny list",
|
|
453
|
+
"Department name": "Department name",
|
|
454
|
+
"Departments": "Departments",
|
|
455
|
+
"Dependencies check": "Verificação de dependências",
|
|
456
|
+
"Dependencies check failed": "Falha na verificação de dependências",
|
|
457
|
+
"Dependencies check failed, can't enable.": "Falha na verificação de dependências, não é possível habilitar.",
|
|
458
|
+
"Dependencies compatibility check": "Verificação de compatibilidade de dependências",
|
|
459
|
+
"Deprecated": "Descontinuado",
|
|
460
|
+
"Description": "Descrição",
|
|
461
|
+
"Desktop device": "Desktop device",
|
|
462
|
+
"Desktop routes": "Rotas de desktop",
|
|
463
|
+
"Destaque": "Destaque",
|
|
464
|
+
"Destination": "Destino",
|
|
465
|
+
"Detail item settings": "Detail item settings",
|
|
466
|
+
"Details": "Detalhes",
|
|
467
|
+
"Details settings": "Details settings",
|
|
468
|
+
"Determine whether a record exists by the following fields": "Determine whether a record exists by the following fields",
|
|
469
|
+
"Dialog": "Diálogo",
|
|
470
|
+
"Direct assignment": "Direct assignment",
|
|
471
|
+
"Direct duplicate": "Direct duplicate",
|
|
472
|
+
"Disable": "Disable",
|
|
473
|
+
"Disable manual input": "Disable manual input",
|
|
474
|
+
"Disable tabs": "Desativar guias",
|
|
475
|
+
"Disable validation": "Disable validation",
|
|
476
|
+
"Disabled": "Desabilitado",
|
|
477
|
+
"Disassociate": "Desassociar",
|
|
478
|
+
"Disassociate record": "Desassociar registro",
|
|
479
|
+
"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> itens por página",
|
|
480
|
+
"Display <icon></icon> when unchecked": "Display <icon></icon> when unchecked",
|
|
481
|
+
"Display Field settings": "Display Field settings",
|
|
482
|
+
"Display association fields": "Exibir campos de associação",
|
|
483
|
+
"Display data template selector": "Exibir seletor de modelo de dados",
|
|
484
|
+
"Display field title": "Exibir título do campo",
|
|
485
|
+
"Display fields": "Exibir campos da coleção",
|
|
486
|
+
"Display label": "Display label",
|
|
487
|
+
"Display mode": "Display mode",
|
|
488
|
+
"Display name": "Nome de exibição",
|
|
489
|
+
"Display only": "Display only",
|
|
490
|
+
"Display order number": "Mostrar número de ordem",
|
|
491
|
+
"Display page title": "Display page title",
|
|
492
|
+
"Display style": "Display style",
|
|
493
|
+
"Display title": "Display title",
|
|
494
|
+
"DisplayName": "Nome de exibição",
|
|
495
|
+
"Divide by": "Divide by",
|
|
496
|
+
"Divider line color": "Divider line color",
|
|
497
|
+
"Do not concatenate search params in the URL": "Do not concatenate search params in the URL",
|
|
498
|
+
"Do not load data when filter is empty": "Não carregar dados quando o filtro estiver vazio",
|
|
499
|
+
"Docs": "Docs",
|
|
500
|
+
"Domains ending with a . character are permitted": "Domains ending with a . character are permitted",
|
|
501
|
+
"Done": "Done",
|
|
502
|
+
"Double click": "Double click",
|
|
503
|
+
"Double click to choose entire object": "Double click to choose entire object",
|
|
504
|
+
"Download": "Download",
|
|
505
|
+
"Download logs": "Download logs",
|
|
506
|
+
"Drag and drop sorting field": "Drag and drop sorting field",
|
|
507
|
+
"Drag and drop the file here or click to upload, file size should not exceed 30M": "Arraste e solte o arquivo aqui ou clique para enviar, o tamanho do arquivo não deve exceder 30M",
|
|
508
|
+
"Dragging": "Arrastando",
|
|
509
|
+
"Drawer": "Gaveta",
|
|
510
|
+
"Dropdown": "Dropdown",
|
|
511
|
+
"Dropdown select": "Dropdown select",
|
|
512
|
+
"Duplicate": "Duplicate",
|
|
513
|
+
"Duplicate and continue": "Duplicate and continue",
|
|
514
|
+
"Duplicate mode": "Duplicate mode",
|
|
515
|
+
"Duplicate template": "Duplicar modelo",
|
|
516
|
+
"Duplicating": "Duplicating",
|
|
517
|
+
"Duration (seconds, 0 = no auto close)": "Duration (seconds, 0 = no auto close)",
|
|
518
|
+
"Dynamic value": "Dynamic value",
|
|
519
|
+
"Easy reading": "Leitura fácil",
|
|
520
|
+
"Easy-reading": "Fácil leitura",
|
|
521
|
+
"Edit": "Editar",
|
|
522
|
+
"Edit Title": "Edit Title",
|
|
523
|
+
"Edit block title": "Editar título do bloco",
|
|
524
|
+
"Edit block title & description": "Edit block title & description",
|
|
525
|
+
"Edit button": "Editar botão",
|
|
526
|
+
"Edit category": "Editar categoria",
|
|
527
|
+
"Edit chart": "Editar gráfico",
|
|
528
|
+
"Edit collection": "Editar coleção",
|
|
529
|
+
"Edit description": "Editar descrição",
|
|
530
|
+
"Edit event flows": "Edit event flows",
|
|
531
|
+
"Edit field": "Editar campo",
|
|
532
|
+
"Edit field title": "Editar título do campo",
|
|
533
|
+
"Edit form": "Editar formulário",
|
|
534
|
+
"Edit group title": "Edit group title",
|
|
535
|
+
"Edit link": "Edit link",
|
|
536
|
+
"Edit markdown": "Editar markdown",
|
|
537
|
+
"Edit menu item": "Editar item de menu",
|
|
538
|
+
"Edit page size": "Edit page size",
|
|
539
|
+
"Edit page title": "Edit page title",
|
|
540
|
+
"Edit popup": "Edit popup",
|
|
541
|
+
"Edit profile": "Editar perfil",
|
|
542
|
+
"Edit record": "Editar registro",
|
|
543
|
+
"Edit role": "Editar função",
|
|
544
|
+
"Edit storage": "Editar armazenamento",
|
|
545
|
+
"Edit tab": "Editar guia",
|
|
546
|
+
"Edit tooltip": "Editar dica de ferramenta",
|
|
547
|
+
"Edit variable": "Edit variable",
|
|
548
|
+
"Editable": "Editável",
|
|
549
|
+
"Ellipsis": "Ellipsis",
|
|
550
|
+
"Ellipsis overflow content": "Conteúdo de transbordamento com reticências",
|
|
551
|
+
"Email": "E-mail",
|
|
552
|
+
"Embedded": "Embedded",
|
|
553
|
+
"Empty": "Empty",
|
|
554
|
+
"Enable": "Enable",
|
|
555
|
+
"Enable SMS authentication": "Habilitar autenticação SMS",
|
|
556
|
+
"Enable Scan": "Enable Scan",
|
|
557
|
+
"Enable actions": "Ativar ações",
|
|
558
|
+
"Enable child collections": "Enable child collections",
|
|
559
|
+
"Enable click-to-open": "Enable click-to-open",
|
|
560
|
+
"Enable drag and drop sorting": "Habilitar classificação de arrastar e soltar",
|
|
561
|
+
"Enable form data template": "Enable form data template",
|
|
562
|
+
"Enable index column": "Enable index column",
|
|
563
|
+
"Enable link": "Habilitar link",
|
|
564
|
+
"Enable page header": "Enable page header",
|
|
565
|
+
"Enable page tabs": "Enable page tabs",
|
|
566
|
+
"Enable quick edit": "Enable quick edit",
|
|
567
|
+
"Enable refresh": "Enable refresh",
|
|
568
|
+
"Enable secondary confirmation": "Enable secondary confirmation",
|
|
569
|
+
"Enable tabs": "Enable tabs",
|
|
570
|
+
"Enable tree table": "Enable tree table",
|
|
571
|
+
"Enable virtual scrolling": "Enable virtual scrolling",
|
|
572
|
+
"Enabled": "Habilitado",
|
|
573
|
+
"Enabled languages": "Enabled languages",
|
|
574
|
+
"End": "End",
|
|
575
|
+
"End accessor": "End accessor",
|
|
576
|
+
"End date field": "Campo de data de término",
|
|
577
|
+
"Enter collection name": "Enter collection name",
|
|
578
|
+
"Enter end accessor": "Enter end accessor",
|
|
579
|
+
"Enter field title": "Enter field title",
|
|
580
|
+
"Enter number of rows to display": "Enter number of rows to display",
|
|
581
|
+
"Enter page title": "Enter page title",
|
|
582
|
+
"Enter placeholder text": "Enter placeholder text",
|
|
583
|
+
"Enter start accessor": "Enter start accessor",
|
|
584
|
+
"Enter title accessor": "Enter title accessor",
|
|
585
|
+
"Enter value": "Enter value",
|
|
586
|
+
"Error message": "Mensagem de erro",
|
|
587
|
+
"Event": "Evento",
|
|
588
|
+
"Event flow": "Event flow",
|
|
589
|
+
"Event selected": "Event selected",
|
|
590
|
+
"Event settings": "Event settings",
|
|
591
|
+
"Exact day": "Exact day",
|
|
592
|
+
"Execute": "Execute",
|
|
593
|
+
"Execute JavaScript": "Execute JavaScript",
|
|
594
|
+
"Exists": "Existe",
|
|
595
|
+
"Expand All": "Expandir tudo",
|
|
596
|
+
"Expand all": "Expandir tudo",
|
|
597
|
+
"Expand all rows by default": "Expand all rows by default",
|
|
598
|
+
"Expand button": "Expand",
|
|
599
|
+
"Expand/Collapse": "Expandir/Colapsar",
|
|
600
|
+
"Export": "Exportar",
|
|
601
|
+
"Exportable fields": "Campos exportáveis",
|
|
602
|
+
"Expression": "Expressão",
|
|
603
|
+
"Expression collection": "Expression collection",
|
|
604
|
+
"FORMULAJS_DOC_URL": "https://v2.docs.nocobase.com/calculation-engine/formula",
|
|
605
|
+
"Failed to load plugin": "Failed to load plugin",
|
|
606
|
+
"False": "False",
|
|
607
|
+
"Fechamento automático": "Fechamento automático",
|
|
608
|
+
"Fechamento manual": "Fechamento manual",
|
|
609
|
+
"Feedback": "Feedback",
|
|
610
|
+
"Field": "Field",
|
|
611
|
+
"Field Linkage rules": "Field Linkage rules",
|
|
612
|
+
"Field assignment": "Field assignment",
|
|
613
|
+
"Field component": "Componente de campo",
|
|
614
|
+
"Field display name": "Nome de exibição do campo",
|
|
615
|
+
"Field interface": "Interface de campo",
|
|
616
|
+
"Field linkage rules": "Field linkage rules",
|
|
617
|
+
"Field mode": "Field mode",
|
|
618
|
+
"Field model": "Field model",
|
|
619
|
+
"Field name": "Nome do campo",
|
|
620
|
+
"Field permission": "Permissão de campo",
|
|
621
|
+
"Field settings": "Field settings",
|
|
622
|
+
"Field source": "Field source",
|
|
623
|
+
"Field title": "Título do campo",
|
|
624
|
+
"Field type": "Tipo de campo",
|
|
625
|
+
"Field value changes": "Field value changes",
|
|
626
|
+
"Field value do not meet the requirements": "Field value do not meet the requirements",
|
|
627
|
+
"Field value size is": "Field value size is",
|
|
628
|
+
"Field values must be unique.": "Field values must be unique.",
|
|
629
|
+
"Fields": "Campos",
|
|
630
|
+
"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.",
|
|
631
|
+
"Fields values": "campo removido",
|
|
632
|
+
"File manager": "Gerenciador de arquivos",
|
|
633
|
+
"File size exceeds the limit": "File size exceeds the limit",
|
|
634
|
+
"File size should not exceed {{size}}.": "File size should not exceed {{size}}.",
|
|
635
|
+
"File storages": "Armazenamento de arquivos",
|
|
636
|
+
"File type is not allowed": "File type is not allowed",
|
|
637
|
+
"File type is not supported for previewing, please download it to preview.": "File type is not supported for previewing, please download it to preview.",
|
|
638
|
+
"Filename": "Nome do arquivo",
|
|
639
|
+
"Fill": "Preencher",
|
|
640
|
+
"Filled": "Filled",
|
|
641
|
+
"Filter": "Filtro",
|
|
642
|
+
"Filter blocks": "Blocos de filtro",
|
|
643
|
+
"Filter configuration": "Filter configuration",
|
|
644
|
+
"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.",
|
|
645
|
+
"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",
|
|
646
|
+
"Filter target key": "Filter target key",
|
|
647
|
+
"Filterable fields": "Campos filtráveis",
|
|
648
|
+
"Find by the following fields": "Find by the following fields",
|
|
649
|
+
"First or create": "First or create",
|
|
650
|
+
"Fix block": "Bloquear fixo",
|
|
651
|
+
"Fixed": "Fixed",
|
|
652
|
+
"Fixed to the left": "Fixado à esquerda",
|
|
653
|
+
"Fixed to the right": "Fixado à direita",
|
|
654
|
+
"Flexible popup": "Pop-up flexível",
|
|
655
|
+
"Flow Page": "Modern page (v2)",
|
|
656
|
+
"Font Size(px)": "Font Size(px)",
|
|
657
|
+
"Font Style": "Font Style",
|
|
658
|
+
"Font Weight": "Font Weight",
|
|
659
|
+
"Foreign key": "Chave estrangeira",
|
|
660
|
+
"Foreign key 1": "Chave estrangeira 1",
|
|
661
|
+
"Foreign key 2": "Chave estrangeira 2",
|
|
662
|
+
"Form": "Formulário",
|
|
663
|
+
"Form (Add new)": "Formulário (Adicionar novo)",
|
|
664
|
+
"Form (Edit)": "Formulário (Editar)",
|
|
665
|
+
"Form UID": "Form UID",
|
|
666
|
+
"Form data templates": "Modelos de dados do formulário",
|
|
667
|
+
"Form duplicate": "Form duplicate",
|
|
668
|
+
"Form field assignment": "Form field assignment",
|
|
669
|
+
"Form item settings": "Form item settings",
|
|
670
|
+
"Form settings": "Form settings",
|
|
671
|
+
"Form values": "Valores do formulário",
|
|
672
|
+
"Form values change": "Form values change",
|
|
673
|
+
"Form variable": "Form variable",
|
|
674
|
+
"Format": "Formato",
|
|
675
|
+
"Formato JSON inválido": "Formato JSON inválido",
|
|
676
|
+
"Formula": "Fórmula",
|
|
677
|
+
"Formula description": "Calcula um valor em cada registro com base em outros campos no mesmo registro.",
|
|
678
|
+
"Formula error.": "Erro de fórmula.",
|
|
679
|
+
"Formula mode": "Modo de fórmula",
|
|
680
|
+
"Formula.js supports most Microsoft Excel formula functions.": "Formula.js supports most Microsoft Excel formula functions.",
|
|
681
|
+
"Full height": "Full height",
|
|
682
|
+
"Full permissions": "Todas as permissões",
|
|
683
|
+
"Function": "Função",
|
|
684
|
+
"Gantt": "Gantt",
|
|
685
|
+
"Geek blue": "Azul geek",
|
|
686
|
+
"General": "Geral",
|
|
687
|
+
"General action permissions": "Permissões gerais de ação",
|
|
688
|
+
"General collection": "Coleção geral",
|
|
689
|
+
"General configuration": "General configuration",
|
|
690
|
+
"General fields": "Campos gerais",
|
|
691
|
+
"General permissions": "Permissões gerais",
|
|
692
|
+
"Generated automatically if left blank": "Gerado automaticamente se deixado em branco",
|
|
693
|
+
"Generic properties": "Generic properties",
|
|
694
|
+
"Global action permissions": "Permissões globais de ação",
|
|
695
|
+
"Global permissions": "Permissões globais",
|
|
696
|
+
"Gold": "Dourado",
|
|
697
|
+
"Greater than": "Greater than",
|
|
698
|
+
"Green": "Verde",
|
|
699
|
+
"Grid Card": "Grid Card",
|
|
700
|
+
"Group": "Grupo",
|
|
701
|
+
"Grouped sorting": "Grouped sorting",
|
|
702
|
+
"Grouping field": "Campo de agrupamento",
|
|
703
|
+
"HTML content": "HTML content",
|
|
704
|
+
"Half of day": "Half of day",
|
|
705
|
+
"Handbook": "Manual do usuário",
|
|
706
|
+
"Hidden": "Oculto",
|
|
707
|
+
"Hidden (reserved value)": "Oculto (valor reservado)",
|
|
708
|
+
"Hidden text": "Hidden text",
|
|
709
|
+
"Hidden(reserved value)": "Oculto (valor reservado)",
|
|
710
|
+
"Hide": "Ocultar",
|
|
711
|
+
"Hide column": "Ocultar coluna",
|
|
712
|
+
"Hide in menu": "Ocultar no menu",
|
|
713
|
+
"Highlight": "Highlight",
|
|
714
|
+
"Home page": "Página inicial",
|
|
715
|
+
"Homepage": "Página inicial",
|
|
716
|
+
"Hora atual": "Hora atual",
|
|
717
|
+
"Horizontal": "Horizontal",
|
|
718
|
+
"Hour": "Hour",
|
|
719
|
+
"Html settings": "Html settings",
|
|
720
|
+
"IANA registry": "IANA registry",
|
|
721
|
+
"ID": "ID",
|
|
722
|
+
"ID do registro": "ID do registro",
|
|
723
|
+
"Icon": "Ícone",
|
|
724
|
+
"Icon only": "Icon only",
|
|
725
|
+
"Identifier for program usage. Support letters, numbers and underscores, must start with an letter.": "Identificador para uso do programa. Suporta letras, números e sublinhados, deve começar com uma letra.",
|
|
726
|
+
"Idiomas habilitados": "Idiomas habilitados",
|
|
727
|
+
"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.",
|
|
728
|
+
"If collection inherits, choose inherited collections as templates": "Se a coleção herda, escolha as coleções herdadas como modelos",
|
|
729
|
+
"If selected, the page will display Tab pages.": "Se selecionado, a página exibirá páginas de abas.",
|
|
730
|
+
"If selected, the route will be displayed in the menu.": "Se selecionado, a rota será exibida no menu.",
|
|
731
|
+
"If the compatibility check fails, you should change the dependent version to meet the version requirements.": "Se a verificação de compatibilidade falhar, você deve alterar a versão dependente para atender aos requisitos de versão.",
|
|
732
|
+
"Ignore invalid email length errors": "Ignore invalid email length errors",
|
|
733
|
+
"Imperative Drawer": "Imperative Drawer",
|
|
734
|
+
"Import": "Importar",
|
|
735
|
+
"Importable fields": "Campos importáveis",
|
|
736
|
+
"Imprimir": "Imprimir",
|
|
737
|
+
"In configuration": "Em configuração",
|
|
738
|
+
"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.": "Em modo de configuração, a coluna inteira se torna transparente. Em modo de não configuração, a coluna inteira será ocultada. Mesmo se a coluna inteira estiver oculta, seus valores padrão configurados e outras configurações ainda terão efeito.",
|
|
739
|
+
"Incomplete uploading files need to be resolved": "Incomplete uploading files need to be resolved",
|
|
740
|
+
"Index": "Index",
|
|
741
|
+
"Individual": "Individual",
|
|
742
|
+
"Inherited fields": "Campos herdados",
|
|
743
|
+
"Inherited template": "Modelo herdado",
|
|
744
|
+
"Inherits": "Herdado",
|
|
745
|
+
"Inner": "Interno",
|
|
746
|
+
"Input": "Input",
|
|
747
|
+
"Input +, -, *, /, ( ) to calculate, input @ to open field variables.": "Digite +, -, *, /, ( ) para calcular, digite @ para abrir variáveis de campo.",
|
|
748
|
+
"Input request data": "Input request data",
|
|
749
|
+
"Insert": "Inserir",
|
|
750
|
+
"Insert above": "Inserir acima",
|
|
751
|
+
"Insert after": "Inserir depois",
|
|
752
|
+
"Insert before": "Inserir antes",
|
|
753
|
+
"Insert below": "Inserir abaixo",
|
|
754
|
+
"Insert if not exists": "Insert if not exists",
|
|
755
|
+
"Insert if not exists, or update": "Insert if not exists, or update",
|
|
756
|
+
"Insert inner": "Inserir interno",
|
|
757
|
+
"Insert left": "Inserir à esquerda",
|
|
758
|
+
"Insert right": "Inserir à direita",
|
|
759
|
+
"Installing": "Instalando",
|
|
760
|
+
"Integer": "Inteiro",
|
|
761
|
+
"Invalid JSON format": "Invalid JSON format",
|
|
762
|
+
"Inverse field display name": "Nome de exibição do campo inverso",
|
|
763
|
+
"Inverse field name": "Nome do campo inverso",
|
|
764
|
+
"Inverse relationship type": "Tipo de relacionamento inverso",
|
|
765
|
+
"Italic": "Italic",
|
|
766
|
+
"Junction collection": "Coleção de junção",
|
|
767
|
+
"Kanban": "Kanban",
|
|
768
|
+
"Label": "Label",
|
|
769
|
+
"Label align": "Label align",
|
|
770
|
+
"Label field": "Campo de etiqueta",
|
|
771
|
+
"Label width": "Label width",
|
|
772
|
+
"Language": "Idioma",
|
|
773
|
+
"Large": "Grande",
|
|
774
|
+
"Large screen device": "Large screen device",
|
|
775
|
+
"Last 30 days": "Last 30 days",
|
|
776
|
+
"Last 7 days": "Last 7 days",
|
|
777
|
+
"Last 90 days": "Last 90 days",
|
|
778
|
+
"Last Month": "Last Month",
|
|
779
|
+
"Last Quarter": "Last Quarter",
|
|
780
|
+
"Last Week": "Last Week",
|
|
781
|
+
"Last Year": "Last Year",
|
|
782
|
+
"Last month": "Last month",
|
|
783
|
+
"Last quarter": "Last quarter",
|
|
784
|
+
"Last updated": "Última atualização",
|
|
785
|
+
"Last updated at": "Última atualização em",
|
|
786
|
+
"Last updated by": "Última atualização por",
|
|
787
|
+
"Last week": "Last week",
|
|
788
|
+
"Last year": "Last year",
|
|
789
|
+
"Layout": "Layout",
|
|
790
|
+
"Leave it blank, unless you need a custom intermediate table": "Deixe em branco, a menos que precise de uma tabela intermediária personalizada",
|
|
791
|
+
"Left": "Left",
|
|
792
|
+
"Left fixed": "Left fixed",
|
|
793
|
+
"Length": "Comprimento",
|
|
794
|
+
"Less than": "Less than",
|
|
795
|
+
"License": "Licença",
|
|
796
|
+
"Lime": "Lima",
|
|
797
|
+
"Limit": "Limit",
|
|
798
|
+
"Line break": "Line break",
|
|
799
|
+
"Line chart": "Gráfico de linhas",
|
|
800
|
+
"Link": "Link",
|
|
801
|
+
"Link action settings": "Link action settings",
|
|
802
|
+
"Link to": "Link para",
|
|
803
|
+
"Link to description": "Usado para criar relacionamentos de coleções rapidamente e compatível com a maioria dos cenários comuns. Adequado para uso não desenvolvedor. Quando presente como campo, é uma seleção suspensa usada para selecionar registros da coleção de destino. Uma vez criado, ele irá gerar simultaneamente os campos associados da coleção atual na coleção de destino.",
|
|
804
|
+
"Linkage rule": "Regra de ligação",
|
|
805
|
+
"Linkage rules": "Regras de ligação",
|
|
806
|
+
"Linkage with form fields": "Linkage with form fields",
|
|
807
|
+
"List": "List",
|
|
808
|
+
"Load all data when filter is empty": "Carregar todos os dados quando o filtro estiver vazio",
|
|
809
|
+
"Load collections": "Load collections",
|
|
810
|
+
"Local": "Local",
|
|
811
|
+
"Local storage": "Armazenamento local",
|
|
812
|
+
"Log in with an existing account": "Fazer login com uma conta existente",
|
|
813
|
+
"Logging and monitoring": "Logging and monitoring",
|
|
814
|
+
"Logo": "Logo",
|
|
815
|
+
"Long text": "Texto longo",
|
|
816
|
+
"MATHJS_DOC_URL": "https://v2.docs.nocobase.com/calculation-engine/math",
|
|
817
|
+
"Magenta": "Magenta",
|
|
818
|
+
"Main": "Main",
|
|
819
|
+
"Main department": "Main department",
|
|
820
|
+
"Manage all settings": "Gerenciar todas as configurações",
|
|
821
|
+
"Manually close": "Manually close",
|
|
822
|
+
"Many to many": "Muitos para muitos",
|
|
823
|
+
"Many to many description": "Usado para criar relacionamentos muitos-para-muitos. Por exemplo, um aluno terá muitos professores e um professor terá muitos alunos. Quando presente como um campo, é uma seleção suspensa usada para selecionar registros da coleção associada.",
|
|
824
|
+
"Many to one": "Muitos para um",
|
|
825
|
+
"Many to one description": "Usado para criar relacionamentos muitos-para-um. Por exemplo, uma cidade pode pertencer a apenas um país e um país pode ter muitas cidades. Quando presente como um campo, é uma seleção suspensa usada para selecionar um registro da coleção associada. Uma vez criado, um campo um-para-muitos é automaticamente gerado na coleção associada.",
|
|
826
|
+
"Markdown": "Markdown",
|
|
827
|
+
"Marketplace": "Loja de aplicativos",
|
|
828
|
+
"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.",
|
|
829
|
+
"Max Domain Segments": "Max Domain Segments",
|
|
830
|
+
"Max length": "Comprimento máximo",
|
|
831
|
+
"Max length must greater than min length": "O comprimento máximo deve ser maior que o comprimento mínimo",
|
|
832
|
+
"Max value": "Max value",
|
|
833
|
+
"MaxDate": "MaxDate",
|
|
834
|
+
"Maximum": "Máximo",
|
|
835
|
+
"Maximum must greater than minimum": "O máximo deve ser maior que o mínimo",
|
|
836
|
+
"Media": "Mídia",
|
|
837
|
+
"Medium": "Medium",
|
|
838
|
+
"Meet": "Meet",
|
|
839
|
+
"Meet <1><0>All</0><1>Any</1></1> conditions in the group": "Atender <1><0>Todas</0><1>Qualquer</1></1> as condições no grupo",
|
|
840
|
+
"Menu": "Menu",
|
|
841
|
+
"Menu item icon": "Ícone do item de menu",
|
|
842
|
+
"Menu item name": "Nome do item do menu",
|
|
843
|
+
"Menu item title": "Título do item de menu",
|
|
844
|
+
"Menu permissions": "Permissões de menu",
|
|
845
|
+
"Message content": "Message content",
|
|
846
|
+
"Message popup close method": "Message popup close method",
|
|
847
|
+
"Message type": "Message type",
|
|
848
|
+
"Middle": "Médio",
|
|
849
|
+
"Millisecond": "Millisecond",
|
|
850
|
+
"Min Domain Segments": "Min Domain Segments",
|
|
851
|
+
"Min length": "Comprimento mínimo",
|
|
852
|
+
"Min length must less than max length": "O comprimento mínimo deve ser menor que o comprimento máximo",
|
|
853
|
+
"Min value": "Min value",
|
|
854
|
+
"MinDate": "MinDate",
|
|
855
|
+
"Minimum": "Mínimo",
|
|
856
|
+
"Minimum must less than maximum": "O mínimo deve ser menor que o máximo",
|
|
857
|
+
"Mobile": "Mobile",
|
|
858
|
+
"Mobile routes": "Rotas móveis",
|
|
859
|
+
"Modal": "Modal",
|
|
860
|
+
"Modal add": "Modal add",
|
|
861
|
+
"Mode": "Mode",
|
|
862
|
+
"Modern page (v2)": "Modern page (v2)",
|
|
863
|
+
"Month": "Mês",
|
|
864
|
+
"Monthly": "Mensal",
|
|
865
|
+
"More details": "Mais detalhes",
|
|
866
|
+
"More options": "Mais opções",
|
|
867
|
+
"Move down": "Move down",
|
|
868
|
+
"Move to": "Mover para",
|
|
869
|
+
"Move up": "Move up",
|
|
870
|
+
"Move {{title}} to": "Mover {{title}} para",
|
|
871
|
+
"Multiple": "Multiple",
|
|
872
|
+
"Multiple select": "Seleção múltipla",
|
|
873
|
+
"Multiply by": "Multiply by",
|
|
874
|
+
"Must be 1-50 characters in length (excluding @.<>\"'/)": "Must be 1-50 characters in length (excluding @.<>\"'/)",
|
|
875
|
+
"Must select to the last level": "Deve selecionar até o último nível",
|
|
876
|
+
"Must use `-` and `:`": "Must use `-` and `:`",
|
|
877
|
+
"Método da requisição": "Método da requisição",
|
|
878
|
+
"Método de fechamento de popup": "Método de fechamento de popup",
|
|
879
|
+
"N/A": "N/A",
|
|
880
|
+
"Name": "Nome",
|
|
881
|
+
"Navigate": "Navegar",
|
|
882
|
+
"Navigate to URL": "Navigate to URL",
|
|
883
|
+
"New menu items are allowed to be accessed by default.": "Novos itens de menu são permitidos por padrão.",
|
|
884
|
+
"New password": "Nova senha",
|
|
885
|
+
"New plugin": "Novo plugin",
|
|
886
|
+
"New routes are allowed to be accessed by default": "Novas rotas são permitidas acessar por padrão",
|
|
887
|
+
"Next": "Next",
|
|
888
|
+
"Next 30 days": "Next 30 days",
|
|
889
|
+
"Next 7 days": "Next 7 days",
|
|
890
|
+
"Next 90 days": "Next 90 days",
|
|
891
|
+
"Next Month": "Next Month",
|
|
892
|
+
"Next Quarter": "Next Quarter",
|
|
893
|
+
"Next Week": "Next Week",
|
|
894
|
+
"Next Year": "Next Year",
|
|
895
|
+
"Next month": "Next month",
|
|
896
|
+
"Next quarter": "Next quarter",
|
|
897
|
+
"Next week": "Next week",
|
|
898
|
+
"Next year": "Next year",
|
|
899
|
+
"Nickname": "Apelido",
|
|
900
|
+
"No": "Não",
|
|
901
|
+
"No CHANGELOG.md file": "Nenhum arquivo CHANGELOG.md",
|
|
902
|
+
"No README.md file": "Nenhum arquivo README.md",
|
|
903
|
+
"No allow `-` and `:`": "No allow `-` and `:`",
|
|
904
|
+
"No assigned fields configured": "No assigned fields configured",
|
|
905
|
+
"No blocks to connect": "Não há blocos para conectar",
|
|
906
|
+
"No configuration available.": "No configuration available.",
|
|
907
|
+
"No data": "No data",
|
|
908
|
+
"No event flows": "No event flows",
|
|
909
|
+
"No form available for reset.": "No form available for reset.",
|
|
910
|
+
"No form available for submission.": "No form available for submission.",
|
|
911
|
+
"No linkage rules": "No linkage rules",
|
|
912
|
+
"No pages yet, please configure first": "Ainda não há páginas, por favor configure primeiro",
|
|
913
|
+
"No parent popup": "No parent popup",
|
|
914
|
+
"No records selected for bulk edit": "No records selected for bulk edit",
|
|
915
|
+
"No records selected for deletion": "No records selected for deletion",
|
|
916
|
+
"No resource or record selected for deletion": "No resource or record selected for deletion",
|
|
917
|
+
"No resource selected for bulk edit": "No resource selected for bulk edit",
|
|
918
|
+
"No resource selected for deletion": "No resource selected for deletion",
|
|
919
|
+
"No resource selected for refresh": "No resource selected for refresh",
|
|
920
|
+
"Nome de província/cidade/região": "Nome de província/cidade/região",
|
|
921
|
+
"None": "Nenhum",
|
|
922
|
+
"Normal": "Normal",
|
|
923
|
+
"Not Fixed": "Desfixado",
|
|
924
|
+
"Not enabled": "Não habilitado",
|
|
925
|
+
"Not fixed": "Not fixed",
|
|
926
|
+
"Not found": "Não encontrado",
|
|
927
|
+
"Not required": "Não obrigatório",
|
|
928
|
+
"Notification": "Notification",
|
|
929
|
+
"Notification description": "Notification description",
|
|
930
|
+
"Notification title": "Notification title",
|
|
931
|
+
"Notification type": "Notification type",
|
|
932
|
+
"Now": "Now",
|
|
933
|
+
"Npm package": "Pacote Npm",
|
|
934
|
+
"Npm package name": "Nome do pacote Npm",
|
|
935
|
+
"Null": "Null",
|
|
936
|
+
"Number": "Número",
|
|
937
|
+
"Number settings": "Number settings",
|
|
938
|
+
"Object Fit": "Ajuste do Objeto",
|
|
939
|
+
"Off": "Off",
|
|
940
|
+
"Official plugin": "Plugin oficial",
|
|
941
|
+
"Old password": "Senha antiga",
|
|
942
|
+
"On": "On",
|
|
943
|
+
"One to many": "Um para muitos",
|
|
944
|
+
"One to many description": "Usado para criar um relacionamento um-para-muitos. Por exemplo, um país terá muitas cidades e uma cidade só pode estar em um país. Quando presente como um campo, é uma sub-tabela que exibe os registros da coleção associada. Quando criado, um campo muitos-para-um é automaticamente gerado na coleção associada.",
|
|
945
|
+
"One to one": "Um para um",
|
|
946
|
+
"One to one (belongs to)": "One to one (belongs to)",
|
|
947
|
+
"One to one (has one)": "One to one (has one)",
|
|
948
|
+
"One to one description": "Usado para criar relacionamentos um-para-um. Por exemplo, um usuário tem um perfil.",
|
|
949
|
+
"Only support standard JSON data": "Only support standard JSON data",
|
|
950
|
+
"Only the selected fields will be used as the initialization data for the form": "Somente os campos selecionados serão usados como dados de inicialização para o formulário",
|
|
951
|
+
"Only use `-`": "Only use `-`",
|
|
952
|
+
"Only use `.`": "Only use `.`",
|
|
953
|
+
"Only use `_`": "Only use `_`",
|
|
954
|
+
"Open in new window": "Abrir em nova janela",
|
|
955
|
+
"Open in<1><0>Modal</0><1>Drawer</1><2>Window</2></1>": "Abrir em<1><0>Modal</0><1>Drawer</1><2>Janela</2></1>",
|
|
956
|
+
"Open mode": "Modo de abertura",
|
|
957
|
+
"Open mode configuration": "Open mode configuration",
|
|
958
|
+
"Operate on existing data": "Operar em dados existentes",
|
|
959
|
+
"Operate on new data": "Operar em novos dados",
|
|
960
|
+
"Operation failed": "Falha na operação",
|
|
961
|
+
"Operation succeeded": "Operação realizada com sucesso",
|
|
962
|
+
"Operator": "Operador",
|
|
963
|
+
"Option label": "Rótulo da opção",
|
|
964
|
+
"Option value": "Valor da opção",
|
|
965
|
+
"Options": "Opções",
|
|
966
|
+
"Orange": "Laranja",
|
|
967
|
+
"Original field title: ": "Título original do campo: ",
|
|
968
|
+
"Original name": "Nome original",
|
|
969
|
+
"Original title: ": "Título original: ",
|
|
970
|
+
"Other": "Other",
|
|
971
|
+
"Other action": "Other action",
|
|
972
|
+
"Other block": "Other block",
|
|
973
|
+
"Other blocks": "Outros blocos",
|
|
974
|
+
"Other chart": "Outro gráfico",
|
|
975
|
+
"Other collections": "Other collections",
|
|
976
|
+
"Other column": "Other column",
|
|
977
|
+
"Other form": "Other form",
|
|
978
|
+
"Other records": "Outros registros",
|
|
979
|
+
"Others": "Outros",
|
|
980
|
+
"Outlined": "Outlined",
|
|
981
|
+
"Override": "Sobrescrever",
|
|
982
|
+
"Override field": "Sobrescrever campo",
|
|
983
|
+
"Oversized": "Exagerado",
|
|
984
|
+
"Own records": "Registros próprios",
|
|
985
|
+
"Owners": "Owners",
|
|
986
|
+
"PK & FK fields": "Campos PK & FK",
|
|
987
|
+
"Package name": "Package name",
|
|
988
|
+
"PackageName": "Nome do pacote",
|
|
989
|
+
"Page": "Página",
|
|
990
|
+
"Page (v2)": "Page (v2)",
|
|
991
|
+
"Page Title": "Page Title",
|
|
992
|
+
"Page number": "Page number",
|
|
993
|
+
"Page settings": "Page settings",
|
|
994
|
+
"Page size": "Page size",
|
|
995
|
+
"Parent": "Parent",
|
|
996
|
+
"Parent ID": "Parent ID",
|
|
997
|
+
"Parent collection fields": "Campos da coleção pai",
|
|
998
|
+
"Parent object": "Objeto pai",
|
|
999
|
+
"Parent popup": "Parent popup",
|
|
1000
|
+
"Parent popup record": "Registro pop-up pai",
|
|
1001
|
+
"Parent record": "Registro pai",
|
|
1002
|
+
"Parâmetros de consulta da requisição": "Parâmetros de consulta da requisição",
|
|
1003
|
+
"Password": "Senha",
|
|
1004
|
+
"Password Options": "Password Options",
|
|
1005
|
+
"Password mismatch": "As senhas não correspondem",
|
|
1006
|
+
"Past": "Past",
|
|
1007
|
+
"Path": "Caminho",
|
|
1008
|
+
"Pattern": "Padrão",
|
|
1009
|
+
"Percent": "Porcentagem",
|
|
1010
|
+
"Perform the Custom request": "Perform the Custom request",
|
|
1011
|
+
"Perform the Refresh": "Perform the Refresh",
|
|
1012
|
+
"Perform the Submit": "Perform the Submit",
|
|
1013
|
+
"Perform the Trigger workflow": "Perform the Trigger workflow",
|
|
1014
|
+
"Perform the Update record": "Perform the Update record",
|
|
1015
|
+
"Perform the {{title}}": "Perform the {{title}}",
|
|
1016
|
+
"Permission deined": "Permission denied",
|
|
1017
|
+
"Permission denied": "Permission denied",
|
|
1018
|
+
"Permission policy": "Política de permissão",
|
|
1019
|
+
"Phone": "Telefone",
|
|
1020
|
+
"Phone device": "Phone device",
|
|
1021
|
+
"Picker": "Picker",
|
|
1022
|
+
"Pie chart": "Gráfico de pizza",
|
|
1023
|
+
"Pin to left": "Fixar à esquerda",
|
|
1024
|
+
"Pin to right": "Fixar à direita",
|
|
1025
|
+
"Placeholder": "Placeholder",
|
|
1026
|
+
"Placement": "Placement",
|
|
1027
|
+
"Please add a data block on the page first": "Please add a data block on the page first",
|
|
1028
|
+
"Please add or select record": "Please add or select record",
|
|
1029
|
+
"Please configure the URL": "Please configure the URL",
|
|
1030
|
+
"Please configure the duplicate fields": "Please configure the duplicate fields",
|
|
1031
|
+
"Please confirm the SQL statement first": "Please confirm the SQL statement first",
|
|
1032
|
+
"Please enter form uid": "Please enter form uid",
|
|
1033
|
+
"Please enter the target block UID": "Please enter the target block UID",
|
|
1034
|
+
"Please enter variable identifier": "Please enter variable identifier",
|
|
1035
|
+
"Please enter variable title": "Please enter variable title",
|
|
1036
|
+
"Please fill in the iframe URL": "Por favor, preencha a URL do iframe",
|
|
1037
|
+
"Please input message content": "Please input message content",
|
|
1038
|
+
"Please input notification description": "Please input notification description",
|
|
1039
|
+
"Please input notification title": "Please input notification title",
|
|
1040
|
+
"Please input target action uid": "Please input target action uid",
|
|
1041
|
+
"Please input target block uid": "Please input target block uid",
|
|
1042
|
+
"Please input target form uid": "Please input target form uid",
|
|
1043
|
+
"Please select": "Please select",
|
|
1044
|
+
"Please select field": "Please select field",
|
|
1045
|
+
"Please select fields": "Please select fields",
|
|
1046
|
+
"Please select fields to filter": "Please select fields to filter",
|
|
1047
|
+
"Please select filterable fields": "Please select filterable fields",
|
|
1048
|
+
"Please select state": "Please select state",
|
|
1049
|
+
"Please select the records to be updated": "Please select the records to be updated",
|
|
1050
|
+
"Please select time or variable": "Please select time or variable",
|
|
1051
|
+
"Please use a valid SELECT or WITH AS statement": "Please use a valid SELECT or WITH AS statement",
|
|
1052
|
+
"Plugin": "Plugin",
|
|
1053
|
+
"Plugin Zip File": "Arquivo Zip do plugin",
|
|
1054
|
+
"Plugin dependencies check failed": "Plugin dependencies check failed",
|
|
1055
|
+
"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.",
|
|
1056
|
+
"Plugin dependency version mismatch": "Plugin dependency version mismatch",
|
|
1057
|
+
"Plugin loading failed. Please check the server logs.": "Falha ao carregar o plugin. Verifique os logs do servidor.",
|
|
1058
|
+
"Plugin manager": "Gerenciador de plugins",
|
|
1059
|
+
"Plugin name": "Nome do plugin",
|
|
1060
|
+
"Plugin settings": "Plugin settings",
|
|
1061
|
+
"Plugin settings permissions": "Permissões de configuração de plugin",
|
|
1062
|
+
"Plugin source": "Plugin source",
|
|
1063
|
+
"Plugin starting...": "Plugin iniciando...",
|
|
1064
|
+
"Plugin stopping...": "Plugin parando...",
|
|
1065
|
+
"Plugin tab name": "Nome da guia do plugin",
|
|
1066
|
+
"Plugin's version": "Versão do plugin",
|
|
1067
|
+
"Pop-up": "Pop-up",
|
|
1068
|
+
"Popup": "Pop-up",
|
|
1069
|
+
"Popup form": "Formulário pop-up",
|
|
1070
|
+
"Popup message": "Mensagem pop-up",
|
|
1071
|
+
"Popup record": "Popup record",
|
|
1072
|
+
"Popup settings": "Popup settings",
|
|
1073
|
+
"Popup size": "Tamanho da janela pop-up",
|
|
1074
|
+
"Popup uid": "Popup UID",
|
|
1075
|
+
"Position": "Posição",
|
|
1076
|
+
"Precision": "Precisão",
|
|
1077
|
+
"Precision(UI)": "Precision(UI)",
|
|
1078
|
+
"Prefix": "Prefix",
|
|
1079
|
+
"Preset fields": "Preset fields",
|
|
1080
|
+
"Prettify": "Prettify",
|
|
1081
|
+
"Preview": "Preview",
|
|
1082
|
+
"Preview Settings": "Preview Settings",
|
|
1083
|
+
"Preview field component": "Preview field component",
|
|
1084
|
+
"Primary": "Primary",
|
|
1085
|
+
"Primary key, unique identifier, self growth": "Chave primária, identificador único, crescimento próprio",
|
|
1086
|
+
"Print": "Print",
|
|
1087
|
+
"Problematic": "Problematic",
|
|
1088
|
+
"Progress field": "Progress field",
|
|
1089
|
+
"Properties": "Propriedades",
|
|
1090
|
+
"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",
|
|
1091
|
+
"Province": "Província",
|
|
1092
|
+
"Province/city/area name": "Province/city/area name",
|
|
1093
|
+
"Purple": "Roxo",
|
|
1094
|
+
"Quarter": "Quarter",
|
|
1095
|
+
"Quarter of day": "Quarter of day",
|
|
1096
|
+
"QuarterYear": "QuarterYear",
|
|
1097
|
+
"Quick add": "Quick add",
|
|
1098
|
+
"Quick create": "Quick create",
|
|
1099
|
+
"Quick duplicate": "Quick duplicate",
|
|
1100
|
+
"Quick upload": "Upload rápido",
|
|
1101
|
+
"Radio group": "Grupo de opções",
|
|
1102
|
+
"Randomly generated and can be modified. Support letters, numbers and underscores, must start with an letter.": "Gerado aleatoriamente e pode ser modificado. Aceita letras, números e sublinhados e deve começar com uma letra.",
|
|
1103
|
+
"Read only": "Somente leitura",
|
|
1104
|
+
"ReadOnly": "ReadOnly",
|
|
1105
|
+
"ReadPretty": "ReadPretty",
|
|
1106
|
+
"Readme": "Leia-me",
|
|
1107
|
+
"Readonly": "Somente leitura",
|
|
1108
|
+
"Recommended": "Recommended",
|
|
1109
|
+
"Record ID": "Record ID",
|
|
1110
|
+
"Record deleted successfully": "Record deleted successfully",
|
|
1111
|
+
"Record picker": "Selecionador de registros",
|
|
1112
|
+
"Record unique key": "Record unique key",
|
|
1113
|
+
"RecordPicker settings": "RecordPicker settings",
|
|
1114
|
+
"Records can be sorted": "Os registros podem ser classificados",
|
|
1115
|
+
"Records per page": "Registros por página",
|
|
1116
|
+
"Red": "Vermelho",
|
|
1117
|
+
"Redirect to": "Redirecionar para",
|
|
1118
|
+
"Reference template": "Modelo de referência",
|
|
1119
|
+
"References": "References",
|
|
1120
|
+
"Refresh": "Atualizar",
|
|
1121
|
+
"Refresh data after execution": "Refresh data after execution",
|
|
1122
|
+
"Refresh data blocks": "Atualizar blocos de dados",
|
|
1123
|
+
"Refresh data on action": "Refresh data on action",
|
|
1124
|
+
"Refresh data on close": "Refresh data on close",
|
|
1125
|
+
"Refresh target blocks": "Refresh target blocks",
|
|
1126
|
+
"Region": "Região",
|
|
1127
|
+
"Registro atual": "Registro atual",
|
|
1128
|
+
"Registros de auditoria": "Registros de auditoria",
|
|
1129
|
+
"Regular Expression": "Regular Expression",
|
|
1130
|
+
"Regular expression": "Expressão regular",
|
|
1131
|
+
"Related collection": "Coleção relacionada",
|
|
1132
|
+
"Relation": "Relação",
|
|
1133
|
+
"Relationship blocks": "Blocos de relacionamento",
|
|
1134
|
+
"Relationship type": "Tipo de relacionamento",
|
|
1135
|
+
"Reload application": "Reload application",
|
|
1136
|
+
"Remains the same": "Permanece o mesmo",
|
|
1137
|
+
"Remove": "Remove",
|
|
1138
|
+
"Render Failed": "Falha na renderização",
|
|
1139
|
+
"Render mode": "Render mode",
|
|
1140
|
+
"Repeats": "Repete",
|
|
1141
|
+
"Request API": "API de solicitação",
|
|
1142
|
+
"Request URL": "Request URL",
|
|
1143
|
+
"Request body": "Request body",
|
|
1144
|
+
"Request headers": "Request headers",
|
|
1145
|
+
"Request method": "Request method",
|
|
1146
|
+
"Request query parameters": "Request query parameters",
|
|
1147
|
+
"Request settings": "Request settings",
|
|
1148
|
+
"Request success": "Request success",
|
|
1149
|
+
"Required": "Obrigatório",
|
|
1150
|
+
"Requisição personalizada": "Requisição personalizada",
|
|
1151
|
+
"Reset": "Reiniciar",
|
|
1152
|
+
"Reset link expiration": "Redefinir expiração do link",
|
|
1153
|
+
"Response record": "Response record",
|
|
1154
|
+
"Response type": "Response type",
|
|
1155
|
+
"Restart": "Restart",
|
|
1156
|
+
"Restart application": "Restart application",
|
|
1157
|
+
"Restrict only relative URIs": "Restrict only relative URIs",
|
|
1158
|
+
"Result": "Resultado",
|
|
1159
|
+
"Retry after {{count}} seconds": "Tentar novamente após {{count}} segundos",
|
|
1160
|
+
"Return to the main application": "Return to the main application",
|
|
1161
|
+
"Return to the previous popup or page": "Return to the previous popup or page",
|
|
1162
|
+
"Rich Text": "Texto formatado",
|
|
1163
|
+
"Right": "Right",
|
|
1164
|
+
"Right fixed": "Right fixed",
|
|
1165
|
+
"Role UID": "UID da função",
|
|
1166
|
+
"Role display name": "Nome de exibição da função",
|
|
1167
|
+
"Role name": "Nome da função",
|
|
1168
|
+
"Roles": "Funções",
|
|
1169
|
+
"Roles & Permissions": "Funções e permissões",
|
|
1170
|
+
"Route name": "Nome da rota",
|
|
1171
|
+
"Route permissions": "Permissões de rota",
|
|
1172
|
+
"Routes": "Rotas",
|
|
1173
|
+
"Row click": "Row click",
|
|
1174
|
+
"Rows": "Rows",
|
|
1175
|
+
"SQL collection": "SQL collection",
|
|
1176
|
+
"Salvar registro": "Salvar registro",
|
|
1177
|
+
"Save": "Salvar",
|
|
1178
|
+
"Save action": "Salvar ação",
|
|
1179
|
+
"Save as block template": "Salvar como modelo de bloco",
|
|
1180
|
+
"Save as inherited template": "Salvar como modelo herdado",
|
|
1181
|
+
"Save as reference template": "Salvar como modelo de referência",
|
|
1182
|
+
"Save as template": "Salvar como modelo",
|
|
1183
|
+
"Save conditions": "Salvar condições",
|
|
1184
|
+
"Save failed": "Save failed",
|
|
1185
|
+
"Save mode": "Save mode",
|
|
1186
|
+
"Save record": "Save record",
|
|
1187
|
+
"Saved successfully": "Salvo com sucesso",
|
|
1188
|
+
"Scale": "Scale",
|
|
1189
|
+
"Scale Down": "Reduzir",
|
|
1190
|
+
"Scan to input": "Scan to input",
|
|
1191
|
+
"Scheme": "Scheme",
|
|
1192
|
+
"Scientifix notation": "Scientifix notation",
|
|
1193
|
+
"Scope name": "Nome do âmbito",
|
|
1194
|
+
"Screen size": "Screen size",
|
|
1195
|
+
"Search": "Search",
|
|
1196
|
+
"Search and select collection": "Pesquisar e selecionar coleção",
|
|
1197
|
+
"Search collections...": "Search collections...",
|
|
1198
|
+
"Search parameters": "Search parameters",
|
|
1199
|
+
"Search plugin": "Pesquisar plugin",
|
|
1200
|
+
"Search plugin...": "Search plugin...",
|
|
1201
|
+
"Second": "Second",
|
|
1202
|
+
"Secondary confirmation": "Secondary confirmation",
|
|
1203
|
+
"Security": "Security",
|
|
1204
|
+
"Selecionar": "Selecionar",
|
|
1205
|
+
"Selecionar campo": "Selecionar campo",
|
|
1206
|
+
"Select": "Select",
|
|
1207
|
+
"Select a source field to use metadata of the field": "Select a source field to use metadata of the field",
|
|
1208
|
+
"Select a variable": "Select a variable",
|
|
1209
|
+
"Select all": "Select all",
|
|
1210
|
+
"Select an existing piece of data as the initialization data for the form": "Selecione um pedaço de dados existente como os dados de inicialização para o formulário",
|
|
1211
|
+
"Select collection": "Selecionar coleção",
|
|
1212
|
+
"Select data blocks to refresh": "Selecionar blocos de dados para atualizar",
|
|
1213
|
+
"Select data source": "Selecionar fonte de dados",
|
|
1214
|
+
"Select date": "Select date",
|
|
1215
|
+
"Select field": "Select field",
|
|
1216
|
+
"Select file": "Selecionar arquivo",
|
|
1217
|
+
"Select form fields": "Select form fields",
|
|
1218
|
+
"Select grouping field": "Selecionar campo de agrupamento",
|
|
1219
|
+
"Select icon": "Selecionar ícone",
|
|
1220
|
+
"Select level": "Selecionar nível",
|
|
1221
|
+
"Select mode": "Select mode",
|
|
1222
|
+
"Select record": "Selecionar registro",
|
|
1223
|
+
"Select target action": "Select target action",
|
|
1224
|
+
"Select target block": "Select target block",
|
|
1225
|
+
"Select target form block": "Select target form block",
|
|
1226
|
+
"Select template": "Selecione um modelo",
|
|
1227
|
+
"Select trigger event": "Select trigger event",
|
|
1228
|
+
"Select variable": "Select variable",
|
|
1229
|
+
"Select view": "Selecionar visualização",
|
|
1230
|
+
"Selected": "Selecionado",
|
|
1231
|
+
"Selected Collections": "Selected Collections",
|
|
1232
|
+
"Selected records deleted successfully": "Selected records deleted successfully",
|
|
1233
|
+
"Selector": "Seletor",
|
|
1234
|
+
"Selector mode": "Modo de seleção",
|
|
1235
|
+
"Selector setting": "Selector setting",
|
|
1236
|
+
"Send code": "Enviar código",
|
|
1237
|
+
"Separate multiple values with comma or Enter": "Separate multiple values with comma or Enter",
|
|
1238
|
+
"Separator": "Separator",
|
|
1239
|
+
"Set Template Engine": "Set Template Engine",
|
|
1240
|
+
"Set action state": "Set action state",
|
|
1241
|
+
"Set block height": "Set block height",
|
|
1242
|
+
"Set block layout": "Set block layout",
|
|
1243
|
+
"Set block state": "Set block state",
|
|
1244
|
+
"Set button state": "Set button state",
|
|
1245
|
+
"Set condition": "Set condition",
|
|
1246
|
+
"Set data loading mode": "Definir modo de carregamento de dados",
|
|
1247
|
+
"Set data scope": "Set data scope",
|
|
1248
|
+
"Set default sorting rules": "Definir regras de classificação padrão",
|
|
1249
|
+
"Set default value": "Definir valor padrão",
|
|
1250
|
+
"Set details field state": "Set details field state",
|
|
1251
|
+
"Set field state": "Set field state",
|
|
1252
|
+
"Set field value": "Set field value",
|
|
1253
|
+
"Set form field state": "Set form field state",
|
|
1254
|
+
"Set form field value": "Set form field value",
|
|
1255
|
+
"Set state": "Set state",
|
|
1256
|
+
"Set the count of columns displayed in a row": "Set the count of columns displayed in a row",
|
|
1257
|
+
"Set the data scope": "Definir o escopo de dados",
|
|
1258
|
+
"Set validation rules": "Definir regras de validação",
|
|
1259
|
+
"Set value": "Set value",
|
|
1260
|
+
"Setting": "Setting",
|
|
1261
|
+
"Settings": "Settings",
|
|
1262
|
+
"Show date range": "Show date range",
|
|
1263
|
+
"Show file name": "Show file name",
|
|
1264
|
+
"Show in menu": "Mostrar no menu",
|
|
1265
|
+
"Show label": "Show label",
|
|
1266
|
+
"Show lunar": "Mostrar calendário lunar",
|
|
1267
|
+
"Show message": "Show message",
|
|
1268
|
+
"Show notification": "Show notification",
|
|
1269
|
+
"Show row numbers": "Show row numbers",
|
|
1270
|
+
"Show time": "Exibir hora",
|
|
1271
|
+
"Sign in": "Entrar",
|
|
1272
|
+
"Sign in via account": "Entrar via conta",
|
|
1273
|
+
"Sign in via phone": "Entrar via telefone",
|
|
1274
|
+
"Sign in with another account": "Sign in with another account",
|
|
1275
|
+
"Sign out": "Sair",
|
|
1276
|
+
"Sign up": "Registrar-se",
|
|
1277
|
+
"Sign up successfully, and automatically jump to the sign in page": "Cadastro realizado com sucesso, e automaticamente redirecionado para a página de login",
|
|
1278
|
+
"Signed up successfully. It will jump to the login page.": "Registrado com sucesso. Será redirecionado para a página de login.",
|
|
1279
|
+
"Simple string replacement, can be used to interpolate variables in a string.": "Simple string replacement, can be used to interpolate variables in a string.",
|
|
1280
|
+
"Single line text": "Texto de uma linha",
|
|
1281
|
+
"Single select": "Seleção única",
|
|
1282
|
+
"Single select and radio fields can be used as the grouping field": "Campos de seleção única e de rádio podem ser usados como o campo de agrupamento",
|
|
1283
|
+
"Size": "Tamanho",
|
|
1284
|
+
"Sizes": "Sizes",
|
|
1285
|
+
"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",
|
|
1286
|
+
"Skip required validation": "Ignorar validação obrigatória",
|
|
1287
|
+
"Small": "Pequeno",
|
|
1288
|
+
"SmartTv": "SmartTv",
|
|
1289
|
+
"Some files are not uploaded correctly, please check.": "Some files are not uploaded correctly, please check.",
|
|
1290
|
+
"Sorry, the page you visited does not exist.": "Desculpe, a página que você visitou não existe.",
|
|
1291
|
+
"Sort": "Ordenar",
|
|
1292
|
+
"Sortable": "Classificável",
|
|
1293
|
+
"Source collection": "Coleção de origem",
|
|
1294
|
+
"Source collections": "Source collections",
|
|
1295
|
+
"Source key": "Chave de origem",
|
|
1296
|
+
"Specific properties": "Specific properties",
|
|
1297
|
+
"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.",
|
|
1298
|
+
"Specify height": "Specify height",
|
|
1299
|
+
"Start": "Start",
|
|
1300
|
+
"Start accessor": "Start accessor",
|
|
1301
|
+
"Start date field": "Campo de data de início",
|
|
1302
|
+
"State": "State",
|
|
1303
|
+
"Stay on current page": "Permanecer na página atual",
|
|
1304
|
+
"Stay on the current popup or page": "Stay on the current popup or page",
|
|
1305
|
+
"Steps": "Steps",
|
|
1306
|
+
"Storage base URL": "URL base do armazenamento",
|
|
1307
|
+
"Storage display name": "Nome de exibição do armazenamento",
|
|
1308
|
+
"Storage name": "Nome do armazenamento",
|
|
1309
|
+
"Storage type": "Tipo de armazenamento",
|
|
1310
|
+
"Store the creation time of each record": "Armazenar a hora de criação de cada registro",
|
|
1311
|
+
"Store the creation user of each record": "Armazenar o usuário criador de cada registro",
|
|
1312
|
+
"Store the last update time of each record": "Armazenar a última hora de atualização de cada registro",
|
|
1313
|
+
"Store the last update user of each record": "Armazenar o último usuário que atualizou cada registro",
|
|
1314
|
+
"Street": "Rua",
|
|
1315
|
+
"String": "String",
|
|
1316
|
+
"String template": "String template",
|
|
1317
|
+
"Style": "Style",
|
|
1318
|
+
"Sub-detail": "Sub-detail",
|
|
1319
|
+
"Sub-details": "Sub-details",
|
|
1320
|
+
"Sub-form": "Subformulário",
|
|
1321
|
+
"Sub-form(Popover)": "Sub-form(Popover)",
|
|
1322
|
+
"Sub-table": "Subtabela",
|
|
1323
|
+
"Subform mode": "Modo de subformulário",
|
|
1324
|
+
"Submit": "Enviar",
|
|
1325
|
+
"Submit action settings": "Submit action settings",
|
|
1326
|
+
"Submit record": "Submit record",
|
|
1327
|
+
"Submitted successfully": "Enviado com sucesso",
|
|
1328
|
+
"Subtable": "Subtabela",
|
|
1329
|
+
"Subtable mode": "Modo de subtabela",
|
|
1330
|
+
"Successfully": "Successfully",
|
|
1331
|
+
"Sucesso da requisição": "Sucesso da requisição",
|
|
1332
|
+
"Suffix": "Suffix",
|
|
1333
|
+
"Super admin": "Super administrador",
|
|
1334
|
+
"Superior department": "Superior department",
|
|
1335
|
+
"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)",
|
|
1336
|
+
"Support for a single or bulk upload, file size should not exceed": "Suporte para upload único ou em massa, o tamanho do arquivo não deve exceder",
|
|
1337
|
+
"Support for a single or bulk upload.": "Support for a single or bulk upload.",
|
|
1338
|
+
"Switch role": "Mudar papel",
|
|
1339
|
+
"Switching the picker, the value and default value will be cleared": "Switching the picker, the value and default value will be cleared",
|
|
1340
|
+
"Sync from database": "Sync from database",
|
|
1341
|
+
"Sync from form fields": "Sync from form fields",
|
|
1342
|
+
"Sync successfully": "Sync successfully",
|
|
1343
|
+
"Syntax references": "Syntax references",
|
|
1344
|
+
"System": "System",
|
|
1345
|
+
"System & security": "System & security",
|
|
1346
|
+
"System fields": "Campos do sistema",
|
|
1347
|
+
"System info": "Informação do sistema",
|
|
1348
|
+
"System management": "System management",
|
|
1349
|
+
"System settings": "Configurações do sistema",
|
|
1350
|
+
"System title": "Título do sistema",
|
|
1351
|
+
"System variables": "System variables",
|
|
1352
|
+
"Tab": "Aba",
|
|
1353
|
+
"Tab name": "Nome da aba",
|
|
1354
|
+
"Table": "Tabela",
|
|
1355
|
+
"Table OID(Inheritance)": "Table OID(Inheritance)",
|
|
1356
|
+
"Table column settings": "Table column settings",
|
|
1357
|
+
"Table density": "Table density",
|
|
1358
|
+
"Table selected records": "Table selected records",
|
|
1359
|
+
"Table settings": "Table settings",
|
|
1360
|
+
"Table size": "Table size",
|
|
1361
|
+
"Tablet": "Tablet",
|
|
1362
|
+
"Tablet device": "Tablet device",
|
|
1363
|
+
"Tag": "Tag",
|
|
1364
|
+
"Tag color field": "Tag color field",
|
|
1365
|
+
"Target": "Destino",
|
|
1366
|
+
"Target block UID": "Target block UID",
|
|
1367
|
+
"Target block uid": "Target block uid",
|
|
1368
|
+
"Target collection": "Coleção de destino",
|
|
1369
|
+
"Target form block": "Target form block",
|
|
1370
|
+
"Target key": "Chave de destino",
|
|
1371
|
+
"Target position": "Posição alvo",
|
|
1372
|
+
"Template": "Modelo",
|
|
1373
|
+
"Template Data": "Dados do modelo",
|
|
1374
|
+
"Template engine": "Template engine",
|
|
1375
|
+
"Template fields": "Template fields",
|
|
1376
|
+
"Template name": "Nome do modelo",
|
|
1377
|
+
"Templates": "Modelos",
|
|
1378
|
+
"Tencent COS": "Tencent COS",
|
|
1379
|
+
"Text": "Text",
|
|
1380
|
+
"Text Align": "Text Align",
|
|
1381
|
+
"Text input": "Text input",
|
|
1382
|
+
"Text only": "Text only",
|
|
1383
|
+
"The application is reloading, please do not close the page.": "The application is reloading, please do not close the page.",
|
|
1384
|
+
"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).",
|
|
1385
|
+
"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?",
|
|
1386
|
+
"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}}\"",
|
|
1387
|
+
"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}}\"",
|
|
1388
|
+
"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}}\"",
|
|
1389
|
+
"The deletion was successful.": "A exclusão foi bem sucedida.",
|
|
1390
|
+
"The field has been deleted": "O campo foi excluído",
|
|
1391
|
+
"The field value cannot be greater than ": "O valor do campo não pode ser maior que ",
|
|
1392
|
+
"The field value cannot be less than ": "O valor do campo não pode ser menor que ",
|
|
1393
|
+
"The field value is not a email format": "The field value is not a email format",
|
|
1394
|
+
"The field value is not an integer number": "O valor do campo não é um número inteiro",
|
|
1395
|
+
"The field value is required": "The field value is required",
|
|
1396
|
+
"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",
|
|
1397
|
+
"The selected fields will automatically populate the form": "The selected fields will automatically populate the form",
|
|
1398
|
+
"The title field is used to identify the template record": "The title field is used to identify the template record",
|
|
1399
|
+
"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.": "O valor desta variável é derivado da string de consulta da URL da página. Esta variável só pode ser usada normalmente quando a página tem uma string de consulta.",
|
|
1400
|
+
"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?",
|
|
1401
|
+
"The {{type}} \"{{name}}\" may have been deleted. Please remove this {{blockType}}.": "O {{type}} \"{{name}}\" pode ter sido excluído. Por favor, remova este {{blockType}}.",
|
|
1402
|
+
"Theme": "Theme",
|
|
1403
|
+
"Then": "Então",
|
|
1404
|
+
"Third party services": "Third party services",
|
|
1405
|
+
"This Month": "This Month",
|
|
1406
|
+
"This Quarter": "This Quarter",
|
|
1407
|
+
"This Week": "This Week",
|
|
1408
|
+
"This Year": "This Year",
|
|
1409
|
+
"This and following events": "Este e os próximos eventos",
|
|
1410
|
+
"This event": "Este evento",
|
|
1411
|
+
"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).",
|
|
1412
|
+
"This field is required": "This field is required",
|
|
1413
|
+
"This is a demo text, **supports Markdown syntax**.": "Este é um texto de demonstração, **suporta a sintaxe do Markdown**.",
|
|
1414
|
+
"This is likely a NocoBase internals bug. Please open an issue at <1>here</1>": "Isso provavelmente é um bug interno do NocoBase. Por favor, abra um problema em <1>aqui</1>",
|
|
1415
|
+
"This month": "This month",
|
|
1416
|
+
"This quarter": "This quarter",
|
|
1417
|
+
"This variable has been deprecated and can be replaced with \"Current form\"": "A variável foi descontinuada; \"Formulário atual\" pode ser usada como substituto",
|
|
1418
|
+
"This week": "This week",
|
|
1419
|
+
"This year": "This year",
|
|
1420
|
+
"Through collection": "Através da coleção",
|
|
1421
|
+
"Time": "Hora",
|
|
1422
|
+
"Time format": "Formato de hora",
|
|
1423
|
+
"Time scale": "Time scale",
|
|
1424
|
+
"Timeout config": "Timeout config",
|
|
1425
|
+
"Timestamp": "Timestamp",
|
|
1426
|
+
"Title": "Título",
|
|
1427
|
+
"Title & description": "Title & description",
|
|
1428
|
+
"Title accessor": "Title accessor",
|
|
1429
|
+
"Title field": "Campo de título",
|
|
1430
|
+
"Title field component": "Title field component",
|
|
1431
|
+
"Title position": "Title position",
|
|
1432
|
+
"Today": "Hoje",
|
|
1433
|
+
"Toggles the subfield mode": "Alterna o modo de subcampo",
|
|
1434
|
+
"Tomorrow": "Tomorrow",
|
|
1435
|
+
"Tooltip": "Tooltip",
|
|
1436
|
+
"Top left": "Top left",
|
|
1437
|
+
"Top right": "Top right",
|
|
1438
|
+
"Total {{count}} items": "Total de {{count}} itens",
|
|
1439
|
+
"Tree collection": "Tree collection",
|
|
1440
|
+
"Tree table": "Tabela em árvore",
|
|
1441
|
+
"Trigger condition": "Trigger condition",
|
|
1442
|
+
"Trigger event": "Trigger event",
|
|
1443
|
+
"Trigger workflow": "Disparar fluxo de trabalho",
|
|
1444
|
+
"Triggered when the row is clicked": "Disparado quando a linha é clicada",
|
|
1445
|
+
"True": "True",
|
|
1446
|
+
"Try again": "Tente novamente",
|
|
1447
|
+
"Turn pages": "Virar páginas",
|
|
1448
|
+
"Two tone": "Two tone",
|
|
1449
|
+
"Type": "Tipo",
|
|
1450
|
+
"UI Editor": "Editor de UI",
|
|
1451
|
+
"UI editor": "Editor de UI",
|
|
1452
|
+
"URL": "URL",
|
|
1453
|
+
"URL da requisição": "URL da requisição",
|
|
1454
|
+
"URL search params": "Parâmetros de pesquisa de URL",
|
|
1455
|
+
"Um para um (pertence a)": "Um para um (pertence a)",
|
|
1456
|
+
"Um para um (tem um)": "Um para um (tem um)",
|
|
1457
|
+
"UnSelect all": "UnSelect all",
|
|
1458
|
+
"Unauthenticated. Please sign in to continue.": "Unauthenticated. Please sign in to continue.",
|
|
1459
|
+
"Unconnected": "Desconectado",
|
|
1460
|
+
"Unicode characters are permitted": "Unicode characters are permitted",
|
|
1461
|
+
"Unique": "Único",
|
|
1462
|
+
"Unit conversion": "Unit conversion",
|
|
1463
|
+
"Unix Timestamp": "Unix Timestamp",
|
|
1464
|
+
"Unknown field type": "Unknown field type",
|
|
1465
|
+
"Unnamed": "Unnamed",
|
|
1466
|
+
"Unpinned": "Desfixado",
|
|
1467
|
+
"Unsafe integer": "Unsafe integer",
|
|
1468
|
+
"Unsaved changes": "Alterações não salvas",
|
|
1469
|
+
"Update": "Atualizar",
|
|
1470
|
+
"Update all data?": "Atualizar todos os dados?",
|
|
1471
|
+
"Update or create": "Update or create",
|
|
1472
|
+
"Update plugin": "Atualizar plugin",
|
|
1473
|
+
"Update record": "Update record",
|
|
1474
|
+
"Update record action": "Update record",
|
|
1475
|
+
"Update selected data?": "Atualizar dados selecionados?",
|
|
1476
|
+
"Updated successfully": "Updated successfully",
|
|
1477
|
+
"UpdatedAt": "Registrando o horário da última atualização da linha",
|
|
1478
|
+
"UpdatedBy": "Registrando o último usuário que atualizou a linha",
|
|
1479
|
+
"Upgrade": "Atualizar",
|
|
1480
|
+
"Upload": "Carregar",
|
|
1481
|
+
"Upload file settings": "Upload file settings",
|
|
1482
|
+
"Upload new version": "Enviar nova versão",
|
|
1483
|
+
"Upload plugin": "Enviar plugin",
|
|
1484
|
+
"Uploading": "Uploading",
|
|
1485
|
+
"Usar o mesmo fuso horário (GMT) para todos os usuários": "Usar o mesmo fuso horário (GMT) para todos os usuários",
|
|
1486
|
+
"Use simple pagination mode": "Use simple pagination mode",
|
|
1487
|
+
"Use the built-in static file server": "Usar o servidor de arquivo estático integrado",
|
|
1488
|
+
"Use the same time zone (GMT) for all users": "Use the same time zone (GMT) for all users",
|
|
1489
|
+
"Used for drag and drop sorting scenarios, supporting grouping sorting": "Used for drag and drop sorting scenarios, supporting grouping sorting",
|
|
1490
|
+
"User": "User",
|
|
1491
|
+
"User not found. Please sign in again to continue.": "User not found. Please sign in again to continue.",
|
|
1492
|
+
"User password changed, please signin again.": "User password changed, please signin again.",
|
|
1493
|
+
"Username": "Username",
|
|
1494
|
+
"Users": "Usuários",
|
|
1495
|
+
"Users & permissions": "Users & permissions",
|
|
1496
|
+
"Usuário": "Usuário",
|
|
1497
|
+
"Usuário atual": "Usuário atual",
|
|
1498
|
+
"Valid range: 10-40": "Valid range: 10-40",
|
|
1499
|
+
"Valid range: 100-900": "Valid range: 100-900",
|
|
1500
|
+
"Validation": "Validation",
|
|
1501
|
+
"Validation rule": "Regra de validação",
|
|
1502
|
+
"Valor constante": "Valor constante",
|
|
1503
|
+
"Valor dinâmico": "Valor dinâmico",
|
|
1504
|
+
"Value": "Valor",
|
|
1505
|
+
"Variable identifier": "Variable identifier",
|
|
1506
|
+
"Variable title": "Variable title",
|
|
1507
|
+
"Ver todos os plugins": "Ver todos os plugins",
|
|
1508
|
+
"Verification code": "Código de verificação",
|
|
1509
|
+
"Vermelho perigoso": "Vermelho perigoso",
|
|
1510
|
+
"Version": "Versão",
|
|
1511
|
+
"Version range": "Intervalo de versão",
|
|
1512
|
+
"Vertical": "Vertical",
|
|
1513
|
+
"View": "Visualizar",
|
|
1514
|
+
"View all plugins": "View all plugins",
|
|
1515
|
+
"View record": "Visualizar registro",
|
|
1516
|
+
"Village": "Bairro",
|
|
1517
|
+
"Visible": "Visível",
|
|
1518
|
+
"Volcano": "Vulcão",
|
|
1519
|
+
"Wearable": "Wearable",
|
|
1520
|
+
"Week": "Semana",
|
|
1521
|
+
"Weekly": "Semanal",
|
|
1522
|
+
"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.",
|
|
1523
|
+
"When condition is met": "When condition is met",
|
|
1524
|
+
"When condition is not met": "When condition is not met",
|
|
1525
|
+
"When submitting the following fields, the saved values are": "Ao enviar os seguintes campos, os valores salvos são",
|
|
1526
|
+
"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",
|
|
1527
|
+
"When the Label exceeds the width": "When the Label exceeds the width",
|
|
1528
|
+
"With condition": "With condition",
|
|
1529
|
+
"Without condition": "Without condition",
|
|
1530
|
+
"Work week": "Semana de trabalho",
|
|
1531
|
+
"Workflow": "Workflow",
|
|
1532
|
+
"Wrap": "Wrap",
|
|
1533
|
+
"Wysiwyg": "Wysiwyg",
|
|
1534
|
+
"Year": "Year",
|
|
1535
|
+
"Year-Month-Day": "Ano-Mês-Dia",
|
|
1536
|
+
"Year/Month/Day": "Ano/Mês/Dia",
|
|
1537
|
+
"Yearly": "Anual",
|
|
1538
|
+
"Yes": "Sim",
|
|
1539
|
+
"Yesterday": "Yesterday",
|
|
1540
|
+
"Your session has expired. Please sign in again.": "Your session has expired. Please sign in again.",
|
|
1541
|
+
"conditions in the group": "conditions in the group",
|
|
1542
|
+
"contains": "contém",
|
|
1543
|
+
"data source": "fonte de dados",
|
|
1544
|
+
"does not contain": "não contém",
|
|
1545
|
+
"edit title": "editar título",
|
|
1546
|
+
"ends with": "termina com",
|
|
1547
|
+
"exists": "existe",
|
|
1548
|
+
"is": "é",
|
|
1549
|
+
"is after": "é depois",
|
|
1550
|
+
"is any of": "is any of",
|
|
1551
|
+
"is before": "é antes",
|
|
1552
|
+
"is between": "is between",
|
|
1553
|
+
"is current logged-in user": "é o usuário atualmente logado",
|
|
1554
|
+
"is empty": "está vazio",
|
|
1555
|
+
"is none of": "is none of",
|
|
1556
|
+
"is not": "não é",
|
|
1557
|
+
"is not current logged-in user": "não é o usuário atualmente logado",
|
|
1558
|
+
"is not empty": "não está vazio",
|
|
1559
|
+
"is on or after": "é em ou depois",
|
|
1560
|
+
"is on or before": "é em ou antes",
|
|
1561
|
+
"is variable": "é uma variável",
|
|
1562
|
+
"item": "item",
|
|
1563
|
+
"items": "items",
|
|
1564
|
+
"loading": "carregando",
|
|
1565
|
+
"name is required": "nome é obrigatório",
|
|
1566
|
+
"not ends with": "não termina com",
|
|
1567
|
+
"not exists": "não existe",
|
|
1568
|
+
"not starts with": "não começa com",
|
|
1569
|
+
"pixels": "pixels",
|
|
1570
|
+
"re-download file": "re-fazer download do arquivo",
|
|
1571
|
+
"starts with": "começa com",
|
|
1572
|
+
"tlds": "tlds",
|
|
1573
|
+
"visible": "visível",
|
|
1574
|
+
"{{#label}} email address doesn’t meet the required format": "{{#label}} email address doesn’t meet the required format",
|
|
1575
|
+
"{{#label}} is not allowed to be empty": "{{#label}} is not allowed to be empty",
|
|
1576
|
+
"{{#label}} is required": "{{#label}} is required",
|
|
1577
|
+
"{{#label}} length must be at least {{#limit}} characters long": "{{#label}} length must be at least {{#limit}} characters long",
|
|
1578
|
+
"{{#label}} length must be less than or equal to {{#limit}} characters long": "{{#label}} length must be less than or equal to {{#limit}} characters long",
|
|
1579
|
+
"{{#label}} length must be {{#limit}} characters long": "{{#label}} length must be {{#limit}} characters long",
|
|
1580
|
+
"{{#label}} must be a credit card": "{{#label}} must be a credit card",
|
|
1581
|
+
"{{#label}} must be a float or double": "{{#label}} must be a float or double",
|
|
1582
|
+
"{{#label}} must be a multiple of {{#multiple}}": "{{#label}} must be a multiple of {{#multiple}}",
|
|
1583
|
+
"{{#label}} must be a negative number": "{{#label}} must be a negative number",
|
|
1584
|
+
"{{#label}} must be a number": "{{#label}} must be a number",
|
|
1585
|
+
"{{#label}} must be a positive number": "{{#label}} must be a positive number",
|
|
1586
|
+
"{{#label}} must be a safe number": "{{#label}} must be a safe number",
|
|
1587
|
+
"{{#label}} must be a string": "{{#label}} must be a string",
|
|
1588
|
+
"{{#label}} must be a valid ISO 8601 date": "{{#label}} must be a valid ISO 8601 date",
|
|
1589
|
+
"{{#label}} must be a valid UUID": "{{#label}} must be a valid UUID",
|
|
1590
|
+
"{{#label}} must be a valid date": "{{#label}} must be a valid date",
|
|
1591
|
+
"{{#label}} must be a valid hostname": "{{#label}} must be a valid hostname",
|
|
1592
|
+
"{{#label}} must be a valid port": "{{#label}} must be a valid port",
|
|
1593
|
+
"{{#label}} must be a valid uri": "{{#label}} must be a valid uri",
|
|
1594
|
+
"{{#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",
|
|
1595
|
+
"{{#label}} must be an integer": "{{#label}} must be an integer",
|
|
1596
|
+
"{{#label}} must be greater than or equal to {{#limit}}": "{{#label}} must be greater than or equal to {{#limit}}",
|
|
1597
|
+
"{{#label}} must be greater than {{#limit}}": "{{#label}} must be greater than {{#limit}}",
|
|
1598
|
+
"{{#label}} must be in {{#format}} format": "{{#label}} must be in {{#format}} format",
|
|
1599
|
+
"{{#label}} must be less than or equal to {{#limit}}": "{{#label}} must be less than or equal to {{#limit}}",
|
|
1600
|
+
"{{#label}} must be less than {{#limit}}": "{{#label}} must be less than {{#limit}}",
|
|
1601
|
+
"{{#label}} must not have leading or trailing whitespace": "{{#label}} must not have leading or trailing whitespace",
|
|
1602
|
+
"{{#label}} must not have more than {{#limit}} decimal places": "{{#label}} must not have more than {{#limit}} decimal places",
|
|
1603
|
+
"{{#label}} must only contain alpha-numeric and underscore characters": "{{#label}} must only contain alpha-numeric and underscore characters",
|
|
1604
|
+
"{{#label}} must only contain alpha-numeric characters": "{{#label}} must only contain alpha-numeric characters",
|
|
1605
|
+
"{{#label}} must only contain hexadecimal characters": "{{#label}} must only contain hexadecimal characters",
|
|
1606
|
+
"{{#label}} must only contain lowercase characters": "{{#label}} must only contain lowercase characters",
|
|
1607
|
+
"{{#label}} must only contain uppercase characters": "{{#label}} must only contain uppercase characters",
|
|
1608
|
+
"{{#label}} with value \"{{#value}}\" fails to match the required pattern": "{{#label}} with value \"{{#value}}\" fails to match the required pattern",
|
|
1609
|
+
"{{#label}} with value \"{{#value}}\" fails to match the {{#name}} pattern": "{{#label}} with value \"{{#value}}\" fails to match the {{#name}} pattern",
|
|
1610
|
+
"{{#label}} with value \"{{#value}}\" matches the inverted pattern": "{{#label}} with value \"{{#value}}\" matches the inverted pattern",
|
|
1611
|
+
"{{#label}} with value \"{{#value}}\" matches the inverted {{#name}} pattern": "{{#label}} with value \"{{#value}}\" matches the inverted {{#name}} pattern",
|
|
1612
|
+
"{{count}} filter items": "{{count}} itens de filtro",
|
|
1613
|
+
"{{count}} more items": "{{count}} itens a mais",
|
|
1614
|
+
"≠": "≠",
|
|
1615
|
+
"≤": "≤",
|
|
1616
|
+
"≥": "≥"
|
|
1617
|
+
}
|