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
|
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-06-10 03:41+0200\n"
"PO-Revision-Date: 2019-10-25 17:54+0000\n"
"Last-Translator: Franco Castillo <castillofrancodamian@gmail.com>\n"
"Language-Team: Spanish <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsstatistics/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 3.9.1-dev\n"
#: applications/luci-app-statistics/luasrc/statistics/plugins/apcups.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7
msgid "APC UPS"
msgstr "APC UPS"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:5
msgid "APCUPS Plugin Configuration"
msgstr "Configuración del complemento APCUPS"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:15
msgid "Absolute values"
msgstr "Valores absolutos"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70
msgid "Action (target)"
msgstr "Acción (objetivo)"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:22
msgid "Add command for reading values"
msgstr "Añadir orden para leer valores"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34
msgid "Add matching rule"
msgstr "Añadir regla de coincidencia"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19
msgid "Add multiple hosts separated by space."
msgstr "Añadir múltiples hosts separados por espacio."
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:50
msgid "Add notification command"
msgstr "Añadir orden de notificación"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:24
msgid "Address family"
msgstr "Familia de direcciones"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23
msgid "Aggregate number of connected users"
msgstr "Agregar número de usuarios conectados"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:24
msgid "Base Directory"
msgstr "Directorio de base"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:24
msgid "Basic monitoring"
msgstr "Monitorización básica"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:18
msgid "By setting this, CPU is not aggregate of all processors on the system"
msgstr ""
"Al configurar esto, la CPU no es un agregado de todos los procesadores en el "
"sistema"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:4
msgid "CPU Context Switches Plugin Configuration"
msgstr "Configuración del complemento de conmutadores de contexto de CPU"
#: applications/luci-app-statistics/luasrc/statistics/plugins/cpufreq.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:9
msgid "CPU Frequency"
msgstr "Frecuencia de CPU"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:4
msgid "CPU Frequency Plugin Configuration"
msgstr "Configuración del complemento de frecuencia de la CPU"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:5
msgid "CPU Plugin Configuration"
msgstr "Configuración del complemento de CPU"
#: applications/luci-app-statistics/luasrc/statistics/plugins/csv.lua:7
msgid "CSV Output"
msgstr "Salida en CSV"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:5
msgid "CSV Plugin Configuration"
msgstr "Configuración del complemento de CSV"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91
msgid "Cache collected data for"
msgstr "Almacenar datos recopilados por"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78
msgid "Cache flush interval"
msgstr "Intervalo de limpieza de antememoria"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59
msgid "Chain"
msgstr "Cadena"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:24
msgid "CollectLinks"
msgstr "Enlaces"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:31
msgid "CollectRoutes"
msgstr "Rutas"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:38
msgid "CollectTopology"
msgstr "CollectTopology"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:8
msgid "Collectd Settings"
msgstr "Configuración de Collectd"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:9
msgid ""
"Collectd is a small daemon for collecting data from various sources through "
"different plugins. On this page you can change general settings for the "
"collectd daemon."
msgstr ""
"Collectd es un demonio para la recolección de datos desde varias fuentes a "
"través de la utilización de diferentes plugins. Aquí puede cambiar la "
"configuración general del demonio que maneja collectd."
#: applications/luci-app-statistics/luasrc/statistics/plugins/conntrack.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7
msgid "Conntrack"
msgstr "Seguimiento"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5
msgid "Conntrack Plugin Configuration"
msgstr "Configuración del seguimiento"
#: applications/luci-app-statistics/luasrc/statistics/plugins/contextswitch.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6
msgid "Context Switches"
msgstr "Conmutadores de contexto"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:5
msgid "DF Plugin Configuration"
msgstr "Configuración del complemento DF"
#: applications/luci-app-statistics/luasrc/statistics/plugins/dns.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7
msgid "DNS"
msgstr "DNS"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:8
msgid "DNS Plugin Configuration"
msgstr "Configuración del complemento DNS"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44
msgid "Data collection interval"
msgstr "Intervalo de recolección de datos"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:40
msgid "Datasets definition file"
msgstr "Archivo de definición de conjunto de datos"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96
msgid "Destination ip range"
msgstr "Intervalo de IP de destino"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:32
msgid "Directory for collectd plugins"
msgstr "Directorio para los complementos de connectd"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:28
msgid "Directory for sub-configurations"
msgstr "Directorio para las subconfiguraciones"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:5
msgid "Disk Plugin Configuration"
msgstr "Configuración del complemento Disco"
#: applications/luci-app-statistics/luasrc/statistics/plugins/df.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7
msgid "Disk Space Usage"
msgstr "Uso de espacio en disco"
#: applications/luci-app-statistics/luasrc/statistics/plugins/disk.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7
msgid "Disk Usage"
msgstr "Uso de disco"
#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:17
msgid "Display Host »"
msgstr "Mostrar Host »"
#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:23
msgid "Display timespan »"
msgstr "Mostrar lapso de tiempo »"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:5
msgid "E-Mail Plugin Configuration"
msgstr "Configuración del complemento Correo electrónico"
#: applications/luci-app-statistics/luasrc/statistics/plugins/email.lua:7
msgid "Email"
msgstr "Correo electrónico"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:19
msgid "Empty value = monitor all"
msgstr "Valor vacío = monitorizar todo"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:17
msgid "Enable"
msgstr "Activar"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:15
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:18
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:18
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:10
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:16
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:18
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:28
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:16
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:12
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:14
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:10
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:20
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:18
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:9
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:10
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:13
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:15
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:15
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:18
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:70
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:10
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:15
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:14
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:15
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10
msgid "Enable this plugin"
msgstr "Activar este complemento"
#: applications/luci-app-statistics/luasrc/statistics/plugins/entropy.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7
msgid "Entropy"
msgstr "Entropía"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:5
msgid "Entropy Plugin Configuration"
msgstr "Configuración del complemento Entropía"
#: applications/luci-app-statistics/luasrc/statistics/plugins/exec.lua:2
msgid "Exec"
msgstr "Exec"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:5
msgid "Exec Plugin Configuration"
msgstr "Configuración del plugin Exec"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15
msgid "Extra items"
msgstr "Ítems extra"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:68
msgid "Filter class monitoring"
msgstr "Monitorización del filtro de clases"
#: applications/luci-app-statistics/luasrc/statistics/plugins/iptables.lua:2
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7
msgid "Firewall"
msgstr "Firewall"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100
msgid "Flush cache after"
msgstr "Vaciar caché tras"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:71
msgid "Forwarding between listen and server addresses"
msgstr "Reenviar entre las direcciones de escucha y servidor"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29
msgid "Gather compression statistics"
msgstr "Recopilar estadísticas de compresión"
#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23
msgid "General plugins"
msgstr "Complementos generales"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17
msgid "Generate a separate graph for each logged user"
msgstr "Genera un gráfico separado para cada usuario registrado"
#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:73
msgid "Graphs"
msgstr "Gráficas"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:42
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:71
msgid "Group"
msgstr "Grupo"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:23
msgid ""
"Here you can define external commands which will be started by collectd in "
"order to read certain values. The values will be read from stdout."
msgstr ""
"Aquí puede definir los comandos externos que iniciará collectd para leer "
"ciertos valores. Los valores se leen desde la salida estándar (stdout)."
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:51
msgid ""
"Here you can define external commands which will be started by collectd when "
"certain threshold values have been reached. The values leading to invocation "
"will be fed to the the called programs stdin."
msgstr ""
"Aquí puede definir los comandos externos que iniciará collectd cuando se "
"alcancen ciertos valores umbral."
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35
msgid ""
"Here you can define various criteria by which the monitored iptables rules "
"are selected."
msgstr ""
"Aquí puede definir varios criterios de selección de reglas de iptables "
"monitorizadas."
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86
msgid "Hold Ctrl to select multiple items or to deselect entries."
msgstr ""
"Mantenga presionada la tecla Ctrl para seleccionar varios elementos o para "
"deseleccionar entradas."
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13
msgid "Host"
msgstr "Host"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:19
msgid "Hostname"
msgstr "Nombre de host"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13
msgid "IP or hostname where to get the txtinfo output from"
msgstr "IP o nombre de máquina desde la que obtener la salida de txtinfo"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:5
msgid "IRQ Plugin Configuration"
msgstr "Configuración del plugin IRQ"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:32
msgid "Ignore source addresses"
msgstr "Ignorar direcciones de origen"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103
msgid "Incoming interface"
msgstr "Interfaz de entrada"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:8
msgid "Interface Plugin Configuration"
msgstr "Configuración del interfaz de plugins"
#: applications/luci-app-statistics/luasrc/statistics/plugins/interface.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7
msgid "Interfaces"
msgstr "Interfaces"
#: applications/luci-app-statistics/luasrc/statistics/plugins/irq.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7
msgid "Interrupts"
msgstr "Interrupciones"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:38
msgid "Interval for pings"
msgstr "Intervalo entre pings"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18
msgid "Iptables Plugin Configuration"
msgstr "Configuración del plugin Iptables"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:16
msgid "Leave unselected to automatically determine interfaces to monitor."
msgstr "No marcar para determinar automáticamente que interfaces monitorizar."
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:33
msgid "Listen host"
msgstr "Máquina de escucha"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:37
msgid "Listen port"
msgstr "Puerto de escucha"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:24
msgid "Listener interfaces"
msgstr "Interfaces para escuchar"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:5
msgid "Load Plugin Configuration"
msgstr "Configuración del plugin de carga"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:60
msgid ""
"Max values for a period can be used instead of averages when not using 'only "
"average RRAs'"
msgstr ""
"Los valores máximos para un período se pueden usar en lugar de los promedios "
"cuando no se usa 'only average RRAs'"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:41
msgid "Maximum allowed connections"
msgstr "Máximo número de conexiones"
#: applications/luci-app-statistics/luasrc/statistics/plugins/memory.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:7
msgid "Memory"
msgstr "Memoria"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5
msgid "Memory Plugin Configuration"
msgstr "Configuración del plugin Memoria"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:37
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:25
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:31
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:25
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:22
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:79
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:118
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:24
msgid "Monitor all except specified"
msgstr "Monitorizar todos menos los especificados"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:19
msgid "Monitor all local listen ports"
msgstr "Monitorizar todos los puertos de escucha locales"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74
msgid "Monitor all sensors"
msgstr "Monitorear todos los sensores"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:18
msgid "Monitor device(s) / thermal zone(s)"
msgstr "Dispositivo(s) de monitoreo / zona(s) térmica(es)"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:19
msgid "Monitor devices"
msgstr "Dispositivos a monitonizar"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:19
msgid "Monitor disks and partitions"
msgstr "Monitorizar discos y particiones"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:31
msgid "Monitor filesystem types"
msgstr "Monitorizar tipos de sistema de archivos"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18
msgid "Monitor host"
msgstr "Monitor de host"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19
msgid "Monitor hosts"
msgstr "Monitorizar máquinas"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:22
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:22
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:15
msgid "Monitor interfaces"
msgstr "Monitorizar interfaces"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:20
msgid "Monitor interrupts"
msgstr "Monitorizar interrupciones"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:24
msgid "Monitor local ports"
msgstr "Monitorizar puertos locales"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:25
msgid "Monitor mount points"
msgstr "Monitorizar puntos de montaje"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:19
msgid "Monitor processes"
msgstr "Monitorizar procesos"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:29
msgid "Monitor remote ports"
msgstr "Monitorizar puertos remotos"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15
msgid "More details about frequency usage and transitions"
msgstr "Más detalles sobre el uso de frecuencia y las transiciones"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:20
msgid "Name"
msgstr "Nombre"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45
msgid "Name of the rule"
msgstr "Nombre de la regla"
#: applications/luci-app-statistics/luasrc/statistics/plugins/netlink.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7
msgid "Netlink"
msgstr "Enlace de red"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:10
msgid "Netlink Plugin Configuration"
msgstr "Configuración del plugin \"enlace de red\""
#: applications/luci-app-statistics/luasrc/statistics/plugins/network.lua:2
msgid "Network"
msgstr "Red"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:5
msgid "Network Plugin Configuration"
msgstr "Configuración del plugin \"Red\""
#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24
msgid "Network plugins"
msgstr "Plugins de red"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81
msgid "Network protocol"
msgstr "Protocolo de red"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:24
msgid ""
"Note: as pages are rendered by user 'nobody', the *.rrd files, the storage "
"directory and all its parent directories need to be world readable."
msgstr ""
"Nota: como las páginas son representadas por el usuario 'nobody', los "
"archivos *.rrd, el directorio de almacenamiento y todos sus directorios "
"principales deben ser legibles en todo el mundo."
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:49
msgid "Number of threads for data collection"
msgstr "Número de hilos para recolección de datos"
#: applications/luci-app-statistics/luasrc/statistics/plugins/olsrd.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7
msgid "OLSRd"
msgstr "OLSRd"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:5
msgid "OLSRd Plugin Configuration"
msgstr "Configuración del plugin \"OLSRd\""
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53
msgid "Only create average RRAs"
msgstr "Crear sólo RRAs medias"
#: applications/luci-app-statistics/luasrc/statistics/plugins/openvpn.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7
msgid "OpenVPN"
msgstr "OpenVPN"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7
msgid "OpenVPN Plugin Configuration"
msgstr "Configuración del complemento \"OpenVPN\""
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41
msgid "OpenVPN status files"
msgstr "Archivos de estado de OpenVPN"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115
msgid "Options"
msgstr "Opciones"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109
msgid "Outgoing interface"
msgstr "Interfaz de salida"
#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:22
msgid "Output plugins"
msgstr "Plugins de salida"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:23
msgid "Percent values"
msgstr "Valores porcentuales"
#: applications/luci-app-statistics/luasrc/statistics/plugins/ping.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7
msgid "Ping"
msgstr "Ping"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:5
msgid "Ping Plugin Configuration"
msgstr "Configuración del plugin \"Ping\""
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:18
msgid "Port"
msgstr "Puerto"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:23
msgid "Port for apcupsd communication"
msgstr "Puerto para comunicación apcupsd"
#: applications/luci-app-statistics/luasrc/statistics/plugins/processes.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7
msgid "Processes"
msgstr "Procesos"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:5
msgid "Processes Plugin Configuration"
msgstr "Configuración del plugin \"Procesos\""
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:20
msgid "Processes to monitor separated by space"
msgstr "Procesos a monitorizar (separados por espacios)"
#: applications/luci-app-statistics/luasrc/statistics/plugins/cpu.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:10
msgid "Processor"
msgstr "Procesador"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:46
msgid "Qdisc monitoring"
msgstr "Monitorización Qdisc"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:82
msgid "RRD XFiles Factor"
msgstr "Factor XFiles RRD"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44
msgid "RRD heart beat interval"
msgstr "Intervalo de pulso RRD"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35
msgid "RRD step interval"
msgstr "Intervalo de paso RRD"
#: applications/luci-app-statistics/luasrc/statistics/plugins/rrdtool.lua:7
msgid "RRDTool"
msgstr "Herramienta RRD"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:5
msgid "RRDTool Plugin Configuration"
msgstr "Configuración del plugin \"Herramienta RRD\""
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:17
msgid "Report by CPU"
msgstr "Informe por CPU"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:24
msgid "Report by state"
msgstr "Informe por estado"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:31
msgid "Report in percent"
msgstr "Informe en porcentaje"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:74
msgid "Rows per RRA"
msgstr "Filas por RRA"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:32
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:61
msgid "Script"
msgstr "Script"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:38
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100
msgid "Seconds"
msgstr "Segundos"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86
msgid "Sensor list"
msgstr "Lista de sensores"
#: applications/luci-app-statistics/luasrc/statistics/plugins/sensors.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7
msgid "Sensors"
msgstr "Sensors"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64
msgid "Sensors Plugin Configuration"
msgstr "Configuración del plugin \"Sensors\""
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:54
msgid "Server host"
msgstr "Host servidor"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:58
msgid "Server port"
msgstr "Puerto servidor"
#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48
msgid "Setup"
msgstr "Configuración"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:57
msgid "Shaping class monitoring"
msgstr "Monitorización de la clase shaping"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:59
msgid "Show max values instead of averages"
msgstr "Mostrar valores máximos en lugar de promedios"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:22
msgid "Socket file"
msgstr "Fichero de sockets"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:27
msgid "Socket group"
msgstr "Grupo socket"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:34
msgid "Socket permissions"
msgstr "Permisos para socket"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90
msgid "Source ip range"
msgstr "Rango de direcciones IP origen"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:25
msgid "Specifies what information to collect about links."
msgstr "Especifica qué información recolectar sobre enlaces."
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:32
msgid "Specifies what information to collect about routes."
msgstr "Especifica qué información recolectar sobre rutas."
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:39
msgid "Specifies what information to collect about the global topology."
msgstr "Especifica qué información recolectar sobre la topología global."
#: applications/luci-app-statistics/luasrc/statistics/plugins/splash_leases.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7
msgid "Splash Leases"
msgstr "Splash Leases"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:5
msgid "Splash Leases Plugin Configuration"
msgstr "Configuración del complemento \"Splash Leases\""
#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:45
#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:9
#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:9
msgid "Statistics"
msgstr "Estadísticas"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:23
msgid "Storage directory"
msgstr "Directorio de guardado"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:19
msgid "Storage directory for the csv files"
msgstr "Directorio para guardar archivos csv"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:24
msgid "Store data values as rates instead of absolute values"
msgstr "Guardar datos como ratios en vez de valores absolutos"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67
msgid "Stored timespans"
msgstr "Intervalos almacenados"
#: applications/luci-app-statistics/luasrc/statistics/plugins/load.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7
msgid "System Load"
msgstr "Carga del sistema"
#: applications/luci-app-statistics/luasrc/statistics/plugins/tcpconns.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7
msgid "TCP Connections"
msgstr "Conexiones TCP"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:5
msgid "TCPConns Plugin Configuration"
msgstr "Configuración del plugin \"Conexiones TCP\""
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:64
msgid "TTL for network packets"
msgstr "TTL para paquetes de red"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:32
msgid "TTL for ping packets"
msgstr "TTL para paquetes de ping"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48
msgid "Table"
msgstr "Tabla"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:6
msgid "The APCUPS plugin collects statistics about the APC UPS."
msgstr "El complemento APCUPS recopila estadísticas sobre el APC UPS."
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:5
msgid "The NUT plugin reads information about Uninterruptible Power Supplies."
msgstr ""
"El plugin NUT obtiene información sobre Sistemas de Alimentación "
"Ininterrumpida."
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:6
msgid ""
"The OLSRd plugin reads information about meshed networks from the txtinfo "
"plugin of OLSRd."
msgstr ""
"El plugin OLSRd lee información sobre redes distribuidas desde el plugin "
"txtinfo de OLSRd."
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8
msgid ""
"The OpenVPN plugin gathers information about the current vpn connection "
"status."
msgstr ""
"El complemento OpenVPN recopila información sobre el estado actual de la "
"conexión vpn."
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6
msgid ""
"The conntrack plugin collects statistics about the number of tracked "
"connections."
msgstr ""
"El plugin \"Seguimiento\" recoge estadísticas sobre el número de conexiones "
"analizadas."
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:6
msgid "The cpu plugin collects basic statistics about the processor usage."
msgstr ""
"El plugin \"CPU\" recolecta estadísticas básicas acerca del uso del "
"procesador."
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:6
msgid ""
"The csv plugin stores collected data in csv file format for further "
"processing by external programs."
msgstr ""
"El plugin \"CSV\" almacena los datos recolectados en un archivo con formato "
"csv para su procesado posterior con programas de terceros."
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:6
msgid ""
"The df plugin collects statistics about the disk space usage on different "
"devices, mount points or filesystem types."
msgstr ""
"El plugin \"DF\" recolecta estadísticas acerca del uso del espacio en disco "
"en diferentes dispositivos, puntos de montaje y tipos de sistema de archivos."
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:6
msgid ""
"The disk plugin collects detailed usage statistics for selected partitions "
"or whole disks."
msgstr ""
"El plugin \"Disco\" recolecta estadísticas detallada acerca de su "
"utilización para las particiones seleccionadas o bien el disco completo."
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:9
msgid ""
"The dns plugin collects detailed statistics about dns related traffic on "
"selected interfaces."
msgstr ""
"El plugin \"DNS\" recolecta estadísticas detalladas acerca del trafico DNS "
"en las interfaces seleccionadas."
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:6
msgid ""
"The email plugin creates a unix socket which can be used to transmit email-"
"statistics to a running collectd daemon. This plugin is primarily intended "
"to be used in conjunction with Mail::SpamAssasin::Plugin::Collectd but can "
"be used in other ways as well."
msgstr ""
"El plugin \"eMail\" crea un socket de unix (unix-socket) que puede "
"utilizarse para transmitir estadísticas de email a un demonio collectd en "
"ejecución. Este plugin fue desarrollado, en primer instancia, para ser "
"utilizado en conjunto con Mail::SpamAssasin::Plugin::Collectd pero puede "
"utilizarse de diferentes formas."
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:6
msgid "The entropy plugin collects statistics about the available entropy."
msgstr ""
"El plugin \"Entropy\" recopila estadísticas sobre la entropía disponible."
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:6
msgid ""
"The exec plugin starts external commands to read values from or to notify "
"external processes when certain threshold values have been reached."
msgstr ""
"El complemento exec inicia órdenes externas para leer valores o notificar a "
"procesos externos cuando determinados valores de umbral se alcanzan."
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:9
msgid ""
"The interface plugin collects traffic statistics on selected interfaces."
msgstr ""
"El complemento de interfaz recoge estadísticas de tráfico en las interfaces "
"seleccionadas."
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19
msgid ""
"The iptables plugin will monitor selected firewall rules and collect "
"information about processed bytes and packets per rule."
msgstr ""
"El plugin \"iptables\" monitoriza las reglas seleccionadas del Firewall y "
"recoge información de bytes y paquetes procesados por cada regla."
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:6
msgid ""
"The irq plugin will monitor the rate of issues per second for each selected "
"interrupt. If no interrupt is selected then all interrupts are monitored."
msgstr ""
"El plugin \"IRQ\" monitorizará las activaciones por segundo de cada "
"interrupción elegida. Si no se selecciona ninguna se monitorizarán todas."
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:8
msgid ""
"The iwinfo plugin collects statistics about wireless signal strength, noise "
"and quality."
msgstr ""
"El plugin \"iwinfo\" recolecta estadísticas sobre la potencia de la señal "
"inalámbrica, ruido y calidad."
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:6
msgid "The load plugin collects statistics about the general system load."
msgstr ""
"El plugin \"carga\" recoge estadísticas sobre la carga general del sistema."
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6
msgid "The memory plugin collects statistics about the memory usage."
msgstr "El plugin \"memoria\" recoge estadísticas sobre el uso de memoria."
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:11
msgid ""
"The netlink plugin collects extended information like qdisc-, class- and "
"filter-statistics for selected interfaces."
msgstr ""
"El plugin \"netlink\" recoge informaciones extendidas como estadísticas "
"qdisc-, clase- y filtro- para las interfaces seleccionadas."
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:6
msgid ""
"The network plugin provides network based communication between different "
"collectd instances. Collectd can operate both in client and server mode. In "
"client mode locally collected data is transferred to a collectd server "
"instance, in server mode the local instance receives data from other hosts."
msgstr ""
"El plugin \"red\" proporciona comunicación entre diferentes instancias de "
"collectd. Collectd puede operar tanto en modo cliente como en modo servidor. "
"En modo cliente la información recogida se envía a una instancia que se "
"encuentre en modo servidor. En modo servidor la instancia recibe datos de "
"otras máquinas."
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:6
msgid ""
"The ping plugin will send icmp echo replies to selected hosts and measure "
"the roundtrip time for each host."
msgstr ""
"El plugin \"ping\" enviará ecos ICMP a las máquinas elegifas para medir el "
"tiempo de viaje para cada host."
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:6
msgid ""
"The processes plugin collects information like cpu time, page faults and "
"memory usage of selected processes."
msgstr ""
"El plugin \"procesos\" recoge información como tiempo de CPU, fallos de "
"página y uso de memoria de los procesos elegidos."
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:6
msgid ""
"The rrdtool plugin stores the collected data in rrd database files, the "
"foundation of the diagrams.<br /><br /><strong>Warning: Setting the wrong "
"values will result in a very high memory consumption in the temporary "
"directory. This can render the device unusable!</strong>"
msgstr ""
"El plugin \"rrdtool\" almacena datos en ficheros de bb.dd. RRD que son la "
"base para los diagramas.<br /><br /><strong>¡Ojo: Configurar valores "
"incorrectos puede hacer que se use mucho espacio en el directorio temporal y "
"puede hacer que el dispositivo funcione mal!</strong>"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65
msgid ""
"The sensors plugin uses the Linux Sensors framework to gather environmental "
"statistics."
msgstr ""
"El plugin \"sensors\" usa el marco de trabajo de sensores de Linux para "
"recopilar estadísticas ambientales."
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:6
msgid ""
"The splash leases plugin uses libuci to collect statistics about splash "
"leases."
msgstr ""
"El plugin \"splash leases\" usa libuci para recopilar estadísticas sobre los "
"arrendamientos de salpicaduras."
#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:11
msgid ""
"The statistics package uses <a href=\"https://collectd.org/\">Collectd</a> "
"to gather data and <a href=\"http://oss.oetiker.ch/rrdtool/\">RRDtool</a> to "
"render diagram images."
msgstr ""
"El paquete de estadísticas utiliza <a href=\"https://collectd.org/"
"\">Collectd</a> para recopilar datos y <a href=\"http://oss.oetiker.ch/"
"rrdtool/\">RRDtool</a> para renderizar imágenes de diagramas."
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:6
msgid ""
"The tcpconns plugin collects information about open tcp connections on "
"selected ports."
msgstr ""
"El plugin \"tcpconns\" recoge información de conexiones TCP abiertas en los "
"puertos seleccionados."
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:5
msgid ""
"The thermal plugin will monitor temperature of the system. Data is typically "
"read from /sys/class/thermal/*/temp ( '*' denotes the thermal device to be "
"read, e.g. thermal_zone1 )"
msgstr ""
"El plugin \"thermal\" controlará la temperatura del sistema. Los datos se "
"leen normalmente desde /sys/class/thermal/*/temp ('*' indica el dispositivo "
"térmico que se va a leer, por ejemplo, thermal_zone1)"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:6
msgid ""
"The unixsock plugin creates a unix socket which can be used to read "
"collected data from a running collectd instance."
msgstr ""
"El plugin \"unixsock\" crea un socket UNIX que se puede usar para leer los "
"datos recogidos por una instancia collectd."
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6
msgid "The uptime plugin collects statistics about the uptime of the system."
msgstr ""
"El plugin \"uptime\" recopila estadísticas sobre el tiempo de actividad del "
"sistema."
#: applications/luci-app-statistics/luasrc/statistics/plugins/thermal.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6
msgid "Thermal"
msgstr "Thermal"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:4
msgid "Thermal Plugin Configuration"
msgstr "Configuración del plugin Thermal"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:5
msgid "This plugin collects statistics about the processor context switches."
msgstr ""
"Este plugin recopila estadísticas sobre los cambios de contexto del "
"procesador."
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:5
msgid "This plugin collects statistics about the processor frequency scaling."
msgstr ""
"Este plugin recopila estadísticas sobre la escala de frecuencia del "
"procesador."
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:25
msgid ""
"This section defines on which interfaces collectd will wait for incoming "
"connections."
msgstr ""
"Esta sección define sobre qué interfaces collectd esperará conexiones "
"entrantes."
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:46
msgid ""
"This section defines to which servers the locally collected data is sent to."
msgstr ""
"Esta sección define a qué servidores se envían los datos recolectados "
"localmente."
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:54
msgid "Try to lookup fully qualified hostname"
msgstr "Intenta resolver el nombre de máquina cualificado"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12
#: applications/luci-app-statistics/luasrc/statistics/plugins/nut.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6
msgid "UPS"
msgstr "SAI"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:4
msgid "UPS Plugin Configuration"
msgstr "Configuración del plugin SAI"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12
msgid "UPS name in NUT ups@host format"
msgstr "Nombre del SAI en el formato de NUT sai@máquina"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:22
msgid "URL"
msgstr "URL"
#: applications/luci-app-statistics/luasrc/statistics/plugins/unixsock.lua:7
msgid "UnixSock"
msgstr "Socket UNIX"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:5
msgid "Unixsock Plugin Configuration"
msgstr "Configuración del plugin \"UnixSock\""
#: applications/luci-app-statistics/luasrc/statistics/plugins/uptime.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15
msgid "Uptime"
msgstr "Tiempo activo"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5
msgid "Uptime Plugin Configuration"
msgstr "Configuración del plugin Uptime"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35
msgid "Use improved naming schema"
msgstr "Usar un esquema de nombres mejorado"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:36
msgid "Used PID file"
msgstr "Archivo PID utilizado"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:36
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:65
msgid "User"
msgstr "Usuario"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:35
msgid "Verbose monitoring"
msgstr "Monitorización detallada"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:25
msgid "When set to true, reports per-state metric (system, user, idle)"
msgstr ""
"Cuando se establece en verdadero, informa métrica por estado (sistema, "
"usuario, inactivo)"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:16
msgid "When set to true, we request absolute values"
msgstr "Cuando se establece en verdadero, se solicita valores absolutos"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:32
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:24
msgid "When set to true, we request percentage values"
msgstr "Cuando se establece en verdadero, se solicita valores de porcentaje"
#: applications/luci-app-statistics/luasrc/statistics/plugins/iwinfo.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7
msgid "Wireless"
msgstr "WiFi"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:7
msgid "Wireless iwinfo Plugin Configuration"
msgstr "Configuración plugin \"Wireless iwinfo\""
#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:15
msgid ""
"You can install additional collectd-mod-* plugins to enable more statistics."
msgstr ""
"Puede instalar plugins collectd-mod-* adicionales para habilitar más "
"estadísticas."
#: applications/luci-app-statistics/luasrc/statistics/plugins/curl.lua:2
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7
msgid "cUrl"
msgstr "cUrl"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:5
msgid "cUrl Plugin Configuration"
msgstr "Configuración de plugin de cUrl"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109
msgid "e.g. br-ff"
msgstr "p.e. br-ff"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103
msgid "e.g. br-lan"
msgstr "p.e. br-lan"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115
msgid "e.g. reject-with tcp-reset"
msgstr "p.e. reject-with tcp-reset"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45
msgid "max. 16 chars"
msgstr "16 caracteres máximo"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53
msgid "reduces rrd size"
msgstr "reduce el tamaño RRD"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67
msgid "seconds; multiple separated by space"
msgstr "segundos (varios separados por espacio)"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:45
msgid "server interfaces"
msgstr "interfaces de servidores"
|