123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222 |
- export default {
- dashboard: {
- title: 'Data Statistics',
- carrier: {
- placeholder: 'Please select',
- telecom: 'Telecom',
- unicom: 'Unicom',
- mobile: 'Mobile'
- },
- statistics: {
- yesterdayFlow: 'Yesterday Flow Consumption',
- monthFlow: 'This Month Flow Consumption',
- yearFlow: 'This Year Flow Consumption'
- },
- flowChart: {
- title: 'Flow Statistics',
- buttons: {
- yesterday: 'Yesterday',
- week: 'This Week',
- month: 'This Month',
- year: 'This Year'
- },
- datePicker: {
- rangeSeparator: 'to',
- startPlaceholder: 'Start Time',
- endPlaceholder: 'End Time'
- }
- },
- top10: {
- title: 'Top 10 Flow Usage',
- datePicker: {
- rangeSeparator: 'to',
- startPlaceholder: 'Start Date',
- endPlaceholder: 'End Date'
- }
- },
- charts: {
- tooltip: {
- traffic: 'Traffic'
- },
- series: {
- traffic: 'Traffic'
- }
- }
- },
- index: {
- search: {
- placeholder: 'Enter ICCID or Card Number',
- query: 'Query',
- reset: 'Reset'
- },
- table: {
- columns: {
- cardNumber: 'Card Number',
- iccid: 'ICCID',
- bindDevice: 'Bind Device',
- platform: 'Platform',
- operator: 'Operator',
- type: 'Type',
- totalFlow: 'Total Flow',
- usedFlow: 'Used Flow',
- remainFlow: 'Remain Flow',
- activationDate: 'Activation Date',
- updateTime: 'Update Time',
- status: 'Status',
- actions: 'Actions'
- },
- actions: {
- detail: 'Detail',
- delete: 'Delete'
- }
- },
- operators: {
- telecom: 'China Telecom',
- unicom: 'China Unicom',
- mobile: 'China Mobile'
- },
- types: {
- monthly: 'Monthly',
- quarterly: 'Quarterly',
- yearly: 'Yearly',
- other: 'Other'
- },
- status: {
- activatable: 'Activatable',
- testActivated: 'Test Activated',
- testDeactivated: 'Test Deactivated',
- inUse: 'In Use',
- suspended: 'Suspended',
- operatorManaged: 'Operator Managed'
- },
- messages: {
- deleteConfirm: 'This operation will delete the card number: "{cardNumber}", continue?',
- tip: 'Tip',
- confirm: 'Confirm',
- cancel: 'Cancel',
- deleteSuccess: 'Delete Success'
- }
- },
- detail: {
- basicInfo: {
- title: 'Basic Information',
- cardNumber: 'Card Number',
- iccid: 'ICCID',
- bindDevice: 'Bind Device',
- platformType: 'Platform Type',
- platformName: 'Platform Name',
- operator: 'Operator',
- type: 'Type',
- activationDate: 'Activation Date',
- updateTime: 'Update Time',
- totalFlow: 'Total Flow',
- usedFlow: 'Used Flow',
- remainFlow: 'Remain Flow',
- status: 'Status',
- description: 'Description'
- },
- flowChart: {
- title: 'Flow Statistics',
- buttons: {
- yesterday: 'Yesterday',
- week: 'Last Week',
- month: 'Last Month',
- year: 'Last Year'
- },
- datePicker: {
- rangeSeparator: 'to',
- startPlaceholder: 'Start Time',
- endPlaceholder: 'End Time'
- }
- },
- dataStatistics: {
- title: 'Data Statistics',
- yesterdayFlow: 'Yesterday Flow Consumption',
- monthFlow: 'Current Month Flow Consumption',
- yearFlow: 'Current Year Flow Consumption'
- }
- },
- platformManage: {
- search: {
- placeholder: 'Enter keyword to search',
- query: 'Query',
- reset: 'Reset',
- add: 'Add'
- },
- table: {
- columns: {
- name: 'Name',
- platformType: 'Platform Type',
- appId: 'App ID',
- status: 'Status',
- description: 'Description',
- actions: 'Actions'
- },
- actions: {
- edit: 'Edit',
- delete: 'Delete'
- }
- },
- status: {
- disabled: 'Disabled',
- enabled: 'Enabled'
- },
- messages: {
- deleteConfirm: 'This operation will delete the card number: "{cardNumber}", continue?',
- tip: 'Tip',
- confirm: 'Confirm',
- cancel: 'Cancel',
- deleteSuccess: 'Delete Success'
- },
- addOrEdit: {
- title: {
- add: 'Add',
- edit: 'Edit'
- },
- form: {
- platformType: 'Platform Type',
- name: 'Name',
- appId: 'App ID',
- secretKey: 'Secret Key',
- userId: 'User ID',
- interfaceUrl: 'Interface URL',
- status: 'Status',
- description: 'Description'
- },
- placeholders: {
- select: 'Please select',
- name: 'Please enter name',
- appId: 'Please enter App ID',
- secretKey: 'Please enter secret key',
- userId: 'Please enter user ID',
- interfaceUrl: 'Please enter interface URL',
- description: 'Please enter description'
- },
- operators: {
- telecom: 'China Telecom',
- unicom: 'China Unicom',
- mobile: 'China Mobile'
- },
- switch: {
- enabled: 'On',
- disabled: 'Off'
- },
- buttons: {
- cancel: 'Cancel',
- confirm: 'Confirm'
- },
- validation: {
- platformType: 'Please select platform type',
- name: 'Please enter name',
- userId: 'Please enter user ID',
- secretKey: 'Please enter secret key',
- appId: 'Please enter App ID',
- interfaceUrl: 'Please enter interface URL'
- },
- messages: {
- editSuccess: 'Edit Success',
- addSuccess: 'Add Success'
- }
- }
- }
- };
|