1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- /*
- * @Author: vera_min vera_min@163.com
- * @Date: 2025-08-05 12:42:31
- * @LastEditors: vera_min vera_min@163.com
- * @LastEditTime: 2025-08-06 03:23:00
- * @FilePath: /sagoo-admin-ui/src/i18n/pages/iotmanagerI18n/en.ts
- * @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
- */
- // 定义内容
- export default {
- dashboard: {
- "产品": "Product",
- "在线设备": "Online Device",
- "设备消息": "Device Message",
- "设备警告": "Device Warning",
- "启用": "Enable",
- "停用": "Disable",
- "本月": "This Month",
- "今日": "Today",
- warningType: "Warning Type",
- messageCount: "Message Count",
- warningCount: "Warning Count",
- "超紧急": "Super Urgent",
- "紧急": "Urgent",
- "严重": "Serious",
- "一般": "General",
- "提醒": "Remind",
- total: "Total"
- },
- alarmList: {
- title: "Alarm Messages",
- moreInfo: "More Info"
- },
- device: {
- tableI18nColumn: {
- categoryName: "Category Name",
- desc: "Description",
- sort: "Sort",
- },
- tableI18nAlarmType: {
- },
- tableI18nStatus: {
- },
- tableI18nConfirm: {
- deleteMessage: "This operation will permanently delete the category: {name}, continue?",
- },
- tableI18nAction: {
- addCategory: "Add Category",
- editCategory: "Edit Category"
- }
- },
- alarm: {
- tableI18nColumn: {
- id: "ID",
- alarmType: "Alarm Type",
- alarmLevel: "Rule Level",
- ruleName: "Rule Name",
- productKey: "Product Key",
- deviceKey: "Device Key",
- alarmStatus: "Alarm Status",
- alarmTime: "Alarm Time",
- },
- tableI18nAlarmType: {
- ruleAlarm: "Rule Alarm",
- deviceSelfAlarm: "Device Self Alarm",
- ruleAlarmUpgrade: "Rule Alarm Upgrade"
- },
- tableI18nStatus: {
- unprocessed: "Unprocessed",
- processed: "Processed",
- ignored: "Ignored"
- }
- }
- };
|