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: 'Cargando...',
sharedSave: 'Grabar',
sharedCancel: 'Cancelar',
sharedAdd: 'Agregar',
sharedEdit: 'Editar',
sharedRemove: 'Borrar',
sharedRemoveConfirm: 'Borrar elemento?',
sharedKm: 'km',
sharedMi: 'mi',
sharedKmh: 'km/h',
sharedMph: 'mph',
sharedHour: 'Hora',
sharedMinute: 'Minuto',
sharedSecond: 'Segundos',
errorTitle: 'Error',
errorUnknown: 'Error Desconocido',
userName: 'Nombre',
userEmail: 'Email',
userPassword: 'Contraseña',
userAdmin: 'Admin',
loginTitle: 'Ingresar',
loginLanguage: 'Lenguaje',
loginRegister: 'Registrar',
loginLogin: 'Ingresar',
loginFailed: 'Direccion de correo o Contraseña Incorrecta',
loginCreated: 'Nuevo usuario ha sido registrado',
loginLogout: 'Salir',
deviceDialog: 'Dispositivo',
deviceTitle: 'Dispositivos',
deviceName: 'Nombre',
deviceIdentifier: 'Identificador',
deviceCommand: 'Comando',
settingsTitle: 'Preferencias',
settingsUser: 'Cuenta',
settingsServer: 'Servidor',
settingsUsers: 'Usuarios',
settingsDistanceUnit: 'Distancia',
settingsSpeedUnit: 'Velocidad',
reportTitle: 'Reportes',
reportDevice: 'Dispositivos',
reportFrom: 'Desde',
reportTo: 'Hasta',
reportShow: 'Mostrar',
reportClear: 'Limpiar',
positionTime: 'Hora',
positionValid: 'Valida',
positionLatitude: 'Latitud',
positionLongitude: 'Longitud',
positionAltitude: 'Altitud',
positionSpeed: 'Velocidad',
positionCourse: 'Curso',
positionAddress: 'Direccion',
positionProtocol: 'Protocolo',
serverTitle: 'Preferencias Servidor',
serverZoom: 'Zoom',
serverRegistration: 'Registrar',
mapTitle: 'Mapa',
mapLayer: 'Capa de Mapa',
mapOsm: 'Open Street Map',
mapBingRoad: 'Bing Maps - Carretera',
mapBingAerial: 'Bing Maps - Aereo',
stateTitle: 'Estado',
stateName: 'Parametro',
stateValue: 'Valor',
commandTitle: 'Comando',
commandSend: 'Enviar',
commandType: 'Tipo',
commandPositionPeriodic: 'Frecuencia de posiciones',
commandPositionStop: 'Detener reporte de posiciones',
commandEngineStop: 'Apagar motor',
commandEngineResume: 'Desbloquear encendido de motor',
commandFrequency: 'Frequencia',
commandUnit: 'Unidad'
};
|