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
|
var Strings = {
sharedLoading: 'Laden...',
sharedSave: 'Opslaan',
sharedCancel: 'Annuleren',
sharedAdd: 'Toevoegen',
sharedEdit: 'Bewerken',
sharedRemove: 'Verwijderen',
sharedRemoveConfirm: 'Verwijder item?',
sharedKm: 'km',
sharedMi: 'mi',
sharedKmh: 'km/h',
sharedMph: 'mph',
sharedHour: 'Uur',
sharedMinute: 'Minuut',
sharedSecond: 'Seconde',
errorTitle: 'Fout',
errorUnknown: 'Onbekende fout',
userName: 'Gebruikersnaam',
userEmail: 'Email',
userPassword: 'WachtwoordPassword',
userAdmin: 'Admin',
loginTitle: 'Inloggen',
loginLanguage: 'Taal',
loginRegister: 'Registeren',
loginLogin: 'Inloggen',
loginFailed: 'Onjuiste emailadres of wachtwoord',
loginCreated: 'Nieuwe gebruiker is geregistreerd',
loginLogout: 'Uitloggen',
deviceDialog: 'Apparaat',
deviceTitle: 'Apparaten',
deviceName: 'Naam',
deviceIdentifier: 'Identifier',
deviceCommand: 'Commando',
settingsTitle: 'Instellingen',
settingsUser: 'Account',
settingsServer: 'Server',
settingsUsers: 'Gebruikers',
settingsDistanceUnit: 'Afstand',
settingsSpeedUnit: 'Snelheid',
reportTitle: 'Reports',
reportDevice: 'Apparaat',
reportFrom: 'Van',
reportTo: 'Naar',
reportShow: 'Laten zien',
reportClear: 'Leegmaken',
positionTime: 'Tijd',
positionValid: 'Geldig',
positionLatitude: 'Latitude',
positionLongitude: 'Longitude',
positionAltitude: 'Altitude',
positionSpeed: 'Snelheid',
positionCourse: 'Koers',
positionAddress: 'Adres',
positionProtocol: 'Protocol',
serverTitle: 'Server Instellingen',
serverZoom: 'Zoom',
serverRegistration: 'Registratie',
mapTitle: 'Kaart',
mapLayer: 'Kaart laag',
mapOsm: 'Open Street Map',
mapBingRoad: 'Bing Maps Wegen',
mapBingAerial: 'Bing Maps Luchtfoto',
stateTitle: 'Status',
stateName: 'Parameter',
stateValue: 'Waarde',
commandTitle: 'Commando',
commandSend: 'Verstuur',
commandType: 'Type',
commandPositionPeriodic: 'Periodic Reporting',
commandPositionStop: 'Stop Reporting',
commandEngineStop: 'Engine Stop',
commandEngineResume: 'Engine Resume',
commandFrequency: 'Frequentie',
commandUnit: 'Eenheid'
};
|