Browse Source

添加 项目有效性验证的错误码

denny 8 months ago
parent
commit
c081bb0014
6 changed files with 26 additions and 6 deletions
  1. 3 1
      assets/en_US.json
  2. 3 1
      assets/es_ES.json
  3. 3 1
      assets/ro_RO.json
  4. 3 1
      assets/ru_RU.json
  5. 3 1
      assets/zh_CN.json
  6. 11 1
      lib/modules/error_codes.dart

+ 3 - 1
assets/en_US.json

@@ -419,7 +419,9 @@
     "errorCode7087": "User already signed up",
     "errorCode7088": "User name is empty",
     "errorCode9019": "data duplication",
-    "errorCode9020": "License configuration has expired, you need to go to System Settings->Product Key to reactivate the software"
+    "errorCode9020": "Invalid license configuration, you need to go to System Settings->Product Key to reactivate the software",
+    "errorCode9025": "You have been removed from this project",
+    "errorCode9026": "This project does not exist"
   },
   "common": {
     "installFailed": "Installation Failed",

+ 3 - 1
assets/es_ES.json

@@ -419,7 +419,9 @@
     "errorCode7087": "El usuario ya se ha registrado",
     "errorCode7088": "El nombre del usuario está vacío",
     "errorCode9019": "duplicación de datos",
-    "errorCode9020": "La configuración de la licencia ha caducado, debe ir a Configuración del sistema -> Clave del producto para volver a activar el software."
+    "errorCode9020": "La configuración de la licencia no es válida, debe ir a Configuración del sistema -> Clave del producto para volver a activar el software.",
+    "errorCode9025": "Ha sido eliminado de este proyecto",
+    "errorCode9026": "Este proyecto no existe"
   },
   "common": {
     "installFailed": "Error de instalación",

+ 3 - 1
assets/ro_RO.json

@@ -419,7 +419,9 @@
     "errorCode7087": "Deja înscris",
     "errorCode7088": "Numele este gol",
     "errorCode9019": "duplicare de date",
-    "errorCode9020": "Configurația licenței a expirat, trebuie să accesați System Settings -> Product Key pentru a reactiva software-ul"
+    "errorCode9020": "Configurare licență nevalidă, trebuie să accesați System Settings -> Product Key pentru a reactiva software-ul",
+    "errorCode9025": "Ai fost eliminat din acest proiect",
+    "errorCode9026": "Acest proiect nu există"
   },
   "common": {
     "installFailed": "Instalarea a eșuat",

+ 3 - 1
assets/ru_RU.json

@@ -419,7 +419,9 @@
     "errorCode7087": "Пользователь уже зарегистрирован",
     "errorCode7088": "Имя пользователя пустое",
     "errorCode9019": "дублирование данных",
-    "errorCode9020": "Срок действия лицензионной конфигурации истек, для повторной активации программного обеспечения необходимо перейти в раздел Системные настройки -> Ключ продукта"
+    "errorCode9020": "Неверная конфигурация лицензии, для повторной активации программного обеспечения необходимо перейти в раздел Системные настройки -> Ключ продукта",
+    "errorCode9025": "Вы были удалены из проекта",
+    "errorCode9026": "Этот проект не существует"
   },
   "common": {
     "installFailed": "Ошибка установки",

+ 3 - 1
assets/zh_CN.json

@@ -419,7 +419,9 @@
     "errorCode7087": "已报名",
     "errorCode7088": "名称为空",
     "errorCode9019": "数据重复",
-    "errorCode9020": "License配置过期,需前往系统设置->产品密钥重新激活软件"
+    "errorCode9020": "未读取到有效的License信息,请至管理后台激活License。",
+    "errorCode9025": "您已被移出该项目",
+    "errorCode9026": "该项目不存在"
   },
   "common": {
     "installFailed": "安装失败",

+ 11 - 1
lib/modules/error_codes.dart

@@ -335,6 +335,8 @@ class ErrorCodesModule extends ModuleBase {
     required this.errorCode7088,
     required this.errorCode9019,
     required this.errorCode9020,
+    required this.errorCode9025,
+    required this.errorCode9026,
   });
 
   static const ModuleName = "errorCodes";
@@ -673,6 +675,8 @@ class ErrorCodesModule extends ModuleBase {
       errorCode7088: map.pick("errorCode7088"),
       errorCode9019: map.pick("errorCode9019"),
       errorCode9020: map.pick("errorCode9020"),
+      errorCode9025: map.pick("errorCode9025"),
+      errorCode9026: map.pick("errorCode9026"),
     );
   }
 
@@ -1669,9 +1673,15 @@ class ErrorCodesModule extends ModuleBase {
   /// 数据重复
   final FTrStr errorCode9019;
 
-  /// License配置过期,需前往系统设置->产品密钥重新激活软件
+  /// 未读取到有效的License信息,请至管理后台激活License。
   final FTrStr errorCode9020;
 
+  /// 您已被移出该项目
+  final FTrStr errorCode9025;
+
+  /// 该项目不存在
+  final FTrStr errorCode9026;
+
   @override
   getProp(String propName) {
     // TODO: implement getProp