|
@@ -0,0 +1,115 @@
|
|
|
+// 数据分析
|
|
|
+export default {
|
|
|
+ tabs: {
|
|
|
+ info: 'Source Info',
|
|
|
+ nodes: 'Data Nodes',
|
|
|
+ viewData: 'View Data',
|
|
|
+ baseInfo: 'Basic Info',
|
|
|
+ ruleExpr: 'Rule Expression',
|
|
|
+ reqParams: 'Request Params',
|
|
|
+ sourceConfig: 'Source Config',
|
|
|
+ indicator: {
|
|
|
+ dialogTitleAdd: 'Add Calculation Indicator Model',
|
|
|
+ dialogTitleEdit: 'Edit Calculation Indicator Model',
|
|
|
+ labels: {
|
|
|
+ key: 'Indicator Key',
|
|
|
+ name: 'Indicator Name',
|
|
|
+ description: 'Description',
|
|
|
+ formula: 'Formula',
|
|
|
+ dataType: 'Data Type',
|
|
|
+ accuracy: 'Accuracy',
|
|
|
+ operators: 'Operators',
|
|
|
+ deviceAttr: 'Device Attribute',
|
|
|
+ currentFormula: 'Current Formula',
|
|
|
+ editFormula: 'Edit',
|
|
|
+ },
|
|
|
+ placeholders: {
|
|
|
+ inputKey: 'Enter indicator key',
|
|
|
+ inputName: 'Enter indicator name',
|
|
|
+ inputDescription: 'Enter description',
|
|
|
+ inputFormula: 'Enter formula',
|
|
|
+ selectDataType: 'Select data type',
|
|
|
+ inputAccuracy: 'Enter accuracy',
|
|
|
+ },
|
|
|
+ types: {
|
|
|
+ int: 'int (integer)',
|
|
|
+ long: 'long (long integer)',
|
|
|
+ float: 'float (single precision)',
|
|
|
+ double: 'double (double precision)',
|
|
|
+ },
|
|
|
+ },
|
|
|
+ },
|
|
|
+ labels: {
|
|
|
+ selectProduct: 'Select Product',
|
|
|
+ selectDevice: 'Select Device',
|
|
|
+ selectProperty: 'Select Property',
|
|
|
+ selectTime: 'Select Time',
|
|
|
+ },
|
|
|
+ columns: {
|
|
|
+ id: 'ID',
|
|
|
+ key: 'Key',
|
|
|
+ name: 'Name',
|
|
|
+ dataType: 'Data Type',
|
|
|
+ value: 'Value Items',
|
|
|
+ createdAt: 'Created At',
|
|
|
+ action: 'Actions',
|
|
|
+ sourceId: 'ID',
|
|
|
+ from: 'Source Type',
|
|
|
+ },
|
|
|
+ actions: {
|
|
|
+ printChart: "Print Chart",
|
|
|
+ publish: 'Publish',
|
|
|
+ disable: 'Disable',
|
|
|
+ add: 'Add',
|
|
|
+ edit: 'Edit',
|
|
|
+ delete: 'Delete',
|
|
|
+ detail: 'Detail',
|
|
|
+ search: 'Search',
|
|
|
+ batchDelete: 'Batch Delete',
|
|
|
+ copy: 'Copy',
|
|
|
+ },
|
|
|
+ status: {
|
|
|
+ published: 'Published',
|
|
|
+ unpublished: 'Unpublished',
|
|
|
+ all: 'All',
|
|
|
+ },
|
|
|
+ options: {
|
|
|
+ all: 'All',
|
|
|
+ api: 'API Import',
|
|
|
+ db: 'Database',
|
|
|
+ file: 'File',
|
|
|
+ device: 'Device',
|
|
|
+ yes: 'Yes',
|
|
|
+ no: 'No',
|
|
|
+ },
|
|
|
+ messages: {
|
|
|
+ opSuccess: 'Operation succeeded',
|
|
|
+ deleteConfirmSelected: 'Are you sure to delete selected data?',
|
|
|
+ deleteNodeConfirm: 'This will permanently delete node: "{name}". Continue?',
|
|
|
+ pleaseSelectToDelete: 'Please select data to delete.',
|
|
|
+ tip: 'Tip',
|
|
|
+ confirm: 'Confirm',
|
|
|
+ cancel: 'Cancel',
|
|
|
+ deleteSuccess: 'Deleted successfully',
|
|
|
+ copyConfirm: 'Confirm to copy this data?',
|
|
|
+ copySuccess: 'Copied successfully',
|
|
|
+ batchDeleteConfirm: 'Confirm to batch delete these data?',
|
|
|
+ deleteRowConfirm: 'This will delete: "{name}". Continue?',
|
|
|
+ },
|
|
|
+ placeholders: {
|
|
|
+ selectProduct: "Select Product",
|
|
|
+ selectDevice: "Select Device",
|
|
|
+ selectProperty: "Select Property",
|
|
|
+ selectTime: "Select Time",
|
|
|
+ },
|
|
|
+ // 指标趋势
|
|
|
+ exponentialTrend: {
|
|
|
+ title: "Exponential Trend",
|
|
|
+ recentOneHour: "Last Hour",
|
|
|
+ recent24Hours: "Last 24H",
|
|
|
+ recentOneWeek: "Last Week",
|
|
|
+ startDate: "Start Date",
|
|
|
+ endDate: "End Date",
|
|
|
+ chartNotLoaded: "Chart Not Loaded"
|
|
|
+ }
|
|
|
+};
|