blob: 84566847b9782d969fb6b2b00f08a32a46e33417 (
plain)
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
|
# statistics.po
# generated from ./applications/luci-statistics/luasrc/i18n/statistics.en.lua
msgid ""
msgstr "Content-Type: text/plain; charset=UTF-8"
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:1
#. Statistics
msgid "stat_statistics"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:2
#. The statistics package is based on <a href=\"http://collectd.org/index.shtml\">Collectd</a> and uses <a href=\"http://oss.oetiker.ch/rrdtool/\">RRD Tool</a> to render diagram images from collected data.
msgid "stat_desc"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:3
#. System plugins
msgid "stat_systemplugins"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:4
#. Network plugins
msgid "stat_networkplugins"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:5
#. Output plugins
msgid "stat_outputplugins"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:6
#. Display timespan »
msgid "stat_showtimespan"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:7
#. Graphs
msgid "stat_graphs"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:8
#. Collectd
msgid "stat_collectd"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:9
#. Processor
msgid "stat_cpu"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:10
#. Ping
msgid "stat_ping"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:11
#. Firewall
msgid "stat_iptables"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:12
#. Netlink
msgid "stat_netlink"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:13
#. Processes
msgid "stat_processes"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:14
#. Wireless
msgid "stat_wireless"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:15
#. TCP Connections
msgid "stat_tcpconns"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:16
#. Interfaces
msgid "stat_interface"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:17
#. Disk Space Usage
msgid "stat_df"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:18
#. Interrupts
msgid "stat_irq"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:19
#. Disk Usage
msgid "stat_disk"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:20
#. Exec
msgid "stat_exec"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:21
#. RRDTool
msgid "stat_rrdtool"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:22
#. Network
msgid "stat_network"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:23
#. CSV Output
msgid "stat_csv"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:24
#. System Load
msgid "stat_load"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:25
#. DNS
msgid "stat_dns"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:26
#. Email
msgid "stat_email"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:27
#. UnixSock
msgid "stat_unixsock"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:28
#. Statistics
msgid "lucistatistics"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:29
#. Collectd Settings
msgid "lucistatistics_collectd"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:30
#. Collectd is a small daeomon for collecting data from various sources through different plugins. On this page you can change general settings for the collectd daemon.
msgid "lucistatistics_collectd_desc"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:31
#. Hostname
msgid "lucistatistics_collectd_hostname"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:32
#. Base Directory
msgid "lucistatistics_collectd_basedir"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:33
#. Directory for sub-configurations
msgid "lucistatistics_collectd_include"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:34
#. Directory for collectd plugins
msgid "lucistatistics_collectd_plugindir"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:35
#. Used PID file
msgid "lucistatistics_collectd_pidfile"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:36
#. Datasets definition file
msgid "lucistatistics_collectd_typesdb"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:37
#. Data collection interval
msgid "lucistatistics_collectd_interval"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:38
#. Seconds
msgid "lucistatistics_collectd_interval_desc"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:39
#. Number of threads for data collection
msgid "lucistatistics_collectd_readthreads"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:40
#. Try to lookup fully qualified hostname
msgid "lucistatistics_collectd_fqdnlookup"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:41
#. CPU Plugin Configuration
msgid "lucistatistics_collectdcpu"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:42
#. The cpu plugin collects basic statistics about the processor usage.
msgid "lucistatistics_collectdcpu_desc"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:43
#. Enable this plugin
msgid "lucistatistics_collectdcpu_enable"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:44
#. CSV Plugin Configuration
msgid "lucistatistics_collectdcsv"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:45
#. The csv plugin stores collected data in csv file format for further processing by external programs.
msgid "lucistatistics_collectdcsv_desc"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:46
#. Enable this plugin
msgid "lucistatistics_collectdcsv_enable"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:47
#. Storage directory for the csv files
msgid "lucistatistics_collectdcsv_datadir"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:48
#. Store data values as rates instead of absolute values
msgid "lucistatistics_collectdcsv_storerates"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:49
#. DF Plugin Configuration
msgid "lucistatistics_collectddf"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:50
#. The df plugin collects statistics about the disk space usage on different devices, mount points or filesystem types.
msgid "lucistatistics_collectddf_desc"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:51
#. Enable this plugin
msgid "lucistatistics_collectddf_enable"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:52
#. Monitor devices
msgid "lucistatistics_collectddf_devices"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:53
#. multiple separated by space
msgid "lucistatistics_collectddf_devices_desc"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:54
#. Monitor mount points
msgid "lucistatistics_collectddf_mountpoints"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:55
#. multiple separated by space
msgid "lucistatistics_collectddf_mountpoints_desc"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:56
#. Monitor filesystem types
msgid "lucistatistics_collectddf_fstypes"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:57
#. multiple separated by space
msgid "lucistatistics_collectddf_fstypes_desc"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:58
#. Monitor all except selected ones
msgid "lucistatistics_collectddf_ignoreselected"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:59
#. Disk Plugin Configuration
msgid "lucistatistics_collectddisk"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:60
#. The disk plugin collects detailled usage statistics for selected partitions or whole disks.
msgid "lucistatistics_collectddisk_desc"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:61
#. Enable this plugin
msgid "lucistatistics_collectddisk_enable"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:62
#. Monitor disks and partitions
msgid "lucistatistics_collectddisk_disks"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:63
#. multiple separated by space
msgid "lucistatistics_collectddisk_disks_desc"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:64
#. Monitor all except selected ones
msgid "lucistatistics_collectddisk_ignoreselected"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:65
#. DNS Plugin Configuration
msgid "lucistatistics_collectddns"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:66
#. The dns plugin collects detailled statistics about dns related traffic on selected interfaces.
msgid "lucistatistics_collectddns_desc"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:67
#. Enable this plugin
msgid "lucistatistics_collectddns_enable"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:68
#. Monitor interfaces
msgid "lucistatistics_collectddns_interfaces"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:69
#. multiple separated by space
msgid "lucistatistics_collectddns_interfaces_desc"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:70
#. Ignore source addresses
msgid "lucistatistics_collectddns_ignoresources"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:71
#. hold Ctrl while clicking to select multiple interfaces
msgid "lucistatistics_collectddns_ignoresources_desc"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:72
#. E-Mail Plugin Configuration
msgid "lucistatistics_collectdemail"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:73
#. 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.
msgid "lucistatistics_collectdemail_desc"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:74
#. Enable this plugin
msgid "lucistatistics_collectdemail_enable"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:75
#. Filepath of the unix socket
msgid "lucistatistics_collectdemail_socketfile"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:76
#. Group ownership of the unix socket
msgid "lucistatistics_collectdemail_socketgroup"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:77
#. group name
msgid "lucistatistics_collectdemail_socketgroup_desc"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:78
#. File permissions of the unix socket
msgid "lucistatistics_collectdemail_socketperms"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:79
#. octal
msgid "lucistatistics_collectdemail_socketperms_desc"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:80
#. Maximum allowed connections
msgid "lucistatistics_collectdemail_maxconns"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:81
#. Exec Plugin Configuration
msgid "lucistatistics_collectdexec"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:82
#. The exec plugin starts external commands to read values from or to notify external processes when certain threshold values have been reached.
msgid "lucistatistics_collectdexec_desc"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:83
#. Enable this plugin
msgid "lucistatistics_collectdexec_enable"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:84
#. Add command for reading values
msgid "lucistatistics_collectdexecinput"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:85
#. 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.
msgid "lucistatistics_collectdexecinput_desc"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:86
#. Commandline
msgid "lucistatistics_collectdexecinput_cmdline"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:87
#. Run as user
msgid "lucistatistics_collectdexecinput_cmduser"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:88
#. Run as group
msgid "lucistatistics_collectdexecinput_cmdgroup"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:89
#. Add notification command
msgid "lucistatistics_collectdexecnotify"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:90
#. Here you can define external commands which will be started by collectd when certain threshold values have been reached. The values leading to invokation will be feeded to the the called programs stdin.
msgid "lucistatistics_collectdexecnotify_desc"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:91
#. Commandline
msgid "lucistatistics_collectdexecnotify_cmdline"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:92
#. Run as user
msgid "lucistatistics_collectdexecnotify_cmduser"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:93
#. Run as group
msgid "lucistatistics_collectdexecnotify_cmdgroup"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:94
#. Interface Plugin Configuration
msgid "lucistatistics_collectdinterface"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:95
#. The interface plugin collects traffic statistics on selected interfaces.
msgid "lucistatistics_collectdinterface_desc"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:96
#. Enable this plugin
msgid "lucistatistics_collectdinterface_enable"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:97
#. Monitor interfaces
msgid "lucistatistics_collectdinterface_interfaces"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:98
#. hold Ctrl while clicking to select multiple interfaces
msgid "lucistatistics_collectdinterface_interfaces_desc"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:99
#. Monitor all except selected ones
msgid "lucistatistics_collectdinterface_ignoreselected"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:100
#. Iptables Plugin Configuration
msgid "lucistatistics_collectdiptables"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:101
#. The iptables plugin will monitor selected firewall rules and collect informations about processed bytes and packets per rule.
msgid "lucistatistics_collectdiptables_desc"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:102
#. Enable this plugin
msgid "lucistatistics_collectdiptables_enable"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:103
#. Add matching rule
msgid "lucistatistics_collectdiptablesmatch"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:104
#. Here you can define various criteria by which the monitored iptables rules are selected.
msgid "lucistatistics_collectdiptablesmatch_desc"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:105
#. Name of the rule
msgid "lucistatistics_collectdiptablesmatch_name"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:106
#. max. 16 chars
msgid "lucistatistics_collectdiptablesmatch_name_desc"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:107
#. Table
msgid "lucistatistics_collectdiptablesmatch_table"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:108
#. Chain
msgid "lucistatistics_collectdiptablesmatch_chain"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:109
#. Action (target)
msgid "lucistatistics_collectdiptablesmatch_target"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:110
#. Network protocol
msgid "lucistatistics_collectdiptablesmatch_protocol"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:111
#. Source ip range
msgid "lucistatistics_collectdiptablesmatch_source"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:112
#. CIDR notation
msgid "lucistatistics_collectdiptablesmatch_source_desc"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:113
#. Destination ip range
msgid "lucistatistics_collectdiptablesmatch_destination"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:114
#. CIDR notation
msgid "lucistatistics_collectdiptablesmatch_destination_desc"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:115
#. Incoming interface
msgid "lucistatistics_collectdiptablesmatch_inputif"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:116
#. e.g. br-lan
msgid "lucistatistics_collectdiptablesmatch_inputif_desc"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:117
#. Outgoing interface
msgid "lucistatistics_collectdiptablesmatch_outputif"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:118
#. e.g. br-ff
msgid "lucistatistics_collectdiptablesmatch_outputif_desc"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:119
#. Options
msgid "lucistatistics_collectdiptablesmatch_options"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:120
#. e.g. reject-with tcp-reset
msgid "lucistatistics_collectdiptablesmatch_options_desc"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:121
#. IRQ Plugin Configuration
msgid "lucistatistics_collectdirq"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:122
#. 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.
msgid "lucistatistics_collectdirq_desc"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:123
#. Enable this plugin
msgid "lucistatistics_collectdirq_enable"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:124
#. Monitor interrupts
msgid "lucistatistics_collectdirq_irqs"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:125
#. multiple separated by space
msgid "lucistatistics_collectdirq_irqs_desc"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:126
#. Monitor all except selected ones
msgid "lucistatistics_collectdirq_ignoreselected"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:127
#. Load Plugin Configuration
msgid "lucistatistics_collectdload"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:128
#. The load plugin collects statistics about the general system load.
msgid "lucistatistics_collectdload_desc"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:129
#. Enable this plugin
msgid "lucistatistics_collectdload_enable"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:130
#. Netlink Plugin Configuration
msgid "lucistatistics_collectdnetlink"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:131
#. The netlink plugin collects extended informations like qdisc-, class- and filter-statistics for selected interfaces.
msgid "lucistatistics_collectdnetlink_desc"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:132
#. Enable this plugin
msgid "lucistatistics_collectdnetlink_enable"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:133
#. Basic monitoring
msgid "lucistatistics_collectdnetlink_interfaces"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:134
#. hold Ctrl while clicking to select multiple interfaces
msgid "lucistatistics_collectdnetlink_interfaces_desc"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:135
#. Verbose monitoring
msgid "lucistatistics_collectdnetlink_verboseinterfaces"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:136
#. hold Ctrl while clicking to select multiple interfaces
msgid "lucistatistics_collectdnetlink_verboseinterfaces_desc"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:137
#. Qdisc monitoring
msgid "lucistatistics_collectdnetlink_qdiscs"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:138
#. hold Ctrl while clicking to select multiple interfaces
msgid "lucistatistics_collectdnetlink_qdiscs_desc"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:139
#. Shaping class monitoring
msgid "lucistatistics_collectdnetlink_classes"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:140
#. hold Ctrl while clicking to select multiple interfaces
msgid "lucistatistics_collectdnetlink_classes_desc"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:141
#. Filter class monitoring
msgid "lucistatistics_collectdnetlink_filters"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:142
#. hold Ctrl while clicking to select multiple interfaces
msgid "lucistatistics_collectdnetlink_filters_desc"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:143
#. Monitor all except selected ones
msgid "lucistatistics_collectdnetlink_ignoreselected"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:144
#. Network Plugin Configuration
msgid "lucistatistics_collectdnetwork"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:145
#. 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 date is transferred to a collectd server instance, in server mode the local instance receives data from other hosts.
msgid "lucistatistics_collectdnetwork_desc"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:146
#. Enable this plugin
msgid "lucistatistics_collectdnetwork_enable"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:147
#. Listener interfaces
msgid "lucistatistics_collectdnetworklisten"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:148
#. This section defines on which interfaces collectd will wait for incoming connections.
msgid "lucistatistics_collectdnetworklisten_desc"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:149
#. Listen host
msgid "lucistatistics_collectdnetworklisten_host"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:150
#. host-, ip- or ip6 address
msgid "lucistatistics_collectdnetworklisten_host_desc"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:151
#. Listen port
msgid "lucistatistics_collectdnetworklisten_port"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:152
#. 0 - 65535
msgid "lucistatistics_collectdnetworklisten_port_desc"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:153
#. server interfaces
msgid "lucistatistics_collectdnetworkserver"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:154
#. This section defines to which servers the locally collected data is sent to.
msgid "lucistatistics_collectdnetworkserver_desc"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:155
#. Server host
msgid "lucistatistics_collectdnetworkserver_host"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:156
#. host-, ip- or ip6 address
msgid "lucistatistics_collectdnetworkserver_host_desc"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:157
#. Server port
msgid "lucistatistics_collectdnetworkserver_port"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:158
#. 0 - 65535
msgid "lucistatistics_collectdnetworkserver_port_desc"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:159
#. TTL for network packets
msgid "lucistatistics_collectdnetwork_timetolive"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:160
#. 0 - 255
msgid "lucistatistics_collectdnetwork_timetolive_desc"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:161
#. Forwarding between listen and server addresses
msgid "lucistatistics_collectdnetwork_forward"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:162
#. Cache flush interval
msgid "lucistatistics_collectdnetwork_cacheflush"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:163
#. seconds
msgid "lucistatistics_collectdnetwork_cacheflush_desc"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:164
#. Ping Plugin Configuration
msgid "lucistatistics_collectdping"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:165
#. The ping plugin will send icmp echo replies to selected hosts and measure the roundtrip time for each host.
msgid "lucistatistics_collectdping_desc"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:166
#. Enable this plugin
msgid "lucistatistics_collectdping_enable"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:167
#. Monitor hosts
msgid "lucistatistics_collectdping_hosts"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:168
#. multiple separated by space
msgid "lucistatistics_collectdping_hosts_desc"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:169
#. TTL for ping packets
msgid "lucistatistics_collectdping_ttl"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:170
#. 0 - 255
msgid "lucistatistics_collectdping_ttl_desc"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:171
#. Processes Plugin Configuration
msgid "lucistatistics_collectdprocesses"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:172
#. The processes plugin collects informations like cpu time, page faults and memory usage of selected processes.
msgid "lucistatistics_collectdprocesses_desc"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:173
#. Enable this plugin
msgid "lucistatistics_collectdprocesses_enable"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:174
#. Monitor processes
msgid "lucistatistics_collectdprocesses_processes"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:175
#. multiple separated by space
msgid "lucistatistics_collectdprocesses_processes_desc"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:176
#. RRDTool Plugin Configuration
msgid "lucistatistics_collectdrrdtool"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:177
#. 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>
msgid "lucistatistics_collectdrrdtool_desc"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:178
#. Enable this plugin
msgid "lucistatistics_collectdrrdtool_enable"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:179
#. Storage directory
msgid "lucistatistics_collectdrrdtool_datadir"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:180
#. RRD step interval
msgid "lucistatistics_collectdrrdtool_stepsize"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:181
#. seconds
msgid "lucistatistics_collectdrrdtool_stepsize_desc"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:182
#. RRD heart beat interval
msgid "lucistatistics_collectdrrdtool_heartbeat"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:183
#. seconds
msgid "lucistatistics_collectdrrdtool_heartbeat_desc"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:184
#. Only create average RRAs
msgid "lucistatistics_collectdrrdtool_rrasingle"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:185
#. reduces rrd size
msgid "lucistatistics_collectdrrdtool_rrasingle_desc"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:186
#. Stored timespans
msgid "lucistatistics_collectdrrdtool_rratimespans"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:187
#. seconds; multiple separated by space
msgid "lucistatistics_collectdrrdtool_rratimespans_desc"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:188
#. Rows per RRA
msgid "lucistatistics_collectdrrdtool_rrarows"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:189
#. RRD XFiles Factor
msgid "lucistatistics_collectdrrdtool_xff"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:190
#. Cache collected data for
msgid "lucistatistics_collectdrrdtool_cachetimeout"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:191
#. seconds
msgid "lucistatistics_collectdrrdtool_cachetimeout_desc"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:192
#. Flush cache after
msgid "lucistatistics_collectdrrdtool_cacheflush"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:193
#. seconds
msgid "lucistatistics_collectdrrdtool_cacheflush_desc"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:194
#. TCPConns Plugin Configuration
msgid "lucistatistics_collectdtcpconns"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:195
#. The tcpconns plugin collects informations about open tcp connections on selected ports.
msgid "lucistatistics_collectdtcpconns_desc"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:196
#. Enable this plugin
msgid "lucistatistics_collectdtcpconns_enable"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:197
#. Monitor all local listen ports
msgid "lucistatistics_collectdtcpconns_listeningports"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:198
#. Monitor local ports
msgid "lucistatistics_collectdtcpconns_localports"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:199
#. 0 - 65535; multiple separated by space
msgid "lucistatistics_collectdtcpconns_localports_desc"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:200
#. Monitor remote ports
msgid "lucistatistics_collectdtcpconns_remoteports"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:201
#. 0 - 65535; multiple separated by space
msgid "lucistatistics_collectdtcpconns_remoteports_desc"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:202
#. Unixsock Plugin Configuration
msgid "lucistatistics_collectdunixsock"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:203
#. The unixsock plugin creates a unix socket which can be used to read collected data from a running collectd instance.
msgid "lucistatistics_collectdunixsock_desc"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:204
#. Enable this plugin
msgid "lucistatistics_collectdunixsock_enable"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:205
#. Filepath of the unix socket
msgid "lucistatistics_collectdunixsock_socketfile"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:206
#. Group ownership of the unix socket
msgid "lucistatistics_collectdunixsock_socketgroup"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:207
#. group name
msgid "lucistatistics_collectdunixsock_socketgroup_desc"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:208
#. File permissions of the unix socket
msgid "lucistatistics_collectdunixsock_socketperms"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:209
#. octal
msgid "lucistatistics_collectdunixsock_socketperms_desc"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:210
#. Wireless Plugin Configuration
msgid "lucistatistics_collectdwireless"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:211
#. The wireless plugin collects statistics about wireless signal strength, noise and quality.
msgid "lucistatistics_collectdwireless_desc"
msgstr ""
#: ./applications/luci-statistics/luasrc/i18n/statistics.en.lua:212
#. Enable this plugin
msgid "lucistatistics_collectdwireless_enable"
msgstr ""
|