1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
|
var Strings = {
sharedLoading: 'Loading...',
sharedSave: 'Save',
sharedCancel: 'Cancel',
sharedAdd: 'Add',
sharedEdit: 'Edit',
sharedRemove: 'Remove',
sharedRemoveConfirm: 'Remove item?',
sharedKm: 'km',
sharedMi: 'mi',
sharedKmh: 'km/h',
sharedMph: 'mph',
sharedHour: 'Hour',
sharedMinute: 'Minute',
sharedSecond: 'Second',
errorTitle: 'Error',
errorUnknown: 'Unknown error',
userName: 'Name',
userEmail: 'Email',
userPassword: 'Password',
userAdmin: 'Admin',
loginTitle: 'Login',
loginLanguage: 'Language',
loginRegister: 'Register',
loginLogin: 'Login',
loginFailed: 'Incorrect email address or password',
loginCreated: 'New user has been registered',
loginLogout: 'Logout',
deviceDialog: 'Device',
deviceTitle: 'Devices',
deviceName: 'Name',
deviceIdentifier: 'Identifier',
deviceCommand: 'Command',
settingsTitle: 'Settings',
settingsUser: 'Account',
settingsServer: 'Server',
settingsUsers: 'Users',
settingsDistanceUnit: 'Distance',
settingsSpeedUnit: 'Speed',
reportTitle: 'Reports',
reportDevice: 'Device',
reportFrom: 'From',
reportTo: 'To',
reportShow: 'Show',
reportClear: 'Clear',
positionTime: 'Time',
positionValid: 'Valid',
positionLatitude: 'Latitude',
positionLongitude: 'Longitude',
positionAltitude: 'Altitude',
positionSpeed: 'Speed',
positionCourse: 'Course',
positionAddress: 'Address',
positionProtocol: 'Protocol',
serverTitle: 'Server Settings',
serverZoom: 'Zoom',
serverRegistration: 'Registration',
mapTitle: 'Map',
mapLayer: 'Map Layer',
mapCustom: 'Custom Map',
mapOsm: 'Open Street Map',
mapBingKey: 'Bing Maps Key',
mapBingRoad: 'Bing Maps Road',
mapBingAerial: 'Bing Maps Aerial',
stateTitle: 'State',
stateName: 'Attribute',
stateValue: 'Value',
commandTitle: 'Command',
commandSend: 'Send',
commandType: 'Type',
commandSent: 'Command has been sent',
commandPositionPeriodic: 'Periodic Reporting',
commandPositionStop: 'Stop Reporting',
commandEngineStop: 'Engine Stop',
commandEngineResume: 'Engine Resume',
commandFrequency: 'Frequency',
commandUnit: 'Unit'
};
|