add uri name

This commit is contained in:
DASHU
2025-11-26 14:43:18 +08:00
parent 86445df47c
commit 312e147a0f
6 changed files with 13 additions and 2 deletions

View File

@@ -25,6 +25,8 @@ class _AppTypeComponent extends State<AppTypeComponent> {
typeName = s.Android;
} else if (widget.appType == AppType.REMOTE) {
typeName = s.Remote;
} else if (widget.appType == AppType.URI) {
typeName = s.Uri;
}
return TagComponent(typeName);

View File

@@ -151,6 +151,7 @@ class MessageLookup extends MessageLookupByLibrary {
"Streaming": MessageLookupByLibrary.simpleMessage("Streaming"),
"ThemeStyle": MessageLookupByLibrary.simpleMessage("ThemeStyle"),
"Tools": MessageLookupByLibrary.simpleMessage("Tools"),
"Uri": MessageLookupByLibrary.simpleMessage("Uri"),
"Url": MessageLookupByLibrary.simpleMessage("Url"),
"WEB": MessageLookupByLibrary.simpleMessage("WEB"),
"Web_APPs": MessageLookupByLibrary.simpleMessage("Web APPs"),

View File

@@ -110,7 +110,7 @@ class MessageLookup extends MessageLookupByLibrary {
"Refresh": MessageLookupByLibrary.simpleMessage("刷新"),
"Reject": MessageLookupByLibrary.simpleMessage("拒绝"),
"Relay": MessageLookupByLibrary.simpleMessage("中继"),
"Remote": MessageLookupByLibrary.simpleMessage(""),
"Remote": MessageLookupByLibrary.simpleMessage(""),
"Search_Engine": MessageLookupByLibrary.simpleMessage("搜索引擎"),
"Secret": MessageLookupByLibrary.simpleMessage("密码"),
"Setting": MessageLookupByLibrary.simpleMessage("设置"),
@@ -121,6 +121,7 @@ class MessageLookup extends MessageLookupByLibrary {
"Streaming": MessageLookupByLibrary.simpleMessage("直播"),
"ThemeStyle": MessageLookupByLibrary.simpleMessage("主题类型"),
"Tools": MessageLookupByLibrary.simpleMessage("工具"),
"Uri": MessageLookupByLibrary.simpleMessage("链接"),
"Url": MessageLookupByLibrary.simpleMessage("链接"),
"WEB": MessageLookupByLibrary.simpleMessage("网页"),
"Web_APPs": MessageLookupByLibrary.simpleMessage("网页应用"),

View File

@@ -564,6 +564,11 @@ class S {
return Intl.message('Remote', name: 'Remote', desc: '', args: []);
}
/// `Uri`
String get Uri {
return Intl.message('Uri', name: 'Uri', desc: '', args: []);
}
/// `auto`
String get auto {
return Intl.message('auto', name: 'auto', desc: '', args: []);

View File

@@ -72,6 +72,7 @@
"WEB": "WEB",
"Android": "Android",
"Remote": "Remote",
"Uri": "Uri",
"auto": "auto",
"Follow_System": "Follow System",
"Light": "Light",

View File

@@ -71,7 +71,8 @@
"App_Connect": "应用链接",
"WEB": "网页",
"Android": "安卓",
"Remote": "远",
"Remote": "远",
"Uri": "链接",
"auto": "自动",
"Follow_System": "跟随系统",
"Light": "浅色",