1
0
mirror of https://github.com/pooneyy/1Panel-Appstore.git synced 2026-04-16 05:59:34 +08:00
pooneyy 9779122311
feat(apps): add structured label field to all application configurations
- add nested label field with en and zh translations for all parameters
- maintain existing labelEn and labelZh fields for backward compatibility
- apply consistent internationalization structure across all apps
- improve localization support for multi-language user interfaces
2025-11-06 23:35:02 +08:00

60 lines
1.4 KiB
YAML

additionalProperties:
formFields:
- default: 8858
edit: true
envKey: PANEL_APP_PORT_HTTP
labelZh: WebUI 端口
labelEn: WebUI Port
label:
en: WebUI Port
zh: WebUI 端口
required: true
rule: paramPort
type: number
- default: 8719
edit: true
envKey: PANEL_APP_PORT_API
labelZh: API 端口
labelEn: API Port
label:
en: API Port
zh: API 端口
required: true
rule: paramPort
type: number
- default: "sentinel"
edit: true
envKey: SENTINEL_DASHBOARD_AUTH_USERNAME
labelEn: Dashboard username
labelZh: 控制台 用户名
label:
en: Dashboard username
zh: 控制台 用户名
required: true
type: text
- default: "sentinel"
edit: true
envKey: SENTINEL_DASHBOARD_AUTH_PASSWORD
labelEn: Dashboard password
labelZh: 控制台 密码
label:
en: Dashboard password
zh: 控制台 密码
required: true
type: text
- default: "false"
edit: true
envKey: SENTINEL_DASHBOARD_FEIGN_ENABLED
labelZh: 启用 Feign
labelEn: Enable Feign
label:
en: Enable Feign
zh: 启用 Feign
required: false
type: select
values:
- label: 启用
value: "true"
- label: 禁用
value: "false"