-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathload_lang.m
343 lines (238 loc) · 9.42 KB
/
load_lang.m
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
function langlist = load_lang(langid)
% LOAD LANG
% Set lang list of string entries.
%
% Author: Pablo Pizarro @ppizarror.com, 2017.
%
% This program is free software; you can redistribute it and/or
% modify it under the terms of the GNU General Public License
% as published by the Free Software Foundation; either version 2
% of the License, or (at your option) any later version.
%
% This program is distributed in the hope that it will be useful,
% but WITHOUT ANY WARRANTY; without even the implied warranty of
% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
% GNU General Public License for more details.
%
% You should have received a copy of the GNU General Public License
% along with this program; if not, write to the Free Software
% Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
%% Constants
LANG_AVAIABLE_LANGUAGES = 2; % Español, English
LANG_ENTRIES = 100; % Total language entries on cell structure
%% Check if langid is valid
if ~(1 <= langid && langid <= LANG_AVAIABLE_LANGUAGES)
error('Invalid langid');
end
%% Create a list of data
list = cell(LANG_ENTRIES, 1);
for j = 1:LANG_ENTRIES
list{j} = cell(1, LANG_AVAIABLE_LANGUAGES);
end
%% Add lang strings
list{1, 1} = 'Select acceleration file';
list{1, 2} = 'Seleccionar archivo de aceleraciones';
list{2, 1} = 'Close app';
list{2, 2} = 'Cerrar app';
list{3, 1} = 'Acceleration plots';
list{3, 2} = 'Gráficos de aceleraciones';
list{4, 1} = 'AVERAGE SH/SV';
list{4, 2} = 'SH/SV PROMEDIO';
list{5, 1} = 'Iteration plots';
list{5, 2} = 'Gráficos de iteraciones';
list{6, 1} = 'Processing (%.1f%%)';
list{6, 2} = 'Procesando (%.1f%%)';
list{7, 1} = 'Select two points to create several windows';
list{7, 2} = 'Seleccione dos puntos para crear las ventanas';
list{8, 1} = 'Acceleration file (*.txt)';
list{8, 2} = 'Archivo de aceleración (*.txt)';
list{9, 1} = 'Please select a file';
list{9, 2} = 'Por favor seleccione un archivo';
list{10, 1} = 'Please check that N-S (_N), E-W (_E) y Z (_Z) files exist in the same folder.';
list{10, 2} = 'Por favor revise que los archivos N-S (_N), E-W (_E) y Z (_Z) existan en la misma carpeta.';
list{11, 1} = 'Error';
list{11, 2} = 'Error';
list{12, 1} = 'An error has occurred while loading the files.';
list{12, 2} = 'Un error ocurrió mientras se cargaban los archivos.';
list{13, 1} = 'Data must have the same size of elements.';
list{13, 2} = 'Los datos deben tener la misma cantidad de elementos.';
list{14, 1} = 'Data error';
list{14, 2} = 'Error de datos';
list{15, 1} = 'File error';
list{15, 2} = 'Error de archivos';
list{16, 1} = 'If region is not selected process cant continue.';
list{16, 2} = 'Si la región no se ha seleccionado no se puede continuar.';
list{17, 1} = 'Time (s)';
list{17, 2} = 'Tiempo (s)';
list{18, 1} = 'Acceleration (g)';
list{18, 2} = 'Aceleración (g)';
list{19, 1} = 'Enter window time properties';
list{19, 2} = 'Ingrese las propiedades temporales de las ventanas';
list{20, 1} = 'Window time move (s)';
list{20, 2} = 'Movimiento temporal de las ventanas (s)';
list{21, 1} = 'Window time size - Max: %.1f (s)';
list{21, 2} = 'Tamaño de las ventanas - Max: %.1f (s)';
list{22, 1} = 'Values must be numerical.';
list{22, 2} = 'Los valores deben ser numéricos.';
list{23, 1} = 'Value Error';
list{23, 2} = 'Error de valores';
list{24, 1} = 'Region limits cant be the same.';
list{24, 2} = 'Los límites de la región no pueden ser idénticos.';
list{25, 1} = 'Maximum frequency: %.3f [Hz]';
list{25, 2} = 'Frecuencia máxima: %.3f [Hz]';
list{26, 1} = 'Maximum SH/SV: %.3f';
list{26, 2} = 'Máximo SH/SV: %.3f';
list{27, 1} = 'Total iterations: %d';
list{27, 2} = 'Número de iteraciones: %d';
list{28, 1} = 'Execution time: %.1f [s]';
list{28, 2} = 'Tiempo de ejecución: %.1f [s]';
list{29, 1} = 'Process finished';
list{29, 2} = 'Proceso finalizado';
list{30, 1} = 'SH/SV v/s f';
list{30, 2} = 'SH/SV v/s f';
list{31, 1} = 'Frequency (Hz)';
list{31, 2} = 'Frecuencia (Hz)';
list{32, 1} = 'SH/SV';
list{32, 2} = 'SH/SV';
list{33, 1} = 'File';
list{33, 2} = 'Archivo';
list{34, 1} = 'Edit';
list{34, 2} = 'Edición';
list{35, 1} = 'Help';
list{35, 2} = 'Ayuda';
list{36, 1} = 'New';
list{36, 2} = 'Nuevo';
list{37, 1} = 'Export results';
list{37, 2} = 'Exportar resultados';
list{38, 1} = 'See manual';
list{38, 2} = 'Ver el manual';
list{39, 1} = 'About';
list{39, 2} = 'Acerca de';
list{40, 1} = 'Author: Pablo Pizarro @ppizarror.com, 2017.';
list{40, 2} = 'Autor: Pablo Pizarro @ppizarror.com, 2017.';
list{41, 1} = 'Thanks to: Felipe Ochoa.';
list{41, 2} = 'Agradecimientos a: Felipe Ochoa.';
list{42, 1} = 'HOVSR is a Matlab app that calculates h/v spectrum ratio.';
list{42, 2} = 'HOVSR es una app en Matlab que calcula la razón espectral h/v.';
list{43, 1} = 'Licence: GLP-2.0';
list{43, 2} = 'Licencia: GPL-2.0';
list{44, 1} = 'Project website: https://github.com/ppizarror/HOVSR';
list{44, 2} = 'Web del proyecto: https://github.com/ppizarror/HOVSR';
list{45, 1} = 'Software version: %.1f';
list{45, 2} = 'Versión del software: %.1f';
list{46, 1} = 'Text file (*.txt)';
list{46, 2} = 'Archivo de texto (*.txt)';
list{47, 1} = 'Export results as';
list{47, 2} = 'Exportar resultados como';
list{48, 1} = 'Results are not calcualted.';
list{48, 2} = 'Los resultados no existen.';
list{49, 1} = 'Fatal Error';
list{49, 2} = 'Error Fatal';
list{50, 1} = 'Error when saving results.';
list{50, 2} = 'Error al guardar los resultados.';
list{51, 1} = 'Results saved successfully';
list{51, 2} = 'Archivo guardado correctamente';
list{52, 1} = 'Process completed';
list{52, 2} = 'Proceso terminado';
list{53, 1} = '(1): Select acceleration files (E-W, N-S and Z), only 3 files.';
list{53, 2} = '(1): Buscar los archivos de aceleración (E-W, N-S y Z), sólo se pueden seleccionar 3 archivos.';
list{54, 1} = '(2): Select a region of the data to start the process.';
list{54, 2} = '(2): Seleccione una región de los datos para comenzar el proceso.';
list{55, 1} = '(3): Define the window size (in seconds) and the movement of the window.';
list{55, 2} = '(3): Defina el tamaño de la ventana y el movimiento de ella en segundos.';
list{56, 1} = '(4): The iteration process will start and sh/sv vs f plot will apear.';
list{56, 2} = '(4): El proceso de iteración dará comienzo y se mostrará el gráfico de sh/sv vs f.';
list{57, 1} = '(5): Results (f vs sh/sv) can be exported to a file if Export Results button is pressed.';
list{57, 2} = '(5): Los resultados (f vs sh/sv) pueden ser exportados a un archivo si se presiona el boton Exportar Resultados.';
list{58, 1} = 'Manual';
list{58, 2} = 'Manual';
list{59, 1} = 'Operation cancelled by user.';
list{59, 2} = 'Operación cancelada.';
list{60, 1} = 'You must choose 3 files.';
list{60, 2} = 'Debes elegir 3 archivos.';
list{61, 1} = 'An error has occurred while smoothing the spectrum.';
list{61, 2} = 'Ocurrió un error mientras se suavizaba el espectro.';
list{62, 1} = 'Window width (s)';
list{62, 2} = 'Tamaño ventana (s)';
list{63, 1} = 'Enter window width, max: %.2f (s)';
list{63, 2} = 'Ingrese el tamaño de la ventana, máximo: %.2f (s)';
list{64, 1} = 'Bad HV_CALC_METHOD config value.';
list{64, 2} = 'Error en configuración HV_CALC_METHOD no conocida.';
list{65, 1} = 'Average and standard deviation';
list{65, 2} = 'Promedio y desviación estándar';
list{66, 1} = 'Median and percentile (min-10-20-40-60-80-90-max)';
list{66, 2} = 'Mediana y percentiles (min-10-20-40-60-80-90-max)';
list{67, 1} = 'Window width cant be greater than timeseries width.';
list{67, 2} = 'El tamaño de la ventana no puede superar el máximo del registro.';
list{68, 1} = 'Bad PLOT_X_VAR config value.';
list{68, 2} = 'Error en configuración PLOT_X_VAR no conocida.';
list{69, 1} = 'Period (s)';
list{69, 2} = 'Período (s)';
list{70, 1} = 'Maximum period: %.3f [s]';
list{70, 2} = 'Período máximo: %.3f [s]';
list{71, 1} = 'SH/SV v/s T';
list{71, 2} = 'SH/SV v/s T';
list{72, 1} = 'Inferior limit';
list{72, 2} = 'Límite inferior';
list{73, 1} = 'An error has occurred while obtaining period plot result.';
list{73, 2} = 'Ocurrió un error al obtener el gráfico de período.';
list{74, 1} = '';
list{74, 2} = '';
list{75, 1} = '';
list{75, 2} = '';
list{76, 1} = '';
list{76, 2} = '';
list{77, 1} = '';
list{77, 2} = '';
list{78, 1} = '';
list{78, 2} = '';
list{79, 1} = '';
list{79, 2} = '';
list{80, 1} = '';
list{80, 2} = '';
list{81, 1} = '';
list{81, 2} = '';
list{82, 1} = '';
list{82, 2} = '';
list{83, 1} = '';
list{83, 2} = '';
list{84, 1} = '';
list{84, 2} = '';
list{85, 1} = '';
list{85, 2} = '';
list{86, 1} = '';
list{86, 2} = '';
list{87, 1} = '';
list{87, 2} = '';
list{88, 1} = '';
list{88, 2} = '';
list{89, 1} = '';
list{89, 2} = '';
list{90, 1} = '';
list{90, 2} = '';
list{91, 1} = '';
list{91, 2} = '';
list{92, 1} = '';
list{92, 2} = '';
list{93, 1} = '';
list{93, 2} = '';
list{94, 1} = '';
list{94, 2} = '';
list{95, 1} = '';
list{95, 2} = '';
list{96, 1} = '';
list{96, 2} = '';
list{97, 1} = '';
list{97, 2} = '';
list{98, 1} = '';
list{98, 2} = '';
list{99, 1} = '';
list{99, 2} = '';
list{100, 1} = '';
list{100, 2} = '';
%% Create list of choise
langlist = cell(LANG_ENTRIES, 1);
for j = 1:LANG_ENTRIES
langlist{j} = list{j, langid};
end
end