~ubuntu-branches/ubuntu/saucy/language-pack-gu-base/saucy-proposed

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
# Gujarati translation for nmap
# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011
# This file is distributed under the same license as the nmap package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2011.
#
msgid ""
msgstr ""
"Project-Id-Version: nmap\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2009-08-21 09:04-0600\n"
"PO-Revision-Date: 2011-05-31 17:10+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: Gujarati <gu@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2013-03-21 11:53+0000\n"
"X-Generator: Launchpad (build 16532)\n"

#: zenmap:58
msgid "Import error"
msgstr "ભૂલને આયાત કરો"

#: zenmap:59
msgid ""
"A required module was not found.\n"
"\n"
msgstr ""

#: zenmap:83 zenmapGUI/CrashReport.py:154
msgid "Bug not reported"
msgstr ""

#: zenmap:84
#, python-format
msgid ""
"A critical error occurred during %s execution,\n"
"and it was not properly reported to our bug tracker. Please,\n"
"copy the error message bellow and report it on our bug tracker.\n"
"\n"
"The following error message was NOT reported:\n"
"%s"
msgstr ""

#: zenmapCore/NmapCommand.py:40
msgid "Python 2.4 or later is required."
msgstr ""

#: zenmapCore/NmapParser.py:279
msgid "Unknown Host"
msgstr ""

#: zenmapCore/NmapParser.py:325
msgid "unknown"
msgstr ""

#: zenmapCore/NmapParser.py:328
msgid "Unknown version"
msgstr ""

#: zenmapCore/NmapParser.py:331 zenmapGUI/SearchGUI.py:414
#: zenmapGUI/ScanInterface.py:859 zenmapGUI/ScanInterface.py:881
msgid "Unknown"
msgstr ""

#: zenmapCore/NmapParser.py:616
#, python-format
msgid "%s on %s"
msgstr ""

#: zenmapCore/UmitOptionParser.py:45
msgid ""
"Specify a scan result file in Nmap XML output format. Can be used more than "
"once to specify several scan result files."
msgstr ""

#: zenmapCore/UmitOptionParser.py:56
#, python-format
msgid "Run %s with the specified args."
msgstr ""

#: zenmapCore/UmitOptionParser.py:63
msgid ""
"Begin with the specified profile selected. If combined with the -t (--"
"target) option, automatically run the profile against the specified target."
msgstr ""

#: zenmapCore/UmitOptionParser.py:74
msgid ""
"Specify a target to be used along with other options. If specified alone, "
"open with the target field filled with the specified target"
msgstr ""

#: zenmapCore/UmitOptionParser.py:82
msgid ""
"Increase verbosity of the output. May be used more than once to get even "
"more verbosity"
msgstr ""

#: zenmapCore/UmitDB.py:39
msgid "No module named dbapi2.pysqlite2 or sqlite3"
msgstr ""

#: zenmapGUI/SearchGUI.py:213
msgid "Search:"
msgstr "શોધો:"

#: zenmapGUI/SearchGUI.py:215
msgid "Expressions "
msgstr ""

#: zenmapGUI/SearchGUI.py:227 zenmapGUI/ProfileEditor.py:133
#: zenmapGUI/ScanToolbar.py:72
msgid "Scan"
msgstr ""

#: zenmapGUI/SearchGUI.py:228
msgid "Date"
msgstr "તારીખ"

#: zenmapGUI/SearchGUI.py:362
msgid "No search method selected!"
msgstr ""

#: zenmapGUI/SearchGUI.py:363
#, python-format
msgid ""
"%s can search results on directories or inside it's own database. Please, "
"select a method by choosing a directory or by checking the search data base "
"option at the 'Search options' tab before start the search"
msgstr ""

#: zenmapGUI/SearchGUI.py:824
msgid ""
"Entering the text into the search performs a <b>keyword search</b> - the "
"search string is matched against the entire output of each scan.\n"
"\n"
"To refine the search, you can use <b>operators</b> to search only within a "
"specific part of a scan. Operators can be added to the search interactively "
"if you click on the <b>Expressions</b> button, or you can enter them "
"manually into the search field. Most operators have a short form, listed.\n"
"\n"
"<b>profile: (pr:)</b> - Profile used.\n"
"<b>target: (t:)</b> - User-supplied target, or a rDNS result.\n"
"<b>option: (o:)</b> - Scan options.\n"
"<b>date: (d:)</b> - The date when scan was performed. Fuzzy matching is "
"possible using the \"~\" suffix. Each \"~\" broadens the search by one day "
"on \"each side\" of the date. In addition, it is possible to use the \"date:-"
"n\" notation which means \"n days ago\".\n"
"<b>after: (a:)</b> - Matches scans made after the supplied date (<i>YYYY-MM-"
"DD</i> or <i>-n</i>).\n"
"<b>before (b:)</b> - Matches scans made before the supplied date(<i>YYYY-MM-"
"DD</i> or <i>-n</i>).\n"
"<b>os:</b> - All OS-related fields.\n"
"<b>scanned: (sp:)</b> - Matches a port if it was among those scanned.\n"
"<b>open: (op:)</b> - Open ports discovered in a scan.\n"
"<b>closed: (cp:)</b> - Closed ports discovered in a scan.\n"
"<b>filtered: (fp:)</b> - Filtered ports discovered in scan.\n"
"<b>unfiltered: (ufp:)</b> - Unfiltered ports found in a scan (using, for "
"example, an ACK scan).\n"
"<b>open|filtered: (ofp:)</b> - Ports in the \"open|filtered\" state.\n"
"<b>closed|filtered: (cfp:)</b> - Ports in the \"closed|filtered\" state.\n"
"<b>service: (s:)</b> - All service-related fields.\n"
"<b>inroute: (ir:)</b> - Matches a router in the scan's traceroute output.\n"
msgstr ""

#: zenmapGUI/About.py:87
#, python-format
msgid "About %s and %s"
msgstr ""

#: zenmapGUI/About.py:103
#, python-format
msgid ""
"%s is a free and open source utility for network exploration and security "
"auditing."
msgstr ""

#: zenmapGUI/About.py:108
#, python-format
msgid ""
"%s is a multi-platform graphical %s frontend and results viewer. It was "
"originally derived from %s."
msgstr ""

#: zenmapGUI/About.py:114
#, python-format
msgid ""
"%s is an %s GUI created as part of the Nmap/Google Summer of Code program."
msgstr ""

#: zenmapGUI/About.py:117 zenmapGUI/About.py:157
#, python-format
msgid "%s credits"
msgstr ""

#: zenmapGUI/About.py:198
msgid "Written by"
msgstr ""

#: zenmapGUI/About.py:199
msgid "Design"
msgstr ""

#: zenmapGUI/About.py:200
msgid "SoC 2007"
msgstr ""

#: zenmapGUI/About.py:201
msgid "Contributors"
msgstr ""

#: zenmapGUI/About.py:202
msgid "Translation"
msgstr ""

#: zenmapGUI/About.py:203
msgid "Maemo"
msgstr ""

#: zenmapGUI/NmapOutputProperties.py:38
msgid "Nmap Output Properties"
msgstr ""

#: zenmapGUI/NmapOutputProperties.py:65
msgid "details"
msgstr ""

#: zenmapGUI/NmapOutputProperties.py:66
msgid "port listing title"
msgstr ""

#: zenmapGUI/NmapOutputProperties.py:67
msgid "open port"
msgstr ""

#: zenmapGUI/NmapOutputProperties.py:68
msgid "closed port"
msgstr ""

#: zenmapGUI/NmapOutputProperties.py:69
msgid "filtered port"
msgstr ""

#: zenmapGUI/NmapOutputProperties.py:70
msgid "date"
msgstr ""

#: zenmapGUI/NmapOutputProperties.py:71
msgid "hostname"
msgstr ""

#: zenmapGUI/NmapOutputProperties.py:72
msgid "ip"
msgstr ""

#: zenmapGUI/NmapOutputProperties.py:111
msgid "Highlight definitions"
msgstr ""

#: zenmapGUI/NmapOutputProperties.py:137
msgid "Text"
msgstr ""

#: zenmapGUI/NmapOutputProperties.py:138
msgid "Highlight"
msgstr ""

#: zenmapGUI/NmapOutputProperties.py:153
msgid "text color"
msgstr ""

#: zenmapGUI/NmapOutputProperties.py:179
msgid "highlight color"
msgstr ""

#: zenmapGUI/ScanOpenPortsPage.py:63 zenmapGUI/ScanHostsView.py:61
msgid "Host"
msgstr ""

#: zenmapGUI/ScanOpenPortsPage.py:65 zenmapGUI/ScanOpenPortsPage.py:85
#: radialnet/gui/NodeNotebook.py:31
msgid "Port"
msgstr ""

#: zenmapGUI/ScanOpenPortsPage.py:66 zenmapGUI/ScanOpenPortsPage.py:84
#: radialnet/gui/NodeNotebook.py:31
msgid "Protocol"
msgstr ""

#: zenmapGUI/ScanOpenPortsPage.py:67 zenmapGUI/ScanOpenPortsPage.py:86
#: radialnet/gui/NodeNotebook.py:31 radialnet/gui/NodeNotebook.py:32
msgid "State"
msgstr ""

#: zenmapGUI/ScanOpenPortsPage.py:68 zenmapGUI/ScanOpenPortsPage.py:81
#: zenmapGUI/ScanHostsView.py:68 radialnet/gui/NodeNotebook.py:31
msgid "Service"
msgstr ""

#: zenmapGUI/ScanOpenPortsPage.py:69 zenmapGUI/ScanOpenPortsPage.py:87
#: radialnet/gui/NodeNotebook.py:56
msgid "Version"
msgstr ""

#: zenmapGUI/ScanOpenPortsPage.py:82 radialnet/gui/NodeNotebook.py:42
msgid "Hostname"
msgstr ""

#: zenmapGUI/CrashReport.py:43
msgid "Crash Report"
msgstr ""

#: zenmapGUI/CrashReport.py:59
msgid ""
"An email address is optional. Sometimes we use it to get more information. "
"If you provide an email address your report will be marked private so only "
"project developers can read it."
msgstr ""

#: zenmapGUI/CrashReport.py:68
msgid "What were you doing when the crash happened?"
msgstr ""

#: zenmapGUI/CrashReport.py:74
msgid ""
"An unhandled exception has crashed Zenmap. This dialog allows you to tell us "
"what you did to cause the crash and help us to fix it. Submitting the report "
"will open a description of the new bug at the bug tracker. Feel free to edit "
"the report to remove any identifying information such as your home directory."
msgstr ""

#: zenmapGUI/CrashReport.py:103
msgid "Summary"
msgstr ""

#: zenmapGUI/CrashReport.py:110
msgid "Email"
msgstr ""

#: zenmapGUI/CrashReport.py:148
msgid "Bug reported"
msgstr ""

#: zenmapGUI/CrashReport.py:149
msgid "The bug was successfully reported."
msgstr ""

#: zenmapGUI/CrashReport.py:155
msgid ""
"This error occurred while trying to report the bug:\n"
"\n"
msgstr ""

#: zenmapGUI/SearchWindow.py:47
msgid "Search Scans"
msgstr ""

#: zenmapGUI/SearchWindow.py:73
msgid "Append"
msgstr ""

#: zenmapGUI/ScanHostsView.py:50
msgid "Hosts"
msgstr ""

#: zenmapGUI/ScanHostsView.py:51 radialnet/gui/NodeNotebook.py:95
msgid "Services"
msgstr ""

#: zenmapGUI/ScanHostsView.py:60
msgid "OS"
msgstr ""

#: zenmapGUI/ProfileEditor.py:46
msgid "Profile Editor"
msgstr ""

#: zenmapGUI/ProfileEditor.py:140
msgid "Profile Information"
msgstr ""

#: zenmapGUI/ProfileEditor.py:141
msgid "Profile name"
msgstr ""

#: zenmapGUI/ProfileEditor.py:144
msgid "Description"
msgstr ""

#: zenmapGUI/ProfileEditor.py:159
msgid "Save Changes"
msgstr ""

#: zenmapGUI/ProfileEditor.py:164
msgid "Help"
msgstr ""

#: zenmapGUI/ProfileEditor.py:197
msgid "Profile"
msgstr ""

#: zenmapGUI/ProfileEditor.py:257
msgid "Unnamed profile"
msgstr ""

#: zenmapGUI/ProfileEditor.py:258
msgid "You must provide a name for this profile."
msgstr ""

#: zenmapGUI/ProfileEditor.py:294
msgid "Deleting Profile"
msgstr ""

#: zenmapGUI/ProfileEditor.py:295
msgid ""
"Your profile is going to be deleted! Click Ok to continue, or Cancel to go "
"back to Profile Editor."
msgstr ""

#: zenmapGUI/ScanToolbar.py:40 zenmapGUI/ScanRunDetailsPage.py:36
msgid "Command:"
msgstr ""

#: zenmapGUI/ScanToolbar.py:74
msgid "Cancel"
msgstr ""

#: zenmapGUI/ScanToolbar.py:96
msgid "Target:"
msgstr ""

#: zenmapGUI/ScanToolbar.py:103
msgid "Profile:"
msgstr ""

#: zenmapGUI/BugReport.py:37
msgid "How to Report a Bug"
msgstr ""

#: zenmapGUI/BugReport.py:56
#, python-format
msgid ""
"<big><b>How to report a bug</b></big>\n"
"\n"
"Like their author, %(nmap)s and %(app)s aren't perfect. But you can help "
"make it better by sending bug reports or even writing patches. If %(nmap)s "
"doesn't behave the way you expect, first upgrade to the latest version "
"available from <b>%(nmap_web)s</b>. If the problem persists, do some "
"research to determine whether it has already been discovered and addressed. "
"Try Googling the error message or browsing the nmap-dev archives at "
"http://seclists.org/. Read the full manual page as well. If nothing comes of "
"this, mail a bug report to <b>&lt;nmap-dev@insecure.org&gt;</b>. Please "
"include everything you have learned about the problem, as well as what "
"version of Nmap you are running and what operating system version it is "
"running on. Problem reports and %(nmap)s usage questions sent to nmap-"
"dev@insecure.org are far more likely to be answered than those sent to "
"Fyodor directly.\n"
"\n"
"Code patches to fix bugs are even better than bug reports. Basic "
"instructions for creating patch files with your changes are available at "
"http://nmap.org/data/HACKING. Patches may be sent to nmap-dev (recommended) "
"or to Fyodor directly.\n"
msgstr ""

#: zenmapGUI/App.py:123
msgid "Error creating the per-user configuration directory"
msgstr ""

#: zenmapGUI/App.py:124
#, python-format
msgid ""
"There was an error creating the directory %s or one of the files in it. The "
"directory is created by copying the contents of %s. The specific error was\n"
"\n"
"%s\n"
"\n"
"%s needs to create this directory to store information such as the list of "
"scan profiles. Check for access to the directory and try again."
msgstr ""

#: zenmapGUI/App.py:142
msgid "Error parsing the configuration file"
msgstr ""

#: zenmapGUI/App.py:143
#, python-format
msgid ""
"There was an error parsing the configuration file %s. The specific error "
"was\n"
"\n"
"%s\n"
"\n"
"%s can continue without this file but any information in it will be ignored "
"until it is repaired."
msgstr ""

#: zenmapGUI/App.py:207
#, python-format
msgid ""
"You are trying to run %s with a non-root user!\n"
"\n"
"Some %s options need root privileges to work."
msgstr ""

#: zenmapGUI/App.py:210
msgid "Non-root user"
msgstr ""

#: zenmapGUI/MainWindow.py:131
msgid "Sc_an"
msgstr ""

#: zenmapGUI/MainWindow.py:135
msgid "_Save Scan"
msgstr ""

#: zenmapGUI/MainWindow.py:137
msgid "Save current scan results"
msgstr ""

#: zenmapGUI/MainWindow.py:142
msgid "Save All Scans to _Directory"
msgstr ""

#: zenmapGUI/MainWindow.py:144
msgid "Save all scans into a directory"
msgstr ""

#: zenmapGUI/MainWindow.py:149
msgid "_Open Scan"
msgstr ""

#: zenmapGUI/MainWindow.py:151
msgid "Open the results of a previous scan"
msgstr ""

#: zenmapGUI/MainWindow.py:156
msgid "_Open Scan in This Window"
msgstr ""

#: zenmapGUI/MainWindow.py:158
msgid "Append a saved scan to the list of scans in this window."
msgstr ""

#: zenmapGUI/MainWindow.py:162
msgid "_Tools"
msgstr ""

#: zenmapGUI/MainWindow.py:166
msgid "_New Window"
msgstr ""

#: zenmapGUI/MainWindow.py:168
msgid "Open a new scan window"
msgstr ""

#: zenmapGUI/MainWindow.py:173
msgid "Close Window"
msgstr ""

#: zenmapGUI/MainWindow.py:175
msgid "Close this scan window"
msgstr ""

#: zenmapGUI/MainWindow.py:180
msgid "Quit"
msgstr ""

#: zenmapGUI/MainWindow.py:182
msgid "Quit the application"
msgstr ""

#: zenmapGUI/MainWindow.py:187
msgid "New _Profile or Command"
msgstr ""

#: zenmapGUI/MainWindow.py:189
msgid "Create a new scan profile using the current command"
msgstr ""

#: zenmapGUI/MainWindow.py:194
msgid "Search Scan Results"
msgstr ""

#: zenmapGUI/MainWindow.py:196
msgid "Search for a scan result"
msgstr ""

#: zenmapGUI/MainWindow.py:201 zenmapGUI/ScanInterface.py:917
msgid "Filter Hosts"
msgstr ""

#: zenmapGUI/MainWindow.py:203
msgid "Search for host by criteria"
msgstr ""

#: zenmapGUI/MainWindow.py:208
msgid "_Edit Selected Profile"
msgstr ""

#: zenmapGUI/MainWindow.py:210
msgid "Edit selected scan profile"
msgstr ""

#: zenmapGUI/MainWindow.py:214
msgid "_Profile"
msgstr ""

#: zenmapGUI/MainWindow.py:218 zenmapGUI/DiffCompare.py:207
msgid "Compare Results"
msgstr ""

#: zenmapGUI/MainWindow.py:220
msgid "Compare Scan Results using Diffies"
msgstr ""

#: zenmapGUI/MainWindow.py:225 zenmapGUI/MainWindow.py:245
msgid "_Help"
msgstr ""

#: zenmapGUI/MainWindow.py:229
msgid "_Report a bug"
msgstr ""

#: zenmapGUI/MainWindow.py:231
msgid "Report a bug"
msgstr ""

#: zenmapGUI/MainWindow.py:237
msgid "_About"
msgstr ""

#: zenmapGUI/MainWindow.py:239
#, python-format
msgid "About %s"
msgstr ""

#: zenmapGUI/MainWindow.py:247
msgid "Shows the application help"
msgstr ""

#: zenmapGUI/MainWindow.py:439
msgid "Error loading file"
msgstr ""

#: zenmapGUI/MainWindow.py:461 zenmapGUI/MainWindow.py:534
msgid "Nothing to save"
msgstr ""

#: zenmapGUI/MainWindow.py:462
msgid ""
"There are no scans with results to be saved. Run a scan with the \"Scan\" "
"button first."
msgstr ""

#: zenmapGUI/MainWindow.py:471 zenmapGUI/MainWindow.py:543
msgid "There is a scan still running. Wait until it finishes and then save."
msgstr ""

#: zenmapGUI/MainWindow.py:473 zenmapGUI/MainWindow.py:545
#, python-format
msgid ""
"There are %u scans still running. Wait until they finish and then save."
msgstr ""

#: zenmapGUI/MainWindow.py:475 zenmapGUI/MainWindow.py:547
msgid "Scan is running"
msgstr ""

#: zenmapGUI/MainWindow.py:514
msgid "Save Scan"
msgstr ""

#: zenmapGUI/MainWindow.py:535
msgid ""
"This scan has not been run yet. Start the scan with the \"Scan\" button "
"first."
msgstr ""

#: zenmapGUI/MainWindow.py:555
msgid "Choose a directory to save scans into"
msgstr ""

#: zenmapGUI/MainWindow.py:574 zenmapGUI/MainWindow.py:594
msgid "Can't save file"
msgstr ""

#: zenmapGUI/MainWindow.py:595
#, python-format
msgid ""
"Can't open file to write.\n"
"%s"
msgstr ""

#: zenmapGUI/MainWindow.py:640 zenmapGUI/MainWindow.py:678
msgid "Close anyway"
msgstr ""

#: zenmapGUI/MainWindow.py:643
msgid "Unsaved changes"
msgstr ""

#: zenmapGUI/MainWindow.py:645
msgid ""
"The given scan has unsaved changes.\n"
"What do you want to do?"
msgstr ""

#: zenmapGUI/MainWindow.py:681
msgid "Trying to close"
msgstr ""

#: zenmapGUI/MainWindow.py:683
msgid ""
"The window you are trying to close has a scan running at the background.\n"
"What do you want to do?"
msgstr ""

#: zenmapGUI/MainWindow.py:758
msgid "Can't find documentation files"
msgstr ""

#: zenmapGUI/MainWindow.py:759
#, python-format
msgid ""
"There was an error loading the documentation file %s (%s). See the online "
"documentation at %s."
msgstr ""

#: zenmapGUI/OptionBuilder.py:188
msgid "Choose file"
msgstr ""

#: zenmapGUI/ScanRunDetailsPage.py:33 zenmapGUI/ScanHostDetailsPage.py:31
msgid "Not available"
msgstr ""

#: zenmapGUI/ScanRunDetailsPage.py:39
msgid "Nmap Version:"
msgstr ""

#: zenmapGUI/ScanRunDetailsPage.py:42
msgid "Verbosity level:"
msgstr ""

#: zenmapGUI/ScanRunDetailsPage.py:45
msgid "Debug level:"
msgstr ""

#: zenmapGUI/ScanRunDetailsPage.py:48
msgid "Command Info"
msgstr ""

#: zenmapGUI/ScanRunDetailsPage.py:77
msgid "Started on:"
msgstr ""

#: zenmapGUI/ScanRunDetailsPage.py:80
msgid "Finished on:"
msgstr ""

#: zenmapGUI/ScanRunDetailsPage.py:83
msgid "Hosts up:"
msgstr ""

#: zenmapGUI/ScanRunDetailsPage.py:86
msgid "Hosts down:"
msgstr ""

#: zenmapGUI/ScanRunDetailsPage.py:89
msgid "Hosts scanned:"
msgstr ""

#: zenmapGUI/ScanRunDetailsPage.py:92 zenmapGUI/ScanHostDetailsPage.py:64
msgid "Open ports:"
msgstr ""

#: zenmapGUI/ScanRunDetailsPage.py:95 zenmapGUI/ScanHostDetailsPage.py:67
msgid "Filtered ports:"
msgstr ""

#: zenmapGUI/ScanRunDetailsPage.py:98 zenmapGUI/ScanHostDetailsPage.py:70
msgid "Closed ports:"
msgstr ""

#: zenmapGUI/ScanRunDetailsPage.py:101
msgid "General Info"
msgstr ""

#: zenmapGUI/ScanRunDetailsPage.py:162
msgid "Scan Info"
msgstr ""

#: zenmapGUI/ScanRunDetailsPage.py:179
msgid "Scan type:"
msgstr ""

#: zenmapGUI/ScanRunDetailsPage.py:182
msgid "Protocol:"
msgstr ""

#: zenmapGUI/ScanRunDetailsPage.py:185
msgid "# scanned ports:"
msgstr ""

#: zenmapGUI/ScanRunDetailsPage.py:188
msgid "Services:"
msgstr ""

#: zenmapGUI/ScanNmapOutputPage.py:113
msgid "Details"
msgstr ""

#: zenmapGUI/DiffCompare.py:86
msgid "Scan Output"
msgstr ""

#: zenmapGUI/DiffCompare.py:137
msgid "Select Scan Result"
msgstr ""

#: zenmapGUI/DiffCompare.py:148
msgid "Error parsing file"
msgstr ""

#: zenmapGUI/DiffCompare.py:149
#, python-format
msgid ""
"The file is not an Nmap XML output file. The parsing error that occurred "
"was\n"
"%s"
msgstr ""

#: zenmapGUI/DiffCompare.py:156
msgid "Cannot open selected file"
msgstr ""

#: zenmapGUI/DiffCompare.py:157
#, python-format
msgid ""
"This error occurred while trying to open the file:\n"
"%s"
msgstr ""

#: zenmapGUI/DiffCompare.py:233
msgid "A Scan"
msgstr ""

#: zenmapGUI/DiffCompare.py:234
msgid "B Scan"
msgstr ""

#: zenmapGUI/DiffCompare.py:284 zenmapGUI/DiffCompare.py:331
msgid "Error running ndiff"
msgstr ""

#: zenmapGUI/DiffCompare.py:285
msgid ""
"There was an error running the ndiff program.\n"
"\n"
msgstr ""

#: zenmapGUI/DiffCompare.py:318
msgid "Error parsing ndiff output"
msgstr ""

#: zenmapGUI/DiffCompare.py:326
#, python-format
msgid "The ndiff process terminated with status code %d."
msgstr ""

#: zenmapGUI/ScanHostDetailsPage.py:47
msgid "Host Status"
msgstr ""

#: zenmapGUI/ScanHostDetailsPage.py:48
msgid "Addresses"
msgstr ""

#: zenmapGUI/ScanHostDetailsPage.py:49
msgid "Hostnames"
msgstr ""

#: zenmapGUI/ScanHostDetailsPage.py:50 radialnet/gui/NodeNotebook.py:346
msgid "Operating System"
msgstr ""

#: zenmapGUI/ScanHostDetailsPage.py:51
msgid "Ports used"
msgstr ""

#: zenmapGUI/ScanHostDetailsPage.py:52
msgid "OS Class"
msgstr ""

#: zenmapGUI/ScanHostDetailsPage.py:53
msgid "TCP Sequence"
msgstr ""

#: zenmapGUI/ScanHostDetailsPage.py:54
msgid "IP ID Sequence"
msgstr ""

#: zenmapGUI/ScanHostDetailsPage.py:55
msgid "TCP TS Sequence"
msgstr ""

#: zenmapGUI/ScanHostDetailsPage.py:56
msgid "Comments"
msgstr ""

#: zenmapGUI/ScanHostDetailsPage.py:61
msgid "State:"
msgstr ""

#: zenmapGUI/ScanHostDetailsPage.py:73
msgid "Scanned ports:"
msgstr ""

#: zenmapGUI/ScanHostDetailsPage.py:76
msgid "Up time:"
msgstr ""

#: zenmapGUI/ScanHostDetailsPage.py:79 radialnet/gui/NodeNotebook.py:396
msgid "Last boot:"
msgstr ""

#: zenmapGUI/ScanHostDetailsPage.py:84
msgid "IPv4:"
msgstr ""

#: zenmapGUI/ScanHostDetailsPage.py:87
msgid "IPv6:"
msgstr ""

#: zenmapGUI/ScanHostDetailsPage.py:90
msgid "MAC:"
msgstr ""

#: zenmapGUI/ScanHostDetailsPage.py:93
msgid "Vendor:"
msgstr ""

#: zenmapGUI/ScanHostDetailsPage.py:231
msgid "Name - Type:"
msgstr ""

#: zenmapGUI/ScanHostDetailsPage.py:249
msgid "Not Available"
msgstr ""

#: zenmapGUI/ScanHostDetailsPage.py:251
msgid "Name:"
msgstr ""

#: zenmapGUI/ScanHostDetailsPage.py:254
msgid "Accuracy:"
msgstr ""

#: zenmapGUI/ScanHostDetailsPage.py:281
msgid "Port-Protocol-State:"
msgstr ""

#: zenmapGUI/ScanHostDetailsPage.py:293 radialnet/gui/NodeNotebook.py:56
msgid "Type"
msgstr ""

#: zenmapGUI/ScanHostDetailsPage.py:294 radialnet/gui/NodeNotebook.py:56
msgid "Vendor"
msgstr ""

#: zenmapGUI/ScanHostDetailsPage.py:295
msgid "OS Family"
msgstr ""

#: zenmapGUI/ScanHostDetailsPage.py:296
msgid "OS Generation"
msgstr ""

#: zenmapGUI/ScanHostDetailsPage.py:297
msgid "Accuracy"
msgstr ""

#: zenmapGUI/ScanHostDetailsPage.py:324
msgid "Difficulty:"
msgstr ""

#: zenmapGUI/ScanHostDetailsPage.py:327
msgid "Index:"
msgstr ""

#: zenmapGUI/ScanHostDetailsPage.py:330 zenmapGUI/ScanHostDetailsPage.py:349
#: zenmapGUI/ScanHostDetailsPage.py:368
msgid "Values:"
msgstr ""

#: zenmapGUI/ScanHostDetailsPage.py:346 zenmapGUI/ScanHostDetailsPage.py:365
msgid "Class:"
msgstr ""

#: zenmapGUI/ScanScanListPage.py:31
msgid "Running"
msgstr ""

#: zenmapGUI/ScanScanListPage.py:34
msgid "Unsaved"
msgstr ""

#: zenmapGUI/ScanScanListPage.py:38
msgid "Failed"
msgstr ""

#: zenmapGUI/ScanScanListPage.py:40
msgid "Canceled"
msgstr ""

#: zenmapGUI/ScanScanListPage.py:61
msgid "Status"
msgstr ""

#: zenmapGUI/ScanScanListPage.py:67
msgid "Command"
msgstr ""

#: zenmapGUI/ScanScanListPage.py:84
msgid "Append Scan"
msgstr ""

#: zenmapGUI/ScanScanListPage.py:87
msgid "Remove Scan"
msgstr ""

#: zenmapGUI/ScanScanListPage.py:90
msgid "Cancel Scan"
msgstr ""

#: zenmapGUI/FileChoosers.py:35
#, python-format
msgid "All files (%s)"
msgstr ""

#: zenmapGUI/FileChoosers.py:44
#, python-format
msgid "Nmap XML files (%s)"
msgstr ""

#: zenmapGUI/FilterBar.py:23
msgid "Host Filter:"
msgstr ""

#: zenmapGUI/FilterBar.py:56
msgid ""
"Entering the text into the search performs a <b>keyword search</b> - the "
"search string is matched against every aspect of the host.\n"
"\n"
"To refine the search, you can use <b>operators</b> to search only specific "
"fields within a host. Most operators have a short form, listed. \n"
"<b>target: (t:)</b> - User-supplied target, or a rDNS result.\n"
"<b>os:</b> - All OS-related fields.\n"
"<b>open: (op:)</b> - Open ports discovered in a scan.\n"
"<b>closed: (cp:)</b> - Closed ports discovered in a scan.\n"
"<b>filtered: (fp:)</b> - Filtered ports discovered in scan.\n"
"<b>unfiltered: (ufp:)</b> - Unfiltered ports found in a scan (using, for "
"example, an ACK scan).\n"
"<b>open|filtered: (ofp:)</b> - Ports in the \"open|filtered\" state.\n"
"<b>closed|filtered: (cfp:)</b> - Ports in the \"closed|filtered\" state.\n"
"<b>service: (s:)</b> - All service-related fields.\n"
"<b>inroute: (ir:)</b> - Matches a router in the scan's traceroute output.\n"
msgstr ""

#: zenmapGUI/ScanInterface.py:316
msgid "Empty Nmap Command"
msgstr ""

#: zenmapGUI/ScanInterface.py:317
msgid ""
"There is no command to  execute. Maybe the selected/typed profile doesn't "
"exist. Please, check the profile name or type the nmap command you would "
"like to execute."
msgstr ""

#: zenmapGUI/ScanInterface.py:420
msgid ""
"This means that the nmap executable was not found in your system PATH, which "
"is"
msgstr ""

#: zenmapGUI/ScanInterface.py:420
msgid "<undefined>"
msgstr ""

#: zenmapGUI/ScanInterface.py:430
msgid "plus the extra directory"
msgstr ""

#: zenmapGUI/ScanInterface.py:432
msgid "plus the extra directories"
msgstr ""

#: zenmapGUI/ScanInterface.py:434
msgid "Error executing command"
msgstr ""

#: zenmapGUI/ScanInterface.py:501
msgid "Parse error"
msgstr ""

#: zenmapGUI/ScanInterface.py:502
#, python-format
msgid ""
"There was an error while parsing the XML file generated from the scan:\n"
"\n"
"%s"
msgstr ""

#: zenmapGUI/ScanInterface.py:614
#, python-format
msgid "%d/%d hosts shown"
msgstr ""

#: zenmapGUI/ScanInterface.py:987
msgid "Nmap Output"
msgstr ""

#: zenmapGUI/ScanInterface.py:988
msgid "Ports / Hosts"
msgstr ""

#: zenmapGUI/ScanInterface.py:989
msgid "Topology"
msgstr ""

#: zenmapGUI/ScanInterface.py:990
msgid "Host Details"
msgstr ""

#: zenmapGUI/ScanInterface.py:991
msgid "Scans"
msgstr ""

#: zenmapGUI/ScanInterface.py:1012
msgid "No host selected."
msgstr ""

#: radialnet/bestwidgets/windows.py:44
msgid "Alert"
msgstr ""

#: radialnet/gui/HostsViewer.py:48 radialnet/gui/Toolbar.py:132
msgid "Hosts Viewer"
msgstr ""

#: radialnet/gui/HostsViewer.py:52
msgid "No node selected"
msgstr ""

#: radialnet/gui/Toolbar.py:55
msgid "Hosts viewer"
msgstr ""

#: radialnet/gui/Toolbar.py:129
msgid "Save Graphic"
msgstr ""

#: radialnet/gui/Toolbar.py:135
msgid "Controls"
msgstr ""

#: radialnet/gui/Toolbar.py:139
msgid "Fisheye"
msgstr ""

#: radialnet/gui/Toolbar.py:225
msgid "Error saving snapshot"
msgstr ""

#: radialnet/gui/ControlWidget.py:81
msgid "Action"
msgstr ""

#: radialnet/gui/ControlWidget.py:99
msgid "Change focus"
msgstr ""

#: radialnet/gui/ControlWidget.py:109
msgid "Info"
msgstr ""

#: radialnet/gui/ControlWidget.py:112
msgid "Show information"
msgstr ""

#: radialnet/gui/ControlWidget.py:118
msgid "Group children"
msgstr ""

#: radialnet/gui/ControlWidget.py:125
msgid "Fill region"
msgstr ""

#: radialnet/gui/ControlWidget.py:131
msgid "Red"
msgstr ""

#: radialnet/gui/ControlWidget.py:132
msgid "Yellow"
msgstr ""

#: radialnet/gui/ControlWidget.py:133
msgid "Green"
msgstr ""

#: radialnet/gui/ControlWidget.py:463
msgid "<b>Fisheye</b> on ring"
msgstr ""

#: radialnet/gui/ControlWidget.py:478
msgid "with interest factor"
msgstr ""

#: radialnet/gui/ControlWidget.py:483
msgid "and spread factor"
msgstr ""

#: radialnet/gui/ControlWidget.py:595
msgid "Interpolation"
msgstr ""

#: radialnet/gui/ControlWidget.py:607
msgid "Cartesian"
msgstr ""

#: radialnet/gui/ControlWidget.py:608
msgid "Polar"
msgstr ""

#: radialnet/gui/ControlWidget.py:621
msgid "Frames"
msgstr ""

#: radialnet/gui/ControlWidget.py:682
msgid "Layout"
msgstr ""

#: radialnet/gui/ControlWidget.py:695
msgid "Symmetric"
msgstr ""

#: radialnet/gui/ControlWidget.py:696
msgid "Weighted"
msgstr ""

#: radialnet/gui/ControlWidget.py:756
msgid "Ring gap"
msgstr ""

#: radialnet/gui/ControlWidget.py:760
msgid "Lower ring gap"
msgstr ""

#: radialnet/gui/ControlWidget.py:893
msgid "View"
msgstr ""

#: radialnet/gui/ControlWidget.py:906
msgid "Zoom"
msgstr ""

#: radialnet/gui/ControlWidget.py:1140
msgid "Navigation"
msgstr ""

#: radialnet/gui/NodeNotebook.py:31
msgid "Method"
msgstr ""

#: radialnet/gui/NodeNotebook.py:32
msgid "Count"
msgstr ""

#: radialnet/gui/NodeNotebook.py:32
msgid "Reasons"
msgstr ""

#: radialnet/gui/NodeNotebook.py:42
msgid "TTL"
msgstr ""

#: radialnet/gui/NodeNotebook.py:42
msgid "RTT"
msgstr ""

#: radialnet/gui/NodeNotebook.py:42
msgid "IP"
msgstr ""

#: radialnet/gui/NodeNotebook.py:44
#, python-format
msgid "Traceroute on port <b>%s/%s</b> totalized <b>%d</b> known hops."
msgstr ""

#: radialnet/gui/NodeNotebook.py:48
msgid "No traceroute information available."
msgstr ""

#: radialnet/gui/NodeNotebook.py:55
msgid "Name"
msgstr ""

#: radialnet/gui/NodeNotebook.py:55
msgid "DB Line"
msgstr ""

#: radialnet/gui/NodeNotebook.py:56
msgid "Family"
msgstr ""

#: radialnet/gui/NodeNotebook.py:60
#, python-format
msgid ""
"<b>*</b> TCP sequence <i>index</i> equal to %d and <i>difficulty</i> is "
"\"%s\"."
msgstr ""

#: radialnet/gui/NodeNotebook.py:94
msgid "General"
msgstr ""

#: radialnet/gui/NodeNotebook.py:96
msgid "Traceroute"
msgstr ""

#: radialnet/gui/NodeNotebook.py:140
#, python-format
msgid "Ports (%s)"
msgstr ""

#: radialnet/gui/NodeNotebook.py:162 radialnet/gui/NodeNotebook.py:702
msgid "<unknown>"
msgstr ""

#: radialnet/gui/NodeNotebook.py:168
msgid "<none>"
msgstr ""

#: radialnet/gui/NodeNotebook.py:193
#, python-format
msgid "[%d] service: %s"
msgstr ""

#: radialnet/gui/NodeNotebook.py:198
msgid "<special field>"
msgstr ""

#: radialnet/gui/NodeNotebook.py:301
#, python-format
msgid "Extraports (%s)"
msgstr ""

#: radialnet/gui/NodeNotebook.py:308
msgid "Special fields"
msgstr ""

#: radialnet/gui/NodeNotebook.py:344
msgid "General information"
msgstr ""

#: radialnet/gui/NodeNotebook.py:345
msgid "Sequences"
msgstr ""

#: radialnet/gui/NodeNotebook.py:348
msgid "No sequence information."
msgstr ""

#: radialnet/gui/NodeNotebook.py:349
msgid "No OS information."
msgstr ""

#: radialnet/gui/NodeNotebook.py:354
msgid "Address:"
msgstr ""

#: radialnet/gui/NodeNotebook.py:377
msgid "Hostname:"
msgstr ""

#: radialnet/gui/NodeNotebook.py:401
#, python-format
msgid "%s (%s seconds)."
msgstr ""

#: radialnet/gui/NodeNotebook.py:467
msgid "Match"
msgstr ""

#: radialnet/gui/NodeNotebook.py:517 radialnet/gui/NodeNotebook.py:567
msgid "Class"
msgstr ""

#: radialnet/gui/NodeNotebook.py:525
msgid "Used ports:"
msgstr ""

#: radialnet/gui/NodeNotebook.py:548
msgid "Fingerprint"
msgstr ""

#: radialnet/gui/NodeNotebook.py:568
msgid "Values"
msgstr ""

#: radialnet/gui/NodeNotebook.py:570
msgid "TCP *"
msgstr ""

#: radialnet/gui/NodeNotebook.py:571
msgid "IP ID"
msgstr ""

#: radialnet/gui/NodeNotebook.py:572
msgid "TCP Timestamp"
msgstr ""

#: radialnet/gui/SaveDialog.py:47
msgid "Save Topology"
msgstr ""

#: radialnet/gui/SaveDialog.py:67
msgid "Select File Type:"
msgstr ""

#: radialnet/gui/SaveDialog.py:99
msgid "No filename extension"
msgstr ""

#: radialnet/gui/SaveDialog.py:100
#, python-format
msgid ""
"The filename \"%s\" does not have an extension, and no specific file type "
"was chosen.\n"
"Enter a known extension or select the file type from the list."
msgstr ""

#: radialnet/gui/SaveDialog.py:106
msgid "Unknown filename extension"
msgstr ""

#: radialnet/gui/SaveDialog.py:107
#, python-format
msgid ""
"There is no file type known for the filename extension \"%s\".\n"
"Enter a known extension or select the file type from the list."
msgstr ""