mirror of
https://github.com/haorendashu/nowser.git
synced 2025-12-17 09:54:19 +01:00
add uri name
This commit is contained in:
@@ -25,6 +25,8 @@ class _AppTypeComponent extends State<AppTypeComponent> {
|
|||||||
typeName = s.Android;
|
typeName = s.Android;
|
||||||
} else if (widget.appType == AppType.REMOTE) {
|
} else if (widget.appType == AppType.REMOTE) {
|
||||||
typeName = s.Remote;
|
typeName = s.Remote;
|
||||||
|
} else if (widget.appType == AppType.URI) {
|
||||||
|
typeName = s.Uri;
|
||||||
}
|
}
|
||||||
|
|
||||||
return TagComponent(typeName);
|
return TagComponent(typeName);
|
||||||
|
|||||||
@@ -151,6 +151,7 @@ class MessageLookup extends MessageLookupByLibrary {
|
|||||||
"Streaming": MessageLookupByLibrary.simpleMessage("Streaming"),
|
"Streaming": MessageLookupByLibrary.simpleMessage("Streaming"),
|
||||||
"ThemeStyle": MessageLookupByLibrary.simpleMessage("ThemeStyle"),
|
"ThemeStyle": MessageLookupByLibrary.simpleMessage("ThemeStyle"),
|
||||||
"Tools": MessageLookupByLibrary.simpleMessage("Tools"),
|
"Tools": MessageLookupByLibrary.simpleMessage("Tools"),
|
||||||
|
"Uri": MessageLookupByLibrary.simpleMessage("Uri"),
|
||||||
"Url": MessageLookupByLibrary.simpleMessage("Url"),
|
"Url": MessageLookupByLibrary.simpleMessage("Url"),
|
||||||
"WEB": MessageLookupByLibrary.simpleMessage("WEB"),
|
"WEB": MessageLookupByLibrary.simpleMessage("WEB"),
|
||||||
"Web_APPs": MessageLookupByLibrary.simpleMessage("Web APPs"),
|
"Web_APPs": MessageLookupByLibrary.simpleMessage("Web APPs"),
|
||||||
|
|||||||
@@ -110,7 +110,7 @@ class MessageLookup extends MessageLookupByLibrary {
|
|||||||
"Refresh": MessageLookupByLibrary.simpleMessage("刷新"),
|
"Refresh": MessageLookupByLibrary.simpleMessage("刷新"),
|
||||||
"Reject": MessageLookupByLibrary.simpleMessage("拒绝"),
|
"Reject": MessageLookupByLibrary.simpleMessage("拒绝"),
|
||||||
"Relay": MessageLookupByLibrary.simpleMessage("中继"),
|
"Relay": MessageLookupByLibrary.simpleMessage("中继"),
|
||||||
"Remote": MessageLookupByLibrary.simpleMessage("远处"),
|
"Remote": MessageLookupByLibrary.simpleMessage("远程"),
|
||||||
"Search_Engine": MessageLookupByLibrary.simpleMessage("搜索引擎"),
|
"Search_Engine": MessageLookupByLibrary.simpleMessage("搜索引擎"),
|
||||||
"Secret": MessageLookupByLibrary.simpleMessage("密码"),
|
"Secret": MessageLookupByLibrary.simpleMessage("密码"),
|
||||||
"Setting": MessageLookupByLibrary.simpleMessage("设置"),
|
"Setting": MessageLookupByLibrary.simpleMessage("设置"),
|
||||||
@@ -121,6 +121,7 @@ class MessageLookup extends MessageLookupByLibrary {
|
|||||||
"Streaming": MessageLookupByLibrary.simpleMessage("直播"),
|
"Streaming": MessageLookupByLibrary.simpleMessage("直播"),
|
||||||
"ThemeStyle": MessageLookupByLibrary.simpleMessage("主题类型"),
|
"ThemeStyle": MessageLookupByLibrary.simpleMessage("主题类型"),
|
||||||
"Tools": MessageLookupByLibrary.simpleMessage("工具"),
|
"Tools": MessageLookupByLibrary.simpleMessage("工具"),
|
||||||
|
"Uri": MessageLookupByLibrary.simpleMessage("链接"),
|
||||||
"Url": MessageLookupByLibrary.simpleMessage("链接"),
|
"Url": MessageLookupByLibrary.simpleMessage("链接"),
|
||||||
"WEB": MessageLookupByLibrary.simpleMessage("网页"),
|
"WEB": MessageLookupByLibrary.simpleMessage("网页"),
|
||||||
"Web_APPs": MessageLookupByLibrary.simpleMessage("网页应用"),
|
"Web_APPs": MessageLookupByLibrary.simpleMessage("网页应用"),
|
||||||
|
|||||||
@@ -564,6 +564,11 @@ class S {
|
|||||||
return Intl.message('Remote', name: 'Remote', desc: '', args: []);
|
return Intl.message('Remote', name: 'Remote', desc: '', args: []);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// `Uri`
|
||||||
|
String get Uri {
|
||||||
|
return Intl.message('Uri', name: 'Uri', desc: '', args: []);
|
||||||
|
}
|
||||||
|
|
||||||
/// `auto`
|
/// `auto`
|
||||||
String get auto {
|
String get auto {
|
||||||
return Intl.message('auto', name: 'auto', desc: '', args: []);
|
return Intl.message('auto', name: 'auto', desc: '', args: []);
|
||||||
|
|||||||
@@ -72,6 +72,7 @@
|
|||||||
"WEB": "WEB",
|
"WEB": "WEB",
|
||||||
"Android": "Android",
|
"Android": "Android",
|
||||||
"Remote": "Remote",
|
"Remote": "Remote",
|
||||||
|
"Uri": "Uri",
|
||||||
"auto": "auto",
|
"auto": "auto",
|
||||||
"Follow_System": "Follow System",
|
"Follow_System": "Follow System",
|
||||||
"Light": "Light",
|
"Light": "Light",
|
||||||
|
|||||||
@@ -71,7 +71,8 @@
|
|||||||
"App_Connect": "应用链接",
|
"App_Connect": "应用链接",
|
||||||
"WEB": "网页",
|
"WEB": "网页",
|
||||||
"Android": "安卓",
|
"Android": "安卓",
|
||||||
"Remote": "远处",
|
"Remote": "远程",
|
||||||
|
"Uri": "链接",
|
||||||
"auto": "自动",
|
"auto": "自动",
|
||||||
"Follow_System": "跟随系统",
|
"Follow_System": "跟随系统",
|
||||||
"Light": "浅色",
|
"Light": "浅色",
|
||||||
|
|||||||
Reference in New Issue
Block a user