File: ko.po

package info (click to toggle)
webalizer 2.23.08-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, stretch
  • size: 9,560 kB
  • ctags: 3,479
  • sloc: ansic: 10,021; sh: 333; makefile: 91
file content (2451 lines) | stat: -rw-r--r-- 43,118 bytes parent folder | download | duplicates (2)
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
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
msgid ""
msgstr ""
"Project-Id-Version: 1.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-11-24 15:03+0100\n"
"PO-Revision-Date: 2003-05-25 23:29+0200\n"
"Last-Translator: Johan Poirier <johan.poirier@insa-lyon.fr>\n"
"Language-Team: French <tech@jexiste.org>\n"
"Language: fr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CP949\n"
"Content-Transfer-Encoding: 8bit\n"

#: dns_resolv.c:123
#, c-format
msgid "Checking %s..."
msgstr ""

#: dns_resolv.c:133
#, c-format
msgid " found: %s (%ld)\n"
msgstr ""

#: dns_resolv.c:140
#, c-format
msgid " not found\n"
msgstr ""

#: dns_resolv.c:141
#, c-format
msgid " error (%d)\n"
msgstr ""

#: dns_resolv.c:202 dns_resolv.c:777
msgid "Error: Unable to open DNS cache file"
msgstr "Error: Unable to open DNS cache file"

#: dns_resolv.c:215 dns_resolv.c:787
msgid "Error: Unable to lock DNS cache file"
msgstr "Error: Unable to lock DNS cache file"

#: dns_resolv.c:302
msgid "None to process"
msgstr "None to process"

#: dns_resolv.c:319
msgid "addresses"
msgstr "addresses"

#: dns_resolv.c:324 webalizer.c:1500
msgid "in"
msgstr "۽ð"

#: dns_resolv.c:324 webalizer.c:1500
msgid "seconds"
msgstr ""

#: dns_resolv.c:331
#, c-format
msgid ", %d/sec\n"
msgstr ""

#: dns_resolv.c:374
#, c-format
msgid "INPIPE creation error"
msgstr ""

#: dns_resolv.c:380
#, c-format
msgid "OUTPIPE creation error"
msgstr ""

#: dns_resolv.c:389
#, c-format
msgid "FORK error"
msgstr ""

#: dns_resolv.c:405
msgid "read error"
msgstr ""

#: dns_resolv.c:428
#, c-format
msgid "Child %d getnameinfo bad hbuf!\n"
msgstr ""

#: dns_resolv.c:434
#, c-format
msgid "Child %d getnameinfo failed!\n"
msgstr ""

#: dns_resolv.c:439
msgid "write error"
msgstr ""

#: dns_resolv.c:448
#, c-format
msgid "Child %d got closed input, shutting down\n"
msgstr ""

#: dns_resolv.c:493
#, c-format
msgid "Reaped Child %d\n"
msgstr ""

#: dns_resolv.c:522
#, c-format
msgid "Giving %d bytes to Child %d\n"
msgstr ""

#: dns_resolv.c:531
msgid "Could not write to pipe"
msgstr ""

#: dns_resolv.c:560
msgid "Error in select"
msgstr ""

#: dns_resolv.c:568
#, c-format
msgid "tick\n"
msgstr ""

#: dns_resolv.c:603
#, c-format
msgid "Child %d wants to be reaped\n"
msgstr ""

#: dns_resolv.c:616
#, c-format
msgid "Child %d Got a result: %s -> %s\n"
msgstr ""

#: dns_resolv.c:623
#, c-format
msgid "Child %d could not resolve: %s (%s)\n"
msgstr ""

#: dns_resolv.c:632
#, c-format
msgid "Child %d back in task pool\n"
msgstr ""

#: dns_resolv.c:724
#, c-format
msgid "db_put fail!\n"
msgstr ""

#: graphs.c:143 graphs.c:147 graphs.c:149 graphs.c:473 graphs.c:476
#: graphs.c:478 output.c:715 output.c:806 output.c:925 output.c:937
#: output.c:1039 output.c:1131 output.c:1143 output.c:1268 output.c:1901
#: output.c:1998 output.c:2225 output.c:2301 output.c:2345 output.c:2466
#: output.c:2623
msgid "kB F"
msgstr ""

#: graphs.c:144 graphs.c:153 graphs.c:155 graphs.c:474 graphs.c:482
#: graphs.c:484 output.c:716 output.c:807 output.c:939 output.c:1039
#: output.c:1146 output.c:1268 output.c:1903 output.c:1998 output.c:2227
#: output.c:2301 output.c:2345 output.c:2466 output.c:2625
msgid "kB In"
msgstr ""

#: graphs.c:145 graphs.c:159 graphs.c:161 graphs.c:488 graphs.c:490
#: output.c:717 output.c:808 output.c:941 output.c:1039 output.c:1149
#: output.c:1268 output.c:1905 output.c:1998 output.c:2229 output.c:2301
#: output.c:2346 output.c:2466 output.c:2627
msgid "kB Out"
msgstr ""

#: graphs.c:164 graphs.c:167 graphs.c:169 graphs.c:501 graphs.c:503
#: output.c:547 output.c:713 output.c:943 output.c:1040 output.c:1374
#: output.c:1907 output.c:1999 output.c:2301 output.c:2466 output.c:2619
#: output.c:2629
msgid "Visits"
msgstr "Visits"

#: graphs.c:165 graphs.c:173 graphs.c:175 graphs.c:493 graphs.c:495
#: graphs.c:497 output.c:490 output.c:714 output.c:1032 output.c:2621
msgid "Sites"
msgstr "Ʈ"

#: graphs.c:178 graphs.c:181 graphs.c:183 graphs.c:506 graphs.c:510
#: graphs.c:512 graphs.c:718 graphs.c:722 graphs.c:724 output.c:543
#: output.c:712 output.c:805 output.c:2617 output.c:2631
msgid "Pages"
msgstr "Pages"

#: graphs.c:179 graphs.c:187 graphs.c:189 graphs.c:507 graphs.c:516
#: graphs.c:518 graphs.c:719 graphs.c:728 graphs.c:730 output.c:711
#: output.c:804 output.c:935 output.c:1039 output.c:1899 output.c:1998
#: output.c:2223 output.c:2301 output.c:2466 output.c:2615 output.c:2633
msgid "Files"
msgstr "Files"

#: graphs.c:193 graphs.c:195 graphs.c:508 graphs.c:522 graphs.c:524
#: graphs.c:720 graphs.c:734 graphs.c:736 output.c:710 output.c:803
#: output.c:933 output.c:1039 output.c:1140 output.c:1268 output.c:1371
#: output.c:1466 output.c:1551 output.c:1631 output.c:1705 output.c:1778
#: output.c:1841 output.c:1897 output.c:1998 output.c:2221 output.c:2301
#: output.c:2345 output.c:2387 output.c:2426 output.c:2466 output.c:2510
#: output.c:2613 output.c:2635
msgid "Hits"
msgstr "Hits"

#: graphs.c:378 graphs.c:656 graphs.c:782 graphs.c:888 output.c:2570
#: output.c:2592 output.c:3075 output.c:3084 preserve.c:169 preserve.c:339
msgid "Error: Unable to open file"
msgstr ":  ã  "

#: graphs.c:873 lang2.h:432
msgid "Other"
msgstr "Ÿ"

#: hashtab.c:118 hashtab.c:316 hashtab.c:450 hashtab.c:570 hashtab.c:687
#: hashtab.c:792 hashtab.c:970 linklist.c:109 linklist.c:166
msgid "Warning: String exceeds storage size"
msgstr ": ڿ  ʰ"

#: lang2.h:40
msgid "-h        = print this help message"
msgstr "-h        =  ȭ "

#: lang2.h:41
#, fuzzy
msgid "-V        = print version information"
msgstr "-v -V     = ǹȣ "

#: lang2.h:42
#, fuzzy
msgid "-v        = be verbose"
msgstr "-f        = fold sequence errors"

#: lang2.h:43
msgid "-d        = print additional debug info"
msgstr "-d        = ߰   "

#: lang2.h:44
#, fuzzy
msgid "-F type   = Log type.  type= (clf | ftp | squid | w3c)"
msgstr "-F type   = Log type.  type= (clf | ftp | squid)"

#: lang2.h:45
msgid "-f        = Fold sequence errors"
msgstr "-f        = fold sequence errors"

#: lang2.h:46
msgid "-i        = ignore history file"
msgstr "-i        = 丮  "

#: lang2.h:47
msgid "-p        = preserve state (incremental)"
msgstr "-p        =    (incremental)"

#: lang2.h:48
#, fuzzy
msgid "-b        = ignore state (incremental)"
msgstr "-p        =    (incremental)"

#: lang2.h:49
msgid "-q        = supress informational messages"
msgstr "-q        = Ϲ   "

#: lang2.h:50
msgid "-Q        = supress _ALL_ messages"
msgstr "-Q        =    "

#: lang2.h:51
msgid "-Y        = supress country graph"
msgstr "-Y        = supress country graph"

#: lang2.h:52
msgid "-G        = supress hourly graph"
msgstr "-G        = Ϻ ׷ "

#: lang2.h:53
msgid "-H        = supress hourly stats"
msgstr "-H        = ð  "

#: lang2.h:54
msgid "-L        = supress color coded graph legends"
msgstr "-L        = supress color coded graph legends"

#: lang2.h:55
msgid "-l num    = use num background lines on graph"
msgstr "-l num    = use num background lines on graph"

#: lang2.h:56
msgid "-m num    = Visit timout value (seconds)"
msgstr "-m num    = Visit timeout value (seconds)"

#: lang2.h:57
msgid "-T        = print timing information"
msgstr "-T        =  ð "

#: lang2.h:58
msgid "-c file   = use configuration file 'file'"
msgstr "-c file   =  "

#: lang2.h:59
msgid "-n name   = hostname to use"
msgstr "-n name   = ȣƮ"

#: lang2.h:60
msgid "-o dir    = output directory to use"
msgstr "-o dir    =  丮"

#: lang2.h:61
msgid "-t name   = report title 'name'"
msgstr "-t name   =  ŸƲ"

#: lang2.h:62
msgid "-a name   = hide user agent 'name'"
msgstr "-a name   = ش Ʈ "

#: lang2.h:63
msgid "-r name   = hide referrer 'name'"
msgstr "-r name   = ش ۷ "

#: lang2.h:64
msgid "-s name   = hide site 'name'"
msgstr "-s name   = ش Ʈ "

#: lang2.h:65
msgid "-u name   = hide URL 'name'"
msgstr "-u name   = ش URL "

#: lang2.h:66
msgid "-x name   = Use filename extension 'name'"
msgstr "-x name   =   Ȯ"

#: lang2.h:67
#, fuzzy
msgid "-O name   = Omit page 'name'"
msgstr "-s name   = ش Ʈ "

#: lang2.h:68
msgid "-P name   = Page type extension 'name'"
msgstr "-P name   = Page type extension 'name'"

#: lang2.h:69
msgid "-I name   = Index alias 'name'"
msgstr "-I name   =   ϸ"

#: lang2.h:70
msgid "-K num    = num months in summary table"
msgstr ""

#: lang2.h:71
#, fuzzy
msgid "-k num    = num months in summary graph"
msgstr "-l num    = use num background lines on graph"

#: lang2.h:72
msgid "-A num    = Display num top agents"
msgstr "-A num    =  ' Ʈ' "

#: lang2.h:73
msgid "-C num    = Display num top countries"
msgstr "-C num    =  ' ' "

#: lang2.h:74
msgid "-R num    = Display num top referrers"
msgstr "-R num    =  ' ۷' "

#: lang2.h:75
msgid "-S num    = Display num top sites"
msgstr "-S num    =  ' Ʈ' "

#: lang2.h:76
msgid "-U num    = Display num top URLs"
msgstr "-U num    =  ' URL' "

#: lang2.h:77
msgid "-e num    = Display num top Entry Pages"
msgstr "-e num    = Display num top Entry Pages"

#: lang2.h:78
msgid "-E num    = Display num top Exit Pages"
msgstr "-E num    = Display num top Exit Pages"

#: lang2.h:79
msgid "-g num    = Group Domains to 'num' levels"
msgstr "-g num    = Group Domains to 'num' levels"

#: lang2.h:80
msgid "-X        = Hide individual sites"
msgstr "-X        = Hide individual sites"

#: lang2.h:81
msgid "-z dir    = Use country flags in 'dir'"
msgstr ""

#: lang2.h:83
msgid "-D name   = Use DNS Cache file 'name'"
msgstr "-D name   = Use DNS Cache file 'name'"

#: lang2.h:84
msgid "-N num    = Number of DNS processes (0=disable)"
msgstr "-N num    = Number of DNS processes (0=disable)"

#: lang2.h:85
msgid "-j        = Enable native GeoDB lookups"
msgstr ""

#: lang2.h:86
#, fuzzy
msgid "-J name   = Use GeoDB database 'name'"
msgstr "-D name   = Use DNS Cache file 'name'"

#: lang2.h:89
msgid "-w        = Enable GeoIP lookups"
msgstr ""

#: lang2.h:90
#, fuzzy
msgid "-W name   = Use GeoIP database 'name'"
msgstr "-I name   =   ϸ"

#: lang2.h:95
msgid "Feb"
msgstr "Feb"

#: lang2.h:95
msgid "Jan"
msgstr "Jan"

#: lang2.h:95
msgid "Mar"
msgstr "Mar"

#: lang2.h:96
msgid "Apr"
msgstr "Apr"

#: lang2.h:96
msgid "Jun"
msgstr "Jun"

#: lang2.h:96
msgid "short|May"
msgstr ""

#: lang2.h:97
msgid "Aug"
msgstr "Aug"

#: lang2.h:97
msgid "Jul"
msgstr "Jul"

#: lang2.h:97
msgid "Sep"
msgstr "Sep"

#: lang2.h:98
msgid "Dec"
msgstr "Dec"

#: lang2.h:98
msgid "Nov"
msgstr "Nov"

#: lang2.h:98
msgid "Oct"
msgstr "Oct"

#: lang2.h:101
msgid "February"
msgstr "February"

#: lang2.h:101
msgid "January"
msgstr "January"

#: lang2.h:101
msgid "March"
msgstr "March"

#: lang2.h:102
msgid "April"
msgstr "April"

#: lang2.h:102
msgid "June"
msgstr "June"

#: lang2.h:102
#, fuzzy
msgid "long|May"
msgstr "Tonga"

#: lang2.h:103
msgid "August"
msgstr "August"

#: lang2.h:103
msgid "July"
msgstr "July"

#: lang2.h:103
msgid "September"
msgstr "September"

#: lang2.h:104
msgid "December"
msgstr "December"

#: lang2.h:104
msgid "November"
msgstr "November"

#: lang2.h:104
msgid "October"
msgstr "October"

#: lang2.h:108
msgid "Undefined response code"
msgstr "Undefined response code"

#: lang2.h:109
msgid "Code 100 - Continue"
msgstr "Code 100 - Continue"

#: lang2.h:110
msgid "Code 101 - Switching Protocols"
msgstr "Code 101 - Switching Protocols"

#: lang2.h:111
msgid "Code 200 - OK"
msgstr "Code 200 - OK"

#: lang2.h:112
msgid "Code 201 - Created"
msgstr "Code 201 - Created"

#: lang2.h:113
msgid "Code 202 - Accepted"
msgstr "Code 202 - Accepted"

#: lang2.h:114
msgid "Code 203 - Non-Authoritative Information"
msgstr "Code 203 - Non-Authoritative Information"

#: lang2.h:115
msgid "Code 204 - No Content"
msgstr "Code 204 - No Content"

#: lang2.h:116
msgid "Code 205 - Reset Content"
msgstr "Code 205 - Reset Content"

#: lang2.h:117
msgid "Code 206 - Partial Content"
msgstr "Code 206 - Partial Content"

#: lang2.h:118
msgid "Code 300 - Multiple Choices"
msgstr "Code 300 - Multiple Choices"

#: lang2.h:119
msgid "Code 301 - Moved Permanently"
msgstr "Code 301 - Moved Permanently"

#: lang2.h:120
msgid "Code 302 - Found"
msgstr "Code 302 - Found"

#: lang2.h:121
msgid "Code 303 - See Other"
msgstr "Code 303 - See Other"

#: lang2.h:122
msgid "Code 304 - Not Modified"
msgstr "Code 304 - Not Modified"

#: lang2.h:123
msgid "Code 305 - Use Proxy"
msgstr "Code 305 - Use Proxy"

#: lang2.h:124
msgid "Code 307 - Moved Temporarily"
msgstr "Code 307 - Moved Temporarily"

#: lang2.h:125
msgid "Code 400 - Bad Request"
msgstr "Code 400 - Bad Request"

#: lang2.h:126
msgid "Code 401 - Unauthorized"
msgstr "Code 401 - Unauthorized"

#: lang2.h:127
msgid "Code 402 - Payment Required"
msgstr "Code 402 - Payment Required"

#: lang2.h:128
msgid "Code 403 - Forbidden"
msgstr "Code 403 - Forbidden"

#: lang2.h:129
msgid "Code 404 - Not Found"
msgstr "Code 404 - Not Found"

#: lang2.h:130
msgid "Code 405 - Method Not Allowed"
msgstr "Code 405 - Method Not Allowed"

#: lang2.h:131
msgid "Code 406 - Not Acceptable"
msgstr "Code 406 - Not Acceptable"

#: lang2.h:132
msgid "Code 407 - Proxy Authentication Required"
msgstr "Code 407 - Proxy Authentication Required"

#: lang2.h:133
msgid "Code 408 - Request Timeout"
msgstr "Code 408 - Request Timeout"

#: lang2.h:134
msgid "Code 409 - Conflict"
msgstr "Code 409 - Conflict"

#: lang2.h:135
msgid "Code 410 - Gone"
msgstr "Code 410 - Gone"

#: lang2.h:136
msgid "Code 411 - Length Required"
msgstr "Code 411 - Length Required"

#: lang2.h:137
msgid "Code 412 - Precondition Failed"
msgstr "Code 412 - Precondition Failed"

#: lang2.h:138
msgid "Code 413 - Request Entity Too Large"
msgstr "Code 413 - Request Entity Too Large"

#: lang2.h:139
msgid "Code 414 - Request-URI Too Long"
msgstr "Code 414 - Request-URI Too Long"

#: lang2.h:140
msgid "Code 415 - Unsupported Media Type"
msgstr "Code 415 - Unsupported Media Type"

#: lang2.h:141
msgid "Code 416 - Requested Range Not Satisfiable"
msgstr "Code 416 - Requested Range Not Satisfiable"

#: lang2.h:142
msgid "Code 417 - Expectation Failed"
msgstr "Code 417 - Expectation Failed"

#: lang2.h:143
msgid "Code 500 - Internal Server Error"
msgstr "Code 500 - Internal Server Error"

#: lang2.h:144
msgid "Code 501 - Not Implemented"
msgstr "Code 501 - Not Implemented"

#: lang2.h:145
msgid "Code 502 - Bad Gateway"
msgstr "Code 502 - Bad Gateway"

#: lang2.h:146
msgid "Code 503 - Service Unavailable"
msgstr "Code 503 - Service Unavailable"

#: lang2.h:147
msgid "Code 504 - Gateway Timeout"
msgstr "Code 504 - Gateway Timeout"

#: lang2.h:148
msgid "Code 505 - HTTP Version Not Supported"
msgstr "Code 505 - HTTP Version Not Supported"

#: lang2.h:155
msgid "Unresolved/Unknown"
msgstr "Unresolved/Unknown"

#: lang2.h:156
#, fuzzy
msgid "Commercial (com)"
msgstr "US Commercial"

#: lang2.h:157
#, fuzzy
msgid "Educational (edu)"
msgstr "US Educational"

#: lang2.h:158
#, fuzzy
msgid "US Government (gov)"
msgstr "US Government"

#: lang2.h:159
msgid "International (int)"
msgstr "International (int)"

#: lang2.h:160
#, fuzzy
msgid "US Military (mil)"
msgstr "US Military"

#: lang2.h:161
#, fuzzy
msgid "Network (net)"
msgstr "Network"

#: lang2.h:162
#, fuzzy
msgid "Non-Profit (org)"
msgstr "Non-Profit Organization"

#: lang2.h:163
msgid "Generic Business (biz)"
msgstr ""

#: lang2.h:164
msgid "Catalan Community (cat)"
msgstr ""

#: lang2.h:165
msgid "Professional (pro)"
msgstr ""

#: lang2.h:166
msgid "Ind. Contact Data (tel)"
msgstr ""

#: lang2.h:167
msgid "Air Transport Industry (aero)"
msgstr ""

#: lang2.h:168
msgid "Asia Pacific Community (asia)"
msgstr ""

#: lang2.h:169
msgid "Cooperative Association (coop)"
msgstr ""

#: lang2.h:170
msgid "Generic TLD (info)"
msgstr ""

#: lang2.h:171
msgid "Human Resources (jobs)"
msgstr ""

#: lang2.h:172
msgid "Generic Mobile TLD (mobi)"
msgstr ""

#: lang2.h:173
msgid "Individual (name)"
msgstr ""

#: lang2.h:174
msgid "Address Routing (arpa)"
msgstr ""

#: lang2.h:175
msgid "Nato field (nato)"
msgstr "Nato field (nato)"

#: lang2.h:176
msgid "Museums (museum)"
msgstr ""

#: lang2.h:177
msgid "Travel Ind. (travel)"
msgstr ""

#: lang2.h:178
msgid "Ascension Island"
msgstr ""

#: lang2.h:179
msgid "Andorra"
msgstr "Andorra"

#: lang2.h:180
msgid "United Arab Emirates"
msgstr "United Arab Emirates"

#: lang2.h:181
msgid "Afghanistan"
msgstr "Afghanistan"

#: lang2.h:182
msgid "Antigua and Barbuda"
msgstr "Antigua and Barbuda"

#: lang2.h:183
msgid "Anguilla"
msgstr "Anguilla"

#: lang2.h:184
msgid "Albania"
msgstr "Albania"

#: lang2.h:185
msgid "Armenia"
msgstr "Armenia"

#: lang2.h:186
msgid "Netherlands Antilles"
msgstr "Netherlands Antilles"

#: lang2.h:187
msgid "Angola"
msgstr "Angola"

#: lang2.h:188
msgid "Antarctica"
msgstr "Antarctica"

#: lang2.h:189
msgid "Argentina"
msgstr "Argentina"

#: lang2.h:190
msgid "American Samoa"
msgstr "American Samoa"

#: lang2.h:191
msgid "Austria"
msgstr "Austria"

#: lang2.h:192
msgid "Australia"
msgstr "Australia"

#: lang2.h:193
msgid "Aruba"
msgstr "Aruba"

#: lang2.h:194
#, fuzzy
msgid "Aland Islands"
msgstr "Cayman Islands"

#: lang2.h:195
msgid "Azerbaijan"
msgstr "Azerbaijan"

#: lang2.h:196
msgid "Bosnia and Herzegovina"
msgstr "Bosnia and Herzegovina"

#: lang2.h:197
msgid "Barbados"
msgstr "Barbados"

#: lang2.h:198
msgid "Bangladesh"
msgstr "Bangladesh"

#: lang2.h:199
msgid "Belgium"
msgstr "Belgium"

#: lang2.h:200
msgid "Burkina Faso"
msgstr "Burkina Faso"

#: lang2.h:201
msgid "Bulgaria"
msgstr "Bulgaria"

#: lang2.h:202
msgid "Bahrain"
msgstr "Bahrain"

#: lang2.h:203
msgid "Burundi"
msgstr "Burundi"

#: lang2.h:204
msgid "Benin"
msgstr "Benin"

#: lang2.h:205
msgid "Saint Barthelemy"
msgstr ""

#: lang2.h:206
msgid "Bermuda"
msgstr "Bermuda"

#: lang2.h:207
msgid "Brunei Darussalam"
msgstr "Brunei Darussalam"

#: lang2.h:208
msgid "Bolivia"
msgstr "Bolivia"

#: lang2.h:209
msgid "Brazil"
msgstr "Brazil"

#: lang2.h:210
msgid "Bahamas"
msgstr "Bahamas"

#: lang2.h:211
msgid "Bhutan"
msgstr "Bhutan"

#: lang2.h:212
msgid "Bouvet Island"
msgstr "Bouvet Island"

#: lang2.h:213
msgid "Botswana"
msgstr "Botswana"

#: lang2.h:214
msgid "Belarus"
msgstr "Belarus"

#: lang2.h:215
msgid "Belize"
msgstr "Belize"

#: lang2.h:216
msgid "Canada"
msgstr "Canada"

#: lang2.h:217
msgid "Cocos (Keeling) Islands"
msgstr "Cocos (Keeling) Islands"

#: lang2.h:218
#, fuzzy
msgid "Congo, Democratic Republic"
msgstr "Central African Republic"

#: lang2.h:219
msgid "Central African Republic"
msgstr "Central African Republic"

#: lang2.h:220
msgid "Congo"
msgstr "Congo"

#: lang2.h:221
msgid "Switzerland"
msgstr "Switzerland"

#: lang2.h:222
msgid "Cote D'Ivoire (Ivory Coast)"
msgstr "Cote D'Ivoire (Ivory Coast)"

#: lang2.h:223
msgid "Cook Islands"
msgstr "Cook Islands"

#: lang2.h:224
msgid "Chile"
msgstr "Chile"

#: lang2.h:225
msgid "Cameroon"
msgstr "Cameroon"

#: lang2.h:226
msgid "China"
msgstr "China"

#: lang2.h:227
msgid "Colombia"
msgstr "Colombia"

#: lang2.h:228
msgid "Costa Rica"
msgstr "Costa Rica"

#: lang2.h:229
msgid "Cuba"
msgstr "Cuba"

#: lang2.h:230
msgid "Cape Verde"
msgstr "Cape Verde"

#: lang2.h:231
msgid "Christmas Island"
msgstr "Christmas Island"

#: lang2.h:232
msgid "Cyprus"
msgstr "Cyprus"

#: lang2.h:233
msgid "Czech Republic"
msgstr "Czech Republic"

#: lang2.h:234
msgid "Germany"
msgstr "Germany"

#: lang2.h:235
msgid "Djibouti"
msgstr "Djibouti"

#: lang2.h:236
msgid "Denmark"
msgstr "Denmark"

#: lang2.h:237
msgid "Dominica"
msgstr "Dominica"

#: lang2.h:238
msgid "Dominican Republic"
msgstr "Dominican Republic"

#: lang2.h:239
msgid "Algeria"
msgstr "Algeria"

#: lang2.h:240
msgid "Ecuador"
msgstr "Ecuador"

#: lang2.h:241
msgid "Estonia"
msgstr "Estonia"

#: lang2.h:242
msgid "Egypt"
msgstr "Egypt"

#: lang2.h:243
msgid "Western Sahara"
msgstr "Western Sahara"

#: lang2.h:244
msgid "Eritrea"
msgstr "Eritrea"

#: lang2.h:245
msgid "Spain"
msgstr "Spain"

#: lang2.h:246
msgid "Ethiopia"
msgstr "Ethiopia"

#: lang2.h:247
msgid "European Union"
msgstr ""

#: lang2.h:248
msgid "Finland"
msgstr "Finland"

#: lang2.h:249
msgid "Fiji"
msgstr "Fiji"

#: lang2.h:250
msgid "Falkland Islands (Malvinas)"
msgstr "Falkland Islands (Malvinas)"

#: lang2.h:251
msgid "Micronesia"
msgstr "Micronesia"

#: lang2.h:252
msgid "Faroe Islands"
msgstr "Faroe Islands"

#: lang2.h:253
msgid "France"
msgstr "France"

#: lang2.h:254
msgid "Gabon"
msgstr "Gabon"

#: lang2.h:255
msgid "Great Britain (UK)"
msgstr "Great Britain (UK)"

#: lang2.h:256
msgid "Grenada"
msgstr "Grenada"

#: lang2.h:257
msgid "Georgia"
msgstr "Georgia"

#: lang2.h:258
msgid "French Guiana"
msgstr "French Guiana"

#: lang2.h:259
msgid "Guernsey"
msgstr ""

#: lang2.h:260
msgid "Ghana"
msgstr "Ghana"

#: lang2.h:261
msgid "Gibraltar"
msgstr "Gibraltar"

#: lang2.h:262
msgid "Greenland"
msgstr "Greenland"

#: lang2.h:263
msgid "Gambia"
msgstr "Gambia"

#: lang2.h:264
msgid "Guinea"
msgstr "Guinea"

#: lang2.h:265
msgid "Guadeloupe"
msgstr "Guadeloupe"

#: lang2.h:266
msgid "Equatorial Guinea"
msgstr "Equatorial Guinea"

#: lang2.h:267
msgid "Greece"
msgstr "Greece"

#: lang2.h:268
msgid "S. Georgia and S. Sandwich Isls."
msgstr "S. Georgia and S. Sandwich Isls."

#: lang2.h:269
msgid "Guatemala"
msgstr "Guatemala"

#: lang2.h:270
msgid "Guam"
msgstr "Guam"

#: lang2.h:271
msgid "Guinea-Bissau"
msgstr "Guinea-Bissau"

#: lang2.h:272
msgid "Guyana"
msgstr "Guyana"

#: lang2.h:273
msgid "Hong Kong"
msgstr "Hong Kong"

#: lang2.h:274
msgid "Heard and McDonald Islands"
msgstr "Heard and McDonald Islands"

#: lang2.h:275
msgid "Honduras"
msgstr "Honduras"

#: lang2.h:276
msgid "Croatia"
msgstr ""

#: lang2.h:277
msgid "Haiti"
msgstr "Haiti"

#: lang2.h:278
msgid "Hungary"
msgstr "Hungary"

#: lang2.h:279
msgid "Indonesia"
msgstr "Indonesia"

#: lang2.h:280
msgid "Ireland"
msgstr "Ireland"

#: lang2.h:281
msgid "Israel"
msgstr "Israel"

#: lang2.h:282
msgid "Isle of Man"
msgstr ""

#: lang2.h:283
msgid "India"
msgstr "India"

#: lang2.h:284
msgid "British Indian Ocean Territory"
msgstr "British Indian Ocean Territory"

#: lang2.h:285
msgid "Iraq"
msgstr "Iraq"

#: lang2.h:286
msgid "Iran"
msgstr "Iran"

#: lang2.h:287
msgid "Iceland"
msgstr "Iceland"

#: lang2.h:288
msgid "Italy"
msgstr "Italy"

#: lang2.h:289
msgid "Jersey"
msgstr ""

#: lang2.h:290
msgid "Jamaica"
msgstr "Jamaica"

#: lang2.h:291
msgid "Jordan"
msgstr "Jordan"

#: lang2.h:292
msgid "Japan"
msgstr "Japan"

#: lang2.h:293
msgid "Kenya"
msgstr "Kenya"

#: lang2.h:294
msgid "Kyrgyzstan"
msgstr "Kyrgyzstan"

#: lang2.h:295
msgid "Cambodia"
msgstr "Cambodia"

#: lang2.h:296
msgid "Kiribati"
msgstr "Kiribati"

#: lang2.h:297
msgid "Comoros"
msgstr "Comoros"

#: lang2.h:298
msgid "Saint Kitts and Nevis"
msgstr "Saint Kitts and Nevis"

#: lang2.h:299
msgid "Korea, Democratic Republic of"
msgstr ""

#: lang2.h:300
#, fuzzy
msgid "Korea, Republic of"
msgstr "Slovak Republic"

#: lang2.h:301
msgid "Kuwait"
msgstr "Kuwait"

#: lang2.h:302
msgid "Cayman Islands"
msgstr "Cayman Islands"

#: lang2.h:303
msgid "Kazakhstan"
msgstr "Kazakhstan"

#: lang2.h:304
msgid "Laos"
msgstr "Laos"

#: lang2.h:305
msgid "Lebanon"
msgstr "Lebanon"

#: lang2.h:306
msgid "Saint Lucia"
msgstr "Saint Lucia"

#: lang2.h:307
msgid "Liechtenstein"
msgstr "Liechtenstein"

#: lang2.h:308
msgid "Sri Lanka"
msgstr "Sri Lanka"

#: lang2.h:309
msgid "Liberia"
msgstr "Liberia"

#: lang2.h:310
msgid "Lesotho"
msgstr "Lesotho"

#: lang2.h:311
msgid "Lithuania"
msgstr "Lithuania"

#: lang2.h:312
msgid "Luxembourg"
msgstr "Luxembourg"

#: lang2.h:313
msgid "Latvia"
msgstr "Latvia"

#: lang2.h:314
msgid "Libya"
msgstr "Libya"

#: lang2.h:315
msgid "Morocco"
msgstr "Morocco"

#: lang2.h:316
msgid "Monaco"
msgstr "Monaco"

#: lang2.h:317
msgid "Moldova"
msgstr "Moldova"

#: lang2.h:318
#, fuzzy
msgid "Montenegro"
msgstr "Montserrat"

#: lang2.h:319
msgid "Saint Martin (French part)"
msgstr ""

#: lang2.h:320
msgid "Madagascar"
msgstr "Madagascar"

#: lang2.h:321
msgid "Marshall Islands"
msgstr "Marshall Islands"

#: lang2.h:322
msgid "Macedonia"
msgstr "Macedonia"

#: lang2.h:323
msgid "Mali"
msgstr "Mali"

#: lang2.h:324
msgid "Myanmar"
msgstr "Myanmar"

#: lang2.h:325
msgid "Mongolia"
msgstr "Mongolia"

#: lang2.h:326
msgid "Macau"
msgstr "Macau"

#: lang2.h:327
msgid "Northern Mariana Islands"
msgstr "Northern Mariana Islands"

#: lang2.h:328
msgid "Martinique"
msgstr "Martinique"

#: lang2.h:329
msgid "Mauritania"
msgstr "Mauritania"

#: lang2.h:330
msgid "Montserrat"
msgstr "Montserrat"

#: lang2.h:331
msgid "Malta"
msgstr "Malta"

#: lang2.h:332
msgid "Mauritius"
msgstr "Mauritius"

#: lang2.h:333
msgid "Maldives"
msgstr "Maldives"

#: lang2.h:334
msgid "Malawi"
msgstr "Malawi"

#: lang2.h:335
msgid "Mexico"
msgstr "Mexico"

#: lang2.h:336
msgid "Malaysia"
msgstr "Malaysia"

#: lang2.h:337
msgid "Mozambique"
msgstr "Mozambique"

#: lang2.h:338
msgid "Namibia"
msgstr "Namibia"

#: lang2.h:339
msgid "New Caledonia"
msgstr "New Caledonia"

#: lang2.h:340
msgid "Niger"
msgstr "Niger"

#: lang2.h:341
msgid "Norfolk Island"
msgstr "Norfolk Island"

#: lang2.h:342
msgid "Nigeria"
msgstr "Nigeria"

#: lang2.h:343
msgid "Nicaragua"
msgstr "Nicaragua"

#: lang2.h:344
msgid "Netherlands"
msgstr "Netherlands"

#: lang2.h:345
msgid "Norway"
msgstr "Norway"

#: lang2.h:346
msgid "Nepal"
msgstr "Nepal"

#: lang2.h:347
msgid "Nauru"
msgstr "Nauru"

#: lang2.h:348
msgid "Niue"
msgstr "Niue"

#: lang2.h:349
#, fuzzy
msgid "New Zealand"
msgstr "New Zealand (Aotearoa)"

#: lang2.h:350
msgid "Oman"
msgstr "Oman"

#: lang2.h:351
msgid "Panama"
msgstr "Panama"

#: lang2.h:352
msgid "Peru"
msgstr "Peru"

#: lang2.h:353
msgid "French Polynesia"
msgstr "French Polynesia"

#: lang2.h:354
msgid "Papua New Guinea"
msgstr "Papua New Guinea"

#: lang2.h:355
msgid "Philippines"
msgstr "Philippines"

#: lang2.h:356
msgid "Pakistan"
msgstr "Pakistan"

#: lang2.h:357
msgid "Poland"
msgstr "Poland"

#: lang2.h:358
msgid "St. Pierre and Miquelon"
msgstr "St. Pierre and Miquelon"

#: lang2.h:359
msgid "Pitcairn"
msgstr "Pitcairn"

#: lang2.h:360
msgid "Puerto Rico"
msgstr "Puerto Rico"

#: lang2.h:361
msgid "Palestinian Territory, Occupied"
msgstr ""

#: lang2.h:362
msgid "Portugal"
msgstr "Portugal"

#: lang2.h:363
msgid "Palau"
msgstr "Palau"

#: lang2.h:364
msgid "Paraguay"
msgstr "Paraguay"

#: lang2.h:365
msgid "Qatar"
msgstr "Qatar"

#: lang2.h:366
msgid "Reunion"
msgstr "Reunion"

#: lang2.h:367
msgid "Romania"
msgstr "Romania"

#: lang2.h:368
msgid "Serbia"
msgstr ""

#: lang2.h:369
msgid "Russian Federation"
msgstr "Russian Federation"

#: lang2.h:370
msgid "Rwanda"
msgstr "Rwanda"

#: lang2.h:371
msgid "Saudi Arabia"
msgstr "Saudi Arabia"

#: lang2.h:372
msgid "Solomon Islands"
msgstr "Solomon Islands"

#: lang2.h:373
msgid "Seychelles"
msgstr "Seychelles"

#: lang2.h:374
msgid "Sudan"
msgstr "Sudan"

#: lang2.h:375
msgid "Sweden"
msgstr "Sweden"

#: lang2.h:376
msgid "Singapore"
msgstr "Singapore"

#: lang2.h:377
msgid "St. Helena"
msgstr "St. Helena"

#: lang2.h:378
msgid "Slovenia"
msgstr "Slovenia"

#: lang2.h:379
msgid "Svalbard and Jan Mayen Islands"
msgstr "Svalbard and Jan Mayen Islands"

#: lang2.h:380
#, fuzzy
msgid "Slovakia"
msgstr "Slovenia"

#: lang2.h:381
msgid "Sierra Leone"
msgstr "Sierra Leone"

#: lang2.h:382
msgid "San Marino"
msgstr "San Marino"

#: lang2.h:383
msgid "Senegal"
msgstr "Senegal"

#: lang2.h:384
msgid "Somalia"
msgstr "Somalia"

#: lang2.h:385
msgid "Suriname"
msgstr "Suriname"

#: lang2.h:386
msgid "Sao Tome and Principe"
msgstr "Sao Tome and Principe"

#: lang2.h:387
msgid "Soviet Union"
msgstr ""

#: lang2.h:388
msgid "El Salvador"
msgstr "El Salvador"

#: lang2.h:389
#, fuzzy
msgid "Syrian Arab Republic"
msgstr "Central African Republic"

#: lang2.h:390
msgid "Swaziland"
msgstr "Swaziland"

#: lang2.h:391
msgid "Turks and Caicos Islands"
msgstr "Turks and Caicos Islands"

#: lang2.h:392
msgid "Chad"
msgstr "Chad"

#: lang2.h:393
msgid "French Southern Territories"
msgstr "French Southern Territories"

#: lang2.h:394
msgid "Togo"
msgstr "Togo"

#: lang2.h:395
msgid "Thailand"
msgstr "Thailand"

#: lang2.h:396
msgid "Tajikistan"
msgstr "Tajikistan"

#: lang2.h:397
msgid "Tokelau"
msgstr "Tokelau"

#: lang2.h:398
msgid "Timor-Leste"
msgstr ""

#: lang2.h:399
msgid "Turkmenistan"
msgstr "Turkmenistan"

#: lang2.h:400
msgid "Tunisia"
msgstr "Tunisia"

#: lang2.h:401
msgid "Tonga"
msgstr "Tonga"

#: lang2.h:402
msgid "Portuguese Timor"
msgstr ""

#: lang2.h:403
msgid "Turkey"
msgstr "Turkey"

#: lang2.h:404
msgid "Trinidad and Tobago"
msgstr "Trinidad and Tobago"

#: lang2.h:405
msgid "Tuvalu"
msgstr "Tuvalu"

#: lang2.h:406
msgid "Taiwan"
msgstr "Taiwan"

#: lang2.h:407
msgid "Tanzania"
msgstr "Tanzania"

#: lang2.h:408
msgid "Ukraine"
msgstr "Ukraine"

#: lang2.h:409
msgid "Uganda"
msgstr "Uganda"

#: lang2.h:410
msgid "United Kingdom"
msgstr "United Kingdom"

#: lang2.h:411
msgid "US Minor Outlying Islands"
msgstr "US Minor Outlying Islands"

#: lang2.h:412
msgid "United States"
msgstr "United States"

#: lang2.h:413
msgid "Uruguay"
msgstr "Uruguay"

#: lang2.h:414
msgid "Uzbekistan"
msgstr "Uzbekistan"

#: lang2.h:415
msgid "Vatican City State (Holy See)"
msgstr "Vatican City State (Holy See)"

#: lang2.h:416
msgid "Saint Vincent and the Grenadines"
msgstr "Saint Vincent and the Grenadines"

#: lang2.h:417
msgid "Venezuela"
msgstr "Venezuela"

#: lang2.h:418
msgid "Virgin Islands (British)"
msgstr "Virgin Islands (British)"

#: lang2.h:419
msgid "Virgin Islands (U.S.)"
msgstr "Virgin Islands (U.S.)"

#: lang2.h:420
#, fuzzy
msgid "Vietnam"
msgstr "Viet Nam"

#: lang2.h:421
msgid "Vanuatu"
msgstr "Vanuatu"

#: lang2.h:422
msgid "Wallis and Futuna Islands"
msgstr "Wallis and Futuna Islands"

#: lang2.h:423
msgid "Samoa"
msgstr "Samoa"

#: lang2.h:424
msgid "Yemen"
msgstr "Yemen"

#: lang2.h:425
msgid "Mayotte"
msgstr "Mayotte"

#: lang2.h:426
msgid "Yugoslavia"
msgstr "Yugoslavia"

#: lang2.h:427
msgid "South Africa"
msgstr "South Africa"

#: lang2.h:428
msgid "Zambia"
msgstr "Zambia"

#: lang2.h:429
msgid "Zimbabwe"
msgstr "Zimbabwe"

#: lang2.h:430
msgid "Anonymous Proxy"
msgstr ""

#: lang2.h:431
msgid "Satellite Provider"
msgstr ""

#: lang2.h:433
msgid "Asia/Pacific Region"
msgstr ""

#: lang2.h:434
msgid "Local Network (lan)"
msgstr ""

#: output.c:190
msgid "en"
msgstr ""

#: output.c:192 output.c:218 output.c:2604
msgid "Summary by Month"
msgstr " 12"

#: output.c:216
msgid "Summary Period"
msgstr " Ⱓ"

#: output.c:219
msgid "Generated"
msgstr " "

#: output.c:290
msgid "Generating report for"
msgstr "Ʈ :"

#: output.c:302
msgid "Daily usage for"
msgstr "Daily usage for"

#: output.c:320
msgid "Hourly usage for"
msgstr "Hourly usage for"

#: output.c:372
msgid "Can't allocate enough memory, Top URLs disabled!"
msgstr "޸ , ' URL' dzʶ!"

#: output.c:394
msgid "Can't allocate enough memory, Top Sites disabled!"
msgstr "޸ , ' Ʈ' dzʶ!"

#: output.c:411
msgid "Can't allocate enough memory, Top Referrers disabled!"
msgstr "޸ , ' ۷' dzʶ!"

#: output.c:428
msgid "Can't allocate enough memory, Top Search Strings disabled!"
msgstr "Can't allocate enough memory, Top Search Strings disabled!"

#: output.c:445
msgid "Can't allocate enough memory, Top Usernames disabled!"
msgstr "Can't allocate enough memory, Top Usernames disabled!"

#: output.c:462
msgid "Can't allocate enough memory, Top User Agents disabled!"
msgstr "޸ , ' Ʈ' dzʶ!"

#: output.c:480
msgid "Daily Statistics"
msgstr "Ϻ "

#: output.c:482
msgid "Hourly Statistics"
msgstr "ð뺰 "

#: output.c:484
msgid "URLs"
msgstr "URL"

#: output.c:486
msgid "Entry"
msgstr "Entry"

#: output.c:488
msgid "Exit"
msgstr "Exit"

#: output.c:492
msgid "Referrers"
msgstr "۷"

#: output.c:494
msgid "Search"
msgstr "Search"

#: output.c:496
msgid "Users"
msgstr "Users"

#: output.c:498
msgid "Agents"
msgstr "Ʈ"

#: output.c:500
msgid "Countries"
msgstr ""

#: output.c:530
msgid "Monthly Statistics for"
msgstr " "

#: output.c:535
msgid "Total Hits"
msgstr " Ʈ"

#: output.c:539
msgid "Total Files"
msgstr " ϼ"

#: output.c:543 output.c:547 output.c:813 output.c:818 output.c:823
#: output.c:828 output.c:833 output.c:838
msgid "Total"
msgstr "ü"

#: output.c:551
#, fuzzy
msgid "Total kB Files"
msgstr " ϼ"

#: output.c:554
#, fuzzy
msgid "Total kB In"
msgstr "ü"

#: output.c:557
#, fuzzy
msgid "Total kB Out"
msgstr " KByte"

#: output.c:564
msgid "Total Unique Sites"
msgstr "  Ʈ"

#: output.c:569
msgid "Total Unique URLs"
msgstr "  URL"

#: output.c:575
msgid "Total Unique Referrers"
msgstr "  ۷"

#: output.c:581
msgid "Total Unique Usernames"
msgstr "Total Unique Usernames"

#: output.c:587
msgid "Total Unique User Agents"
msgstr "  Ʈ"

#: output.c:597 output.c:813 output.c:818 output.c:823 output.c:828
#: output.c:833 output.c:838
msgid "Avg"
msgstr ""

#: output.c:597
msgid "Max"
msgstr "Max"

#: output.c:604
msgid "Hits per Hour"
msgstr "Hits per Hour"

#: output.c:610
msgid "Hits per Day"
msgstr "Hits per Day"

#: output.c:616
msgid "Files per Day"
msgstr "Files per Day"

#: output.c:622
msgid "Pages per Day"
msgstr "Pages per Day"

#: output.c:628
#, fuzzy
msgid "Sites per Day"
msgstr "Hits per Day"

#: output.c:634
msgid "Visits per Day"
msgstr "Visits per Day"

#: output.c:640
#, fuzzy
msgid "kB Files per Day"
msgstr "Files per Day"

#: output.c:646
#, fuzzy
msgid "kB In per Day"
msgstr "KBytes per Day"

#: output.c:652
#, fuzzy
msgid "kB Out per Day"
msgstr "KBytes per Day"

#: output.c:658
msgid "Hits by Response Code"
msgstr " ڵ庰 Ʈ"

#: output.c:689
msgid "Daily Statistics for"
msgstr "Ϻ "

#: output.c:709
msgid "Day"
msgstr ""

#: output.c:786
msgid "Hourly Statistics for"
msgstr "ð뺰 "

#: output.c:802
msgid "Hour"
msgstr "ð"

#: output.c:924 output.c:928 output.c:1130 output.c:1134 output.c:1363
#: output.c:1459 output.c:1624 output.c:1771 output.c:1892 output.c:2216
msgid "Top"
msgstr ""

#: output.c:924 output.c:928 output.c:1130 output.c:1134 output.c:1363
#: output.c:1459 output.c:1624 output.c:1771 output.c:1892 output.c:2216
msgid "of"
msgstr "/"

#: output.c:925 output.c:1131
msgid "By"
msgstr "By"

#: output.c:925 output.c:928
msgid "Total Sites"
msgstr "Ʈ"

#: output.c:945 output.c:1040 output.c:2302
msgid "Hostname"
msgstr "ȣƮ"

#: output.c:1004
msgid "View All Sites"
msgstr "View All Sites"

#: output.c:1131 output.c:1134
msgid "Total URLs"
msgstr "URL"

#: output.c:1152 output.c:1262 output.c:1268 output.c:1377 output.c:2346
msgid "URL"
msgstr "URL"

#: output.c:1234
msgid "View All URLs"
msgstr "View All URLs"

#: output.c:1364
msgid "Total Entry Pages"
msgstr "Total Entry Pages"

#: output.c:1364
msgid "Total Exit Pages"
msgstr "Total Exit Pages"

#: output.c:1459
msgid "Total Referrers"
msgstr "۷"

#: output.c:1469 output.c:1546 output.c:1551 output.c:2387
msgid "Referrer"
msgstr "۷"

#: output.c:1521
msgid "View All Referrers"
msgstr "View All Referrers"

#: output.c:1624
msgid "Total User Agents"
msgstr "Ʈ"

#: output.c:1634 output.c:1700 output.c:1705 output.c:2426
msgid "User Agent"
msgstr "Ʈ"

#: output.c:1675
msgid "View All User Agents"
msgstr "View All User Agents"

#: output.c:1771
msgid "Total Search Strings"
msgstr "Total Search Strings"

#: output.c:1781 output.c:1836 output.c:1841 output.c:2510
msgid "Search String"
msgstr "Search String"

#: output.c:1810
msgid "View All Search Strings"
msgstr "View All Search Strings"

#: output.c:1892
msgid "Total Usernames"
msgstr "Total Usernames"

#: output.c:1909 output.c:1991 output.c:1999 output.c:2467
msgid "Username"
msgstr "Username"

#: output.c:1966
msgid "View All Usernames"
msgstr "View All Usernames"

#: output.c:2101
#, c-format
msgid "GeoDB: %s unknown!\n"
msgstr ""

#: output.c:2114
#, c-format
msgid "GeoIP: %s unknown (returns '%s')\n"
msgstr ""

#: output.c:2199
#, fuzzy
msgid "Usage by Country for"
msgstr "Usage by Country for"

#: output.c:2216
#, fuzzy
msgid "Total Countries"
msgstr ""

#: output.c:2231
msgid "Country"
msgstr ""

#: output.c:2550
msgid "Generating summary report"
msgstr "Ʈ "

#: output.c:2552
msgid "Usage summary for"
msgstr "Usage summary for"

#: output.c:2584
#, fuzzy, c-format
msgid "Error: Failed to create .htaccess file: %s\n"
msgstr ": 丮    "

#: output.c:2607
msgid "Month"
msgstr ""

#: output.c:2609
msgid "Daily Avg"
msgstr " "

#: output.c:2611
msgid "Monthly Totals"
msgstr " Ѱ"

#: output.c:2743
msgid "Totals"
msgstr "Ѱ"

#: parser.c:232 parser.c:426
msgid "Warning: Truncating oversized hostname"
msgstr ":  ȣƮ ¥"

#: parser.c:264
msgid "Warning: Truncating oversized username"
msgstr "Warning: Truncating oversized username"

#: parser.c:286
msgid "Warning: Truncating oversized date field"
msgstr ":  ¥ ʵ ¥"

#: parser.c:311 parser.c:463 parser.c:492 webalizer.c:1005
msgid "Warning: Truncating oversized request field"
msgstr ":  û ʵ ¥"

#: parser.c:355 webalizer.c:997
msgid "Warning: Truncating oversized referrer field"
msgstr ":  ۷ ʵ ¥"

#: preserve.c:78
msgid "Reading history file..."
msgstr " 丮  ؼ:"

#: preserve.c:89
msgid "Error: Ignoring invalid history record"
msgstr ":   丮 ڵ "

#: preserve.c:142
msgid "History file not found..."
msgstr "丮  ã  "

#: preserve.c:182
msgid "Saving history information..."
msgstr "丮  "

#: preserve.c:222
msgid "Error: Unable to write history file"
msgstr ": 丮    "

#: preserve.c:353
msgid "Saving current run data..."
msgstr "  "

#: preserve.c:567
msgid "Previous run data not found..."
msgstr "   ã  "

#: preserve.c:572
#, fuzzy
msgid "Reading previous run data.."
msgstr "   ؼ:"

#: preserve.c:679 webalizer.c:1227 webalizer.c:1332
msgid "Error adding URL node, skipping"
msgstr "URL ߰ , "

#: preserve.c:720 webalizer.c:1272 webalizer.c:1347 webalizer.c:1365
msgid "Error adding host node (monthly), skipping"
msgstr "ȣƮ ߰  (), "

#: preserve.c:761 webalizer.c:1261
msgid "Error adding host node (daily), skipping"
msgstr "ȣƮ ߰  (Ϻ), "

#: preserve.c:786 webalizer.c:1249 webalizer.c:1378
msgid "Error adding Referrer node, skipping"
msgstr "۷ ߰ , "

#: preserve.c:811 webalizer.c:1282 webalizer.c:1389
msgid "Error adding User Agent node, skipping"
msgstr "Ʈ ߰ , "

#: preserve.c:835 webalizer.c:2223
msgid "Error adding Search String Node, skipping"
msgstr "Error adding Search String node, skipping"

#: preserve.c:868 webalizer.c:1238 webalizer.c:1404
msgid "Error adding Username node, skipping"
msgstr "Error adding Username node, skipping"

#: webalizer.c:326
msgid "Usage Statistics for"
msgstr "뷮 :"

#: webalizer.c:491 webalizer.c:1989
msgid "locale"
msgstr ""

#: webalizer.c:497
msgid "DNS support not present, aborting..."
msgstr ""

#: webalizer.c:514 webalizer.c:531 webalizer.c:542
msgid "Error: Can't open log file"
msgstr ": α ã  "

#: webalizer.c:551
msgid "Using logfile"
msgstr " α :"

#: webalizer.c:572
msgid "Error: Can't change directory to"
msgstr ": 丮   "

#: webalizer.c:584
msgid "No cache file specified, aborting..."
msgstr "No cache file specified, aborting..."

#: webalizer.c:593
msgid "DNS Lookup"
msgstr "DNS Lookup"

#: webalizer.c:611
msgid "Using DNS cache file"
msgstr "Using DNS cache file"

#: webalizer.c:621
#, fuzzy
msgid "Error opening file"
msgstr ": α ã  "

#: webalizer.c:622 webalizer.c:652
msgid "default"
msgstr ""

#: webalizer.c:623 webalizer.c:647
msgid "lookups disabled"
msgstr ""

#: webalizer.c:627 webalizer.c:650
msgid "Using"
msgstr ""

#: webalizer.c:658
msgid "Creating output in"
msgstr " 丮:"

#: webalizer.c:658
msgid "current directory"
msgstr " 丮"

#: webalizer.c:668
msgid "Hostname for reports is"
msgstr "ȣƮ:"

#: webalizer.c:671
msgid "Ignoring previous history..."
msgstr " 丮  "

#: webalizer.c:680
msgid "Error: Unable to restore run data"
msgstr ":   ؼ  "

#: webalizer.c:689
msgid "Can't allocate enough memory, Top Countries disabled!"
msgstr "޸ , ' ' dzʶ!"

#: webalizer.c:706
#, fuzzy
msgid "Error: Skipping oversized log record"
msgstr ": ʰ α ڵ "

#: webalizer.c:766
msgid "Error: Skipping record (bad date)"
msgstr ": ڵ  (߸ ¥)"

#: webalizer.c:1419
msgid "Skipping Netscape header record"
msgstr "ݽ  ڵ "

#: webalizer.c:1436
msgid "Skipping bad record"
msgstr " ڵ "

#: webalizer.c:1471
msgid "Error: Unable to save current run data"
msgstr ":     "

#: webalizer.c:1488
msgid "records"
msgstr "ڵ"

#: webalizer.c:1491
msgid "ignored"
msgstr ""

#: webalizer.c:1492 webalizer.c:1495
msgid "bad"
msgstr "ҷ"

#: webalizer.c:1529
msgid "No valid records found!"
msgstr "ó ڵ !"

#: webalizer.c:1679
msgid "Error: Unable to open configuration file"
msgstr ":   ã  "

#: webalizer.c:1709 webalizer.c:1835 webalizer.c:1866 webalizer.c:1884
msgid "Warning: Invalid keyword"
msgstr ": ˼ Ű"

#: webalizer.c:1972
msgid "Usage"
msgstr ""

#: webalizer.c:1972
msgid "[options] [log file]"
msgstr "[ɼ] [α ]"

#: webalizer.c:2008
#, c-format
msgid "Default GeoDB dir : %s\n"
msgstr ""

#: webalizer.c:2010
#, c-format
msgid "Default config dir: %s\n"
msgstr ""

#~ msgid "Old style Arpanet (arpa)"
#~ msgstr "Old style Arpanet (arpa)"

#~ msgid "Czechoslovakia (former)"
#~ msgstr "Czechoslovakia (former)"

#, fuzzy
#~ msgid "France, Metropolitan"
#~ msgstr "France, Metropolitan"

#~ msgid "Croatia (Hrvatska)"
#~ msgstr "Croatia (Hrvatska)"

#~ msgid "Korea (North)"
#~ msgstr "Korea (North)"

#~ msgid "Korea (South)"
#~ msgstr "Korea (South)"

#~ msgid "Neutral Zone"
#~ msgstr "Neutral Zone"

#~ msgid "USSR (former)"
#~ msgstr "USSR (former)"

#~ msgid "Syria"
#~ msgstr "Syria"

#~ msgid "East Timor"
#~ msgstr "East Timor"

#~ msgid "Zaire"
#~ msgstr "Zaire"

#, fuzzy
#~ msgid "Locations"
#~ msgstr "Laos"

#, fuzzy
#~ msgid "Total Locations"
#~ msgstr ""

#~ msgid "Last 12 Months"
#~ msgstr "Last 12 Months"

#, fuzzy
#~ msgid "Can't allocate enough memory, Top Locations disabled!"
#~ msgstr "޸ , ' URL' dzʶ!"

#~ msgid "English"
#~ msgstr "Korean"

#~ msgid "KBytes"
#~ msgstr "KBytes"

#~ msgid "May"
#~ msgstr "May"

#~ msgid "Warning: Possible duplicate data found"
#~ msgstr ": ߺ  "