en.ts 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. /*
  2. * @Author: vera_min vera_min@163.com
  3. * @Date: 2025-08-05 12:42:31
  4. * @LastEditors: vera_min vera_min@163.com
  5. * @LastEditTime: 2025-08-06 03:23:00
  6. * @FilePath: /sagoo-admin-ui/src/i18n/pages/iotmanagerI18n/en.ts
  7. * @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
  8. */
  9. // 定义内容
  10. export default {
  11. dashboard: {
  12. "产品": "Product",
  13. "在线设备": "Online Device",
  14. "设备消息": "Device Message",
  15. "设备警告": "Device Warning",
  16. "启用": "Enable",
  17. "停用": "Disable",
  18. "本月": "This Month",
  19. "今日": "Today",
  20. warningType: "Warning Type",
  21. messageCount: "Message Count",
  22. warningCount: "Warning Count",
  23. "超紧急": "Super Urgent",
  24. "紧急": "Urgent",
  25. "严重": "Serious",
  26. "一般": "General",
  27. "提醒": "Remind",
  28. total: "Total"
  29. },
  30. alarmList: {
  31. title: "Alarm Messages",
  32. moreInfo: "More Info"
  33. },
  34. device: {
  35. tableI18nColumn: {
  36. categoryName: "Category Name",
  37. desc: "Description",
  38. sort: "Sort",
  39. },
  40. tableI18nAlarmType: {
  41. },
  42. tableI18nStatus: {
  43. },
  44. tableI18nConfirm: {
  45. deleteMessage: "This operation will permanently delete the category: {name}, continue?",
  46. },
  47. tableI18nAction: {
  48. addCategory: "Add Category",
  49. editCategory: "Edit Category"
  50. }
  51. },
  52. alarm: {
  53. tableI18nColumn: {
  54. id: "ID",
  55. alarmType: "Alarm Type",
  56. alarmLevel: "Rule Level",
  57. ruleName: "Rule Name",
  58. productKey: "Product Key",
  59. deviceKey: "Device Key",
  60. alarmStatus: "Alarm Status",
  61. alarmTime: "Alarm Time",
  62. },
  63. tableI18nAlarmType: {
  64. ruleAlarm: "Rule Alarm",
  65. deviceSelfAlarm: "Device Self Alarm",
  66. ruleAlarmUpgrade: "Rule Alarm Upgrade"
  67. },
  68. tableI18nStatus: {
  69. unprocessed: "Unprocessed",
  70. processed: "Processed",
  71. ignored: "Ignored"
  72. }
  73. }
  74. };