remoteControl.dart 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716
  1. import 'package:fis_i18n/types.dart';
  2. /// 远程控制模块
  3. class RemoteControl extends ModuleBase {
  4. RemoteControl._({
  5. required this.updatePush,
  6. required this.selectPatchPackage,
  7. required this.printerDriverName,
  8. required this.printerBrand,
  9. required this.adaptSystemVersion,
  10. required this.supportedPrinterModels,
  11. required this.size,
  12. required this.releaseTime,
  13. required this.updateManagement,
  14. required this.printerDriverManagement,
  15. required this.localPrinterDriverFile,
  16. required this.fileTooLarge,
  17. required this.validationFailed,
  18. required this.verificationFailed,
  19. required this.applicableSystem,
  20. required this.applicableSoftware,
  21. required this.universal,
  22. required this.sizeMB,
  23. required this.serialNumber,
  24. required this.model,
  25. required this.softwareVersion,
  26. required this.systemVersion,
  27. required this.addVersionNumber,
  28. required this.enterUltrasoundSoftwareVersion,
  29. required this.enterUltrasoundSystemVersion,
  30. required this.selectAdaptedVersion,
  31. required this.uploadSuccess,
  32. required this.remoteParameterAdjustment,
  33. required this.probe,
  34. required this.application,
  35. required this.modeSelection,
  36. required this.parameterAdjustment,
  37. required this.addPrinter,
  38. required this.searchPrinter,
  39. required this.printerSettings,
  40. required this.previousStep,
  41. required this.nextStep,
  42. required this.installedPrinters,
  43. required this.searchAvailablePrinters,
  44. required this.addPrinterUsingTcpIp,
  45. required this.enterPrinterHostnameOrIpAddress,
  46. required this.hostnameOrIpAddress,
  47. required this.portName,
  48. required this.invalidIpAddressPleaseEnterAgain,
  49. required this.printer,
  50. required this.cloudDriverNotInstalled,
  51. required this.pushDriver,
  52. required this.paperSize,
  53. required this.paperOrientation,
  54. required this.searchCompleted,
  55. required this.searchCompletedNoPrintersAvailable,
  56. required this.pushFailed,
  57. required this.pleaseSelectPrinter,
  58. required this.systemSettings,
  59. required this.saveAndExit,
  60. required this.test,
  61. required this.apply,
  62. required this.editUpdatePackage,
  63. required this.updatePackageName,
  64. required this.adaptedDevices,
  65. required this.adaptedSoftwareVersions,
  66. required this.adaptedSystemVersions,
  67. required this.localUpdatePackageFile,
  68. required this.pleaseUploadFileFirst,
  69. required this.fileUploading,
  70. required this.progressBar,
  71. required this.selectTimeRange,
  72. required this.past24Hours,
  73. required this.pastWeek,
  74. required this.pastMonth,
  75. required this.pastYear,
  76. required this.customTime,
  77. required this.pushSuccess,
  78. required this.useCloudDriver,
  79. required this.testPrinter,
  80. required this.testingPrinter,
  81. required this.testSuccess,
  82. required this.downloadedSuccessInstalledPrinter,
  83. required this.downloadedLogs,
  84. required this.getLogsSuccess,
  85. required this.pushPackageSuccess,
  86. required this.pushPackageFailed,
  87. required this.deviceCancelDownloading,
  88. required this.deviceLogsDownloadingFailed,
  89. required this.deviceLogsCancelFailed,
  90. required this.deviceActiveDisconnection,
  91. required this.deviceTimeoutDisconnection,
  92. required this.exitTuning,
  93. required this.pagination,
  94. required this.testFailed,
  95. required this.testSucceeded,
  96. required this.remoteControl,
  97. required this.getLog,
  98. required this.reboot,
  99. required this.probeConnectionFailed,
  100. required this.connecting,
  101. required this.disconnecting,
  102. required this.clientTimeout,
  103. required this.selectUpdatePackage,
  104. required this.probeControlOff,
  105. required this.uploading,
  106. required this.uploadSucceeded,
  107. required this.uploadFailed,
  108. required this.probeInfoEmpty,
  109. required this.connectionFailed,
  110. required this.addApp,
  111. required this.hideApp,
  112. required this.showApp,
  113. required this.setDefault,
  114. required this.remark,
  115. required this.visibleApp,
  116. required this.currentDefault,
  117. required this.customApp,
  118. required this.saveReminder,
  119. required this.prompt,
  120. required this.changeTip,
  121. required this.userDefined,
  122. required this.deleteConfirm,
  123. required this.aiImage,
  124. required this.getUltrasoundLog,
  125. required this.pushPackage,
  126. required this.cancelDownloadInstallPackSuccess,
  127. required this.updatingPush,
  128. required this.cancelDownloadLogSuccess,
  129. required this.getLogSuccess,
  130. required this.invalidLicenseCode,
  131. required this.clearSuccess,
  132. required this.downloadLogSuccess,
  133. required this.cancelSearch,
  134. required this.connectedStorage,
  135. required this.unsupported3D4DRemoteControl,
  136. required this.thisKeyUnavailable,
  137. required this.confirmLeaveDuringUpload,
  138. required this.networkConnectionError,
  139. required this.existDriverName,
  140. required this.isOptionalFeatureEnabled,
  141. required this.deviceDisconnected,
  142. required this.noSensorDetected,
  143. });
  144. static const ModuleName = "remoteControl";
  145. factory RemoteControl(Map<String, dynamic> map) {
  146. return RemoteControl._(
  147. updatePush: map.pick("updatePush"),
  148. selectPatchPackage: map.pick("selectPatchPackage"),
  149. printerDriverName: map.pick("printerDriverName"),
  150. printerBrand: map.pick("printerBrand"),
  151. adaptSystemVersion: map.pick("adaptSystemVersion"),
  152. supportedPrinterModels: map.pick("supportedPrinterModels"),
  153. size: map.pick("size"),
  154. releaseTime: map.pick("releaseTime"),
  155. updateManagement: map.pick("updateManagement"),
  156. printerDriverManagement: map.pick("printerDriverManagement"),
  157. localPrinterDriverFile: map.pick("localPrinterDriverFile"),
  158. fileTooLarge: map.pick("fileTooLarge"),
  159. validationFailed: map.pick("validationFailed"),
  160. verificationFailed: map.pick("verificationFailed"),
  161. applicableSystem: map.pick("applicableSystem"),
  162. applicableSoftware: map.pick("applicableSoftware"),
  163. universal: map.pick("universal"),
  164. sizeMB: map.pick("sizeMB"),
  165. serialNumber: map.pick("serialNumber"),
  166. model: map.pick("model"),
  167. softwareVersion: map.pick("softwareVersion"),
  168. systemVersion: map.pick("systemVersion"),
  169. addVersionNumber: map.pick("addVersionNumber"),
  170. enterUltrasoundSoftwareVersion:
  171. map.pick("enterUltrasoundSoftwareVersion"),
  172. enterUltrasoundSystemVersion: map.pick("enterUltrasoundSystemVersion"),
  173. selectAdaptedVersion: map.pick("selectAdaptedVersion"),
  174. uploadSuccess: map.pick("uploadSuccess"),
  175. remoteParameterAdjustment: map.pick("remoteParameterAdjustment"),
  176. probe: map.pick("probe"),
  177. application: map.pick("application"),
  178. modeSelection: map.pick("modeSelection"),
  179. parameterAdjustment: map.pick("parameterAdjustment"),
  180. addPrinter: map.pick("addPrinter"),
  181. searchPrinter: map.pick("searchPrinter"),
  182. printerSettings: map.pick("printerSettings"),
  183. previousStep: map.pick("previousStep"),
  184. nextStep: map.pick("nextStep"),
  185. installedPrinters: map.pick("installedPrinters"),
  186. searchAvailablePrinters: map.pick("searchAvailablePrinters"),
  187. addPrinterUsingTcpIp: map.pick("addPrinterUsingTcpIp"),
  188. enterPrinterHostnameOrIpAddress:
  189. map.pick("enterPrinterHostnameOrIpAddress"),
  190. hostnameOrIpAddress: map.pick("hostnameOrIpAddress"),
  191. portName: map.pick("portName"),
  192. invalidIpAddressPleaseEnterAgain:
  193. map.pick("invalidIpAddressPleaseEnterAgain"),
  194. printer: map.pick("printer"),
  195. cloudDriverNotInstalled: map.pick("cloudDriverNotInstalled"),
  196. pushDriver: map.pick("pushDriver"),
  197. paperSize: map.pick("paperSize"),
  198. paperOrientation: map.pick("paperOrientation"),
  199. searchCompleted: map.pick("searchCompleted"),
  200. searchCompletedNoPrintersAvailable:
  201. map.pick("searchCompletedNoPrintersAvailable"),
  202. pushFailed: map.pick("pushFailed"),
  203. pleaseSelectPrinter: map.pick("pleaseSelectPrinter"),
  204. systemSettings: map.pick("systemSettings"),
  205. saveAndExit: map.pick("saveAndExit"),
  206. test: map.pick("test"),
  207. apply: map.pick("apply"),
  208. editUpdatePackage: map.pick("editUpdatePackage"),
  209. updatePackageName: map.pick("updatePackageName"),
  210. adaptedDevices: map.pick("adaptedDevices"),
  211. adaptedSoftwareVersions: map.pick("adaptedSoftwareVersions"),
  212. adaptedSystemVersions: map.pick("adaptedSystemVersions"),
  213. localUpdatePackageFile: map.pick("localUpdatePackageFile"),
  214. pleaseUploadFileFirst: map.pick("pleaseUploadFileFirst"),
  215. fileUploading: map.pick("fileUploading"),
  216. progressBar: map.pick("progressBar"),
  217. selectTimeRange: map.pick("selectTimeRange"),
  218. past24Hours: map.pick("past24Hours"),
  219. pastWeek: map.pick("pastWeek"),
  220. pastMonth: map.pick("pastMonth"),
  221. pastYear: map.pick("pastYear"),
  222. customTime: map.pick("customTime"),
  223. pushSuccess: map.pick("pushSuccess"),
  224. useCloudDriver: map.pick("useCloudDriver"),
  225. testPrinter: map.pick("testPrinter"),
  226. testingPrinter: map.pick("testingPrinter"),
  227. testSuccess: map.pick("testSuccess"),
  228. downloadedSuccessInstalledPrinter:
  229. map.pick("downloadedSuccessInstalledPrinter"),
  230. downloadedLogs: map.pick("downloadedLogs"),
  231. getLogsSuccess: map.pick("getLogsSuccess"),
  232. pushPackageSuccess: map.pick("pushPackageSuccess"),
  233. pushPackageFailed: map.pick("pushPackageFailed"),
  234. deviceCancelDownloading: map.pick("deviceCancelDownloading"),
  235. deviceLogsDownloadingFailed: map.pick("deviceLogsDownloadingFailed"),
  236. deviceLogsCancelFailed: map.pick("deviceLogsCancelFailed"),
  237. deviceActiveDisconnection: map.pick("deviceActiveDisconnection"),
  238. deviceTimeoutDisconnection: map.pick("deviceTimeoutDisconnection"),
  239. exitTuning: map.pick("exitTuning"),
  240. pagination: map.pick("pagination"),
  241. testFailed: map.pick("testFailed"),
  242. testSucceeded: map.pick("testSucceeded"),
  243. remoteControl: map.pick("remoteControl"),
  244. getLog: map.pick("getLog"),
  245. reboot: map.pick("reboot"),
  246. probeConnectionFailed: map.pick("probeConnectionFailed"),
  247. connecting: map.pick("connecting"),
  248. disconnecting: map.pick("disconnecting"),
  249. clientTimeout: map.pick("clientTimeout"),
  250. selectUpdatePackage: map.pick("selectUpdatePackage"),
  251. probeControlOff: map.pick("probeControlOff"),
  252. uploading: map.pick("uploading"),
  253. uploadSucceeded: map.pick("uploadSucceeded"),
  254. uploadFailed: map.pick("uploadFailed"),
  255. probeInfoEmpty: map.pick("probeInfoEmpty"),
  256. connectionFailed: map.pick("connectionFailed"),
  257. addApp: map.pick("addApp"),
  258. hideApp: map.pick("hideApp"),
  259. showApp: map.pick("showApp"),
  260. setDefault: map.pick("setDefault"),
  261. remark: map.pick("remark"),
  262. visibleApp: map.pick("visibleApp"),
  263. currentDefault: map.pick("currentDefault"),
  264. customApp: map.pick("customApp"),
  265. saveReminder: map.pick("saveReminder"),
  266. prompt: map.pick("prompt"),
  267. changeTip: map.pick("changeTip"),
  268. userDefined: map.pick("userDefined"),
  269. deleteConfirm: map.pick("deleteConfirm"),
  270. aiImage: map.pick("aiImage"),
  271. getUltrasoundLog: map.pick("getUltrasoundLog"),
  272. pushPackage: map.pick("pushPackage"),
  273. cancelDownloadInstallPackSuccess:
  274. map.pick("cancelDownloadInstallPackSuccess"),
  275. updatingPush: map.pick("updatingPush"),
  276. cancelDownloadLogSuccess: map.pick("cancelDownloadLogSuccess"),
  277. getLogSuccess: map.pick("getLogSuccess"),
  278. invalidLicenseCode: map.pick("invalidLicenseCode"),
  279. clearSuccess: map.pick("clearSuccess"),
  280. downloadLogSuccess: map.pick("downloadLogSuccess"),
  281. cancelSearch: map.pick("cancelSearch"),
  282. connectedStorage: map.pick("connectedStorage"),
  283. unsupported3D4DRemoteControl: map.pick("unsupported3D4DRemoteControl"),
  284. thisKeyUnavailable: map.pick("thisKeyUnavailable"),
  285. confirmLeaveDuringUpload: map.pick("confirmLeaveDuringUpload"),
  286. networkConnectionError: map.pick("networkConnectionError"),
  287. existDriverName: map.pick("existDriverName"),
  288. isOptionalFeatureEnabled: map.pick("isOptionalFeatureEnabled"),
  289. deviceDisconnected: map.pick("deviceDisconnected"),
  290. noSensorDetected: map.pick("noSensorDetected"),
  291. );
  292. }
  293. /// 更新推送
  294. final FTrStr updatePush;
  295. /// 请选择补丁包
  296. final FTrStr selectPatchPackage;
  297. /// 打印机驱动名称
  298. final FTrStr printerDriverName;
  299. /// 打印机品牌
  300. final FTrStr printerBrand;
  301. /// 适配系统版本
  302. final FTrStr adaptSystemVersion;
  303. /// 支持的打印机型号
  304. final FTrStr supportedPrinterModels;
  305. /// 大小
  306. final FTrStr size;
  307. /// 发布时间
  308. final FTrStr releaseTime;
  309. /// 更新包管理
  310. final FTrStr updateManagement;
  311. /// 打印机驱动管理
  312. final FTrStr printerDriverManagement;
  313. /// 本地打印机驱动文件
  314. final FTrStr localPrinterDriverFile;
  315. /// 选择文件过大
  316. final FTrStr fileTooLarge;
  317. /// 校验失败,请选择正确的打印驱动文件
  318. final FTrStr validationFailed;
  319. /// 校验失败
  320. final FTrStr verificationFailed;
  321. /// 适用系统
  322. final FTrStr applicableSystem;
  323. /// 适用软件
  324. final FTrStr applicableSoftware;
  325. /// 通用
  326. final FTrStr universal;
  327. /// {0}MB
  328. final FTrStr sizeMB;
  329. /// 序列号
  330. final FTrStr serialNumber;
  331. /// 型号
  332. final FTrStr model;
  333. /// 软件版本
  334. final FTrStr softwareVersion;
  335. /// 系统版本
  336. final FTrStr systemVersion;
  337. /// 添加版本号
  338. final FTrStr addVersionNumber;
  339. /// 请输入超声机软件版本号
  340. final FTrStr enterUltrasoundSoftwareVersion;
  341. /// 请输入超声机系统版本号
  342. final FTrStr enterUltrasoundSystemVersion;
  343. /// 请选择适配的版本
  344. final FTrStr selectAdaptedVersion;
  345. /// 上传成功,图像分析中
  346. final FTrStr uploadSuccess;
  347. /// 远程调参
  348. final FTrStr remoteParameterAdjustment;
  349. /// 探头
  350. final FTrStr probe;
  351. /// 应用
  352. final FTrStr application;
  353. /// 模式选择
  354. final FTrStr modeSelection;
  355. /// 参数调节
  356. final FTrStr parameterAdjustment;
  357. /// 添加打印机
  358. final FTrStr addPrinter;
  359. /// 搜索打印机
  360. final FTrStr searchPrinter;
  361. /// 打印机设置
  362. final FTrStr printerSettings;
  363. /// 上一步
  364. final FTrStr previousStep;
  365. /// 下一步
  366. final FTrStr nextStep;
  367. /// 已安装的打印机
  368. final FTrStr installedPrinters;
  369. /// 搜索可用打印机
  370. final FTrStr searchAvailablePrinters;
  371. /// 使用TCP/IP地址或者主机名添加打印机
  372. final FTrStr addPrinterUsingTcpIp;
  373. /// 请输入打印机主机名或IP地址
  374. final FTrStr enterPrinterHostnameOrIpAddress;
  375. /// 主机名或IP地址
  376. final FTrStr hostnameOrIpAddress;
  377. /// 端口名称
  378. final FTrStr portName;
  379. /// IP地址不正确,请重新输入
  380. final FTrStr invalidIpAddressPleaseEnterAgain;
  381. /// 打印机
  382. final FTrStr printer;
  383. /// 未安装云驱动
  384. final FTrStr cloudDriverNotInstalled;
  385. /// 推送驱动
  386. final FTrStr pushDriver;
  387. /// 纸张尺寸
  388. final FTrStr paperSize;
  389. /// 纸张方向
  390. final FTrStr paperOrientation;
  391. /// 搜索完成
  392. final FTrStr searchCompleted;
  393. /// 搜索完成,暂无可用的打印机
  394. final FTrStr searchCompletedNoPrintersAvailable;
  395. /// 推送失败
  396. final FTrStr pushFailed;
  397. /// 请选择打印机
  398. final FTrStr pleaseSelectPrinter;
  399. /// 系统设置
  400. final FTrStr systemSettings;
  401. /// 保存并退出
  402. final FTrStr saveAndExit;
  403. /// 测试
  404. final FTrStr test;
  405. /// 应用
  406. final FTrStr apply;
  407. /// 编辑更新包
  408. final FTrStr editUpdatePackage;
  409. /// 更新包名称
  410. final FTrStr updatePackageName;
  411. /// 适配设备
  412. final FTrStr adaptedDevices;
  413. /// 适配软件版本
  414. final FTrStr adaptedSoftwareVersions;
  415. /// 适配系统版本
  416. final FTrStr adaptedSystemVersions;
  417. /// 本地更新包文件
  418. final FTrStr localUpdatePackageFile;
  419. /// 请先上传文件
  420. final FTrStr pleaseUploadFileFirst;
  421. /// 文件上传中,请等待文件上传成功之后再提交
  422. final FTrStr fileUploading;
  423. /// 进度条
  424. final FTrStr progressBar;
  425. /// 选择时间范围
  426. final FTrStr selectTimeRange;
  427. /// 过去24小时内
  428. final FTrStr past24Hours;
  429. /// 过去1周内
  430. final FTrStr pastWeek;
  431. /// 过去1个月内
  432. final FTrStr pastMonth;
  433. /// 过去1年内
  434. final FTrStr pastYear;
  435. /// 自定义时间范围
  436. final FTrStr customTime;
  437. /// 推送成功
  438. final FTrStr pushSuccess;
  439. /// 使用云驱动
  440. final FTrStr useCloudDriver;
  441. /// 测试打印机
  442. final FTrStr testPrinter;
  443. /// 正在测试打印机中
  444. final FTrStr testingPrinter;
  445. /// 测试成功
  446. final FTrStr testSuccess;
  447. /// 下载驱动成功,安装打印机中
  448. final FTrStr downloadedSuccessInstalledPrinter;
  449. /// 下载日志
  450. final FTrStr downloadedLogs;
  451. /// 获取日志成功
  452. final FTrStr getLogsSuccess;
  453. /// 推送包成功
  454. final FTrStr pushPackageSuccess;
  455. /// 更新包推送失败
  456. final FTrStr pushPackageFailed;
  457. /// 设备端取消下载安装包
  458. final FTrStr deviceCancelDownloading;
  459. /// 设备端日志打包上传失败
  460. final FTrStr deviceLogsDownloadingFailed;
  461. /// 设备端取消日志打包上传
  462. final FTrStr deviceLogsCancelFailed;
  463. /// 设备端主动断开连接
  464. final FTrStr deviceActiveDisconnection;
  465. /// 设备端超时断开连接
  466. final FTrStr deviceTimeoutDisconnection;
  467. /// 退出调参
  468. final FTrStr exitTuning;
  469. /// 第{0}页,共{1}页
  470. final FTrStr pagination;
  471. /// {0} 测试失败
  472. final FTrStr testFailed;
  473. /// {0} 测试成功
  474. final FTrStr testSucceeded;
  475. /// 远程控制
  476. final FTrStr remoteControl;
  477. /// 获取日志
  478. final FTrStr getLog;
  479. /// 重启
  480. final FTrStr reboot;
  481. /// 超声机连接失败
  482. final FTrStr probeConnectionFailed;
  483. /// 正在连接中
  484. final FTrStr connecting;
  485. /// 正在断开中
  486. final FTrStr disconnecting;
  487. /// 客户端超时断开连接
  488. final FTrStr clientTimeout;
  489. /// 选择推送更新包
  490. final FTrStr selectUpdatePackage;
  491. /// 超声机未开启远程控制,请先开启远程控制
  492. final FTrStr probeControlOff;
  493. /// 上传中
  494. final FTrStr uploading;
  495. /// 上传成功
  496. final FTrStr uploadSucceeded;
  497. /// 上传失败
  498. final FTrStr uploadFailed;
  499. /// 超声机信息为空
  500. final FTrStr probeInfoEmpty;
  501. /// 连接失败
  502. final FTrStr connectionFailed;
  503. /// 新增应用
  504. final FTrStr addApp;
  505. /// 隐藏应用
  506. final FTrStr hideApp;
  507. /// 显示应用
  508. final FTrStr showApp;
  509. /// 设为默认
  510. final FTrStr setDefault;
  511. /// 备注
  512. final FTrStr remark;
  513. /// 触屏面板可见应用
  514. final FTrStr visibleApp;
  515. /// 当前默认应用
  516. final FTrStr currentDefault;
  517. /// 用户自定义应用
  518. final FTrStr customApp;
  519. /// 请先保存完,才能继续新增应用
  520. final FTrStr saveReminder;
  521. /// 提醒
  522. final FTrStr prompt;
  523. /// 切换探头所作修改都会丢失,是否切换?
  524. final FTrStr changeTip;
  525. /// 用户自定义
  526. final FTrStr userDefined;
  527. /// 确认删除选中应用?
  528. final FTrStr deleteConfirm;
  529. /// AI图像
  530. final FTrStr aiImage;
  531. /// 正在获取日志
  532. final FTrStr getUltrasoundLog;
  533. /// 正在推送更新包
  534. final FTrStr pushPackage;
  535. /// 取消下载安装包成功
  536. final FTrStr cancelDownloadInstallPackSuccess;
  537. /// 更新中...
  538. final FTrStr updatingPush;
  539. /// 取消下载日志成功
  540. final FTrStr cancelDownloadLogSuccess;
  541. /// 获取日志成功,正在下载日志
  542. final FTrStr getLogSuccess;
  543. /// 无效许可码或者不是当前机器的许可码,请联系生产厂家寻求支持
  544. final FTrStr invalidLicenseCode;
  545. /// 清除成功
  546. final FTrStr clearSuccess;
  547. /// 下载日志成功
  548. final FTrStr downloadLogSuccess;
  549. /// 取消搜索
  550. final FTrStr cancelSearch;
  551. /// 连接存储
  552. final FTrStr connectedStorage;
  553. /// 3D/4D暂不支持远程控制
  554. final FTrStr unsupported3D4DRemoteControl;
  555. /// 此键当前不可用
  556. final FTrStr thisKeyUnavailable;
  557. /// 上传更新包未结束,确定是否离开
  558. final FTrStr confirmLeaveDuringUpload;
  559. /// 网络连接异常
  560. final FTrStr networkConnectionError;
  561. /// 已存在相同驱动文件名
  562. final FTrStr existDriverName;
  563. /// 提示:只有一次试用机会。请输入许可码来开启可选功能试用,许可有效期为6个月
  564. final FTrStr isOptionalFeatureEnabled;
  565. /// 设备端断开连接
  566. final FTrStr deviceDisconnected;
  567. /// 暂无探头
  568. final FTrStr noSensorDetected;
  569. @override
  570. getProp(String propName) {
  571. // TODO: implement getProp
  572. throw UnimplementedError();
  573. }
  574. }