-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathlanguages.json
More file actions
1811 lines (1811 loc) · 69.3 KB
/
languages.json
File metadata and controls
1811 lines (1811 loc) · 69.3 KB
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
{
"languages": {
"en": {
"name": "English",
"translations": {
"app_title": "SNMP Browser - Production Ready",
"file": "File",
"tools": "Tools",
"help": "Help",
"save_configuration": "Save Configuration",
"load_configuration": "Load Configuration",
"profile_manager": "Profile Manager",
"export_results": "Export Results",
"view_logs": "View Logs",
"exit": "Exit",
"test_connection": "Test Connection",
"full_snmp_walk": "Full SNMP Walk",
"batch_operations": "Batch Operations",
"trap_receiver": "Trap Receiver",
"performance_monitor": "Performance Monitor",
"load_mib": "Load MIB",
"search_mib": "Search MIB",
"snmp_hex_decoder": "SNMP Hex Decoder",
"snmpv3_wizard": "SNMPv3 Wizard",
"discover_engine_id": "Discover Engine ID",
"clear_cache": "Clear Cache",
"settings": "Settings",
"shortcuts": "Shortcuts",
"debug_info": "Debug Info",
"about": "About",
"language": "Language",
"select_language": "Select Language",
"snmp_configuration": "SNMP Configuration",
"profile": "Profile",
"save": "Save",
"manage": "Manage",
"host": "Host",
"port": "Port",
"version": "Version",
"community": "Community",
"timeout": "Timeout",
"retries": "Retries",
"extended_scan": "Extended Scan",
"start_scan": "Start Scan",
"stop": "Stop",
"test": "Test",
"batch": "Batch",
"snmpv3_configuration": "SNMPv3 Configuration",
"username": "Username",
"auth": "Auth",
"auth_pass": "Auth Pass",
"priv": "Priv",
"priv_pass": "Priv Pass",
"show": "Show",
"engine_id": "Engine ID",
"test_v3": "Test v3",
"browser": "Browser",
"dashboard": "Dashboard",
"mib_tree": "MIB Tree",
"trap_manager": "Trap Manager",
"performance": "Performance",
"status": "Status",
"ready": "Ready",
"trap_receiver_tab": "Trap Receiver",
"trap_sender": "Trap Sender",
"trap_receiver_controls": "Trap Receiver Controls",
"status_inactive": "Status: Inactive",
"status_active": "Status: Active (port {port})",
"start_receiver": "Start Receiver",
"stop_receiver": "Stop Receiver",
"clear": "Clear",
"export": "Export",
"trap_destination": "Trap Destination",
"trap_type": "Trap Type",
"trap_parameters": "Trap Parameters",
"test_trap": "Test Trap",
"cold_start": "Cold Start",
"warm_start": "Warm Start",
"link_down": "Link Down",
"link_up": "Link Up",
"authentication_failure": "Authentication Failure",
"ups_on_battery": "UPS on Battery",
"ups_battery_low": "UPS Battery Low",
"custom": "Custom",
"send_trap": "Send Trap",
"test_loop": "Test Loop (5x)",
"templates": "Templates",
"message": "Message",
"interface": "Interface",
"ups": "UPS",
"interface_index": "Interface Index",
"interface_name": "Interface Name",
"battery_charge": "Battery Charge (%)",
"runtime": "Runtime (min)",
"load": "Load (%)",
"temperature": "Temperature (°C)",
"trap_oid": "Trap OID",
"varbinds": "Varbinds (OID=Value)",
"performance_controls": "Performance Controls",
"refresh": "Refresh",
"reset": "Reset",
"current_metrics": "Current Metrics",
"performance_graphs": "Performance Graphs",
"statistics": "Statistics",
"traps_received": "Traps received: {count}",
"hex_input": "Hex Input (paste here)",
"decoding_result": "Decoding Result",
"decode": "Decode",
"close": "Close",
"basic_info": "Basic Info",
"timestamp": "Timestamp",
"source": "Source",
"type": "Type",
"size": "Size",
"data": "Data",
"oid": "OID",
"value": "Value",
"description": "Description",
"error": "Error",
"warning": "Warning",
"success": "Success",
"info": "Info",
"yes": "Yes",
"no": "No",
"ok": "OK",
"cancel": "Cancel",
"apply": "Apply",
"add": "Add",
"remove": "Remove",
"edit": "Edit",
"delete": "Delete",
"search": "Search",
"filter": "Filter",
"copy": "Copy",
"paste": "Paste",
"select_all": "Select All",
"name": "Name",
"details": "Details",
"options": "Options"
}
},
"es": {
"name": "Español",
"translations": {
"app_title": "Navegador SNMP - Listo para Producción",
"file": "Archivo",
"tools": "Herramientas",
"help": "Ayuda",
"save_configuration": "Guardar Configuración",
"load_configuration": "Cargar Configuración",
"profile_manager": "Administrador de Perfiles",
"export_results": "Exportar Resultados",
"view_logs": "Ver Registros",
"exit": "Salir",
"test_connection": "Probar Conexión",
"full_snmp_walk": "Recorrido SNMP Completo",
"batch_operations": "Operaciones por Lotes",
"trap_receiver": "Receptor de Trampas",
"performance_monitor": "Monitor de Rendimiento",
"load_mib": "Cargar MIB",
"search_mib": "Buscar MIB",
"snmp_hex_decoder": "Decodificador Hex SNMP",
"snmpv3_wizard": "Asistente SNMPv3",
"discover_engine_id": "Descubrir ID de Motor",
"clear_cache": "Limpiar Caché",
"settings": "Configuración",
"shortcuts": "Atajos",
"debug_info": "Información de Depuración",
"about": "Acerca de",
"language": "Idioma",
"select_language": "Seleccionar Idioma",
"snmp_configuration": "Configuración SNMP",
"profile": "Perfil",
"save": "Guardar",
"manage": "Administrar",
"host": "Host",
"port": "Puerto",
"version": "Versión",
"community": "Comunidad",
"timeout": "Tiempo de Espera",
"retries": "Reintentos",
"extended_scan": "Escaneo Extendido",
"start_scan": "Iniciar Escaneo",
"stop": "Detener",
"test": "Probar",
"batch": "Lote",
"snmpv3_configuration": "Configuración SNMPv3",
"username": "Usuario",
"auth": "Autenticación",
"auth_pass": "Contraseña de Autenticación",
"priv": "Privacidad",
"priv_pass": "Contraseña de Privacidad",
"show": "Mostrar",
"engine_id": "ID de Motor",
"test_v3": "Probar v3",
"browser": "Navegador",
"dashboard": "Panel",
"mib_tree": "Árbol MIB",
"trap_manager": "Gestor de Trampas",
"performance": "Rendimiento",
"status": "Estado",
"ready": "Listo",
"trap_receiver_tab": "Receptor de Trampas",
"trap_sender": "Emisor de Trampas",
"trap_receiver_controls": "Controles del Receptor de Trampas",
"status_inactive": "Estado: Inactivo",
"status_active": "Estado: Activo (puerto {port})",
"start_receiver": "Iniciar Receptor",
"stop_receiver": "Detener Receptor",
"clear": "Limpiar",
"export": "Exportar",
"trap_destination": "Destino de Trampa",
"trap_type": "Tipo de Trampa",
"trap_parameters": "Parámetros de Trampa",
"test_trap": "Trampa de Prueba",
"cold_start": "Inicio en Frío",
"warm_start": "Inicio en Caliente",
"link_down": "Enlace Caído",
"link_up": "Enlace Activo",
"authentication_failure": "Fallo de Autenticación",
"ups_on_battery": "UPS en Batería",
"ups_battery_low": "Batería UPS Baja",
"custom": "Personalizado",
"send_trap": "Enviar Trampa",
"test_loop": "Bucle de Prueba (5x)",
"templates": "Plantillas",
"message": "Mensaje",
"interface": "Interfaz",
"ups": "UPS",
"interface_index": "Índice de Interfaz",
"interface_name": "Nombre de Interfaz",
"battery_charge": "Carga de Batería (%)",
"runtime": "Tiempo de Ejecución (min)",
"load": "Carga (%)",
"temperature": "Temperatura (°C)",
"trap_oid": "OID de Trampa",
"varbinds": "Varbinds (OID=Valor)",
"performance_controls": "Controles de Rendimiento",
"refresh": "Actualizar",
"reset": "Restablecer",
"current_metrics": "Métricas Actuales",
"performance_graphs": "Gráficos de Rendimiento",
"statistics": "Estadísticas",
"traps_received": "Trampas recibidas: {count}",
"hex_input": "Entrada Hex (pegar aquí)",
"decoding_result": "Resultado de Decodificación",
"decode": "Decodificar",
"close": "Cerrar",
"basic_info": "Información Básica",
"timestamp": "Marca de Tiempo",
"source": "Fuente",
"type": "Tipo",
"size": "Tamaño",
"data": "Datos",
"oid": "OID",
"value": "Valor",
"description": "Descripción",
"error": "Error",
"warning": "Advertencia",
"success": "Éxito",
"info": "Información",
"yes": "Sí",
"no": "No",
"ok": "Aceptar",
"cancel": "Cancelar",
"apply": "Aplicar",
"add": "Agregar",
"remove": "Eliminar",
"edit": "Editar",
"delete": "Borrar",
"search": "Buscar",
"filter": "Filtrar",
"copy": "Copiar",
"paste": "Pegar",
"select_all": "Seleccionar Todo",
"name": "Nombre",
"details": "Detalles",
"options": "Opciones"
}
},
"fr": {
"name": "Français",
"translations": {
"app_title": "Navigateur SNMP - Prêt pour Production",
"file": "Fichier",
"tools": "Outils",
"help": "Aide",
"save_configuration": "Enregistrer Configuration",
"load_configuration": "Charger Configuration",
"profile_manager": "Gestionnaire de Profils",
"export_results": "Exporter Résultats",
"view_logs": "Voir Journaux",
"exit": "Quitter",
"test_connection": "Tester Connexion",
"full_snmp_walk": "Parcours SNMP Complet",
"batch_operations": "Opérations par Lots",
"trap_receiver": "Récepteur de Trappes",
"performance_monitor": "Moniteur de Performance",
"load_mib": "Charger MIB",
"search_mib": "Rechercher MIB",
"snmp_hex_decoder": "Décodeur Hex SNMP",
"snmpv3_wizard": "Assistant SNMPv3",
"discover_engine_id": "Découvrir ID Moteur",
"clear_cache": "Effacer Cache",
"settings": "Paramètres",
"shortcuts": "Raccourcis",
"debug_info": "Info de Débogage",
"about": "À propos",
"language": "Langue",
"select_language": "Sélectionner Langue",
"snmp_configuration": "Configuration SNMP",
"profile": "Profil",
"save": "Enregistrer",
"manage": "Gérer",
"host": "Hôte",
"port": "Port",
"version": "Version",
"community": "Communauté",
"timeout": "Délai",
"retries": "Tentatives",
"extended_scan": "Scan Étendu",
"start_scan": "Démarrer Scan",
"stop": "Arrêter",
"test": "Tester",
"batch": "Lot",
"snmpv3_configuration": "Configuration SNMPv3",
"username": "Utilisateur",
"auth": "Authentification",
"auth_pass": "Mot de Passe Auth",
"priv": "Confidentialité",
"priv_pass": "Mot de Passe Priv",
"show": "Afficher",
"engine_id": "ID Moteur",
"test_v3": "Tester v3",
"browser": "Navigateur",
"dashboard": "Tableau de Bord",
"mib_tree": "Arbre MIB",
"trap_manager": "Gestionnaire de Trappes",
"performance": "Performance",
"status": "Statut",
"ready": "Prêt",
"trap_receiver_tab": "Récepteur de Trappes",
"trap_sender": "Émetteur de Trappes",
"trap_receiver_controls": "Contrôles Récepteur de Trappes",
"status_inactive": "Statut: Inactif",
"status_active": "Statut: Actif (port {port})",
"start_receiver": "Démarrer Récepteur",
"stop_receiver": "Arrêter Récepteur",
"clear": "Effacer",
"export": "Exporter",
"trap_destination": "Destination Trappe",
"trap_type": "Type de Trappe",
"trap_parameters": "Paramètres de Trappe",
"test_trap": "Trappe de Test",
"cold_start": "Démarrage à Froid",
"warm_start": "Démarrage à Chaud",
"link_down": "Lien Inactif",
"link_up": "Lien Actif",
"authentication_failure": "Échec Authentification",
"ups_on_battery": "UPS sur Batterie",
"ups_battery_low": "Batterie UPS Faible",
"custom": "Personnalisé",
"send_trap": "Envoyer Trappe",
"test_loop": "Boucle de Test (5x)",
"templates": "Modèles",
"message": "Message",
"interface": "Interface",
"ups": "UPS",
"interface_index": "Index Interface",
"interface_name": "Nom Interface",
"battery_charge": "Charge Batterie (%)",
"runtime": "Autonomie (min)",
"load": "Charge (%)",
"temperature": "Température (°C)",
"trap_oid": "OID Trappe",
"varbinds": "Varbinds (OID=Valeur)",
"performance_controls": "Contrôles Performance",
"refresh": "Actualiser",
"reset": "Réinitialiser",
"current_metrics": "Métriques Actuelles",
"performance_graphs": "Graphiques Performance",
"statistics": "Statistiques",
"traps_received": "Trappes reçues: {count}",
"hex_input": "Entrée Hex (coller ici)",
"decoding_result": "Résultat Décodage",
"decode": "Décoder",
"close": "Fermer",
"basic_info": "Info de Base",
"timestamp": "Horodatage",
"source": "Source",
"type": "Type",
"size": "Taille",
"data": "Données",
"oid": "OID",
"value": "Valeur",
"description": "Description",
"error": "Erreur",
"warning": "Avertissement",
"success": "Succès",
"info": "Info",
"yes": "Oui",
"no": "Non",
"ok": "OK",
"cancel": "Annuler",
"apply": "Appliquer",
"add": "Ajouter",
"remove": "Supprimer",
"edit": "Modifier",
"delete": "Effacer",
"search": "Rechercher",
"filter": "Filtrer",
"copy": "Copier",
"paste": "Coller",
"select_all": "Tout Sélectionner",
"name": "Nom",
"details": "Détails",
"options": "Options"
}
},
"de": {
"name": "Deutsch",
"translations": {
"app_title": "SNMP Browser - Produktionsbereit",
"file": "Datei",
"tools": "Werkzeuge",
"help": "Hilfe",
"save_configuration": "Konfiguration Speichern",
"load_configuration": "Konfiguration Laden",
"profile_manager": "Profil-Manager",
"export_results": "Ergebnisse Exportieren",
"view_logs": "Protokolle Anzeigen",
"exit": "Beenden",
"test_connection": "Verbindung Testen",
"full_snmp_walk": "Vollständiger SNMP Walk",
"batch_operations": "Stapeloperationen",
"trap_receiver": "Trap-Empfänger",
"performance_monitor": "Leistungsmonitor",
"load_mib": "MIB Laden",
"search_mib": "MIB Suchen",
"snmp_hex_decoder": "SNMP Hex-Decoder",
"snmpv3_wizard": "SNMPv3-Assistent",
"discover_engine_id": "Engine-ID Ermitteln",
"clear_cache": "Cache Leeren",
"settings": "Einstellungen",
"shortcuts": "Tastenkürzel",
"debug_info": "Debug-Info",
"about": "Über",
"language": "Sprache",
"select_language": "Sprache Auswählen",
"snmp_configuration": "SNMP-Konfiguration",
"profile": "Profil",
"save": "Speichern",
"manage": "Verwalten",
"host": "Host",
"port": "Port",
"version": "Version",
"community": "Community",
"timeout": "Zeitüberschreitung",
"retries": "Wiederholungen",
"extended_scan": "Erweiterter Scan",
"start_scan": "Scan Starten",
"stop": "Stoppen",
"test": "Testen",
"batch": "Stapel",
"snmpv3_configuration": "SNMPv3-Konfiguration",
"username": "Benutzername",
"auth": "Authentifizierung",
"auth_pass": "Auth-Passwort",
"priv": "Privatsphäre",
"priv_pass": "Priv-Passwort",
"show": "Anzeigen",
"engine_id": "Engine-ID",
"test_v3": "v3 Testen",
"browser": "Browser",
"dashboard": "Dashboard",
"mib_tree": "MIB-Baum",
"trap_manager": "Trap-Manager",
"performance": "Leistung",
"status": "Status",
"ready": "Bereit",
"trap_receiver_tab": "Trap-Empfänger",
"trap_sender": "Trap-Sender",
"trap_receiver_controls": "Trap-Empfänger-Steuerung",
"status_inactive": "Status: Inaktiv",
"status_active": "Status: Aktiv (Port {port})",
"start_receiver": "Empfänger Starten",
"stop_receiver": "Empfänger Stoppen",
"clear": "Löschen",
"export": "Exportieren",
"trap_destination": "Trap-Ziel",
"trap_type": "Trap-Typ",
"trap_parameters": "Trap-Parameter",
"test_trap": "Test-Trap",
"cold_start": "Kaltstart",
"warm_start": "Warmstart",
"link_down": "Link Inaktiv",
"link_up": "Link Aktiv",
"authentication_failure": "Authentifizierungsfehler",
"ups_on_battery": "USV im Batteriebetrieb",
"ups_battery_low": "USV-Batterie Niedrig",
"custom": "Benutzerdefiniert",
"send_trap": "Trap Senden",
"test_loop": "Test-Schleife (5x)",
"templates": "Vorlagen",
"message": "Nachricht",
"interface": "Schnittstelle",
"ups": "USV",
"interface_index": "Schnittstellen-Index",
"interface_name": "Schnittstellenname",
"battery_charge": "Batterieladung (%)",
"runtime": "Laufzeit (Min)",
"load": "Last (%)",
"temperature": "Temperatur (°C)",
"trap_oid": "Trap-OID",
"varbinds": "Varbinds (OID=Wert)",
"performance_controls": "Leistungssteuerung",
"refresh": "Aktualisieren",
"reset": "Zurücksetzen",
"current_metrics": "Aktuelle Metriken",
"performance_graphs": "Leistungsdiagramme",
"statistics": "Statistiken",
"traps_received": "Empfangene Traps: {count}",
"hex_input": "Hex-Eingabe (hier einfügen)",
"decoding_result": "Dekodierungsergebnis",
"decode": "Dekodieren",
"close": "Schließen",
"basic_info": "Grundinfo",
"timestamp": "Zeitstempel",
"source": "Quelle",
"type": "Typ",
"size": "Größe",
"data": "Daten",
"oid": "OID",
"value": "Wert",
"description": "Beschreibung",
"error": "Fehler",
"warning": "Warnung",
"success": "Erfolg",
"info": "Info",
"yes": "Ja",
"no": "Nein",
"ok": "OK",
"cancel": "Abbrechen",
"apply": "Anwenden",
"add": "Hinzufügen",
"remove": "Entfernen",
"edit": "Bearbeiten",
"delete": "Löschen",
"search": "Suchen",
"filter": "Filtern",
"copy": "Kopieren",
"paste": "Einfügen",
"select_all": "Alles Auswählen",
"name": "Name",
"details": "Details",
"options": "Optionen"
}
},
"zh": {
"name": "中文",
"translations": {
"app_title": "SNMP浏览器 - 生产就绪",
"file": "文件",
"tools": "工具",
"help": "帮助",
"save_configuration": "保存配置",
"load_configuration": "加载配置",
"profile_manager": "配置文件管理器",
"export_results": "导出结果",
"view_logs": "查看日志",
"exit": "退出",
"test_connection": "测试连接",
"full_snmp_walk": "完整SNMP遍历",
"batch_operations": "批量操作",
"trap_receiver": "陷阱接收器",
"performance_monitor": "性能监视器",
"load_mib": "加载MIB",
"search_mib": "搜索MIB",
"snmp_hex_decoder": "SNMP十六进制解码器",
"snmpv3_wizard": "SNMPv3向导",
"discover_engine_id": "发现引擎ID",
"clear_cache": "清除缓存",
"settings": "设置",
"shortcuts": "快捷键",
"debug_info": "调试信息",
"about": "关于",
"language": "语言",
"select_language": "选择语言",
"snmp_configuration": "SNMP配置",
"profile": "配置文件",
"save": "保存",
"manage": "管理",
"host": "主机",
"port": "端口",
"version": "版本",
"community": "团体名",
"timeout": "超时",
"retries": "重试",
"extended_scan": "扩展扫描",
"start_scan": "开始扫描",
"stop": "停止",
"test": "测试",
"batch": "批量",
"snmpv3_configuration": "SNMPv3配置",
"username": "用户名",
"auth": "认证",
"auth_pass": "认证密码",
"priv": "隐私",
"priv_pass": "隐私密码",
"show": "显示",
"engine_id": "引擎ID",
"test_v3": "测试v3",
"browser": "浏览器",
"dashboard": "仪表板",
"mib_tree": "MIB树",
"trap_manager": "陷阱管理器",
"performance": "性能",
"status": "状态",
"ready": "就绪",
"trap_receiver_tab": "陷阱接收器",
"trap_sender": "陷阱发送器",
"trap_receiver_controls": "陷阱接收器控制",
"status_inactive": "状态:未激活",
"status_active": "状态:激活(端口 {port})",
"start_receiver": "启动接收器",
"stop_receiver": "停止接收器",
"clear": "清除",
"export": "导出",
"trap_destination": "陷阱目的地",
"trap_type": "陷阱类型",
"trap_parameters": "陷阱参数",
"test_trap": "测试陷阱",
"cold_start": "冷启动",
"warm_start": "热启动",
"link_down": "链路断开",
"link_up": "链路连接",
"authentication_failure": "认证失败",
"ups_on_battery": "UPS使用电池",
"ups_battery_low": "UPS电池低",
"custom": "自定义",
"send_trap": "发送陷阱",
"test_loop": "测试循环(5次)",
"templates": "模板",
"message": "消息",
"interface": "接口",
"ups": "UPS",
"interface_index": "接口索引",
"interface_name": "接口名称",
"battery_charge": "电池电量(%)",
"runtime": "运行时间(分钟)",
"load": "负载(%)",
"temperature": "温度(°C)",
"trap_oid": "陷阱OID",
"varbinds": "变量绑定(OID=值)",
"performance_controls": "性能控制",
"refresh": "刷新",
"reset": "重置",
"current_metrics": "当前指标",
"performance_graphs": "性能图表",
"statistics": "统计",
"traps_received": "已接收陷阱:{count}",
"hex_input": "十六进制输入(粘贴到此处)",
"decoding_result": "解码结果",
"decode": "解码",
"close": "关闭",
"basic_info": "基本信息",
"timestamp": "时间戳",
"source": "来源",
"type": "类型",
"size": "大小",
"data": "数据",
"oid": "OID",
"value": "值",
"description": "描述",
"error": "错误",
"warning": "警告",
"success": "成功",
"info": "信息",
"yes": "是",
"no": "否",
"ok": "确定",
"cancel": "取消",
"apply": "应用",
"add": "添加",
"remove": "移除",
"edit": "编辑",
"delete": "删除",
"search": "搜索",
"filter": "过滤",
"copy": "复制",
"paste": "粘贴",
"select_all": "全选",
"name": "名称",
"details": "详情",
"options": "选项"
}
},
"ja": {
"name": "日本語",
"translations": {
"app_title": "SNMPブラウザ - プロダクション対応",
"file": "ファイル",
"tools": "ツール",
"help": "ヘルプ",
"save_configuration": "設定を保存",
"load_configuration": "設定を読み込む",
"profile_manager": "プロファイルマネージャー",
"export_results": "結果をエクスポート",
"view_logs": "ログを表示",
"exit": "終了",
"test_connection": "接続テスト",
"full_snmp_walk": "完全なSNMPウォーク",
"batch_operations": "バッチ操作",
"trap_receiver": "トラップレシーバー",
"performance_monitor": "パフォーマンスモニター",
"load_mib": "MIBを読み込む",
"search_mib": "MIBを検索",
"snmp_hex_decoder": "SNMP 16進デコーダー",
"snmpv3_wizard": "SNMPv3ウィザード",
"discover_engine_id": "エンジンIDを検出",
"clear_cache": "キャッシュをクリア",
"settings": "設定",
"shortcuts": "ショートカット",
"debug_info": "デバッグ情報",
"about": "について",
"language": "言語",
"select_language": "言語を選択",
"snmp_configuration": "SNMP設定",
"profile": "プロファイル",
"save": "保存",
"manage": "管理",
"host": "ホスト",
"port": "ポート",
"version": "バージョン",
"community": "コミュニティ",
"timeout": "タイムアウト",
"retries": "再試行",
"extended_scan": "拡張スキャン",
"start_scan": "スキャン開始",
"stop": "停止",
"test": "テスト",
"batch": "バッチ",
"snmpv3_configuration": "SNMPv3設定",
"username": "ユーザー名",
"auth": "認証",
"auth_pass": "認証パスワード",
"priv": "プライバシー",
"priv_pass": "プライバシーパスワード",
"show": "表示",
"engine_id": "エンジンID",
"test_v3": "v3をテスト",
"browser": "ブラウザ",
"dashboard": "ダッシュボード",
"mib_tree": "MIBツリー",
"trap_manager": "トラップマネージャー",
"performance": "パフォーマンス",
"status": "ステータス",
"ready": "準備完了",
"trap_receiver_tab": "トラップレシーバー",
"trap_sender": "トラップ送信者",
"trap_receiver_controls": "トラップレシーバー制御",
"status_inactive": "ステータス:非アクティブ",
"status_active": "ステータス:アクティブ(ポート {port})",
"start_receiver": "レシーバーを起動",
"stop_receiver": "レシーバーを停止",
"clear": "クリア",
"export": "エクスポート",
"trap_destination": "トラップ宛先",
"trap_type": "トラップタイプ",
"trap_parameters": "トラップパラメータ",
"test_trap": "テストトラップ",
"cold_start": "コールドスタート",
"warm_start": "ウォームスタート",
"link_down": "リンクダウン",
"link_up": "リンクアップ",
"authentication_failure": "認証失敗",
"ups_on_battery": "UPSバッテリー使用中",
"ups_battery_low": "UPSバッテリー低下",
"custom": "カスタム",
"send_trap": "トラップを送信",
"test_loop": "テストループ(5回)",
"templates": "テンプレート",
"message": "メッセージ",
"interface": "インターフェース",
"ups": "UPS",
"interface_index": "インターフェースインデックス",
"interface_name": "インターフェース名",
"battery_charge": "バッテリー充電(%)",
"runtime": "ランタイム(分)",
"load": "負荷(%)",
"temperature": "温度(°C)",
"trap_oid": "トラップOID",
"varbinds": "変数バインディング(OID=値)",
"performance_controls": "パフォーマンス制御",
"refresh": "更新",
"reset": "リセット",
"current_metrics": "現在のメトリクス",
"performance_graphs": "パフォーマンスグラフ",
"statistics": "統計",
"traps_received": "受信トラップ数:{count}",
"hex_input": "16進数入力(ここに貼り付け)",
"decoding_result": "デコード結果",
"decode": "デコード",
"close": "閉じる",
"basic_info": "基本情報",
"timestamp": "タイムスタンプ",
"source": "ソース",
"type": "タイプ",
"size": "サイズ",
"data": "データ",
"oid": "OID",
"value": "値",
"description": "説明",
"error": "エラー",
"warning": "警告",
"success": "成功",
"info": "情報",
"yes": "はい",
"no": "いいえ",
"ok": "OK",
"cancel": "キャンセル",
"apply": "適用",
"add": "追加",
"remove": "削除",
"edit": "編集",
"delete": "削除",
"search": "検索",
"filter": "フィルター",
"copy": "コピー",
"paste": "貼り付け",
"select_all": "すべて選択",
"name": "名前",
"details": "詳細",
"options": "オプション"
}
},
"pt": {
"name": "Português",
"translations": {
"app_title": "Navegador SNMP - Pronto para Produção",
"file": "Arquivo",
"tools": "Ferramentas",
"help": "Ajuda",
"save_configuration": "Salvar Configuração",
"load_configuration": "Carregar Configuração",
"profile_manager": "Gerenciador de Perfis",
"export_results": "Exportar Resultados",
"view_logs": "Ver Registros",
"exit": "Sair",
"test_connection": "Testar Conexão",
"full_snmp_walk": "Percurso SNMP Completo",
"batch_operations": "Operações em Lote",
"trap_receiver": "Receptor de Armadilhas",
"performance_monitor": "Monitor de Desempenho",
"load_mib": "Carregar MIB",
"search_mib": "Pesquisar MIB",
"snmp_hex_decoder": "Decodificador Hex SNMP",
"snmpv3_wizard": "Assistente SNMPv3",
"discover_engine_id": "Descobrir ID do Motor",
"clear_cache": "Limpar Cache",
"settings": "Configurações",
"shortcuts": "Atalhos",
"debug_info": "Informações de Depuração",
"about": "Sobre",
"language": "Idioma",
"select_language": "Selecionar Idioma",
"snmp_configuration": "Configuração SNMP",
"profile": "Perfil",
"save": "Salvar",
"manage": "Gerenciar",
"host": "Host",
"port": "Porta",
"version": "Versão",
"community": "Comunidade",
"timeout": "Tempo Limite",
"retries": "Tentativas",
"extended_scan": "Varredura Estendida",
"start_scan": "Iniciar Varredura",
"stop": "Parar",
"test": "Testar",
"batch": "Lote",
"snmpv3_configuration": "Configuração SNMPv3",
"username": "Nome de Usuário",
"auth": "Autenticação",
"auth_pass": "Senha de Autenticação",
"priv": "Privacidade",
"priv_pass": "Senha de Privacidade",
"show": "Mostrar",
"engine_id": "ID do Motor",
"test_v3": "Testar v3",
"browser": "Navegador",
"dashboard": "Painel",
"mib_tree": "Árvore MIB",
"trap_manager": "Gerenciador de Armadilhas",
"performance": "Desempenho",
"status": "Status",
"ready": "Pronto",
"trap_receiver_tab": "Receptor de Armadilhas",
"trap_sender": "Emissor de Armadilhas",
"trap_receiver_controls": "Controles do Receptor de Armadilhas",
"status_inactive": "Status: Inativo",
"status_active": "Status: Ativo (porta {port})",
"start_receiver": "Iniciar Receptor",
"stop_receiver": "Parar Receptor",
"clear": "Limpar",
"export": "Exportar",
"trap_destination": "Destino da Armadilha",
"trap_type": "Tipo de Armadilha",
"trap_parameters": "Parâmetros da Armadilha",
"test_trap": "Armadilha de Teste",
"cold_start": "Início Frio",
"warm_start": "Início Quente",
"link_down": "Link Inativo",
"link_up": "Link Ativo",
"authentication_failure": "Falha de Autenticação",
"ups_on_battery": "UPS em Bateria",
"ups_battery_low": "Bateria UPS Baixa",
"custom": "Personalizado",
"send_trap": "Enviar Armadilha",
"test_loop": "Loop de Teste (5x)",
"templates": "Modelos",
"message": "Mensagem",
"interface": "Interface",
"ups": "UPS",
"interface_index": "Índice de Interface",
"interface_name": "Nome da Interface",
"battery_charge": "Carga da Bateria (%)",
"runtime": "Tempo de Execução (min)",
"load": "Carga (%)",
"temperature": "Temperatura (°C)",
"trap_oid": "OID da Armadilha",
"varbinds": "Varbinds (OID=Valor)",
"performance_controls": "Controles de Desempenho",
"refresh": "Atualizar",
"reset": "Redefinir",
"current_metrics": "Métricas Atuais",
"performance_graphs": "Gráficos de Desempenho",
"statistics": "Estatísticas",
"traps_received": "Armadilhas recebidas: {count}",
"hex_input": "Entrada Hex (cole aqui)",
"decoding_result": "Resultado da Decodificação",
"decode": "Decodificar",
"close": "Fechar",
"basic_info": "Informações Básicas",
"timestamp": "Carimbo de Data/Hora",
"source": "Origem",
"type": "Tipo",
"size": "Tamanho",
"data": "Dados",
"oid": "OID",
"value": "Valor",
"description": "Descrição",
"error": "Erro",
"warning": "Aviso",
"success": "Sucesso",
"info": "Informação",
"yes": "Sim",
"no": "Não",
"ok": "OK",
"cancel": "Cancelar",
"apply": "Aplicar",
"add": "Adicionar",
"remove": "Remover",
"edit": "Editar",
"delete": "Excluir",
"search": "Pesquisar",
"filter": "Filtrar",
"copy": "Copiar",
"paste": "Colar",
"select_all": "Selecionar Tudo",
"name": "Nome",
"details": "Detalhes",
"options": "Opções"
}
},
"ru": {
"name": "Русский",
"translations": {
"app_title": "SNMP Браузер - Готов к Производству",
"file": "Файл",
"tools": "Инструменты",
"help": "Помощь",
"save_configuration": "Сохранить Конфигурацию",
"load_configuration": "Загрузить Конфигурацию",
"profile_manager": "Менеджер Профилей",
"export_results": "Экспортировать Результаты",
"view_logs": "Просмотр Журналов",
"exit": "Выход",
"test_connection": "Тест Соединения",
"full_snmp_walk": "Полный SNMP Walk",
"batch_operations": "Пакетные Операции",
"trap_receiver": "Приёмник Ловушек",
"performance_monitor": "Монитор Производительности",
"load_mib": "Загрузить MIB",
"search_mib": "Поиск MIB",
"snmp_hex_decoder": "SNMP Hex Декодер",
"snmpv3_wizard": "Мастер SNMPv3",
"discover_engine_id": "Определить ID Движка",
"clear_cache": "Очистить Кэш",
"settings": "Настройки",