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
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
|
msgid ""
msgstr ""
"Project-Id-Version: \n"
"POT-Creation-Date: \n"
"PO-Revision-Date: 2024-01-11 23:35+0000\n"
"Last-Translator: gallegonovato <fran-carro@hotmail.es>\n"
"Language-Team: Spanish <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationstravelmate/es/>\n"
"Language: es\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.4-dev\n"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:76
msgid "-- AP Selection --"
msgstr "-- Selección de AP --"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:269
msgid "AP QR-Codes..."
msgstr "Códigos QR del AP..."
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1037
msgid "Add Uplink %q"
msgstr "Agregar enlace ascendente %q"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:865
msgid "Add Uplink..."
msgstr "Agregar enlace ascendente..."
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295
msgid "Additional Settings"
msgstr "Configuración adicional"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
msgid ""
"Additional trigger delay in seconds before travelmate processing begins."
msgstr ""
"Demora adicional del disparador en segundos antes de que comience el "
"procesamiento de travelmate."
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:439
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:994
msgid "Anonymous Identity"
msgstr "Identidad anónima"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:977
msgid "Authentication"
msgstr "Autenticación"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539
msgid "Auto Added Open Uplink"
msgstr "Agregar automáticamente enlaces ascendentes abiertos"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:617
msgid "Auto Login Script"
msgstr "Script de inicio de sesión automático"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:352
msgid "AutoAdd Open Uplinks"
msgstr "Auto agregar enlaces ascendentes abiertos"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:600
msgid ""
"Automatically (re-)enable the uplink after <em>n</em> minutes, e.g. after "
"failed login attempts.<br /> The default of '0' disables this feature."
msgstr ""
"(Re) activar automáticamente el enlace ascendente después de <em>n</em> "
"minutos, p.e. después de intentos fallidos de inicio de sesión.<br/> El "
"valor predeterminado de '0' desactiva esta función."
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:352
msgid ""
"Automatically add open uplinks like hotel captive portals to your wireless "
"config."
msgstr ""
"Agregue automáticamente enlaces ascendentes abiertos como portales cautivos "
"de hotel a su configuración inalámbrica."
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:582
msgid ""
"Automatically disable the uplink after <em>n</em> minutes, e.g. for timed "
"connections.<br /> The default of '0' disables this feature."
msgstr ""
"Desactiva automáticamente el enlace ascendente después de <em>n</em> "
"minutos, p.e. para conexiones temporizadas.<br/> El valor predeterminado de "
"'0' desactiva esta función."
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:677
msgid ""
"Automatically handle VPN connections.<br /> Please note: This feature "
"requires the additional configuration of <em>Wireguard</em> or <em>OpenVPN</"
"em>."
msgstr ""
"Maneja automáticamente las conexiones VPN. <br /> Nota: esta función "
"requiere la configuración adicional de <em>Wireguard</em> u <em>OpenVPN</em>."
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:506
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928
msgid "BSSID"
msgstr "BSSID"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:422
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980
msgid "CHAP"
msgstr "CHAP"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314
msgid "Captive Portal Detection"
msgstr "Detección de portal cautivo"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395
msgid "Captive Portal URL"
msgstr "URL del portal cautivo"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754
msgid "Channel"
msgstr "Canal"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314
msgid ""
"Check the internet availability, handle captive portal redirections and keep "
"the uplink connection 'alive'."
msgstr ""
"Verifique la disponibilidad de Internet, maneje las redirecciones de los "
"portales cautivos y mantenga la conexión de enlace ascendente 'viva'."
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:148
msgid ""
"Configuration of the travelmate package to enable travel router "
"functionality. For further information <a href=\"https://github.com/openwrt/"
"packages/blob/master/net/travelmate/files/README.md\" target=\"_blank\" "
"rel=\"noreferrer noopener\" >check the online documentation</a>. <br /> "
"<em>Please note:</em> On first start please call the 'Interface Wizard' "
"once, to make the necessary network- and firewall settings."
msgstr ""
"Configuración del paquete travelmate para activar la funcionalidad del "
"enrutador de viaje. Para obtener más información <a href=\"https://github."
"com/openwrt/packages/blob/master/net/travelmate/files/README.md\" "
"target=\"_blank\" rel=\"noreferrer noopener\" >consulte la documentación en "
"línea</a>. <br /> <em>Tenga en cuenta:</em> En el primer inicio, llame una "
"vez al \"Asistente de interfaz\" para realizar los ajustes necesarios de red "
"y firewall."
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:528
msgid "Connection End"
msgstr "Fin de conexión"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:599
msgid "Connection End Expiry"
msgstr "Caducidad de fin de conexión"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
msgid "Connection Limit"
msgstr "Límite de conexión"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:517
msgid "Connection Start"
msgstr "Inicio de conexión"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581
msgid "Connection Start Expiry"
msgstr "Vencimiento de inicio de conexión"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296
msgid "Device"
msgstr "Dispositivo"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901
msgid "Device Name"
msgstr "Nombre del dispositivo"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:448
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1003
msgid "Disabled"
msgstr "Desactivado"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:46
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:131
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:769
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1043
msgid "Dismiss"
msgstr "Descartar"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:261
msgid "Drag to reorder"
msgstr "Arrastrar para reordenar"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:425
msgid "E-Mail Hook"
msgstr "Gancho de correo electrónico"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:443
msgid "E-Mail Profile"
msgstr "Perfil de correo electrónico"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:428
msgid "E-Mail Receiver Address"
msgstr "Dirección del destinatario de correo electrónico"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:433
msgid "E-Mail Sender Address"
msgstr "Dirección del remitente de correo electrónico"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296
msgid "E-Mail Settings"
msgstr "Configuraciones del correo electrónico"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:438
msgid "E-Mail Topic"
msgstr "Tema del correo electrónico"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:425
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:983
msgid "EAP-GTC"
msgstr "EAP-GTC"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:984
msgid "EAP-MD5"
msgstr "EAP-MD5"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:427
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:985
msgid "EAP-MSCHAPV2"
msgstr "EAP-MSCHAPV2"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:969
msgid "EAP-Method"
msgstr "Método EAP"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:428
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:986
msgid "EAP-TLS"
msgstr "EAP-TLS"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269
msgid "Edit"
msgstr "Editar"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:267
msgid "Edit this network"
msgstr "Editar esta red"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301
msgid "Enable the travelmate service."
msgstr "Activar el servicio TravelMate."
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304
msgid "Enable verbose debug logging in case of any processing errors."
msgstr ""
"Activar el registro de depuración detallado en caso de errores de "
"procesamiento."
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:272
msgid "Enable/Disable this network"
msgstr "Habilitar/Deshabilitar esta red"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284
msgid "Enabled"
msgstr "Activado"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:757
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934
msgid "Encryption"
msgstr "Encriptación"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:250
msgid "Ext. Hooks"
msgstr "Manos ext."
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:618
msgid ""
"External script reference which will be called for automated captive portal "
"logins."
msgstr ""
"Referencia de script externo que se llamará para inicios de sesión cautivos "
"automatizados del portal."
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:416
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:974
msgid "FAST"
msgstr "RÁPIDO"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:294
msgid "General Settings"
msgstr "Configuración general"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:348
msgid "Generate a random unicast MAC address for each uplink connection."
msgstr ""
"Genere una dirección MAC de unidifusión aleatoria para cada conexión de "
"enlace ascendente."
#: applications/luci-app-travelmate/root/usr/share/rpcd/acl.d/luci-app-travelmate.json:3
msgid "Grant access to LuCI app travelmate"
msgstr "Otorgar acceso a la aplicación Travelmate de LuCI"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380
msgid ""
"How long should travelmate wait for a successful wlan uplink connection."
msgstr ""
"Cuánto tiempo debe esperar travelmate para una conexión de enlace wlan sea "
"exitosa."
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:435
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:991
msgid "Identity"
msgstr "Identidad"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920
msgid "Ignore BSSID"
msgstr "Ignorar BSSID"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:224
msgid "Information"
msgstr "Información"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905
msgid "Interface Name"
msgstr "Nombre de interfaz"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380
msgid "Interface Timeout"
msgstr "Tiempo de espera de la interfaz"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23
msgid "Interface Wizard"
msgstr "Asistente de interfaz"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:283
msgid "Interface Wizard..."
msgstr "Asistente de interfaz..."
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:254
msgid "Last Run"
msgstr "Último inicio"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356
msgid "Limit AutoAdd"
msgstr "Limitar AutoAdd"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:322
msgid "Limit VPN processing"
msgstr "Limitar el procesamiento de VPN"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:322
msgid "Limit VPN processing to certain interfaces."
msgstr "Limitar el procesamiento de VPN a ciertas interfaces."
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356
msgid ""
"Limit the maximum number of automatically added open uplinks. To disable "
"this limitation set it to '0'."
msgstr ""
"Limite el número máximo de enlaces ascendentes abiertos agregados "
"automáticamente. Para desactivar esta limitación, establézcala en '0'."
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:390
msgid "Limit the nearby scan results to process only the strongest uplinks."
msgstr ""
"Limite los resultados del análisis cercano para procesar solo los enlaces "
"ascendentes más fuertes."
#: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:35
msgid "Log View"
msgstr "Vista de registro"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:556
msgid "MAC Address"
msgstr "Dirección MAC"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:423
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981
msgid "MSCHAP"
msgstr "MSCHAP"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:424
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:982
msgid "MSCHAPV2"
msgstr "MSCHAPV2"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:443
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998
msgid "Mgmt. Frame Protection"
msgstr "Protección del marco de gestión"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375
msgid ""
"Minimum signal quality threshold as percent for conditional uplink (dis-) "
"connections."
msgstr ""
"Umbral de calidad de señal mínimo como porcentaje para conexiones (dis-) de "
"enlace condicional."
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339
msgid "Net Error Check"
msgstr "Comprobación de error neto"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/logread.js:22
msgid "No travelmate related logs yet!"
msgstr "¡Aún no hay registros relacionados con Travelmate!"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:327
msgid "OWE"
msgstr "OWE"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:274
msgid "On/Off"
msgstr "Encender/Apagar"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1004
msgid "Optional"
msgstr "Opcional"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:385
msgid "Overall Timeout"
msgstr "Tiempo de espera total"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:385
msgid "Overall retry timeout in seconds."
msgstr "Tiempo de espera de reintento global en segundos."
#: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:19
msgid "Overview"
msgstr "Visión general"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244
msgid ""
"Overview of all configured uplinks for travelmate. You can edit, remove or "
"prioritize existing uplinks by drag & drop and scan for new ones.<br /> "
"The currently used uplink connection is emphasized in <span style=\"color:"
"rgb(51, 119, 204);font-weight:bold\">blue</span>, an encrypted VPN uplink "
"connection is emphasized in <span style=\"color:rgb(68, 170, 68);font-weight:"
"bold\">green</span>."
msgstr ""
"Descripción general de todos los enlaces ascendentes configurados para "
"Travelmate. Puede editar, eliminar o priorizar los enlaces ascendentes "
"existentes arrastrando y soltando y escaneando los nuevos. <br />La conexión "
"de enlace ascendente utilizada actualmente se enfatiza en <span "
"style=\"color:rgb(51, 119, 204);font-weight:bold\">azul</span>, una conexión "
"de enlace ascendente VPN cifrada se enfatiza en <span style=\"color:rgb(68, "
"170, 68);font-weight:bold\">verde</span>."
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:979
msgid "PAP"
msgstr "PAP"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973
msgid "PEAP"
msgstr "PEAP"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:398
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:958
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964
msgid "Password"
msgstr "Contraseña"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:481
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1031
msgid "Password of Private Key"
msgstr "Contraseña de clave privada"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:465
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1018
msgid "Path to CA-Certificate"
msgstr "Ruta al certificado CA"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:471
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1023
msgid "Path to Client-Certificate"
msgstr "Ruta al certificado del cliente"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:476
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1027
msgid "Path to Private Key"
msgstr "Ruta a la clave privada"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:266
msgid "Please install the separate 'qrencode' package."
msgstr "Instale el paquete 'qrencode' por separado."
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296
msgid ""
"Please note: E-Mail notifications require the separate setup of the "
"<em>mstmp</em> package.<br /><p> </p>"
msgstr ""
"Tenga en cuenta: las notificaciones por correo electrónico requieren la "
"configuración por separado del paquete <em>mstmp</em>.<br /><p> </p>"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:344
msgid "ProActive Uplink Switch"
msgstr "Interruptor de enlace proactivo"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:344
msgid ""
"Proactively scan and switch to a higher prioritized uplink, despite of an "
"already existing connection."
msgstr ""
"Escanee de forma proactiva y cambie a un enlace de mayor prioridad, a pesar "
"de una conexión ya existente."
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:443
msgid "Profile used by 'msmtp' for travelmate notification E-Mails."
msgstr ""
"Perfil utilizado por 'msmtp' para los correos electrónicos de notificación "
"de travelmate."
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116
msgid "QR-Code Overview"
msgstr "Descripción general del código QR"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307
msgid "Radio Selection"
msgstr "Selección de radio"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:348
msgid "Randomize MAC Addresses"
msgstr "Aleatorizar direcciones MAC"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:428
msgid "Receiver address for travelmate notification E-Mails."
msgstr ""
"Dirección del destinatario de los correos electrónicos de notificación de "
"travelmate."
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:279
msgid "Remove"
msgstr "Eliminar"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:277
msgid "Remove this network"
msgstr "Eliminar esta red"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117
msgid ""
"Render the QR-Code of the selected Access Point to comfortably transfer the "
"WLAN credentials to your mobile devices."
msgstr ""
"Genere el código QR del AP seleccionado para transferir cómodamente las "
"credenciales WLAN a sus dispositivos móviles."
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:774
msgid "Repeat Scan"
msgstr "Repetir escaneo"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:450
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005
msgid "Required"
msgstr "Requerido"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:276
msgid "Restart Interface"
msgstr "Reiniciar interfaz"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307
msgid ""
"Restrict travelmate to a single radio or change the overall scanning order."
msgstr ""
"Restrinja Travelmate a una sola radio o cambie el orden de escaneo general."
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370
msgid "Retry limit to connect to an uplink."
msgstr "Vuelva a intentar el límite para conectarse a un enlace ."
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:246
msgid "Run Flags"
msgstr "Ejecutar banderas"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:755
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914
msgid "SSID"
msgstr "SSID"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:910
msgid "SSID (hidden)"
msgstr "SSID (oculto)"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1048
msgid "Save"
msgstr "Guardar"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:390
msgid "Scan Limit"
msgstr "Límite de escaneo"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:739
msgid "Scan on"
msgstr "Escanear en"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:656
msgid "Script Arguments"
msgstr "Argumentos de script"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:433
msgid "Sender address for travelmate notification E-Mails."
msgstr ""
"Dirección del remitente para los correos electrónicos de notificación de "
"Travelmate."
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:425
msgid "Sends notification E-Mails after every succesful uplink connect."
msgstr ""
"Envía notificaciones por correo electrónico después de cada conexión de "
"enlace ascendente exitosa."
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
msgid "Service Priority"
msgstr "Prioridad de servicio"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292
msgid "Settings"
msgstr "Ajustes"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375
msgid "Signal Quality Threshold"
msgstr "Umbral de calidad de señal"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:657
msgid ""
"Space separated list of additional arguments passed to the Auto Login "
"Script, i.e. username and password"
msgstr ""
"Lista separada por espacios de argumentos adicionales pasados a la secuencia "
"de comandos de inicio de sesión automático, es decir, nombre de usuario y "
"contraseña"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328
msgid "Standard VPN Service"
msgstr "Servicio VPN estándar"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:334
msgid "Standard VPN interface"
msgstr "Interfaz VPN estándar"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:334
msgid ""
"Standard VPN interface which will be automatically added to new STA profiles."
msgstr ""
"Interfaz VPN estándar que se agregará automáticamente a los nuevos perfiles "
"de STA."
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328
msgid ""
"Standard VPN service which will be automatically added to new STA profiles."
msgstr ""
"Servicio VPN estándar que se agregará automáticamente a los nuevos perfiles "
"de STA."
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761
msgid "Starting wireless scan on '"
msgstr "Iniciando escaneo inalámbrico en '"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230
msgid "Station ID"
msgstr "ID de estación"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238
msgid "Station Interfaces"
msgstr "Interfaces de las estaciones"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234
msgid "Station MAC"
msgstr "MAC de la estación"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226
msgid "Status / Version"
msgstr "Estado/Versión"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:753
msgid "Strength"
msgstr "Intensidad"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:413
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:971
msgid "TLS"
msgstr "TLS"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:414
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972
msgid "TTLS"
msgstr "TTLS"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107
msgid "The QR-Code could not be generated!"
msgstr "¡No se pudo generar el código QR!"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:34
msgid "The firewall zone name"
msgstr "El nombre de la zona de firewall"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:39
msgid "The interface metric"
msgstr "La métrica de la interfaz"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709
msgid "The logical vpn network interface like 'wg0'."
msgstr "La interfaz de red vpn lógica como 'wg0'."
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395
msgid ""
"The selected URL will be used for connectivity- and captive portal checks."
msgstr ""
"La URL seleccionada se utilizará para las comprobaciones de conectividad y "
"del portal cautivo."
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413
msgid "The selected priority will be used for travelmate processes."
msgstr ""
"La prioridad seleccionada se utilizará para los procesos de Travelmate."
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404
msgid ""
"The selected user agent will be used for connectivity- and captive portal "
"checks."
msgstr ""
"El agente de usuario seleccionado se utilizará para la conectividad y las "
"comprobaciones del portal cautivo."
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/logread.js:29
msgid "The syslog output, pre-filtered for travelmate related messages only."
msgstr ""
"La salida de syslog, prefiltrada solo para mensajes relacionados con "
"travelmate."
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:59
msgid "The uplink interface has been updated."
msgstr "La interfaz de enlace ascendente se ha actualizado."
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:29
msgid "The uplink interface name"
msgstr "El nombre de la interfaz de enlace ascendente"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:540
msgid ""
"This option is selected by default if this uplink was added automatically "
"and counts as 'Open Uplink'."
msgstr ""
"Esta opción está seleccionada de forma predeterminada si este enlace "
"ascendente se agregó automáticamente y cuenta como 'Abrir enlace ascendente'."
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:24
msgid ""
"To use Travelmate, you have to set up an uplink interface once. This wizard "
"creates an IPv4- and an IPv6 alias network interface with all required "
"network- and firewall settings."
msgstr ""
"Para utilizar Travelmate, debe configurar una interfaz de enlace ascendente "
"una vez. Este asistente crea una interfaz de red de alias IPv4 e IPv6 con "
"todas las configuraciones de red y cortafuegos requeridas."
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:438
msgid "Topic for travelmate notification E-Mails."
msgstr "Tema para correos electrónicos de notificación de compañeros de viaje."
#: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:3
msgid "Travelmate"
msgstr "Travelmate"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:254
msgid "Travelmate Settings"
msgstr "Configuración de Travelmate"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339
msgid "Treat missing internet availability as an error."
msgstr "Trate la falta de disponibilidad de Internet como un error."
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365
msgid "Trigger Delay"
msgstr "Retraso de disparo"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:458
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1012
msgid "Use system certificates"
msgstr "Usar certificados del sistema"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557
msgid "Use the specified MAC address for this uplink."
msgstr "Utilice la dirección MAC especificada para este enlace ascendente."
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404
msgid "User Agent"
msgstr "Agente de usuario"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:677
msgid "VPN Hook"
msgstr "Gancho VPN"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709
msgid "VPN Interface"
msgstr "Interfaz VPN"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:694
msgid "VPN Service"
msgstr "Servicio VPN"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:255
msgid "VPN Settings"
msgstr "Configuración de VPN"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:318
msgid "VPN connections will be managed by travelmate."
msgstr "Las conexiones VPN serán administradas por travelmate."
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:318
msgid "VPN processing"
msgstr "Procesamiento de VPN"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:458
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1012
msgid "Validate server certificate using built-in system CA bundle"
msgstr ""
"Validar el certificado del servidor mediante el paquete de CA del sistema "
"integrado"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304
msgid "Verbose Debug Logging"
msgstr "Registro de depuración detallado"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:323
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:950
msgid "WPA Ent. (CCMP)"
msgstr "Encriptación WPA (CCMP)"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:324
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951
msgid "WPA Ent. (TKIP)"
msgstr "Encriptación WPA (TKIP)"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242
msgid "WPA Flags"
msgstr "Banderas WPA"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940
msgid "WPA Pers."
msgstr "WPA personal"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941
msgid "WPA Pers. (CCMP)"
msgstr "WPA personal (CCMP)"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942
msgid "WPA Pers. (TKIP)"
msgstr "WPA personal (TKIP)"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:325
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:952
msgid "WPA/WPA2 Ent. (CCMP)"
msgstr "Encriptación WPA/WPA2 (CCMP)"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:326
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:953
msgid "WPA/WPA2 Ent. (TKIP)"
msgstr "Encriptación WPA/WPA2 (TKIP)"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943
msgid "WPA/WPA2 Pers. (CCMP)"
msgstr "Encriptación WPA/WPA2 (CCMP)"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944
msgid "WPA/WPA2 Pers. (TKIP)"
msgstr "WPA/WPA2 personal (TKIP)"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:320
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947
msgid "WPA2 Ent."
msgstr "WPA2 Enterprise"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:321
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948
msgid "WPA2 Ent. (CCMP)"
msgstr "Encriptación WPA2 (CCMP)"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:322
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:949
msgid "WPA2 Ent. (TKIP)"
msgstr "Encriptación WPA2 (TKIP)"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937
msgid "WPA2 Pers."
msgstr "WPA2 personal"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938
msgid "WPA2 Pers. (CCMP)"
msgstr "WPA2 personal (CCMP)"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939
msgid "WPA2 Pers. (TKIP)"
msgstr "WPA2 personal (TKIP)"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946
msgid "WPA2/WPA3 Ent."
msgstr "Encriptación WPA2/WPA3"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319
msgid "WPA2/WPA3 Ent. (CCMP)"
msgstr "WPA2/WPA3 Ent. (CCMP)"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936
msgid "WPA2/WPA3 Pers. (CCMP)"
msgstr "WPA2/WPA3 personal (CCMP)"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945
msgid "WPA3 Ent."
msgstr "Encriptación WPA3"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318
msgid "WPA3 Ent. (CCMP)"
msgstr "WPA3 Ent. (CCMP)"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:954
msgid "WPA3 OWE (CCMP)"
msgstr "WPA3 OWE (CCMP)"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935
msgid "WPA3 Pers. (SAE)"
msgstr "WPA3 personal (SAE)"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:763
msgid "Wireless Scan"
msgstr "Escanear red Wi-Fi"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:253
msgid "Wireless Settings"
msgstr "Configuración Wi-Fi"
#: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:27
msgid "Wireless Stations"
msgstr "Estaciones Wi-Fi"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:988
msgid "auth=MSCHAPV2"
msgstr "auth=MSCHAPV2"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:429
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987
msgid "auth=PAP"
msgstr "auth=PAP"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:328
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955
msgid "none"
msgstr "ninguno"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310
msgid "use both radios, normal sort order (radio0 radio1)"
msgstr "utilizar ambas radios, orden de clasificación normal (radio0 radio1)"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311
msgid "use both radios, reverse sort order (radio1 radio0)"
msgstr "utilizar ambas radios, orden inverso (radio1 radio0)"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308
msgid "use the first radio only (radio0)"
msgstr "use la primera radio solamente (radio0)"
#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309
msgid "use the second radio only (radio1)"
msgstr "use la segunda radio solamente (radio1)"
#~ msgid "Station Interface"
#~ msgstr "Interfaz de estación"
#~ msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'."
#~ msgstr "La interfaz de red lógica vpn, p.ej. 'wg0' o 'tun0'."
#~ msgid "Identify"
#~ msgstr "Identificar"
#~ msgid ""
#~ "Overview of all configured uplinks for travelmate.<br /> You can edit, "
#~ "remove or prioritize existing uplinks by drag & drop and scan for new "
#~ "ones. The currently used uplink is emphasized in blue."
#~ msgstr ""
#~ "Descripción general de todos los enlaces ascendentes configurados para "
#~ "Travelmate.<br /> Puede editar, eliminar o priorizar los enlaces "
#~ "ascendentes existentes arrastrando y soltando y buscando nuevos. El "
#~ "enlace ascendente utilizado actualmente se resalta en azul."
#~ msgid "Buffer size in bytes to prepare nearby scan results."
#~ msgstr ""
#~ "Tamaño del búfer en bytes para preparar resultados de escaneo cercanos."
#~ msgid "Scan Buffer Size"
#~ msgstr "Tamaño del búfer de escaneo"
#~ msgid "Automatically handle VPN (re-) connections."
#~ msgstr "Maneja automáticamente las (rec-) conexiones VPN."
#~ msgid "Del"
#~ msgstr "Elim."
#~ msgid "Delete this network"
#~ msgstr "Eliminar esta red"
#~ msgid "LAN Device"
#~ msgstr "Dispositivo LAN"
#~ msgid ""
#~ "Please note: VPN connections require the separate setup of the "
#~ "<em>Wireguard</em> or <em>OpenVPN</em> package.<br /><p> </p>"
#~ msgstr ""
#~ "Tenga en cuenta: las conexiones VPN requieren la configuración por "
#~ "separado del paquete <em>Wireguard</em> u <em>OpenVPN</em>.<br /><p> "
#~ "</p>"
#~ msgid ""
#~ "Restrict travelmate to a single radio or change the overall scanning "
#~ "order (e.g. 'radio1 radio0')."
#~ msgstr ""
#~ "Restrinja Travelmate a una sola radio o cambie el orden de exploración "
#~ "general (p.e., 'radio1 radio0')."
#~ msgid "The lan network device, e.g. 'br-lan'."
#~ msgstr "El dispositivo de red lan, p.ej. 'br-lan'."
#~ msgid ""
#~ "Configuration of the travelmate package to to enable travel router "
#~ "functionality. For further information <a href=\"https://github.com/"
#~ "openwrt/packages/blob/master/net/travelmate/files/README.md\" "
#~ "target=\"_blank\" rel=\"noreferrer noopener\" >check the online "
#~ "documentation</a>. <br /> <em>Please note:</em> On first start please "
#~ "call the 'Interface Wizard' once, to make the necessary network- and "
#~ "firewall settings."
#~ msgstr ""
#~ "Configuración del paquete travelmate para activar la funcionalidad del "
#~ "enrutador de viaje. Para mayor información <a href=\"https://github.com/"
#~ "openwrt/packages/blob/master/net/travelmate/files/README.md\" "
#~ "target=\"_blank\" rel=\"noreferrer noopener\" >consulte la documentación "
#~ "en línea</a>. <br /> <em>Tenga en cuenta:</em> En el primer inicio, llame "
#~ "una vez al \"Asistente de interfaz\" para realizar los ajustes necesarios "
#~ "de red y firewall."
#~ msgid "WPA3 Pers."
#~ msgstr "WPA3 personal"
#~ msgid "WPA3/WPA2 Ent."
#~ msgstr "Encriptación WPA3/WPA2"
#~ msgid "AP on"
#~ msgstr "AP en"
#~ msgid "Action"
#~ msgstr "Acción"
#~ msgid "Add Open Uplinks"
#~ msgstr "Añadir enlaces ascendentes abiertos"
#~ msgid "Add Uplink"
#~ msgstr "Añadir enlace"
#~ msgid "Add Wireless Uplink Configuration"
#~ msgstr "Añadir configuración de enlace inalámbrico"
#~ msgid "Advanced"
#~ msgstr "Avanzado"
#~ msgid "Automatic"
#~ msgstr "Automático"
#~ msgid ""
#~ "Automatically resets the 'Faulty Stations' list after n minutes. Default "
#~ "is '0' which means no expiry."
#~ msgstr ""
#~ "Restablece automáticamente la lista de 'Estaciones defectuosas' después "
#~ "de n minutos. El valor predeterminado es '0', lo que significa que no "
#~ "caduca."
#~ msgid "Back to overview"
#~ msgstr "Volver a la visión general"
#~ msgid ""
#~ "Check the internet availability, log captive portal redirections and keep "
#~ "the uplink connection 'alive'."
#~ msgstr ""
#~ "Verifique la disponibilidad de Internet, registre las redirecciones del "
#~ "portal cautivo y mantenga la conexión del enlace \"viva\"."
#~ msgid "Cipher"
#~ msgstr "Cifrado"
#~ msgid ""
#~ "Configuration of the travelmate package to to enable travel router "
#~ "functionality."
#~ msgstr ""
#~ "Configuración del paquete travelmate para activar la funcionalidad de "
#~ "enrutador de viaje."
#~ msgid "Create Uplink interface"
#~ msgstr "Crear interfaz de enlace"
#~ msgid ""
#~ "Create a new wireless wan uplink interface, configure it to use dhcp and"
#~ msgstr ""
#~ "Cree una nueva interfaz inalámbrica de enlace, configúrela para usar dhcp "
#~ "y"
#~ msgid "Down"
#~ msgstr "Abajo"
#~ msgid "Edit Firewall Configuration"
#~ msgstr "Editar la configuración del Firewall"
#~ msgid "Edit Network Configuration"
#~ msgstr "Editar la configuración de red"
#~ msgid "Edit Travelmate Configuration"
#~ msgstr "Editar la configuración de Travelmate"
#~ msgid "Edit Wireless Configuration"
#~ msgstr "Editar la configuración de Wi-Fi"
#~ msgid "Edit Wireless Uplink Configuration"
#~ msgstr "Editar la configuración del enlace inalámbrico"
#~ msgid "Edit this Uplink"
#~ msgstr "Editar este enlace"
#~ msgid "Enable Travelmate"
#~ msgstr "Activar Travelmate"
#~ msgid "Enable Verbose Debug Logging"
#~ msgstr "Activar registro de depuración detallado"
#~ msgid "Extra Options"
#~ msgstr "Opciones extra"
#~ msgid "Faulty Stations"
#~ msgstr "Estaciones defectuosas"
#~ msgid "Find and join network on"
#~ msgstr "Encuentra y unirse a la red en"
#~ msgid "For QR-Code support please install package 'qrencode'!"
#~ msgstr "Para soporte de código QR, instale el paquete 'qrencode'!"
#~ msgid ""
#~ "For further information <a href=\"%s\" target=\"_blank\">see online "
#~ "documentation</a>"
#~ msgstr ""
#~ "Para obtener más información <a href=\"%s\" target=\"_blank\">vea la "
#~ "documentación en línea</a>"
#~ msgid "Force CCMP (AES)"
#~ msgstr "Forzar CCMP (AES)"
#~ msgid "Force TKIP"
#~ msgstr "Forzar TKIP"
#~ msgid "Force TKIP and CCMP (AES)"
#~ msgstr "Forzar TKIP y CCMP (AES)"
#~ msgid "Grant UCI access for luci-app-travelmate"
#~ msgstr "Conceder acceso a UCI para luci-app-travelmate"
#~ msgid "Input file not found, please check your configuration."
#~ msgstr ""
#~ "Archivo de entrada no encontrado, por favor revise su configuración."
#~ msgid "List Auto Expiry"
#~ msgstr "Lista de caducidad automática"
#~ msgid "Loading"
#~ msgstr "Cargando"
#~ msgid "Move down"
#~ msgstr "Mover hacia abajo"
#~ msgid "Move up"
#~ msgstr "Mover hacia arriba"
#~ msgid "Name of the used uplink interface."
#~ msgstr "Nombre de la interfaz de enlace utilizada."
#~ msgid "Optional Arguments"
#~ msgstr "Argumentos opcionales"
#~ msgid ""
#~ "Options for further tweaking in case the defaults are not suitable for "
#~ "you."
#~ msgstr ""
#~ "Opciones para ajustes adicionales en caso de que los valores "
#~ "predeterminados no sean adecuados para usted."
#~ msgid "Passphrase"
#~ msgstr "Frase de acceso"
#~ msgid ""
#~ "Provides an overview of all configured uplinks for the travelmate "
#~ "interface (%s). You can edit, remove or re-order/prioritize existing "
#~ "uplinks or scan for new ones. The currently used uplink is emphasized in "
#~ "blue, faulty stations in red."
#~ msgstr ""
#~ "Proporciona una descripción general de todos los enlaces ascendentes "
#~ "configurados para la interfaz travelmate (%s). Puede editar, eliminar o "
#~ "reordenar/priorizar enlaces ascendentes existentes o buscar nuevos. El "
#~ "enlace ascendente utilizado actualmente se enfatiza en azul, las "
#~ "estaciones defectuosas en rojo."
#~ msgid "Radio Selection / Order"
#~ msgstr "Selección de Radio / Orden"
#~ msgid "Remove this Uplink"
#~ msgstr "Eliminar este enlace ascendente"
#~ msgid "Repeat scan"
#~ msgstr "Repetir escaneo"
#~ msgid "Restart"
#~ msgstr "Reiniciar"
#~ msgid "Restart Travelmate"
#~ msgstr "Reiniciar Travelmate"
#~ msgid ""
#~ "Restrict travelmate to a single radio (e.g. 'radio1') or change the "
#~ "overall scanning order (e.g. 'radio1 radio2 radio0')."
#~ msgstr ""
#~ "Restringir Travelmate a una sola radio (por ejemplo, 'radio1') o cambie "
#~ "el orden de exploración general (por ejemplo, 'radio1 radio2 radio0')."
#~ msgid "Runtime Information"
#~ msgstr "Información de tiempo de ejecución"
#~ msgid "Scan"
#~ msgstr "Escanear"
#~ msgid "Show/Hide QR-Codes"
#~ msgstr "Mostrar/Ocultar códigos QR"
#~ msgid "Signal strength"
#~ msgstr "Intensidad de señal"
#~ msgid "Station ID (RADIO/SSID/BSSID)"
#~ msgstr "ID de estación (RADIO/SSID/BSSID)"
#~ msgid ""
#~ "The BSSID information '%s' is optional and only required for hidden "
#~ "networks"
#~ msgstr ""
#~ "La información BSSID '%s' es opcional y solo se requiere para redes "
#~ "ocultas"
#~ msgid ""
#~ "This form allows you to modify the content of the main firewall "
#~ "configuration file (/etc/config/firewall)."
#~ msgstr ""
#~ "Este formulario le permite modificar el contenido del archivo de "
#~ "configuración del firewall principal (/etc/config/firewall)."
#~ msgid ""
#~ "This form allows you to modify the content of the main network "
#~ "configuration file (/etc/config/network)."
#~ msgstr ""
#~ "Este formulario le permite modificar el contenido del archivo de "
#~ "configuración de la red principal (/etc/config/network)."
#~ msgid ""
#~ "This form allows you to modify the content of the main travelmate "
#~ "configuration file (/etc/config/travelmate)."
#~ msgstr ""
#~ "Este formulario le permite modificar el contenido del archivo de "
#~ "configuración principal de travelmate (/etc/config/travelmate)."
#~ msgid ""
#~ "This form allows you to modify the content of the main wireless "
#~ "configuration file (/etc/config/wireless)."
#~ msgstr ""
#~ "Este formulario le permite modificar el contenido del archivo de "
#~ "configuración inalámbrica principal (/etc/config/wireless)."
#~ msgid "This step has only to be done once."
#~ msgstr "Este paso solo debe hacerse una vez."
#~ msgid "Travelmate Status (Quality)"
#~ msgstr "Estado de Travelmate (Calidad)"
#~ msgid "Travelmate Version"
#~ msgstr "Versión de Travelmate"
#~ msgid "Up"
#~ msgstr "Arriba"
#~ msgid "Uplink / Trigger interface"
#~ msgstr "Interfaz de enlace / disparador"
#~ msgid "Uplink BSSID"
#~ msgstr "BSSID de enlace"
#~ msgid "Uplink SSID"
#~ msgstr "SSID de enlace"
#~ msgid "View AP QR-Codes"
#~ msgstr "Ver códigos QR del AP"
#~ msgid "View Logfile"
#~ msgstr "Ver archivo de registro"
#~ msgid "WEP-Passphrase"
#~ msgstr "Frase de contraseña WEP"
#~ msgid "WPA Capabilities"
#~ msgstr "Capacidades WPA"
#~ msgid "WPA-Passphrase"
#~ msgstr "Frase de contraseña WPA"
#~ msgid "add it to the wan zone of the firewall."
#~ msgstr "añadir a la zona wan del firewall."
#~ msgid "hidden"
#~ msgstr "oculto"
#~ msgid "with SSID"
#~ msgstr "con SSID"
#~ msgid "Delete"
#~ msgstr "Eliminar"
#~ msgid "Delete this Uplink"
#~ msgstr "Eliminar este enlace"
#~ msgid "Open"
#~ msgstr "Abrir"
#~ msgid ""
#~ "Provides an overview of all configured uplinks for the travelmate "
#~ "interface (%s). You can edit, delete or re-order existing uplinks or scan "
#~ "for a new one. The currently used uplink is emphasized in blue, faulty "
#~ "stations in red."
#~ msgstr ""
#~ "Proporciona una descripción general de todos los enlaces configurados "
#~ "para la interfaz de travelmate (%s). Puede editar, eliminar o reordenar "
#~ "los enlaces existentes o escanear uno nuevo. El enlace utilizado "
#~ "actualmente se enfatiza en azul, las estaciones defectuosas en rojo."
#~ msgid ""
#~ "Space separated list of additional optional arguments passed to the Auto "
#~ "Login Script, i.e. username and password"
#~ msgstr ""
#~ "Lista separada por espacios de argumentos opcionales adicionales pasados "
#~ "al Script de inicio de sesión automático, es decir, nombre de usuario y "
#~ "contraseña"
#~ msgid "Unknown"
#~ msgstr "Desconocido"
#~ msgid "WEP"
#~ msgstr "WEP"
#~ msgid "WPA"
#~ msgstr "WPA"
#~ msgid "WPA/WPA2"
#~ msgstr "WPA/WPA2"
#~ msgid "WPA2"
#~ msgstr "WPA2"
|