增加汉化提示

This commit is contained in:
2023-10-12 20:50:50 +08:00
parent d7c70d7efc
commit 4b2461bd9a
3 changed files with 48 additions and 7 deletions

View File

@ -1,8 +1,9 @@
/// enable : false
/// versionName : "3.21.0(PU)_CN_V0"
/// updateAt : "2023-10-5: 10:15:00"
/// enable : true
/// versionName : "3.20.0(PU)_CN_V1"
/// updateAt : "2023-10-11: 11:10:00"
/// info : "简体中文汉化"
/// channel : "PTU"
/// channel : "PU"
/// node : "已知问题:\n3D中文字体不显示临时解决方法将交互恢复成英文但由于数量繁多难免有遗漏汉化组正在尽力找\n·角色抬头显示器(HUD)的中文字体不显示\n·某些元素字体过小\n·搜索栏无法输入中文\n·部位文本未翻译在翻了在翻了"
class ScLocalizationData {
ScLocalizationData({
@ -10,7 +11,8 @@ class ScLocalizationData {
this.versionName,
this.updateAt,
this.info,
this.channel,});
this.channel,
this.node,});
ScLocalizationData.fromJson(dynamic json) {
enable = json['enable'];
@ -18,12 +20,14 @@ class ScLocalizationData {
updateAt = json['updateAt'];
info = json['info'];
channel = json['channel'];
node = json['node'];
}
bool? enable;
String? versionName;
String? updateAt;
String? info;
String? channel;
String? node;
Map<String, dynamic> toJson() {
final map = <String, dynamic>{};
@ -32,6 +36,7 @@ class ScLocalizationData {
map['updateAt'] = updateAt;
map['info'] = info;
map['channel'] = channel;
map['node'] = node;
return map;
}