@pisell/materials 6.11.5 → 6.11.7
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/build/lowcode/assets-daily.json +11 -11
- package/build/lowcode/assets-dev.json +2 -2
- package/build/lowcode/assets-prod.json +11 -11
- package/build/lowcode/index.js +1 -1
- package/build/lowcode/meta.js +7 -7
- package/build/lowcode/preview.js +9 -9
- package/build/lowcode/render/default/view.css +1 -1
- package/build/lowcode/render/default/view.js +23 -23
- package/build/lowcode/view.css +1 -1
- package/build/lowcode/view.js +19 -19
- package/es/components/PisellTabbar/PisellTabbar.js +47 -44
- package/es/components/PisellTabbar/locales.d.ts +8 -0
- package/es/components/PisellTabbar/locales.js +8 -0
- package/es/components/PisellTabbar/template/Template1/PisellTabbar.d.ts +3 -18
- package/es/components/PisellTabbar/template/Template1/PisellTabbar.js +124 -28
- package/es/components/PisellTabbar/template/Template1/constants.js +1 -1
- package/es/components/PisellTabbar2/locales.d.ts +8 -0
- package/es/components/PisellTabbar2/locales.js +8 -0
- package/es/components/PisellTabbar3/locales.d.ts +8 -0
- package/es/components/PisellTabbar3/locales.js +8 -0
- package/es/components/config-provider/index.d.ts +2 -0
- package/es/components/config-provider/index.js +6 -0
- package/es/components/dataSourceComponents/fields/Input.Mobile/serve.d.ts +2 -0
- package/es/components/dataSourceComponents/fields/Input.Phone/serve.d.ts +2 -0
- package/es/components/dataSourceComponents/fields/Translation/BaseTranslation.js +8 -0
- package/es/components/dataSourceComponents/fields/Translation/type.d.ts +2 -0
- package/es/components/dataSourceComponents/fields/Upload/constants.d.ts +1 -1
- package/es/components/dataSourceComponents/fields/Upload/constants.js +1 -1
- package/es/components/dataSourceComponents/fields/Upload/utils.js +1 -1
- package/es/components/page/index.js +11 -1
- package/es/components/pisellDateTimeDisplay/PisellDateTimeDisplay.js +47 -34
- package/es/components/pisellDateTimeDisplay/PisellDateTimeDisplay.stories.d.ts +19 -0
- package/es/components/pisellDateTimeDisplay/PisellDateTimeDisplay.stories.js +74 -0
- package/es/components/pisellDateTimeDisplay/components/DateDisplay.d.ts +6 -1
- package/es/components/pisellDateTimeDisplay/components/DateDisplay.js +10 -3
- package/es/components/pisellDateTimeDisplay/formats/dateTimeDisplayFormats.d.ts +7 -0
- package/es/components/pisellDateTimeDisplay/formats/dateTimeDisplayFormats.js +81 -0
- package/es/components/pisellDateTimeDisplay/formats/index.d.ts +1 -0
- package/es/components/pisellDateTimeDisplay/formats/index.js +1 -0
- package/es/components/pisellDateTimeDisplay/hooks/useCurrentTime.d.ts +2 -2
- package/es/components/pisellDateTimeDisplay/hooks/useCurrentTime.js +2 -2
- package/es/components/pisellDateTimeDisplay/types.d.ts +48 -2
- package/es/components/pisellDateTimeDisplay/utils/formatDate.js +25 -6
- package/es/components/pisellDateTimeDisplay/utils/formatDateOrRelative.d.ts +17 -0
- package/es/components/pisellDateTimeDisplay/utils/formatDateOrRelative.js +38 -0
- package/es/components/pisellDateTimeDisplay/utils/formatWeekday.js +11 -12
- package/es/components/pisellDateTimeDisplay/utils/index.d.ts +3 -1
- package/es/components/pisellDateTimeDisplay/utils/index.js +3 -1
- package/es/components/pisellDateTimeDisplay/utils/localeUtils.d.ts +2 -7
- package/es/components/pisellDateTimeDisplay/utils/localeUtils.js +4 -17
- package/es/components/pisellDateTimeDisplay/utils/relativeDay.d.ts +23 -0
- package/es/components/pisellDateTimeDisplay/utils/relativeDay.js +45 -0
- package/es/components/pisellLookup/components/LookupTrigger.js +66 -6
- package/es/components/pisellText/components/Editable/index.d.ts +3 -0
- package/es/components/pisellTimeRangeDisplay/PisellTimeRangeDisplay.d.ts +32 -0
- package/es/components/pisellTimeRangeDisplay/PisellTimeRangeDisplay.js +197 -0
- package/es/components/pisellTimeRangeDisplay/PisellTimeRangeDisplay.less +49 -0
- package/es/components/pisellTimeRangeDisplay/PisellTimeRangeDisplay.stories.d.ts +61 -0
- package/es/components/pisellTimeRangeDisplay/PisellTimeRangeDisplay.stories.js +209 -0
- package/es/components/pisellTimeRangeDisplay/components/DateBlock.d.ts +20 -0
- package/es/components/pisellTimeRangeDisplay/components/DateBlock.js +30 -0
- package/es/components/pisellTimeRangeDisplay/components/DurationBlock.d.ts +19 -0
- package/es/components/pisellTimeRangeDisplay/components/DurationBlock.js +25 -0
- package/es/components/pisellTimeRangeDisplay/components/TimeRangeBlock.d.ts +30 -0
- package/es/components/pisellTimeRangeDisplay/components/TimeRangeBlock.js +86 -0
- package/es/components/pisellTimeRangeDisplay/components/WeekdayBlock.d.ts +18 -0
- package/es/components/pisellTimeRangeDisplay/components/WeekdayBlock.js +23 -0
- package/es/components/pisellTimeRangeDisplay/components/index.d.ts +8 -0
- package/es/components/pisellTimeRangeDisplay/components/index.js +4 -0
- package/es/components/pisellTimeRangeDisplay/index.d.ts +3 -0
- package/es/components/pisellTimeRangeDisplay/index.js +1 -0
- package/es/components/pisellTimeRangeDisplay/types.d.ts +137 -0
- package/es/components/pisellTimeRangeDisplay/types.js +1 -0
- package/es/components/pisellTimeRangeDisplay/utils/formatDuration.d.ts +14 -0
- package/es/components/pisellTimeRangeDisplay/utils/formatDuration.js +53 -0
- package/es/components/pisellTimeRangeDisplay/utils/index.d.ts +4 -0
- package/es/components/pisellTimeRangeDisplay/utils/index.js +5 -0
- package/es/components/pisellTimeRangeDisplay/utils/parseTimeRange.d.ts +23 -0
- package/es/components/pisellTimeRangeDisplay/utils/parseTimeRange.js +27 -0
- package/es/components/productCard/cartSkuCard/components/timeRange/index.d.ts +2 -0
- package/es/components/productCard/cartSkuCard/components/timeRange/index.js +5 -1
- package/es/components/productCard/cartSkuCard/locales.d.ts +64 -0
- package/es/components/productCard/cartSkuCard/locales.js +16 -0
- package/es/components/productCard/locales.d.ts +54 -0
- package/es/components/productCard/locales.js +84 -0
- package/es/components/productCard/utils.d.ts +2 -0
- package/es/components/productCard/utils.js +8 -2
- package/es/components/translation/index.d.ts +2 -0
- package/es/components/translation/index.js +12 -0
- package/es/components/translation/utils.d.ts +2 -0
- package/es/components/translation/utils.js +3 -1
- package/es/components/walletCard/index.d.ts +2 -0
- package/es/components/walletCard/index.js +11 -3
- package/es/index.d.ts +2 -0
- package/es/index.js +7 -0
- package/es/locales/index.js +6 -2
- package/es/locales/ja.d.ts +337 -0
- package/es/locales/ja.js +416 -0
- package/es/locales/pt.d.ts +337 -0
- package/es/locales/pt.js +416 -0
- package/es/utils/platform.d.ts +1 -1
- package/lib/components/PisellTabbar/PisellTabbar.js +64 -57
- package/lib/components/PisellTabbar/locales.d.ts +8 -0
- package/lib/components/PisellTabbar/locales.js +8 -0
- package/lib/components/PisellTabbar/template/Template1/PisellTabbar.d.ts +3 -18
- package/lib/components/PisellTabbar/template/Template1/PisellTabbar.js +171 -55
- package/lib/components/PisellTabbar/template/Template1/constants.js +1 -1
- package/lib/components/PisellTabbar2/locales.d.ts +8 -0
- package/lib/components/PisellTabbar2/locales.js +8 -0
- package/lib/components/PisellTabbar3/locales.d.ts +8 -0
- package/lib/components/PisellTabbar3/locales.js +8 -0
- package/lib/components/config-provider/index.d.ts +2 -0
- package/lib/components/config-provider/index.js +6 -0
- package/lib/components/dataSourceComponents/fields/Input.Mobile/serve.d.ts +2 -0
- package/lib/components/dataSourceComponents/fields/Input.Phone/serve.d.ts +2 -0
- package/lib/components/dataSourceComponents/fields/Translation/BaseTranslation.js +5 -1
- package/lib/components/dataSourceComponents/fields/Translation/type.d.ts +2 -0
- package/lib/components/dataSourceComponents/fields/Upload/constants.d.ts +1 -1
- package/lib/components/dataSourceComponents/fields/Upload/constants.js +1 -1
- package/lib/components/dataSourceComponents/fields/Upload/utils.js +1 -1
- package/lib/components/page/index.js +11 -1
- package/lib/components/pisellDateTimeDisplay/PisellDateTimeDisplay.js +27 -17
- package/lib/components/pisellDateTimeDisplay/PisellDateTimeDisplay.stories.d.ts +19 -0
- package/lib/components/pisellDateTimeDisplay/PisellDateTimeDisplay.stories.js +63 -0
- package/lib/components/pisellDateTimeDisplay/components/DateDisplay.d.ts +6 -1
- package/lib/components/pisellDateTimeDisplay/components/DateDisplay.js +5 -1
- package/lib/components/pisellDateTimeDisplay/formats/dateTimeDisplayFormats.d.ts +7 -0
- package/lib/components/pisellDateTimeDisplay/formats/dateTimeDisplayFormats.js +98 -0
- package/lib/components/pisellDateTimeDisplay/formats/index.d.ts +1 -0
- package/lib/components/pisellDateTimeDisplay/formats/index.js +29 -0
- package/lib/components/pisellDateTimeDisplay/hooks/useCurrentTime.d.ts +2 -2
- package/lib/components/pisellDateTimeDisplay/types.d.ts +48 -2
- package/lib/components/pisellDateTimeDisplay/utils/formatDate.js +14 -1
- package/lib/components/pisellDateTimeDisplay/utils/formatDateOrRelative.d.ts +17 -0
- package/lib/components/pisellDateTimeDisplay/utils/formatDateOrRelative.js +54 -0
- package/lib/components/pisellDateTimeDisplay/utils/formatWeekday.js +6 -6
- package/lib/components/pisellDateTimeDisplay/utils/index.d.ts +3 -1
- package/lib/components/pisellDateTimeDisplay/utils/index.js +8 -2
- package/lib/components/pisellDateTimeDisplay/utils/localeUtils.d.ts +2 -7
- package/lib/components/pisellDateTimeDisplay/utils/localeUtils.js +2 -11
- package/lib/components/pisellDateTimeDisplay/utils/relativeDay.d.ts +23 -0
- package/lib/components/pisellDateTimeDisplay/utils/relativeDay.js +54 -0
- package/lib/components/pisellLookup/components/LookupTrigger.js +45 -7
- package/lib/components/pisellText/components/Editable/index.d.ts +3 -0
- package/lib/components/pisellTimeRangeDisplay/PisellTimeRangeDisplay.d.ts +32 -0
- package/lib/components/pisellTimeRangeDisplay/PisellTimeRangeDisplay.js +193 -0
- package/lib/components/pisellTimeRangeDisplay/PisellTimeRangeDisplay.less +49 -0
- package/lib/components/pisellTimeRangeDisplay/PisellTimeRangeDisplay.stories.d.ts +61 -0
- package/lib/components/pisellTimeRangeDisplay/PisellTimeRangeDisplay.stories.js +187 -0
- package/lib/components/pisellTimeRangeDisplay/components/DateBlock.d.ts +20 -0
- package/lib/components/pisellTimeRangeDisplay/components/DateBlock.js +69 -0
- package/lib/components/pisellTimeRangeDisplay/components/DurationBlock.d.ts +19 -0
- package/lib/components/pisellTimeRangeDisplay/components/DurationBlock.js +65 -0
- package/lib/components/pisellTimeRangeDisplay/components/TimeRangeBlock.d.ts +30 -0
- package/lib/components/pisellTimeRangeDisplay/components/TimeRangeBlock.js +120 -0
- package/lib/components/pisellTimeRangeDisplay/components/WeekdayBlock.d.ts +18 -0
- package/lib/components/pisellTimeRangeDisplay/components/WeekdayBlock.js +64 -0
- package/lib/components/pisellTimeRangeDisplay/components/index.d.ts +8 -0
- package/lib/components/pisellTimeRangeDisplay/components/index.js +38 -0
- package/lib/components/pisellTimeRangeDisplay/index.d.ts +3 -0
- package/lib/components/pisellTimeRangeDisplay/index.js +40 -0
- package/lib/components/pisellTimeRangeDisplay/types.d.ts +137 -0
- package/lib/components/pisellTimeRangeDisplay/types.js +17 -0
- package/lib/components/pisellTimeRangeDisplay/utils/formatDuration.d.ts +14 -0
- package/lib/components/pisellTimeRangeDisplay/utils/formatDuration.js +52 -0
- package/lib/components/pisellTimeRangeDisplay/utils/index.d.ts +4 -0
- package/lib/components/pisellTimeRangeDisplay/utils/index.js +47 -0
- package/lib/components/pisellTimeRangeDisplay/utils/parseTimeRange.d.ts +23 -0
- package/lib/components/pisellTimeRangeDisplay/utils/parseTimeRange.js +49 -0
- package/lib/components/productCard/cartSkuCard/components/timeRange/index.d.ts +2 -0
- package/lib/components/productCard/cartSkuCard/components/timeRange/index.js +5 -1
- package/lib/components/productCard/cartSkuCard/locales.d.ts +64 -0
- package/lib/components/productCard/cartSkuCard/locales.js +18 -0
- package/lib/components/productCard/locales.d.ts +54 -0
- package/lib/components/productCard/locales.js +60 -0
- package/lib/components/productCard/utils.d.ts +2 -0
- package/lib/components/productCard/utils.js +8 -2
- package/lib/components/translation/index.d.ts +2 -0
- package/lib/components/translation/index.js +14 -0
- package/lib/components/translation/utils.d.ts +2 -0
- package/lib/components/translation/utils.js +3 -1
- package/lib/components/walletCard/index.d.ts +2 -0
- package/lib/components/walletCard/index.js +11 -3
- package/lib/index.d.ts +2 -0
- package/lib/index.js +3 -0
- package/lib/locales/index.js +6 -2
- package/lib/locales/ja.d.ts +337 -0
- package/lib/locales/ja.js +396 -0
- package/lib/locales/pt.d.ts +337 -0
- package/lib/locales/pt.js +396 -0
- package/lib/utils/platform.d.ts +1 -1
- package/lowcode/pisell-time-range-display/index.ts +3 -0
- package/lowcode/pisell-time-range-display/meta.ts +375 -0
- package/lowcode/pisell-time-range-display/snippets.ts +1 -0
- package/package.json +3 -3
|
@@ -0,0 +1,396 @@
|
|
|
1
|
+
var __defProp = Object.defineProperty;
|
|
2
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
3
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
4
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
5
|
+
var __export = (target, all) => {
|
|
6
|
+
for (var name in all)
|
|
7
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
8
|
+
};
|
|
9
|
+
var __copyProps = (to, from, except, desc) => {
|
|
10
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
11
|
+
for (let key of __getOwnPropNames(from))
|
|
12
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
13
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
14
|
+
}
|
|
15
|
+
return to;
|
|
16
|
+
};
|
|
17
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
18
|
+
|
|
19
|
+
// src/locales/pt.ts
|
|
20
|
+
var pt_exports = {};
|
|
21
|
+
__export(pt_exports, {
|
|
22
|
+
default: () => pt_default
|
|
23
|
+
});
|
|
24
|
+
module.exports = __toCommonJS(pt_exports);
|
|
25
|
+
var pt_default = {
|
|
26
|
+
"pisell-tabbar-expand": "Expandir",
|
|
27
|
+
"pisell-tabbar-minimize": "Minimizar",
|
|
28
|
+
"pisell-tabbar-all": "Todos",
|
|
29
|
+
"table-filter-search": "Pesquisar",
|
|
30
|
+
"table-filter-clear": "Limpar",
|
|
31
|
+
"table-filter-filter": "Filtrar",
|
|
32
|
+
"table-filter-min": "Mín",
|
|
33
|
+
"table-filter-max": "Máx",
|
|
34
|
+
"table-pagination-previous": "Anterior",
|
|
35
|
+
"table-pagination-next": "Próximo",
|
|
36
|
+
"table-pagination-total": (current, total) => `Página ${current} de ${total}`,
|
|
37
|
+
"select-dropdown-render-select-all": "Selecionar tudo",
|
|
38
|
+
"select-dropdown-render-search": "Pesquisar",
|
|
39
|
+
"sort-button-text": "Ordenar",
|
|
40
|
+
"sort-oldest-to-newest": "Mais antigo para mais recente",
|
|
41
|
+
"sort-newest-to-oldest": "Mais recente para mais antigo",
|
|
42
|
+
"sort-a-z": "A a Z",
|
|
43
|
+
"sort-z-a": "Z a A",
|
|
44
|
+
"sort-from-morning-to-night": "Da manhã para a noite",
|
|
45
|
+
"sort-from-evening-to-morning": "Da noite para a manhã",
|
|
46
|
+
"sort-0-9": "0 ~ 9",
|
|
47
|
+
"sort-9-0": "9 ~ 0",
|
|
48
|
+
"table-action-filter-button": "Filtrar",
|
|
49
|
+
"table-action-filter-quick-filter": "Filtro Rápido",
|
|
50
|
+
"table-action-filter-quick-filter-tip": (count) => `Ative a filtragem rápida diretamente na página para operações de filtragem convenientes, com um máximo de ${count} filtros permitidos.`,
|
|
51
|
+
"table-action-filter-other-filter": "Filtrar",
|
|
52
|
+
"table-action-filter-other-filter-tip": () => "Selecione os critérios de filtro na lista para realizar operações de filtragem e exibir os resultados correspondentes.",
|
|
53
|
+
"table-action-group-by-title": "Agrupar por",
|
|
54
|
+
"table-action-group-by-title-tip": "Selecione o campo no menu suspenso para agrupar os dados para melhor organização e navegação.",
|
|
55
|
+
"table-action-column-title": "Configurações do cabeçalho",
|
|
56
|
+
"table-column-group-records": "registros",
|
|
57
|
+
"table-column-group-lock-tip": "Ordem da coluna fixa imutável",
|
|
58
|
+
"table-column-drag-sort-disabled-tip": "A ordenação automática está ativada, o arrasto manual está desativado.",
|
|
59
|
+
"table-action-filter-no-filter": "Nenhuma opção de filtro disponível.",
|
|
60
|
+
"table-action-range-picker-presets-today": "Hoje",
|
|
61
|
+
"table-action-range-picker-presets-yesterday": "Ontem",
|
|
62
|
+
"table-action-range-picker-presets-last-3-day": "Últimos 3 Dias",
|
|
63
|
+
"table-action-range-picker-presets-last-7-day": "Últimos 7 Dias",
|
|
64
|
+
"table-action-range-picker-presets-last-14-day": "Últimos 14 Dias",
|
|
65
|
+
"table-action-range-picker-presets-last-30-day": "Últimos 30 Dias",
|
|
66
|
+
"table-action-range-picker-presets-last-90-day": "Últimos 90 Dias",
|
|
67
|
+
"virtual-keyboard-time-now": "Agora",
|
|
68
|
+
"virtual-keyboard-time-ok": "OK",
|
|
69
|
+
"batch-editor-batch-edit": "Edição em lote",
|
|
70
|
+
"batch-editor-actions": "Ações",
|
|
71
|
+
"batch-editor-remove": "Remover",
|
|
72
|
+
"batch-editor-price": "Preço",
|
|
73
|
+
"batch-editor-cancel": "Cancelar",
|
|
74
|
+
"batch-editor-search": "Pesquisar",
|
|
75
|
+
"batch-editor-confirm": "Confirmar",
|
|
76
|
+
"batch-editor-batch-remove": "Remover em lote",
|
|
77
|
+
"batch-editor-quick-edit": "Edição rápida",
|
|
78
|
+
"batch-editor-what-price": "Qual preço",
|
|
79
|
+
"batch-editor-quick-edit-title": (product, num) => `Você selecionou ${num} produtos incluindo ${product}`,
|
|
80
|
+
"batch-editor-quick-edit-title-2": (product) => `Você selecionou ${product}`,
|
|
81
|
+
// 导出
|
|
82
|
+
"table-action-export-import-export-success": "Exportação bem-sucedida!",
|
|
83
|
+
"table-action-export-import-button": "Exportar",
|
|
84
|
+
"table-action-export-import-export-range": "Intervalo de Exportação",
|
|
85
|
+
"table-action-export-import-current-page": "Página Atual",
|
|
86
|
+
"table-action-export-import-all-records": "Todos os Registros",
|
|
87
|
+
"table-action-export-import-selected-records": "Registros Selecionados",
|
|
88
|
+
"table-action-export-import-selected": "Selecionado",
|
|
89
|
+
"table-action-export-import-item": (length) => `${length} ${length > 1 ? "itens" : "item"}`,
|
|
90
|
+
"table-action-export-import-product": "Exportar Produtos",
|
|
91
|
+
// 导入
|
|
92
|
+
"table-action-export-import-table-text-input-title": "Clique ou arraste o arquivo para esta área para fazer upload",
|
|
93
|
+
"table-action-export-import-table-text-input-describe": "Suporta upload único e em massa. Não faça upload de arquivos de dados que não sejam o modelo suportado.",
|
|
94
|
+
"table-action-export-import-table-error-file": "Suporta apenas o upload de arquivos nos formatos .csv, .xls, .xlsx.",
|
|
95
|
+
"table-action-export-import-import-success": "Importação bem-sucedida!",
|
|
96
|
+
"table-action-export-import-import-phone": "Deseja substituir dados com o mesmo número de celular?",
|
|
97
|
+
"table-action-export-import-table-success-download": "Download Bem-sucedido",
|
|
98
|
+
"table-action-export-import-table-textimport-product": "Importar Produtos",
|
|
99
|
+
"table-action-export-import-table-text-product-template": "Modelo de Importação",
|
|
100
|
+
"table-action-export-import-table-text-click-download": "Clique para baixar",
|
|
101
|
+
"table-action-export-import-table-text-edit-file": "Substituir arquivo",
|
|
102
|
+
"table-action-export-import-button-import": "Importar",
|
|
103
|
+
"table-action-export-import-cancel": "Cancelar",
|
|
104
|
+
"table-action-export-import-file-completed": "concluído",
|
|
105
|
+
"table-action-export-import-file-processing": "processando",
|
|
106
|
+
"table-action-export-import-file-pending": "pendente",
|
|
107
|
+
"table-action-export-import-file-refresh": "Atualizar",
|
|
108
|
+
"table-action-export-import-export-title": "Arquivo de Exportação",
|
|
109
|
+
"table-action-export-import-file-hint": "Exibir apenas os últimos 10 históricos de exportação",
|
|
110
|
+
"table-action-export-import-file-name": "Arquivo de Exportação",
|
|
111
|
+
"table-action-export-import-file-content": "Conteúdo",
|
|
112
|
+
"table-action-export-import-file-content-all": "Todos",
|
|
113
|
+
"table-action-export-import-file-content-part": "Selecionado",
|
|
114
|
+
"table-action-export-import-file-status": "Status",
|
|
115
|
+
"table-action-export-import-file-account": "Operador",
|
|
116
|
+
"table-action-export-import-file-created": "Hora da Operação",
|
|
117
|
+
"table-action-export-import-file-record": (length) => `${length} ${length > 1 ? "registros" : "registro"}`,
|
|
118
|
+
// 导入日志
|
|
119
|
+
"table-action-export-import-import-title": "Log de Importação",
|
|
120
|
+
"table-action-export-import-log-hint": "Exibir apenas os últimos 10 históricos de importação",
|
|
121
|
+
"table-action-export-import-log-name": "Arquivo de Importação",
|
|
122
|
+
"table-action-export-import-log-result": "Resultados da Importação",
|
|
123
|
+
"table-action-export-import-log-ok": (num) => `${num} bem-sucedido`,
|
|
124
|
+
"table-action-export-import-log-err": (num) => `, ${num} falhas`,
|
|
125
|
+
"table-action-export-import-log-check": `Ver mais`,
|
|
126
|
+
// 导入详情
|
|
127
|
+
"table-action-export-import-log-detail-title": "Detalhes da Importação",
|
|
128
|
+
"table-action-export-import-log-err-log": "Log de Falhas",
|
|
129
|
+
"table-action-export-import-log-copy": "Copiar",
|
|
130
|
+
"table-action-export-import-table-success-copy": "Cópia Bem-sucedida",
|
|
131
|
+
"drag-sort-tree-unavailable-today-tip": "Indisponível hoje",
|
|
132
|
+
// 日期组件
|
|
133
|
+
"date-picker-today": "Hoje",
|
|
134
|
+
"date-picker-yesterday": "Ontem",
|
|
135
|
+
"date-picker-tomorrow": "Amanhã",
|
|
136
|
+
"date-picker-next_monday": "Próxima segunda-feira",
|
|
137
|
+
"date-picker-last_friday": "Última sexta-feira",
|
|
138
|
+
"date-picker-first_day_of_this_month": "Primeiro dia deste mês",
|
|
139
|
+
"date-picker-last_day_of_this_month": "Último dia deste mês",
|
|
140
|
+
"date-picker-first_day_of_next_month": "Primeiro dia do próximo mês",
|
|
141
|
+
"date-picker-last_day_of_last_month": "Último dia do mês passado",
|
|
142
|
+
"date-picker-invalid-date": "Data inválida",
|
|
143
|
+
"date-picker-apply": "Aplicar",
|
|
144
|
+
"date-picker-shortcut-custom": "Personalizado",
|
|
145
|
+
"pisell-input-copy-success": "Cópia Bem-sucedida",
|
|
146
|
+
"pisell-input-copy": "Copiar",
|
|
147
|
+
// 空状态
|
|
148
|
+
"pisell-empty-description-no-data": "Sem Dados",
|
|
149
|
+
// 信息录入组件
|
|
150
|
+
"pisell-information-entry-input-search": "Pesquisar",
|
|
151
|
+
"pisell-information-entry-input-confirm": "Confirmar",
|
|
152
|
+
"pisell-information-entry-scan-exit": "Sair",
|
|
153
|
+
// 钱包卡片组件
|
|
154
|
+
"pisell-wallet-pass-card-detail": "Detalhes",
|
|
155
|
+
"pisell-wallet-pass-card-edit": "Editar",
|
|
156
|
+
"pisell-wallet-pass-card-name": "Nome",
|
|
157
|
+
"pisell-wallet-pass-card-store-name": "Nome da Loja",
|
|
158
|
+
"pisell-wallet-pass-card-balance": "Saldo",
|
|
159
|
+
"pisell-wallet-pass-card-redeem": "usar",
|
|
160
|
+
"pisell-wallet-pass-card-code": "Código",
|
|
161
|
+
"pisell-wallet-pass-card-valid-to": "Válido até",
|
|
162
|
+
"pisell-wallet-pass-card-valid": "Válido",
|
|
163
|
+
"pisell-wallet-pass-card-confirm": "Confirmar",
|
|
164
|
+
"pisell-wallet-pass-card-cancel": "Cancelar",
|
|
165
|
+
"pisell-wallet-pass-card-required": "Este campo é obrigatório",
|
|
166
|
+
"pisell-wallet-pass-card-expireDate": "Longo prazo",
|
|
167
|
+
// 金额修改组件
|
|
168
|
+
"pisell-adjust-price-price-override": "Substituição de preço",
|
|
169
|
+
"pisell-adjust-price-discount": "Desconto",
|
|
170
|
+
"pisell-adjust-price-discount-amount": "Valor",
|
|
171
|
+
"pisell-adjust-price-discount-percentage": "Porcentagem",
|
|
172
|
+
"pisell-adjust-price-total-after-discount": "Total após desconto:",
|
|
173
|
+
"pisell-adjust-price-discount-can-be-maximum": "O desconto pode ser máximo",
|
|
174
|
+
"pisell-discount-card-title": "Desconto",
|
|
175
|
+
"pisell-discount-card-unit": "OFF",
|
|
176
|
+
"pisell-discount-card-fixed-amount-prefix": "Economizar",
|
|
177
|
+
// 数据源表格
|
|
178
|
+
"pisell-data-source-table-add": "Adicionar",
|
|
179
|
+
"pisell-data-source-table-edit": "Editar",
|
|
180
|
+
"pisell-data-source-table-detail": "Detalhes",
|
|
181
|
+
"pisell-data-source-table-delete": "Excluir",
|
|
182
|
+
// recordView组件
|
|
183
|
+
"pisell-record-view-available": "Disponível",
|
|
184
|
+
"pisell-record-view-unavailable": "Não disponível",
|
|
185
|
+
"pisell-data-source-form-required-message": "Este campo é obrigatório",
|
|
186
|
+
"pisell-data-source-form-email-message": "Por favor, insira um endereço de e-mail válido",
|
|
187
|
+
"pisell-data-source-form-domain-message": "Por favor, insira um domínio válido",
|
|
188
|
+
"pisell-data-source-form-url-message": "Por favor, insira uma URL válida",
|
|
189
|
+
"pisell-data-source-form-phone-message": "Por favor, insira um número de telefone válido",
|
|
190
|
+
"pisell-data-source-form-min-length-message": (minLength) => `O comprimento deve ter pelo menos ${minLength} caractere`,
|
|
191
|
+
"pisell-data-source-form-max-length-message": (maxLength) => `O comprimento deve ter no máximo ${maxLength} caracteres`,
|
|
192
|
+
"pisell-data-source-form-min-value-message": (minValue) => `O valor deve ser maior ou igual a ${minValue}`,
|
|
193
|
+
"pisell-data-source-form-max-value-message": (maxValue) => `O valor deve ser menor ou igual a ${maxValue}`,
|
|
194
|
+
"pisell-data-source-form-mobile-message": "Por favor, insira um número de celular válido",
|
|
195
|
+
"pisell-data-source-form-pattern-message": "Por favor, insira o formato correto",
|
|
196
|
+
// Number formatting
|
|
197
|
+
"pisell-number-format-thousand": "K",
|
|
198
|
+
"pisell-number-format-million": "M",
|
|
199
|
+
"pisell-number-format-billion": "B",
|
|
200
|
+
//walletCard 组件
|
|
201
|
+
"walletCard-done": "Concluído",
|
|
202
|
+
"walletCard-qrcode": "Código QR",
|
|
203
|
+
"walletCard-barcode": "Código de barras",
|
|
204
|
+
"walletCard-viewPin": "Ver PIN",
|
|
205
|
+
// 上传组件
|
|
206
|
+
"pisell-upload-button": "Fazer upload",
|
|
207
|
+
"pisell-upload-setting-size-error": (maxSize) => `Cada arquivo não deve exceder ${maxSize}MB de tamanho.`,
|
|
208
|
+
"pisell-upload-setting-type-error": (type) => `O tipo de arquivo ${type} não é suportado para upload.`,
|
|
209
|
+
"pisell-upload-count-error": (count) => `Por favor, faça upload de ${count} arquivo`,
|
|
210
|
+
"pisell-upload-error": (name) => `Falha no upload de ${name}`,
|
|
211
|
+
"pisell-upload-multilingual-title": "Multilíngue",
|
|
212
|
+
"pisell-upload-multilingual-item-title-original": "Original",
|
|
213
|
+
"pisell-upload-multilingual-item-title-en": "English",
|
|
214
|
+
"pisell-upload-multilingual-item-title-zh-CN": "简体中文",
|
|
215
|
+
"pisell-upload-multilingual-item-title-zh-HK": "繁體中文",
|
|
216
|
+
// 颜色组件
|
|
217
|
+
"pisell-color-picker-default": "Padrão",
|
|
218
|
+
// 获取数据
|
|
219
|
+
"pisell-action-get-data": "Por favor, obtenha os dados primeiro",
|
|
220
|
+
"pisell-action-delete-success": "Excluído com sucesso",
|
|
221
|
+
"pisell-action-delete-failed": "Falha ao excluir, por favor tente novamente",
|
|
222
|
+
"walletCard-point": "Pontos",
|
|
223
|
+
"walletCard-rechargeable": "Saldo",
|
|
224
|
+
"walletCard-voucher": "Vale",
|
|
225
|
+
"walletCard-discount": "Desconto",
|
|
226
|
+
//PisellQrcode组件
|
|
227
|
+
"pisellQrcode-done": "Concluído",
|
|
228
|
+
"pisellQrcode-qrcode": "Código QR",
|
|
229
|
+
"pisell-delete-confirm-title": "Confirmar Exclusão",
|
|
230
|
+
"pisell-delete-confirm-content": "Tem certeza de que deseja excluir este registro? Esta ação não pode ser desfeita.",
|
|
231
|
+
"pisell-delete-confirm-ok": "Excluir",
|
|
232
|
+
"pisell-delete-confirm-cancel": "Cancelar",
|
|
233
|
+
"pisell-design-mode-action-disabled": "Esta operação não é permitida no modo de edição",
|
|
234
|
+
"pisell-translation-original": "Original",
|
|
235
|
+
// 版本升级组件
|
|
236
|
+
"pisell-version-modal-title": "Publicar nova versão",
|
|
237
|
+
"pisell-version-modal-current-version": "Versão atual",
|
|
238
|
+
"pisell-version-modal-version": "Versão",
|
|
239
|
+
"pisell-version-modal-update-notes": "Notas de atualização",
|
|
240
|
+
"pisell-version-modal-patch": "Patch",
|
|
241
|
+
"pisell-version-modal-minor": "Menor",
|
|
242
|
+
"pisell-version-modal-major": "Principal",
|
|
243
|
+
"pisell-version-modal-custom": "Versão personalizada",
|
|
244
|
+
"pisell-version-modal-cancel": "Cancelar",
|
|
245
|
+
"pisell-version-modal-confirm": "Confirmar",
|
|
246
|
+
"pisell-version-modal-describe-update-notes": "Descreva as principais mudanças nesta versão...",
|
|
247
|
+
"pisell-version-modal-version-error": "O número da versão deve ser maior que a versão atual",
|
|
248
|
+
"pisell-version-modal-version-required": "O número da versão é obrigatório",
|
|
249
|
+
"pisell-version-modal-based-on-version": "Com base na versão",
|
|
250
|
+
// 子域名校验错误
|
|
251
|
+
"subdomain-error-too-short": "O subdomínio deve ter pelo menos 2 caracteres",
|
|
252
|
+
"subdomain-error-too-long": "O subdomínio não pode exceder 60 caracteres",
|
|
253
|
+
"subdomain-error-pattern": "O subdomínio pode conter apenas letras minúsculas, números e hífens",
|
|
254
|
+
"subdomain-error-numbers-only": "O subdomínio não pode conter apenas números",
|
|
255
|
+
"subdomain-error-hyphen-ends": "O subdomínio não pode começar ou terminar com hífen",
|
|
256
|
+
"subdomain-error-consecutive-hyphens": "O subdomínio não pode conter hífens consecutivos",
|
|
257
|
+
"subdomain-error-required": "Por favor, insira o subdomínio",
|
|
258
|
+
// 图标选择组件
|
|
259
|
+
"pisell-icon-select-outlined": "Contorno",
|
|
260
|
+
"pisell-icon-select-filled": "Preenchido",
|
|
261
|
+
"pisell-icon-select-two-tone": "Dois tons",
|
|
262
|
+
"pisell-icon-select-iconfont": "Iconfont",
|
|
263
|
+
"pisell-icon-select-search": "Pesquisar ícone",
|
|
264
|
+
"pisell-icon-select-select": "Selecionar ícone",
|
|
265
|
+
// 应用版本控制组件
|
|
266
|
+
"pisell-lowcode-app-version-control-live": "Ao vivo",
|
|
267
|
+
"pisell-lowcode-app-version-control-draft": "Rascunho",
|
|
268
|
+
"pisell-lowcode-app-version-control-deprecated": "Descontinuado",
|
|
269
|
+
"pisell-lowcode-app-version-control-new-version": "Nova versão",
|
|
270
|
+
"pisell-lowcode-app-version-control-promote-to-live": "Promover para ao vivo",
|
|
271
|
+
"pisell-lowcode-app-version-control-promote-version": (version) => `Promover versão ${version || ""}?`,
|
|
272
|
+
"pisell-lowcode-app-version-control-promote-version-describe": "Tem certeza de que deseja promover esta versão?",
|
|
273
|
+
"pisell-lowcode-app-version-control-promote-version-ok": "Promover",
|
|
274
|
+
"pisell-lowcode-app-version-control-promote-version-cancel": "Cancelar",
|
|
275
|
+
"pisell-lowcode-app-version-control-version-exists": "A versão já existe",
|
|
276
|
+
// 拖拽排序组件
|
|
277
|
+
"pisell-lowcode-drop-sort-add": "Adicionar",
|
|
278
|
+
// 导航菜单组件
|
|
279
|
+
"pisell-lowcode-navigation-menu-add-sub-menu": "Adicionar submenu",
|
|
280
|
+
"pisell-lowcode-navigation-menu-add-page": "Adicionar página",
|
|
281
|
+
"pisell-lowcode-navigation-menu-add-page-tip": "Nenhuma navegação encontrada. Por favor, adicione um submenu ou página.",
|
|
282
|
+
"pisell-lowcode-navigation-menu-tag-base": "Base",
|
|
283
|
+
"pisell-lowcode-navigation-menu-tag-proCode": "Pro code",
|
|
284
|
+
"pisell-lowcode-navigation-menu-tag-pisell1": "Pisell 1.0",
|
|
285
|
+
"pisell-lowcode-navigation-menu-tag-group": "Grupo",
|
|
286
|
+
"pisell-lowcode-navigation-menu-tag-sub-menu": "Submenu",
|
|
287
|
+
"pisell-lowcode-navigation-menu-tag-custom": "Personalizado",
|
|
288
|
+
// 应用标识符
|
|
289
|
+
"pisell-data-source-form-app-identifier-pattern": "Pode conter apenas letras minúsculas, números, hífens, pontos e sublinhados",
|
|
290
|
+
"pisell-data-source-form-app-identifier-start-with-letter": "Deve começar com uma letra",
|
|
291
|
+
// TODO(reilly): Added new properties to `zh-CN.ts`, so adding them here to avoid errors.
|
|
292
|
+
// Please update these translations as needed
|
|
293
|
+
"pisell-group-permissions-rule-required": "Obrigatório",
|
|
294
|
+
"pisell-group-permissions-rule-limit": "Máximo de {{num}} caracteres",
|
|
295
|
+
"pisell-data-source-form-app-identifier-letters-only": "Deve começar com uma letra",
|
|
296
|
+
"pisell-data-source-form-app-identifier-alphanumeric": "Pode conter apenas letras, números, hífens, pontos e sublinhados",
|
|
297
|
+
"pisell-data-source-form-app-identifier-special-ends": "Não pode terminar com hífen, ponto ou sublinhado",
|
|
298
|
+
"pisell-data-source-form-app-identifier-consecutive-special": "Não pode conter hífens, pontos ou sublinhados consecutivos",
|
|
299
|
+
// QR Scanner related texts
|
|
300
|
+
"qrscanner-loading": "Reconhecendo código QR...",
|
|
301
|
+
"qrscanner-success": "Reconhecido com sucesso:",
|
|
302
|
+
"qrscanner-success-qrcode": "Código QR reconhecido com sucesso:",
|
|
303
|
+
"qrscanner-success-barcode": "Código de barras reconhecido com sucesso:",
|
|
304
|
+
"qrscanner-error-upload-image": "Por favor, faça upload de um arquivo de imagem",
|
|
305
|
+
"qrscanner-error-load-failed": "Falha ao ler o arquivo",
|
|
306
|
+
"qrscanner-error-no-code": "Nenhum código QR ou código de barras detectado.",
|
|
307
|
+
"qrscanner-error-camera-init": "Não é possível iniciar a câmera. Por favor, certifique-se de que está autorizada.",
|
|
308
|
+
"qrscanner-error-process-image": "Erro ao processar a imagem",
|
|
309
|
+
// 登录注册组件
|
|
310
|
+
"pisell-login-and-register-title": "Fazer login na sua conta",
|
|
311
|
+
"pisell-login-and-register-subtitle": "Bem-vindo de volta! Por favor, insira seus detalhes.",
|
|
312
|
+
"pisell-login-and-register-email-label": "E-mail",
|
|
313
|
+
"pisell-login-and-register-email-placeholder": "Digite seu e-mail",
|
|
314
|
+
"pisell-login-and-register-password-label": "Senha",
|
|
315
|
+
"pisell-login-and-register-password-placeholder": "Digite sua senha",
|
|
316
|
+
"pisell-login-and-register-email-error": "Por favor, insira seu e-mail!",
|
|
317
|
+
"pisell-login-and-register-email-error-valid": "Por favor, insira um e-mail válido!",
|
|
318
|
+
"pisell-login-and-register-password-error": "Por favor, insira a senha correta",
|
|
319
|
+
"pisell-login-and-register-login": "Fazer login",
|
|
320
|
+
"pisell-login-and-register-google": "Continuar com Google",
|
|
321
|
+
"pisell-login-and-register-facebook": "Continuar com Facebook",
|
|
322
|
+
"pisell-login-and-register-apple": "Continuar com Apple",
|
|
323
|
+
"pisell-login-and-register-sign-up": "Não tem uma conta? Inscrever-se",
|
|
324
|
+
"pisell-login-and-register-login-tab": "Login",
|
|
325
|
+
"pisell-login-and-register-register-tab": "Registrar",
|
|
326
|
+
"pisell-login-and-register-register-email-placeholder": "Digite seu e-mail",
|
|
327
|
+
"pisell-login-and-register-register-password-placeholder": "Criar uma senha",
|
|
328
|
+
"pisell-login-and-register-register-button-text": "Criar conta",
|
|
329
|
+
"pisell-login-and-register-remember-me": "Lembrar-me",
|
|
330
|
+
"pisell-login-and-register-forgot-password": "Esqueceu a senha?",
|
|
331
|
+
// 商品券组件
|
|
332
|
+
"pisell2.text.goodpass.product-vouchers": "Promoções e Vales",
|
|
333
|
+
"pisell2.text.goodpass.last-settlement": "(Último pagamento)",
|
|
334
|
+
"pisell2.text.goodpass.view-more": "Ver Mais",
|
|
335
|
+
"pisell2.text.goodpass.save": "Economizar",
|
|
336
|
+
// 钱包卡片组件
|
|
337
|
+
"pisell-wallet-pass-card-status-used": "Usado",
|
|
338
|
+
"pisell-wallet-pass-card-status-expired": "Expirado",
|
|
339
|
+
"pisell-wallet-pass-card-status-disabled": "Desabilitado",
|
|
340
|
+
"pisell-wallet-pass-card-status-conflict": "Conflito",
|
|
341
|
+
"pisell-wallet-pass-card-status-lastPayment": "Último Pagamento",
|
|
342
|
+
"pisell-wallet-pass-card-reset": "Redefinir",
|
|
343
|
+
"pisell-wallet-pass-card-done": "Concluído",
|
|
344
|
+
"pisell2.wallet-card.add-holder-tip": "Para garantir seus benefícios, por favor\r\natribua um titular para ativar este cartão.",
|
|
345
|
+
"pisell2.wallet-card.add-holder-button-text": "Definir Titular",
|
|
346
|
+
// 相机组件
|
|
347
|
+
"pisell-camera-no-camera-accessible": "Nenhuma câmera acessível",
|
|
348
|
+
"pisell-camera-permission-denied": "Permissão negada",
|
|
349
|
+
"pisell-camera-switch-camera": "Alternar câmera",
|
|
350
|
+
"pisell-camera-canvas": "Canvas não suportado",
|
|
351
|
+
"pisell-camera-checking": "Detectando câmera...",
|
|
352
|
+
"pisell-camera-no-camera-desc": "Por favor, verifique se seu dispositivo tem uma câmera ou conceda permissão ao navegador para acessar a câmera",
|
|
353
|
+
// 拍照组件
|
|
354
|
+
"pisell-upload-camera-local-files": "Arquivos Locais",
|
|
355
|
+
"pisell-upload-camera-capture": "Capturar",
|
|
356
|
+
"pisell-upload-camera-retake": "Refazer",
|
|
357
|
+
"pisell-upload-camera-use": "Usar foto",
|
|
358
|
+
// 列表组件
|
|
359
|
+
"pisell-list-tab-group-default": "Campo",
|
|
360
|
+
"pisell-list-empty-text-default": "Nenhum dado disponível",
|
|
361
|
+
"pisell-list-load-more": "Carregar Mais",
|
|
362
|
+
"pisell-list-view-less": "Ver Menos",
|
|
363
|
+
"pisell-list-pagination-total": (start, end, total) => `Mostrando ${start}-${end} de ${total} itens`,
|
|
364
|
+
"pisell-list-scroll-down": "Rolar para Baixo",
|
|
365
|
+
"pisell-list-scroll-right": "Rolar para Direita",
|
|
366
|
+
"pisell-list-pagination-page-of": (current, total) => `Página ${current} de ${total}`,
|
|
367
|
+
"pisell-list-pagination-previous": "Anterior",
|
|
368
|
+
"pisell-list-pagination-next": "Próximo",
|
|
369
|
+
// PisellLookup
|
|
370
|
+
"pisell-lookup-placeholder": "Digite o conteúdo da pesquisa",
|
|
371
|
+
"pisell-lookup-button-text": "Pesquisar",
|
|
372
|
+
"pisell-lookup-confirm-button-text": "Pesquisar",
|
|
373
|
+
"pisell-lookup-clear": "Limpar",
|
|
374
|
+
"pisell-lookup-close": "Fechar",
|
|
375
|
+
"pisell-lookup-search-history": "Histórico de pesquisa",
|
|
376
|
+
"pisell-lookup-clear-history": "Limpar tudo",
|
|
377
|
+
"pisell-lookup-suggestions": "Sugestões",
|
|
378
|
+
"pisell-lookup-popular-search": "Pesquisa popular",
|
|
379
|
+
"pisell-lookup-loading": "Carregando...",
|
|
380
|
+
"pisell-lookup-no-data": "Nenhum dado disponível",
|
|
381
|
+
// PisellFind
|
|
382
|
+
"pisell-find-button-text": "Pesquisar",
|
|
383
|
+
"pisell-find-placeholder": "Digite o conteúdo da pesquisa",
|
|
384
|
+
// Batch Action Bar
|
|
385
|
+
"batch-action-bar-select-all": "Selecionar todos",
|
|
386
|
+
"batch-action-bar-invert": "Inverter seleção",
|
|
387
|
+
"batch-action-bar-clear": "Limpar seleção",
|
|
388
|
+
"batch-action-bar-delete": "Excluir",
|
|
389
|
+
"batch-action-bar-more": "Mais",
|
|
390
|
+
"batch-action-bar-selected-count": (count) => `${count} ${count > 1 ? "itens selecionados" : "item selecionado"}`,
|
|
391
|
+
"batch-action-bar-confirm-title": "Confirmar",
|
|
392
|
+
"batch-action-bar-delete-confirm-title": "Confirmar exclusão",
|
|
393
|
+
"batch-action-bar-delete-confirm-content": (count) => `Tem certeza de que deseja excluir ${count} ${count > 1 ? "itens" : "item"} selecionados?`,
|
|
394
|
+
"batch-action-bar-delete-confirm-ok": "Sim",
|
|
395
|
+
"batch-action-bar-delete-confirm-cancel": "Não"
|
|
396
|
+
};
|
package/lib/utils/platform.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const isMobile: () =>
|
|
1
|
+
export declare const isMobile: () => any;
|